agilicus 1.280.0__py3-none-any.whl → 1.281.0__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.
@@ -1099,6 +1099,7 @@ class MessagesApi(object):
1099
1099
  limit (int): limit the number of rows in the response. [optional] if omitted the server will use the default value of 500
1100
1100
  message_type (str): optional argument for restricting returned inbox items to only those of a specific type. [optional]
1101
1101
  message_class (str): optional argument for restricting returned inbox items to only those of a specific class. [optional]
1102
+ message_class_list ([str]): optional argument for restricting returned inbox items to only those of a list of specific classes. [optional]
1102
1103
  page_at_id (str): Pagination based query with the id as the key. To get the initial entries supply an empty string. On subsequent requests, supply the `page_at_id` field from the list response. . [optional]
1103
1104
  page_at_received_date (datetime, none_type): Pagination based query with the date as the key. To get the initial entries supply null. . [optional]
1104
1105
  unread (bool): Search for items that have or have not been read. . [optional]
@@ -1171,6 +1172,7 @@ class MessagesApi(object):
1171
1172
  'limit',
1172
1173
  'message_type',
1173
1174
  'message_class',
1175
+ 'message_class_list',
1174
1176
  'page_at_id',
1175
1177
  'page_at_received_date',
1176
1178
  'unread',
@@ -1210,6 +1212,8 @@ class MessagesApi(object):
1210
1212
  (str,),
1211
1213
  'message_class':
1212
1214
  (str,),
1215
+ 'message_class_list':
1216
+ ([str],),
1213
1217
  'page_at_id':
1214
1218
  (str,),
1215
1219
  'page_at_received_date':
@@ -1227,6 +1231,7 @@ class MessagesApi(object):
1227
1231
  'limit': 'limit',
1228
1232
  'message_type': 'message_type',
1229
1233
  'message_class': 'message_class',
1234
+ 'message_class_list': 'message_class_list',
1230
1235
  'page_at_id': 'page_at_id',
1231
1236
  'page_at_received_date': 'page_at_received_date',
1232
1237
  'unread': 'unread',
@@ -1239,6 +1244,7 @@ class MessagesApi(object):
1239
1244
  'limit': 'query',
1240
1245
  'message_type': 'query',
1241
1246
  'message_class': 'query',
1247
+ 'message_class_list': 'query',
1242
1248
  'page_at_id': 'query',
1243
1249
  'page_at_received_date': 'query',
1244
1250
  'unread': 'query',
@@ -1246,6 +1252,7 @@ class MessagesApi(object):
1246
1252
  'tag': 'query',
1247
1253
  },
1248
1254
  'collection_format_map': {
1255
+ 'message_class_list': 'multi',
1249
1256
  }
1250
1257
  },
1251
1258
  headers_map={
@@ -77,7 +77,7 @@ class ApiClient(object):
77
77
  self.default_headers[header_name] = header_value
78
78
  self.cookie = cookie
79
79
  # Set default User-Agent.
80
- self.user_agent = 'OpenAPI-Generator/1.280.0/python'
80
+ self.user_agent = 'OpenAPI-Generator/1.281.0/python'
81
81
 
82
82
  def __enter__(self):
83
83
  return self
@@ -387,7 +387,7 @@ class Configuration(object):
387
387
  "OS: {env}\n"\
388
388
  "Python Version: {pyversion}\n"\
389
389
  "Version of the API: 2025.02.24\n"\
390
- "SDK Package Version: 1.280.0".\
390
+ "SDK Package Version: 1.281.0".\
391
391
  format(env=sys.platform, pyversion=sys.version)
392
392
 
393
393
  def get_host_settings(self):
@@ -810,6 +810,9 @@ with agilicus_api.ApiClient(configuration) as api_client:
810
810
  limit = 1 # int | limit the number of rows in the response (optional) if omitted the server will use the default value of 500
811
811
  message_type = "message_type_example" # str | optional argument for restricting returned inbox items to only those of a specific type (optional)
812
812
  message_class = "message_class_example" # str | optional argument for restricting returned inbox items to only those of a specific class (optional)
813
+ message_class_list = [
814
+ "admin-portal",
815
+ ] # [str] | optional argument for restricting returned inbox items to only those of a list of specific classes (optional)
813
816
  page_at_id = "foo@example.com" # str | Pagination based query with the id as the key. To get the initial entries supply an empty string. On subsequent requests, supply the `page_at_id` field from the list response. (optional)
814
817
  page_at_received_date = dateutil_parser('2015-07-07T15:49:51.230+02:00') # datetime, none_type | Pagination based query with the date as the key. To get the initial entries supply null. (optional)
815
818
  unread = True # bool | Search for items that have or have not been read. (optional)
@@ -831,7 +834,7 @@ with agilicus_api.ApiClient(configuration) as api_client:
831
834
  # and optional values
832
835
  try:
833
836
  # Get a list of inbox items items and information about the inbox
834
- api_response = api_instance.list_inbox_items(user_id, org_id=org_id, limit=limit, message_type=message_type, message_class=message_class, page_at_id=page_at_id, page_at_received_date=page_at_received_date, unread=unread, expired=expired, tag=tag)
837
+ api_response = api_instance.list_inbox_items(user_id, org_id=org_id, limit=limit, message_type=message_type, message_class=message_class, message_class_list=message_class_list, page_at_id=page_at_id, page_at_received_date=page_at_received_date, unread=unread, expired=expired, tag=tag)
835
838
  pprint(api_response)
836
839
  except agilicus_api.ApiException as e:
837
840
  print("Exception when calling MessagesApi->list_inbox_items: %s\n" % e)
@@ -847,6 +850,7 @@ Name | Type | Description | Notes
847
850
  **limit** | **int**| limit the number of rows in the response | [optional] if omitted the server will use the default value of 500
848
851
  **message_type** | **str**| optional argument for restricting returned inbox items to only those of a specific type | [optional]
849
852
  **message_class** | **str**| optional argument for restricting returned inbox items to only those of a specific class | [optional]
853
+ **message_class_list** | **[str]**| optional argument for restricting returned inbox items to only those of a list of specific classes | [optional]
850
854
  **page_at_id** | **str**| Pagination based query with the id as the key. To get the initial entries supply an empty string. On subsequent requests, supply the `page_at_id` field from the list response. | [optional]
851
855
  **page_at_received_date** | **datetime, none_type**| Pagination based query with the date as the key. To get the initial entries supply null. | [optional]
852
856
  **unread** | **bool**| Search for items that have or have not been read. | [optional]
@@ -4,7 +4,7 @@ Agilicus is API-first. Modern software is controlled by other software, is open,
4
4
  The `agilicus_api` package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
5
5
 
6
6
  - API version: 2025.02.24
7
- - Package version: 1.280.0
7
+ - Package version: 1.281.0
8
8
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
9
9
  For more information, please visit [https://www.agilicus.com/api](https://www.agilicus.com/api)
10
10
 
agilicus/main.py CHANGED
@@ -4258,6 +4258,7 @@ def bulk_delete_messages(ctx, **kwargs):
4258
4258
  @click.option("--org-id", default=None)
4259
4259
  @click.option("--limit", type=int, default=500)
4260
4260
  @click.option("--message-class", default=None)
4261
+ @click.option("--message-class-list", multiple=True, default=None)
4261
4262
  @click.option("--message-type", default=None)
4262
4263
  @click.option("--expired", type=bool, default=None)
4263
4264
  @click.option("--unread", type=bool, default=None)
@@ -78,6 +78,7 @@ class BroadcastType(Enum):
78
78
  class MessageTarget(Enum):
79
79
  admin_portal = "agilicus-admin-portal"
80
80
  profile = "agilicus-profile"
81
+ all = "agilicus-all"
81
82
 
82
83
 
83
84
  @dataclass
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: agilicus
3
- Version: 1.280.0
3
+ Version: 1.281.0
4
4
  Summary: Agilicus SDK
5
5
  Home-page: https://www.agilicus.com/
6
6
  License: MIT
@@ -43,7 +43,7 @@ agilicus/agilicus_api/api/launchers_api.py,sha256=07ntl0RCKT1YgA2havajOyiQJc-IJ-
43
43
  agilicus/agilicus_api/api/launchers_api_mock.py,sha256=xTKffM5RAWW3ey1OK7nuC7YgV90HNu_LeTXfqjeWtuQ,1440
44
44
  agilicus/agilicus_api/api/lookups_api.py,sha256=wzCIMtoYvF6T3PfLShtx9ZB7VppAGJH8fvpTMz7dQzo,12666
45
45
  agilicus/agilicus_api/api/lookups_api_mock.py,sha256=QYAyrjg4xHsq4oLR4gKfK7JbP5jQgeG12T9gJgXqErs,647
46
- agilicus/agilicus_api/api/messages_api.py,sha256=T7fTzgHEvZpKA33sc4Ex2DdDkdhaMIuRFomGVkY5uOg,78154
46
+ agilicus/agilicus_api/api/messages_api.py,sha256=a01IR6sOJr7UYSxOG-yJ7bnvf144lLP2LpAM6WX0h-c,78617
47
47
  agilicus/agilicus_api/api/messages_api_mock.py,sha256=35cBk577sq1Wv_mQVdUYQqXVnTIN6IBEa2V_oW0LpsE,4138
48
48
  agilicus/agilicus_api/api/metrics_api.py,sha256=Ya2eym-m_CeRekLfpPbn3jczfiHIxredO6_tQ201GRY,21384
49
49
  agilicus/agilicus_api/api/metrics_api_mock.py,sha256=Y-STdFeQXVL5JGfF_Gta0S3ibDkz9aaJdISFW4Gve_M,631
@@ -71,9 +71,9 @@ agilicus/agilicus_api/api/users_api.py,sha256=0Ll7tDnY_Mzbb0oSq4uZa8QJKFe6Dm7vrj
71
71
  agilicus/agilicus_api/api/users_api_mock.py,sha256=vS-a5l0p3arW8QEKjqZ4_I31XG4T-m6G6dIwyuMIA2w,16824
72
72
  agilicus/agilicus_api/api/whoami_api.py,sha256=sfG-FbB-UEkD8X5IpTXkrEYIYHcry7AyNMselJFYejQ,7941
73
73
  agilicus/agilicus_api/api/whoami_api_mock.py,sha256=rlvZoWnMCqORMZBg7SOv6d3xp52kELdh6wXcCaIZ93w,346
74
- agilicus/agilicus_api/api_client.py,sha256=Bi5GgqjW_Pjybyv4qz5oCjko2t7z1DSGle2V_h-xP08,38845
74
+ agilicus/agilicus_api/api_client.py,sha256=EK4jNICZOQhAzWoiDsNug1WqCjIooTF_t2mn7lWE64I,38845
75
75
  agilicus/agilicus_api/apis/__init__.py,sha256=aJZD7x-umdSni6ZBr4XxzpH8pwtU9hA5LlCDxcqa1Q8,2224
76
- agilicus/agilicus_api/configuration.py,sha256=QKMQnMx_o3msrX7ShvpnU6vIRK6plff3m3T0CftAxzc,18447
76
+ agilicus/agilicus_api/configuration.py,sha256=RtP1FlMqBvC_J69aolNABnfDixTtW_rKCmyNlF5vJco,18447
77
77
  agilicus/agilicus_api/docs/APIKey.md,sha256=4cKuz4_l9HcEDnUrLwYbEnn9C2WoDayrjfrY1Ixgaf4,1747
78
78
  agilicus/agilicus_api/docs/APIKeyIntrospect.md,sha256=nJ-zkuFm3JMbWFDYYN_vYyQk1snGBtBvIxtCQxamhAU,1019
79
79
  agilicus/agilicus_api/docs/APIKeyIntrospectAuthorizationInfo.md,sha256=7RApOOLjvWQs5sw2jb25g7i3Kta1BiEY-s8VRXfppH8,725
@@ -591,7 +591,7 @@ agilicus/agilicus_api/docs/MessageSendResponseItem.md,sha256=UbZODPTN9Pl5tLUnwDK
591
591
  agilicus/agilicus_api/docs/MessageTag.md,sha256=UUMBuV4BXMW1C8mmDvFMQQfNa8es8LM3zkholvq-VzE,661
592
592
  agilicus/agilicus_api/docs/MessageTagName.md,sha256=UFIe-AScp2oDucAL0-aKUD1xzFNEXbIpdlnv1qwvBzo,535
593
593
  agilicus/agilicus_api/docs/MessageType.md,sha256=KEldinZXtjy_2pYl2Ld9LSV3y0rDJh5RhH8IrvG6qGA,676
594
- agilicus/agilicus_api/docs/MessagesApi.md,sha256=5CW1cflwmkyyG7bNQu4tAqaj2C2kqDMUY-VJgnBLQl4,48914
594
+ agilicus/agilicus_api/docs/MessagesApi.md,sha256=29s7xAANmVGfvYF2KjDyrg2LrGkozlX2_2RSa6MECqA,49279
595
595
  agilicus/agilicus_api/docs/MessagesBulkDeleteRequest.md,sha256=Osaxe7F115qSxYHzNY5Q21KhKAkj6IGpAkIKDkWL0UI,947
596
596
  agilicus/agilicus_api/docs/MessagesBulkDeleteResponse.md,sha256=JdZXum9CiTGklsXQxk8cTscS7BZO3gm1ySo7TU8RbZs,617
597
597
  agilicus/agilicus_api/docs/MetadataWithId.md,sha256=w8vVM_jJmLXGoMFS6yMurXMlPnNrxnmWV9Bx3QCF7B8,658
@@ -2595,7 +2595,7 @@ agilicus/agilicus_api/test/test_x509_root_certificate.py,sha256=LHuCrIy4RPmrN2JO
2595
2595
  agilicus/agilicus_api/test/test_x509_root_certificate_spec.py,sha256=KXnWBdg7xIH_ix4B64dtJgGvS5sv7STgjn46D4WZhTc,2832
2596
2596
  agilicus/agilicus_api/test/test_x509_root_certificate_status.py,sha256=48B10Clwb0r6gz0Ek43q8bmA38xlX9Cr6DXTVngWwG8,2846
2597
2597
  agilicus/agilicus_api/test/test_xss_settings.py,sha256=E8ET0HZIwUVzAcVtJt845oq306eqF_3XcvppeLKHeCQ,2746
2598
- agilicus/agilicus_api_README.md,sha256=GXetE2WXlWnd4waqWoC21iPistTzZ60FOprVCJ8gRTc,166605
2598
+ agilicus/agilicus_api_README.md,sha256=chPiXlij_ZO-ZRFC8o4ZH3Fy4zcKgQN_OJfuk83O_ec,166605
2599
2599
  agilicus/aliases.ini,sha256=MxqiVo2f2xdUDVF1YDkNW36AIqN8hrYjlTVfraEUZXY,455
2600
2600
  agilicus/amq.py,sha256=yxi-YTbJPVl10s78Hlr1dmrQR63iaSIoROGVILzFPmE,1775
2601
2601
  agilicus/apps.py,sha256=Mdc_pRXyfa-IvIFH7gNbx0Ob64gUHggZyeSyLUDpjMs,54048
@@ -2647,9 +2647,9 @@ agilicus/labels/labels_main.py,sha256=ptJ34mf-iVaf8ezf3RWLcpeP2O0ntezS4tqJ0ks0el
2647
2647
  agilicus/launchers.py,sha256=r4nctnVtfP-Ho_HXEfAiMaMqJI0u7pbieHSS3Vd0QBE,11361
2648
2648
  agilicus/logs.py,sha256=tS8c_sdre1Dncrl59GVGQ0L3d2jtwlVjvIMl3SHJraY,766
2649
2649
  agilicus/lookups.py,sha256=MNmNsKpP7Fq_poLAnL9xo_iptFilKM9ziGLyIe8VKaw,669
2650
- agilicus/main.py,sha256=QD8Pf3b7nhIolQO6V9TJ-Uv_yc6Wrbs6QMaS81EEVGA,281442
2650
+ agilicus/main.py,sha256=n8MnrhhoVud8su9U_6q1TjU0pWYq6yhuT-NVbMQKy3A,281509
2651
2651
  agilicus/messages/__init__.py,sha256=cVqfaKUndO-AYfppkdFICM5WvYFFB1hRjXihFWmiGPQ,174
2652
- agilicus/messages/messages.py,sha256=pmCfeJfsRRvNKPxRQ_BKaEJUkXW8VPw6Lw_HRwoDKpY,9169
2652
+ agilicus/messages/messages.py,sha256=BdtlfQE512r3ka3TLxMnYspofgWThEa3usPuQquMSho,9194
2653
2653
  agilicus/messages/messages_main.py,sha256=A0xucYwwUZFIuUc0bAyAqVwofErakmyawq5bwhZKcOU,1598
2654
2654
  agilicus/metrics.py,sha256=v4rwpvqDzeNG5GKNoZ7t34X5qUgly5IW2s-kXlS2vQM,2315
2655
2655
  agilicus/orgs.py,sha256=74nzgUwy25AjgIXK5mmX9ynWhp9BQlAYO4J4T6qL94Q,16035
@@ -2692,8 +2692,8 @@ agilicus/trusted_certs/trusted_certs_main.py,sha256=6dHHWXvNIcUa_nA9ptigL4Vibe4n
2692
2692
  agilicus/users.py,sha256=tUEWvqQZL-TuW9TeUwxGTMCHtih1o9xtTrEp23ng4n8,38614
2693
2693
  agilicus/version.py,sha256=G9OFdL1v_4dLDfk6I6taDNypM5bbO-JHAwilsu9LYgg,23
2694
2694
  agilicus/whoami.py,sha256=kqghtWMgZOd2rhKmfguDwCTm6A3gNS8Kj-S2IBxBtl0,206
2695
- agilicus-1.280.0.dist-info/LICENSE.txt,sha256=Zq4tqiCroC2CVrBB_PWjapRdvpae23nljdiaSkOzUho,1061
2696
- agilicus-1.280.0.dist-info/METADATA,sha256=3BvrfbeZ1HsqeKTQCX5qsU2d6VdAbrODKz6Tyz9X_MQ,3909
2697
- agilicus-1.280.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
2698
- agilicus-1.280.0.dist-info/entry_points.txt,sha256=a66hGozzLkHu0IewFzIMbSAhMTNTddUaA2T3_16Gb_s,51
2699
- agilicus-1.280.0.dist-info/RECORD,,
2695
+ agilicus-1.281.0.dist-info/LICENSE.txt,sha256=Zq4tqiCroC2CVrBB_PWjapRdvpae23nljdiaSkOzUho,1061
2696
+ agilicus-1.281.0.dist-info/METADATA,sha256=H20RMOn_Oc-Qtb6asl3EUn2vutAcmbkyqxXS8I9xtPw,3909
2697
+ agilicus-1.281.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
2698
+ agilicus-1.281.0.dist-info/entry_points.txt,sha256=a66hGozzLkHu0IewFzIMbSAhMTNTddUaA2T3_16Gb_s,51
2699
+ agilicus-1.281.0.dist-info/RECORD,,