@@ -633,7 +633,6 @@ async def list_collections(self, **kwargs): # noqa: E501
633633 :param object order:
634634 :param object after:
635635 :param object before:
636- :param object offset:
637636 :return: CollectionListResponse
638637 If the method is called asynchronously,
639638 returns the request thread.
@@ -659,13 +658,12 @@ async def list_collections_with_http_info(self, **kwargs): # noqa: E501
659658 :param object order:
660659 :param object after:
661660 :param object before:
662- :param object offset:
663661 :return: CollectionListResponse
664662 If the method is called asynchronously,
665663 returns the request thread.
666664 """
667665
668- all_params = ['limit' , 'order' , 'after' , 'before' , 'offset' ] # noqa: E501
666+ all_params = ['limit' , 'order' , 'after' , 'before' ] # noqa: E501
669667 all_params .append ('async_req' )
670668 all_params .append ('_return_http_data_only' )
671669 all_params .append ('_preload_content' )
@@ -694,8 +692,6 @@ async def list_collections_with_http_info(self, **kwargs): # noqa: E501
694692 query_params .append (('after' , params ['after' ])) # noqa: E501
695693 if 'before' in params :
696694 query_params .append (('before' , params ['before' ])) # noqa: E501
697- if 'offset' in params :
698- query_params .append (('offset' , params ['offset' ])) # noqa: E501
699695
700696 header_params = {}
701697
@@ -740,7 +736,6 @@ async def list_records(self, collection_id, **kwargs): # noqa: E501
740736 :param object order:
741737 :param object after:
742738 :param object before:
743- :param object offset:
744739 :return: RecordListResponse
745740 If the method is called asynchronously,
746741 returns the request thread.
@@ -767,13 +762,12 @@ async def list_records_with_http_info(self, collection_id, **kwargs): # noqa: E
767762 :param object order:
768763 :param object after:
769764 :param object before:
770- :param object offset:
771765 :return: RecordListResponse
772766 If the method is called asynchronously,
773767 returns the request thread.
774768 """
775769
776- all_params = ['collection_id' , 'limit' , 'order' , 'after' , 'before' , 'offset' ] # noqa: E501
770+ all_params = ['collection_id' , 'limit' , 'order' , 'after' , 'before' ] # noqa: E501
777771 all_params .append ('async_req' )
778772 all_params .append ('_return_http_data_only' )
779773 all_params .append ('_preload_content' )
@@ -808,8 +802,6 @@ async def list_records_with_http_info(self, collection_id, **kwargs): # noqa: E
808802 query_params .append (('after' , params ['after' ])) # noqa: E501
809803 if 'before' in params :
810804 query_params .append (('before' , params ['before' ])) # noqa: E501
811- if 'offset' in params :
812- query_params .append (('offset' , params ['offset' ])) # noqa: E501
813805
814806 header_params = {}
815807
0 commit comments