elabapi-python 5.6.0__py3-none-any.whl → 5.6.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -562,6 +562,7 @@ class ExperimentsApi(object):
562
562
  :param str order: Change the ordering of the results.
563
563
  :param str sort: Change the sorting of results: ascending or descending.
564
564
  :param str state: Filter results based on their state: 1 (Normal), 2 (Archived), 3 (Deleted). Supports comma separated values.
565
+ :param int full: Return all columns of each entry when set to 1.
565
566
  :return: list[Experiment]
566
567
  If the method is called asynchronously,
567
568
  returns the request thread.
@@ -596,12 +597,13 @@ class ExperimentsApi(object):
596
597
  :param str order: Change the ordering of the results.
597
598
  :param str sort: Change the sorting of results: ascending or descending.
598
599
  :param str state: Filter results based on their state: 1 (Normal), 2 (Archived), 3 (Deleted). Supports comma separated values.
600
+ :param int full: Return all columns of each entry when set to 1.
599
601
  :return: list[Experiment]
600
602
  If the method is called asynchronously,
601
603
  returns the request thread.
602
604
  """
603
605
 
604
- all_params = ['q', 'extended', 'related', 'related_origin', 'category', 'status', 'tags', 'limit', 'offset', 'owner', 'scope', 'order', 'sort', 'state'] # noqa: E501
606
+ all_params = ['q', 'extended', 'related', 'related_origin', 'category', 'status', 'tags', 'limit', 'offset', 'owner', 'scope', 'order', 'sort', 'state', 'full'] # noqa: E501
605
607
  all_params.append('async_req')
606
608
  all_params.append('_return_http_data_only')
607
609
  all_params.append('_preload_content')
@@ -651,6 +653,8 @@ class ExperimentsApi(object):
651
653
  query_params.append(('sort', params['sort'])) # noqa: E501
652
654
  if 'state' in params:
653
655
  query_params.append(('state', params['state'])) # noqa: E501
656
+ if 'full' in params:
657
+ query_params.append(('full', params['full'])) # noqa: E501
654
658
 
655
659
  header_params = {}
656
660
 
@@ -538,6 +538,7 @@ class ExperimentsTemplatesApi(object):
538
538
  :param str order: Change the ordering of the results.
539
539
  :param str sort: Change the sorting of results: ascending or descending.
540
540
  :param str state: Filter results based on their state: 1 (Normal), 2 (Archived), 3 (Deleted). Supports comma separated values.
541
+ :param int full: Return all columns of each entry when set to 1.
541
542
  :return: list[EntityTemplate]
542
543
  If the method is called asynchronously,
543
544
  returns the request thread.
@@ -572,12 +573,13 @@ class ExperimentsTemplatesApi(object):
572
573
  :param str order: Change the ordering of the results.
573
574
  :param str sort: Change the sorting of results: ascending or descending.
574
575
  :param str state: Filter results based on their state: 1 (Normal), 2 (Archived), 3 (Deleted). Supports comma separated values.
576
+ :param int full: Return all columns of each entry when set to 1.
575
577
  :return: list[EntityTemplate]
576
578
  If the method is called asynchronously,
577
579
  returns the request thread.
578
580
  """
579
581
 
580
- all_params = ['q', 'extended', 'related', 'related_origin', 'category', 'status', 'tags', 'limit', 'offset', 'owner', 'scope', 'order', 'sort', 'state'] # noqa: E501
582
+ all_params = ['q', 'extended', 'related', 'related_origin', 'category', 'status', 'tags', 'limit', 'offset', 'owner', 'scope', 'order', 'sort', 'state', 'full'] # noqa: E501
581
583
  all_params.append('async_req')
582
584
  all_params.append('_return_http_data_only')
583
585
  all_params.append('_preload_content')
@@ -627,6 +629,8 @@ class ExperimentsTemplatesApi(object):
627
629
  query_params.append(('sort', params['sort'])) # noqa: E501
628
630
  if 'state' in params:
629
631
  query_params.append(('state', params['state'])) # noqa: E501
632
+ if 'full' in params:
633
+ query_params.append(('full', params['full'])) # noqa: E501
630
634
 
631
635
  header_params = {}
632
636
 
@@ -562,6 +562,7 @@ class ItemsApi(object):
562
562
  :param str order: Change the ordering of the results.
563
563
  :param str sort: Change the sorting of results: ascending or descending.
564
564
  :param str state: Filter results based on their state: 1 (Normal), 2 (Archived), 3 (Deleted). Supports comma separated values.
565
+ :param int full: Return all columns of each entry when set to 1.
565
566
  :return: list[Item]
566
567
  If the method is called asynchronously,
567
568
  returns the request thread.
@@ -596,12 +597,13 @@ class ItemsApi(object):
596
597
  :param str order: Change the ordering of the results.
597
598
  :param str sort: Change the sorting of results: ascending or descending.
598
599
  :param str state: Filter results based on their state: 1 (Normal), 2 (Archived), 3 (Deleted). Supports comma separated values.
600
+ :param int full: Return all columns of each entry when set to 1.
599
601
  :return: list[Item]
600
602
  If the method is called asynchronously,
601
603
  returns the request thread.
602
604
  """
603
605
 
604
- all_params = ['q', 'extended', 'related', 'related_origin', 'category', 'status', 'tags', 'limit', 'offset', 'owner', 'scope', 'order', 'sort', 'state'] # noqa: E501
606
+ all_params = ['q', 'extended', 'related', 'related_origin', 'category', 'status', 'tags', 'limit', 'offset', 'owner', 'scope', 'order', 'sort', 'state', 'full'] # noqa: E501
605
607
  all_params.append('async_req')
606
608
  all_params.append('_return_http_data_only')
607
609
  all_params.append('_preload_content')
@@ -651,6 +653,8 @@ class ItemsApi(object):
651
653
  query_params.append(('sort', params['sort'])) # noqa: E501
652
654
  if 'state' in params:
653
655
  query_params.append(('state', params['state'])) # noqa: E501
656
+ if 'full' in params:
657
+ query_params.append(('full', params['full'])) # noqa: E501
654
658
 
655
659
  header_params = {}
656
660
 
@@ -538,6 +538,7 @@ class ItemsTypesResourcesTemplatesApi(object):
538
538
  :param str order: Change the ordering of the results.
539
539
  :param str sort: Change the sorting of results: ascending or descending.
540
540
  :param str state: Filter results based on their state: 1 (Normal), 2 (Archived), 3 (Deleted). Supports comma separated values.
541
+ :param int full: Return all columns of each entry when set to 1.
541
542
  :return: list[EntityTemplate]
542
543
  If the method is called asynchronously,
543
544
  returns the request thread.
@@ -572,12 +573,13 @@ class ItemsTypesResourcesTemplatesApi(object):
572
573
  :param str order: Change the ordering of the results.
573
574
  :param str sort: Change the sorting of results: ascending or descending.
574
575
  :param str state: Filter results based on their state: 1 (Normal), 2 (Archived), 3 (Deleted). Supports comma separated values.
576
+ :param int full: Return all columns of each entry when set to 1.
575
577
  :return: list[EntityTemplate]
576
578
  If the method is called asynchronously,
577
579
  returns the request thread.
578
580
  """
579
581
 
580
- all_params = ['q', 'extended', 'related', 'related_origin', 'category', 'status', 'tags', 'limit', 'offset', 'owner', 'scope', 'order', 'sort', 'state'] # noqa: E501
582
+ all_params = ['q', 'extended', 'related', 'related_origin', 'category', 'status', 'tags', 'limit', 'offset', 'owner', 'scope', 'order', 'sort', 'state', 'full'] # noqa: E501
581
583
  all_params.append('async_req')
582
584
  all_params.append('_return_http_data_only')
583
585
  all_params.append('_preload_content')
@@ -627,6 +629,8 @@ class ItemsTypesResourcesTemplatesApi(object):
627
629
  query_params.append(('sort', params['sort'])) # noqa: E501
628
630
  if 'state' in params:
629
631
  query_params.append(('state', params['state'])) # noqa: E501
632
+ if 'full' in params:
633
+ query_params.append(('full', params['full'])) # noqa: E501
630
634
 
631
635
  header_params = {}
632
636
 
@@ -353,7 +353,7 @@ class TeamgroupsApi(object):
353
353
 
354
354
  :param async_req bool
355
355
  :param int id: ID of the team. (required)
356
- :return: list[Teamgroup]
356
+ :return: dict(str, Teamgroup)
357
357
  If the method is called asynchronously,
358
358
  returns the request thread.
359
359
  """
@@ -374,7 +374,7 @@ class TeamgroupsApi(object):
374
374
 
375
375
  :param async_req bool
376
376
  :param int id: ID of the team. (required)
377
- :return: list[Teamgroup]
377
+ :return: dict(str, Teamgroup)
378
378
  If the method is called asynchronously,
379
379
  returns the request thread.
380
380
  """
@@ -428,7 +428,7 @@ class TeamgroupsApi(object):
428
428
  body=body_params,
429
429
  post_params=form_params,
430
430
  files=local_var_files,
431
- response_type='list[Teamgroup]', # noqa: E501
431
+ response_type='dict(str, Teamgroup)', # noqa: E501
432
432
  auth_settings=auth_settings,
433
433
  async_req=params.get('async_req'),
434
434
  _return_http_data_only=params.get('_return_http_data_only'),
@@ -72,7 +72,7 @@ class ApiClient(object):
72
72
  self.default_headers[header_name] = header_value
73
73
  self.cookie = cookie
74
74
  # Set default User-Agent.
75
- self.user_agent = 'Swagger-Codegen/5.6.0/python'
75
+ self.user_agent = 'Swagger-Codegen/5.6.1/python'
76
76
 
77
77
  def __del__(self):
78
78
  self.pool.close()
@@ -250,5 +250,5 @@ class Configuration(six.with_metaclass(TypeWithDefault, object)):
250
250
  "OS: {env}\n"\
251
251
  "Python Version: {pyversion}\n"\
252
252
  "Version of the API: 2.0.0\n"\
253
- "SDK Package Version: 5.6.0".\
253
+ "SDK Package Version: 5.6.1".\
254
254
  format(env=sys.platform, pyversion=sys.version)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: elabapi-python
3
- Version: 5.6.0
3
+ Version: 5.6.1
4
4
  Summary: eLabFTW REST API v2 Documentation
5
5
  Home-page: https://github.com/elabftw/elabapi-python
6
6
  Author-email:
@@ -1,6 +1,6 @@
1
1
  elabapi_python/__init__.py,sha256=yP1QOGZStNJxdEmzlG2VXmsSSFvQxhbUDVU40avSYOI,11264
2
- elabapi_python/api_client.py,sha256=0vrUSRK56UXAlGhtFuPWYpUrq6cr5v3tTHRl6DXxpsI,25079
3
- elabapi_python/configuration.py,sha256=9kkdIQdP7iGSjGkZZykJi2Vgowa_6AMk4Qe22mJ-DVA,8359
2
+ elabapi_python/api_client.py,sha256=Up2q6UktcUukxcthdbFFeJ6-d5Fg9ajhIm7_Su7KOs0,25079
3
+ elabapi_python/configuration.py,sha256=YA-Tb4kEAPnNZkVHpJbB1os0WgyQUP36RXRJo3qq67M,8359
4
4
  elabapi_python/rest.py,sha256=ooWVe4Hbxm84Eh1xvoTrHnNJ2RcIOSKH84kVsD8ORUs,13028
5
5
  elabapi_python/api/__init__.py,sha256=kCm3eYh7aCHa-S_XVl-yLPAXha1Aiv_O18oKCRtalRQ,2610
6
6
  elabapi_python/api/api_keys_api.py,sha256=jkoQqyBgivwnAzhHMB7VK00U7VkH54LHN_duCKIMvhM,10806
@@ -12,10 +12,10 @@ elabapi_python/api/containers_api.py,sha256=D1InjsS_sR298JrruoCdH6FoRMUZ_IaK_-AH
12
12
  elabapi_python/api/custom_fields_keys_api.py,sha256=bHLeO_K2v1xVj9PA6pt4-C68Q3b4qexP63jOzsIMhW4,4485
13
13
  elabapi_python/api/d_space_api.py,sha256=-NDZflX1uifY75qkjzymiCCo1YOxpidlcySEp_vIzXo,11955
14
14
  elabapi_python/api/events_api.py,sha256=G9ViI-tdZrcFq7IJUKaNuardHJz97p0-OXIKysx7biw,18512
15
- elabapi_python/api/experiments_api.py,sha256=q1fZYy75xu8jOuuRTzc6ehu9Dv2EXV90xEIJ3RH0Gqo,28568
15
+ elabapi_python/api/experiments_api.py,sha256=9AG4uw0J5VNcItDoJ78lM0HOXhGYkr9PthK0v25dhh0,28825
16
16
  elabapi_python/api/experiments_categories_api.py,sha256=viVytdAU5cyTC9YmQ_nkR2I117clCKKhGSaZCqqAqEQ,20664
17
17
  elabapi_python/api/experiments_status_api.py,sha256=-UXr7YGh6Ls_nWdEK51kIigAZ4HlbaACb62ZPDwkUb8,20647
18
- elabapi_python/api/experiments_templates_api.py,sha256=jGCTZtSqBvzpGkqm_dL1Nt6MrjyAKXelBtAF5Lpf1X4,27205
18
+ elabapi_python/api/experiments_templates_api.py,sha256=pj4M4qb0NkLBgF-moWfaPc664tBSG7Z3HoXNFL5TbQw,27462
19
19
  elabapi_python/api/exports_api.py,sha256=Gx-_8G9CUoKG9IiDq8_0GhKVwl6VlqAjOpgzVKkg8UY,14134
20
20
  elabapi_python/api/favorite_tags_api.py,sha256=iDBsGst6XyQQ0bioRwDxVTJ6mlzmh8Tb-fLB_llml2I,10540
21
21
  elabapi_python/api/idps_api.py,sha256=dy_H9wIgt1hCgVqQvoodp88jSL1ggwXefVK8woslbpk,48391
@@ -23,8 +23,8 @@ elabapi_python/api/idps_sources_api.py,sha256=Hb95YzSoSV77c76nHsxBp1B_Xg6-NV3kAs
23
23
  elabapi_python/api/import_api.py,sha256=AM1YW33-8L6cFh0DUcp--7_gjIze31qj9ux_Vu9Oowg,8037
24
24
  elabapi_python/api/info_api.py,sha256=zI9Vruehh_7Lot8d_wiILfx9wS4cE0jwIbBb7EZJV68,4645
25
25
  elabapi_python/api/instance_api.py,sha256=OQeSzc8IE4LNEJraMakXfKh0VPw0A5Nhc3UZsHTNDzo,4467
26
- elabapi_python/api/items_api.py,sha256=Alx3GmgTRf7Cy4znfGzglro5qdBCXhCubXbZfrnFxOU,28048
27
- elabapi_python/api/items_types__resources_templates_api.py,sha256=aKIZbwhA6ijlH-2Pp1BkHsY88dQUkNBHwqU_y_h_QIE,26655
26
+ elabapi_python/api/items_api.py,sha256=MjmL9X2ME91tFe1OWf-7f41UpYn__fyCB8qj244W59g,28305
27
+ elabapi_python/api/items_types__resources_templates_api.py,sha256=5Iw5rLsCME1RQMMCy7rNOnRqVxYbpg-6Cij2bI5jciQ,26912
28
28
  elabapi_python/api/links_to_compounds_api.py,sha256=KC0C0XQIEe2fCVWHKMBBMgbURaajmnS6h44p5d7rBpk,14892
29
29
  elabapi_python/api/links_to_experiments_api.py,sha256=OKvrEgyyhBwAk-LtzzS0gewOdST9e5K6EWSztd8KOX4,14996
30
30
  elabapi_python/api/links_to_items_api.py,sha256=4mKYSEpIhmJmNW2S1evXC0W42kwqSEcvcW7SRFFtN4k,14748
@@ -37,7 +37,7 @@ elabapi_python/api/steps_api.py,sha256=CvGh5dVps-EBM8x73deY7chzIjrihtTKx3bUV6Dkt
37
37
  elabapi_python/api/storage_units_api.py,sha256=2-FdX0DFY5ftlkncZ2IgLV3fXBo-lJkCgNJmCBhflB8,21165
38
38
  elabapi_python/api/tags_api.py,sha256=3BHt-m7jQudLgKMSS7QauhbIlwJcZavUT-j65mmSOdA,22556
39
39
  elabapi_python/api/team_tags_api.py,sha256=lCO9SDy_BVIRNiPI2n_p0XD_Lz-Zz9EjRfMHFlvTtHM,20145
40
- elabapi_python/api/teamgroups_api.py,sha256=6z1tvWwmHlSlMfyXKqmnw4Q5dDiJMm7_UkNNYk9pMGI,20433
40
+ elabapi_python/api/teamgroups_api.py,sha256=oRjEtFVnk1mPcK8iVbxCZwmLvU4y8oJSYuHzfmmsZDs,20448
41
41
  elabapi_python/api/teams_api.py,sha256=WVvCr3SMqe1Hsk5D4skaxCA_mgYk12rLAoRRIBH8qAE,14303
42
42
  elabapi_python/api/todolist_api.py,sha256=HUjLdSBsdCDEOckBttPnyEsat9tH0WLOuROoW5uwQvg,17773
43
43
  elabapi_python/api/unfinished_steps_api.py,sha256=Zxp0VGbn5VwTjZjoGjD0GDh49XD2WoQV26d1Y4nGM1s,4153
@@ -339,7 +339,7 @@ test/test_users_body.py,sha256=fcBZe3SisFS-_Td6Voqu3GjCyIa60OWc81yFus96vIc,902
339
339
  test/test_users_full.py,sha256=oeXb_-CAYLZ8yk9amtYUSxBw8cJa_vPPkyMLlmKFOg4,902
340
340
  test/test_users_full_teams.py,sha256=Q2hHinkmZ5Qhi_l4UAZlQ6yF4Ly3d9rgAhm_aZIhPUs,944
341
341
  test/test_users_id_body.py,sha256=SUH_AGVzw_8sPRBV3giq87oJhxgd7j00ZtoybuRxl-g,920
342
- elabapi_python-5.6.0.dist-info/METADATA,sha256=ymLnbPAc2gNGVfjVr7cQV-3CRB4XTO7EePi42D842-8,546
343
- elabapi_python-5.6.0.dist-info/WHEEL,sha256=K260EYznzXsJYBQGqmI8VTxEdiZYNvDZwW9cBh9-_MA,91
344
- elabapi_python-5.6.0.dist-info/top_level.txt,sha256=BPZOy4tB7V5mJMvvpw5nc6Ou5L4KByC5IWWyNYD3fME,20
345
- elabapi_python-5.6.0.dist-info/RECORD,,
342
+ elabapi_python-5.6.1.dist-info/METADATA,sha256=O_MaA2vJBDAQBvzr0rMlyNeVapwDk7uuR2IRERMftcg,546
343
+ elabapi_python-5.6.1.dist-info/WHEEL,sha256=K260EYznzXsJYBQGqmI8VTxEdiZYNvDZwW9cBh9-_MA,91
344
+ elabapi_python-5.6.1.dist-info/top_level.txt,sha256=BPZOy4tB7V5mJMvvpw5nc6Ou5L4KByC5IWWyNYD3fME,20
345
+ elabapi_python-5.6.1.dist-info/RECORD,,