mypy-boto3-connectcases 1.34.2__py3-none-any.whl → 1.34.24__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.
@@ -25,5 +25,4 @@ from .paginator import SearchCasesPaginator, SearchRelatedItemsPaginator
25
25
 
26
26
  Client = ConnectCasesClient
27
27
 
28
-
29
28
  __all__ = ("Client", "ConnectCasesClient", "SearchCasesPaginator", "SearchRelatedItemsPaginator")
@@ -10,8 +10,8 @@ def print_info() -> None:
10
10
  Print package info to stdout.
11
11
  """
12
12
  print(
13
- "Type annotations for boto3.ConnectCases 1.34.2\nVersion: 1.34.2\nBuilder version:"
14
- " 7.21.0\nDocs: "
13
+ "Type annotations for boto3.ConnectCases 1.34.24\nVersion: 1.34.24\nBuilder"
14
+ " version: 7.23.1\nDocs: "
15
15
  " https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases//\nBoto3 docs: "
16
16
  " https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases\nOther"
17
17
  " services: https://pypi.org/project/boto3-stubs/\nChangelog: "
@@ -23,7 +23,7 @@ def print_version() -> None:
23
23
  """
24
24
  Print package version to stdout.
25
25
  """
26
- print("1.34.2")
26
+ print("1.34.24")
27
27
 
28
28
 
29
29
  def main() -> None:
@@ -36,6 +36,7 @@ from .type_defs import (
36
36
  FieldIdentifierTypeDef,
37
37
  FieldOptionTypeDef,
38
38
  FieldValueTypeDef,
39
+ GetCaseAuditEventsResponseTypeDef,
39
40
  GetCaseEventConfigurationResponseTypeDef,
40
41
  GetCaseResponseTypeDef,
41
42
  GetDomainResponseTypeDef,
@@ -64,7 +65,6 @@ if sys.version_info >= (3, 12):
64
65
  else:
65
66
  from typing_extensions import Literal
66
67
 
67
-
68
68
  __all__ = ("ConnectCasesClient",)
69
69
 
70
70
 
@@ -147,10 +147,11 @@ class ConnectCasesClient(BaseClient):
147
147
  domainId: str,
148
148
  fields: Sequence[FieldValueTypeDef],
149
149
  templateId: str,
150
- clientToken: str = ...
150
+ clientToken: str = ...,
151
+ performedBy: UserUnionTypeDef = ...,
151
152
  ) -> CreateCaseResponseTypeDef:
152
153
  """
153
- Creates a case in the specified Cases domain.
154
+ .
154
155
 
155
156
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.create_case)
156
157
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#create_case)
@@ -193,7 +194,7 @@ class ConnectCasesClient(BaseClient):
193
194
  content: RelatedItemInputContentTypeDef,
194
195
  domainId: str,
195
196
  type: RelatedItemTypeType,
196
- performedBy: UserUnionTypeDef = ...
197
+ performedBy: UserUnionTypeDef = ...,
197
198
  ) -> CreateRelatedItemResponseTypeDef:
198
199
  """
199
200
  Creates a related item (comments, tasks, and contacts) and associates it with a
@@ -211,7 +212,7 @@ class ConnectCasesClient(BaseClient):
211
212
  description: str = ...,
212
213
  layoutConfiguration: LayoutConfigurationTypeDef = ...,
213
214
  requiredFields: Sequence[RequiredFieldTypeDef] = ...,
214
- status: TemplateStatusType = ...
215
+ status: TemplateStatusType = ...,
215
216
  ) -> CreateTemplateResponseTypeDef:
216
217
  """
217
218
  Creates a template in the Cases domain.
@@ -248,7 +249,7 @@ class ConnectCasesClient(BaseClient):
248
249
  caseId: str,
249
250
  domainId: str,
250
251
  fields: Sequence[FieldIdentifierTypeDef],
251
- nextToken: str = ...
252
+ nextToken: str = ...,
252
253
  ) -> GetCaseResponseTypeDef:
253
254
  """
254
255
  Returns information about a specific case if it exists.
@@ -257,6 +258,16 @@ class ConnectCasesClient(BaseClient):
257
258
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#get_case)
258
259
  """
259
260
 
261
+ def get_case_audit_events(
262
+ self, *, caseId: str, domainId: str, maxResults: int = ..., nextToken: str = ...
263
+ ) -> GetCaseAuditEventsResponseTypeDef:
264
+ """
265
+ Returns the audit history about a specific case if it exists.
266
+
267
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.get_case_audit_events)
268
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#get_case_audit_events)
269
+ """
270
+
260
271
  def get_case_event_configuration(
261
272
  self, *, domainId: str
262
273
  ) -> GetCaseEventConfigurationResponseTypeDef:
@@ -318,7 +329,7 @@ class ConnectCasesClient(BaseClient):
318
329
  fieldId: str,
319
330
  maxResults: int = ...,
320
331
  nextToken: str = ...,
321
- values: Sequence[str] = ...
332
+ values: Sequence[str] = ...,
322
333
  ) -> ListFieldOptionsResponseTypeDef:
323
334
  """
324
335
  Lists all of the field options for a field identifier in the domain.
@@ -361,7 +372,7 @@ class ConnectCasesClient(BaseClient):
361
372
  domainId: str,
362
373
  maxResults: int = ...,
363
374
  nextToken: str = ...,
364
- status: Sequence[TemplateStatusType] = ...
375
+ status: Sequence[TemplateStatusType] = ...,
365
376
  ) -> ListTemplatesResponseTypeDef:
366
377
  """
367
378
  Lists all of the templates in a Cases domain.
@@ -389,7 +400,7 @@ class ConnectCasesClient(BaseClient):
389
400
  maxResults: int = ...,
390
401
  nextToken: str = ...,
391
402
  searchTerm: str = ...,
392
- sorts: Sequence[SortTypeDef] = ...
403
+ sorts: Sequence[SortTypeDef] = ...,
393
404
  ) -> SearchCasesResponseTypeDef:
394
405
  """
395
406
  Searches for cases within their associated Cases domain.
@@ -405,7 +416,7 @@ class ConnectCasesClient(BaseClient):
405
416
  domainId: str,
406
417
  filters: Sequence[RelatedItemTypeFilterTypeDef] = ...,
407
418
  maxResults: int = ...,
408
- nextToken: str = ...
419
+ nextToken: str = ...,
409
420
  ) -> SearchRelatedItemsResponseTypeDef:
410
421
  """
411
422
  Searches for related items that are associated with a case.
@@ -431,10 +442,15 @@ class ConnectCasesClient(BaseClient):
431
442
  """
432
443
 
433
444
  def update_case(
434
- self, *, caseId: str, domainId: str, fields: Sequence[FieldValueTypeDef]
445
+ self,
446
+ *,
447
+ caseId: str,
448
+ domainId: str,
449
+ fields: Sequence[FieldValueTypeDef],
450
+ performedBy: UserUnionTypeDef = ...,
435
451
  ) -> Dict[str, Any]:
436
452
  """
437
- Updates the values of fields on a case.
453
+ .
438
454
 
439
455
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.update_case)
440
456
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#update_case)
@@ -469,7 +485,7 @@ class ConnectCasesClient(BaseClient):
469
485
  layoutConfiguration: LayoutConfigurationTypeDef = ...,
470
486
  name: str = ...,
471
487
  requiredFields: Sequence[RequiredFieldTypeDef] = ...,
472
- status: TemplateStatusType = ...
488
+ status: TemplateStatusType = ...,
473
489
  ) -> Dict[str, Any]:
474
490
  """
475
491
  Updates the attributes of an existing template.
@@ -36,6 +36,7 @@ from .type_defs import (
36
36
  FieldIdentifierTypeDef,
37
37
  FieldOptionTypeDef,
38
38
  FieldValueTypeDef,
39
+ GetCaseAuditEventsResponseTypeDef,
39
40
  GetCaseEventConfigurationResponseTypeDef,
40
41
  GetCaseResponseTypeDef,
41
42
  GetDomainResponseTypeDef,
@@ -143,10 +144,11 @@ class ConnectCasesClient(BaseClient):
143
144
  domainId: str,
144
145
  fields: Sequence[FieldValueTypeDef],
145
146
  templateId: str,
146
- clientToken: str = ...
147
+ clientToken: str = ...,
148
+ performedBy: UserUnionTypeDef = ...,
147
149
  ) -> CreateCaseResponseTypeDef:
148
150
  """
149
- Creates a case in the specified Cases domain.
151
+ .
150
152
 
151
153
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.create_case)
152
154
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#create_case)
@@ -189,7 +191,7 @@ class ConnectCasesClient(BaseClient):
189
191
  content: RelatedItemInputContentTypeDef,
190
192
  domainId: str,
191
193
  type: RelatedItemTypeType,
192
- performedBy: UserUnionTypeDef = ...
194
+ performedBy: UserUnionTypeDef = ...,
193
195
  ) -> CreateRelatedItemResponseTypeDef:
194
196
  """
195
197
  Creates a related item (comments, tasks, and contacts) and associates it with a
@@ -207,7 +209,7 @@ class ConnectCasesClient(BaseClient):
207
209
  description: str = ...,
208
210
  layoutConfiguration: LayoutConfigurationTypeDef = ...,
209
211
  requiredFields: Sequence[RequiredFieldTypeDef] = ...,
210
- status: TemplateStatusType = ...
212
+ status: TemplateStatusType = ...,
211
213
  ) -> CreateTemplateResponseTypeDef:
212
214
  """
213
215
  Creates a template in the Cases domain.
@@ -244,7 +246,7 @@ class ConnectCasesClient(BaseClient):
244
246
  caseId: str,
245
247
  domainId: str,
246
248
  fields: Sequence[FieldIdentifierTypeDef],
247
- nextToken: str = ...
249
+ nextToken: str = ...,
248
250
  ) -> GetCaseResponseTypeDef:
249
251
  """
250
252
  Returns information about a specific case if it exists.
@@ -253,6 +255,16 @@ class ConnectCasesClient(BaseClient):
253
255
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#get_case)
254
256
  """
255
257
 
258
+ def get_case_audit_events(
259
+ self, *, caseId: str, domainId: str, maxResults: int = ..., nextToken: str = ...
260
+ ) -> GetCaseAuditEventsResponseTypeDef:
261
+ """
262
+ Returns the audit history about a specific case if it exists.
263
+
264
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.get_case_audit_events)
265
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#get_case_audit_events)
266
+ """
267
+
256
268
  def get_case_event_configuration(
257
269
  self, *, domainId: str
258
270
  ) -> GetCaseEventConfigurationResponseTypeDef:
@@ -314,7 +326,7 @@ class ConnectCasesClient(BaseClient):
314
326
  fieldId: str,
315
327
  maxResults: int = ...,
316
328
  nextToken: str = ...,
317
- values: Sequence[str] = ...
329
+ values: Sequence[str] = ...,
318
330
  ) -> ListFieldOptionsResponseTypeDef:
319
331
  """
320
332
  Lists all of the field options for a field identifier in the domain.
@@ -357,7 +369,7 @@ class ConnectCasesClient(BaseClient):
357
369
  domainId: str,
358
370
  maxResults: int = ...,
359
371
  nextToken: str = ...,
360
- status: Sequence[TemplateStatusType] = ...
372
+ status: Sequence[TemplateStatusType] = ...,
361
373
  ) -> ListTemplatesResponseTypeDef:
362
374
  """
363
375
  Lists all of the templates in a Cases domain.
@@ -385,7 +397,7 @@ class ConnectCasesClient(BaseClient):
385
397
  maxResults: int = ...,
386
398
  nextToken: str = ...,
387
399
  searchTerm: str = ...,
388
- sorts: Sequence[SortTypeDef] = ...
400
+ sorts: Sequence[SortTypeDef] = ...,
389
401
  ) -> SearchCasesResponseTypeDef:
390
402
  """
391
403
  Searches for cases within their associated Cases domain.
@@ -401,7 +413,7 @@ class ConnectCasesClient(BaseClient):
401
413
  domainId: str,
402
414
  filters: Sequence[RelatedItemTypeFilterTypeDef] = ...,
403
415
  maxResults: int = ...,
404
- nextToken: str = ...
416
+ nextToken: str = ...,
405
417
  ) -> SearchRelatedItemsResponseTypeDef:
406
418
  """
407
419
  Searches for related items that are associated with a case.
@@ -427,10 +439,15 @@ class ConnectCasesClient(BaseClient):
427
439
  """
428
440
 
429
441
  def update_case(
430
- self, *, caseId: str, domainId: str, fields: Sequence[FieldValueTypeDef]
442
+ self,
443
+ *,
444
+ caseId: str,
445
+ domainId: str,
446
+ fields: Sequence[FieldValueTypeDef],
447
+ performedBy: UserUnionTypeDef = ...,
431
448
  ) -> Dict[str, Any]:
432
449
  """
433
- Updates the values of fields on a case.
450
+ .
434
451
 
435
452
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.update_case)
436
453
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#update_case)
@@ -465,7 +482,7 @@ class ConnectCasesClient(BaseClient):
465
482
  layoutConfiguration: LayoutConfigurationTypeDef = ...,
466
483
  name: str = ...,
467
484
  requiredFields: Sequence[RequiredFieldTypeDef] = ...,
468
- status: TemplateStatusType = ...
485
+ status: TemplateStatusType = ...,
469
486
  ) -> Dict[str, Any]:
470
487
  """
471
488
  Updates the attributes of an existing template.
@@ -6,9 +6,9 @@ Type annotations for connectcases service literal definitions.
6
6
  Usage::
7
7
 
8
8
  ```python
9
- from mypy_boto3_connectcases.literals import CommentBodyTextTypeType
9
+ from mypy_boto3_connectcases.literals import AuditEventTypeType
10
10
 
11
- data: CommentBodyTextTypeType = "Text/Plain"
11
+ data: AuditEventTypeType = "Case.Created"
12
12
  ```
13
13
  """
14
14
 
@@ -19,8 +19,8 @@ if sys.version_info >= (3, 12):
19
19
  else:
20
20
  from typing_extensions import Literal
21
21
 
22
-
23
22
  __all__ = (
23
+ "AuditEventTypeType",
24
24
  "CommentBodyTextTypeType",
25
25
  "DomainStatusType",
26
26
  "FieldNamespaceType",
@@ -37,11 +37,11 @@ __all__ = (
37
37
  "RegionName",
38
38
  )
39
39
 
40
-
40
+ AuditEventTypeType = Literal["Case.Created", "Case.Updated", "RelatedItem.Created"]
41
41
  CommentBodyTextTypeType = Literal["Text/Plain"]
42
42
  DomainStatusType = Literal["Active", "CreationFailed", "CreationInProgress"]
43
43
  FieldNamespaceType = Literal["Custom", "System"]
44
- FieldTypeType = Literal["Boolean", "DateTime", "Number", "SingleSelect", "Text", "Url"]
44
+ FieldTypeType = Literal["Boolean", "DateTime", "Number", "SingleSelect", "Text", "Url", "User"]
45
45
  OrderType = Literal["Asc", "Desc"]
46
46
  RelatedItemTypeType = Literal["Comment", "Contact"]
47
47
  SearchCasesPaginatorName = Literal["search_cases"]
@@ -299,6 +299,7 @@ ServiceName = Literal[
299
299
  "neptunedata",
300
300
  "network-firewall",
301
301
  "networkmanager",
302
+ "networkmonitor",
302
303
  "nimble",
303
304
  "oam",
304
305
  "omics",
@@ -396,6 +397,7 @@ ServiceName = Literal[
396
397
  "stepfunctions",
397
398
  "storagegateway",
398
399
  "sts",
400
+ "supplychain",
399
401
  "support",
400
402
  "support-app",
401
403
  "swf",
@@ -6,9 +6,9 @@ Type annotations for connectcases service literal definitions.
6
6
  Usage::
7
7
 
8
8
  ```python
9
- from mypy_boto3_connectcases.literals import CommentBodyTextTypeType
9
+ from mypy_boto3_connectcases.literals import AuditEventTypeType
10
10
 
11
- data: CommentBodyTextTypeType = "Text/Plain"
11
+ data: AuditEventTypeType = "Case.Created"
12
12
  ```
13
13
  """
14
14
 
@@ -20,6 +20,7 @@ else:
20
20
  from typing_extensions import Literal
21
21
 
22
22
  __all__ = (
23
+ "AuditEventTypeType",
23
24
  "CommentBodyTextTypeType",
24
25
  "DomainStatusType",
25
26
  "FieldNamespaceType",
@@ -36,10 +37,11 @@ __all__ = (
36
37
  "RegionName",
37
38
  )
38
39
 
40
+ AuditEventTypeType = Literal["Case.Created", "Case.Updated", "RelatedItem.Created"]
39
41
  CommentBodyTextTypeType = Literal["Text/Plain"]
40
42
  DomainStatusType = Literal["Active", "CreationFailed", "CreationInProgress"]
41
43
  FieldNamespaceType = Literal["Custom", "System"]
42
- FieldTypeType = Literal["Boolean", "DateTime", "Number", "SingleSelect", "Text", "Url"]
44
+ FieldTypeType = Literal["Boolean", "DateTime", "Number", "SingleSelect", "Text", "Url", "User"]
43
45
  OrderType = Literal["Asc", "Desc"]
44
46
  RelatedItemTypeType = Literal["Comment", "Contact"]
45
47
  SearchCasesPaginatorName = Literal["search_cases"]
@@ -297,6 +299,7 @@ ServiceName = Literal[
297
299
  "neptunedata",
298
300
  "network-firewall",
299
301
  "networkmanager",
302
+ "networkmonitor",
300
303
  "nimble",
301
304
  "oam",
302
305
  "omics",
@@ -394,6 +397,7 @@ ServiceName = Literal[
394
397
  "stepfunctions",
395
398
  "storagegateway",
396
399
  "sts",
400
+ "supplychain",
397
401
  "support",
398
402
  "support-app",
399
403
  "swf",
@@ -38,7 +38,6 @@ from .type_defs import (
38
38
 
39
39
  __all__ = ("SearchCasesPaginator", "SearchRelatedItemsPaginator")
40
40
 
41
-
42
41
  _ItemTypeDef = TypeVar("_ItemTypeDef")
43
42
 
44
43
 
@@ -63,7 +62,7 @@ class SearchCasesPaginator(Paginator):
63
62
  filter: CaseFilterTypeDef = ...,
64
63
  searchTerm: str = ...,
65
64
  sorts: Sequence[SortTypeDef] = ...,
66
- PaginationConfig: PaginatorConfigTypeDef = ...
65
+ PaginationConfig: PaginatorConfigTypeDef = ...,
67
66
  ) -> _PageIterator[SearchCasesResponseTypeDef]:
68
67
  """
69
68
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Paginator.SearchCases.paginate)
@@ -83,7 +82,7 @@ class SearchRelatedItemsPaginator(Paginator):
83
82
  caseId: str,
84
83
  domainId: str,
85
84
  filters: Sequence[RelatedItemTypeFilterTypeDef] = ...,
86
- PaginationConfig: PaginatorConfigTypeDef = ...
85
+ PaginationConfig: PaginatorConfigTypeDef = ...,
87
86
  ) -> _PageIterator[SearchRelatedItemsResponseTypeDef]:
88
87
  """
89
88
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Paginator.SearchRelatedItems.paginate)
@@ -60,7 +60,7 @@ class SearchCasesPaginator(Paginator):
60
60
  filter: CaseFilterTypeDef = ...,
61
61
  searchTerm: str = ...,
62
62
  sorts: Sequence[SortTypeDef] = ...,
63
- PaginationConfig: PaginatorConfigTypeDef = ...
63
+ PaginationConfig: PaginatorConfigTypeDef = ...,
64
64
  ) -> _PageIterator[SearchCasesResponseTypeDef]:
65
65
  """
66
66
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Paginator.SearchCases.paginate)
@@ -79,7 +79,7 @@ class SearchRelatedItemsPaginator(Paginator):
79
79
  caseId: str,
80
80
  domainId: str,
81
81
  filters: Sequence[RelatedItemTypeFilterTypeDef] = ...,
82
- PaginationConfig: PaginatorConfigTypeDef = ...
82
+ PaginationConfig: PaginatorConfigTypeDef = ...,
83
83
  ) -> _PageIterator[SearchRelatedItemsResponseTypeDef]:
84
84
  """
85
85
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Paginator.SearchRelatedItems.paginate)
@@ -6,9 +6,9 @@ Type annotations for connectcases service type definitions.
6
6
  Usage::
7
7
 
8
8
  ```python
9
- from mypy_boto3_connectcases.type_defs import FieldIdentifierTypeDef
9
+ from mypy_boto3_connectcases.type_defs import AuditEventFieldValueUnionTypeDef
10
10
 
11
- data: FieldIdentifierTypeDef = ...
11
+ data: AuditEventFieldValueUnionTypeDef = ...
12
12
  ```
13
13
  """
14
14
 
@@ -17,6 +17,7 @@ from datetime import datetime
17
17
  from typing import Any, Dict, List, Mapping, Sequence
18
18
 
19
19
  from .literals import (
20
+ AuditEventTypeType,
20
21
  DomainStatusType,
21
22
  FieldNamespaceType,
22
23
  FieldTypeType,
@@ -38,8 +39,9 @@ if sys.version_info >= (3, 12):
38
39
  else:
39
40
  from typing_extensions import TypedDict
40
41
 
41
-
42
42
  __all__ = (
43
+ "AuditEventFieldValueUnionTypeDef",
44
+ "UserUnionTypeDef",
43
45
  "FieldIdentifierTypeDef",
44
46
  "FieldErrorTypeDef",
45
47
  "GetFieldResponseTypeDef",
@@ -53,7 +55,6 @@ __all__ = (
53
55
  "ContactTypeDef",
54
56
  "CreateDomainRequestRequestTypeDef",
55
57
  "CreateFieldRequestRequestTypeDef",
56
- "UserUnionTypeDef",
57
58
  "LayoutConfigurationTypeDef",
58
59
  "RequiredFieldTypeDef",
59
60
  "DeleteDomainRequestRequestTypeDef",
@@ -62,6 +63,7 @@ __all__ = (
62
63
  "FieldItemTypeDef",
63
64
  "FieldSummaryTypeDef",
64
65
  "FieldValueUnionTypeDef",
66
+ "GetCaseAuditEventsRequestRequestTypeDef",
65
67
  "GetCaseEventConfigurationRequestRequestTypeDef",
66
68
  "GetDomainRequestRequestTypeDef",
67
69
  "GetLayoutRequestRequestTypeDef",
@@ -80,6 +82,8 @@ __all__ = (
80
82
  "TagResourceRequestRequestTypeDef",
81
83
  "UntagResourceRequestRequestTypeDef",
82
84
  "UpdateFieldRequestRequestTypeDef",
85
+ "AuditEventFieldTypeDef",
86
+ "AuditEventPerformedByTypeDef",
83
87
  "BatchGetFieldRequestRequestTypeDef",
84
88
  "CaseEventIncludedDataTypeDef",
85
89
  "GetCaseRequestRequestTypeDef",
@@ -110,6 +114,7 @@ __all__ = (
110
114
  "ListLayoutsResponseTypeDef",
111
115
  "ListTemplatesResponseTypeDef",
112
116
  "SearchCasesRequestRequestTypeDef",
117
+ "AuditEventTypeDef",
113
118
  "EventIncludedDataTypeDef",
114
119
  "SearchRelatedItemsResponseItemTypeDef",
115
120
  "SearchRelatedItemsRequestRequestTypeDef",
@@ -121,6 +126,7 @@ __all__ = (
121
126
  "GetCaseResponseTypeDef",
122
127
  "SearchCasesResponseItemTypeDef",
123
128
  "UpdateCaseRequestRequestTypeDef",
129
+ "GetCaseAuditEventsResponseTypeDef",
124
130
  "EventBridgeConfigurationTypeDef",
125
131
  "SearchRelatedItemsResponseTypeDef",
126
132
  "LayoutSectionsTypeDef",
@@ -136,6 +142,22 @@ __all__ = (
136
142
  "UpdateLayoutRequestRequestTypeDef",
137
143
  )
138
144
 
145
+ AuditEventFieldValueUnionTypeDef = TypedDict(
146
+ "AuditEventFieldValueUnionTypeDef",
147
+ {
148
+ "booleanValue": NotRequired[bool],
149
+ "doubleValue": NotRequired[float],
150
+ "emptyValue": NotRequired[Dict[str, Any]],
151
+ "stringValue": NotRequired[str],
152
+ "userArnValue": NotRequired[str],
153
+ },
154
+ )
155
+ UserUnionTypeDef = TypedDict(
156
+ "UserUnionTypeDef",
157
+ {
158
+ "userArn": NotRequired[str],
159
+ },
160
+ )
139
161
  FieldIdentifierTypeDef = TypedDict(
140
162
  "FieldIdentifierTypeDef",
141
163
  {
@@ -238,12 +260,6 @@ CreateFieldRequestRequestTypeDef = TypedDict(
238
260
  "description": NotRequired[str],
239
261
  },
240
262
  )
241
- UserUnionTypeDef = TypedDict(
242
- "UserUnionTypeDef",
243
- {
244
- "userArn": NotRequired[str],
245
- },
246
- )
247
263
  LayoutConfigurationTypeDef = TypedDict(
248
264
  "LayoutConfigurationTypeDef",
249
265
  {
@@ -299,6 +315,16 @@ FieldValueUnionTypeDef = TypedDict(
299
315
  "doubleValue": NotRequired[float],
300
316
  "emptyValue": NotRequired[Mapping[str, Any]],
301
317
  "stringValue": NotRequired[str],
318
+ "userArnValue": NotRequired[str],
319
+ },
320
+ )
321
+ GetCaseAuditEventsRequestRequestTypeDef = TypedDict(
322
+ "GetCaseAuditEventsRequestRequestTypeDef",
323
+ {
324
+ "caseId": str,
325
+ "domainId": str,
326
+ "maxResults": NotRequired[int],
327
+ "nextToken": NotRequired[str],
302
328
  },
303
329
  )
304
330
  GetCaseEventConfigurationRequestRequestTypeDef = TypedDict(
@@ -439,6 +465,21 @@ UpdateFieldRequestRequestTypeDef = TypedDict(
439
465
  "name": NotRequired[str],
440
466
  },
441
467
  )
468
+ AuditEventFieldTypeDef = TypedDict(
469
+ "AuditEventFieldTypeDef",
470
+ {
471
+ "eventFieldId": str,
472
+ "newValue": AuditEventFieldValueUnionTypeDef,
473
+ "oldValue": NotRequired[AuditEventFieldValueUnionTypeDef],
474
+ },
475
+ )
476
+ AuditEventPerformedByTypeDef = TypedDict(
477
+ "AuditEventPerformedByTypeDef",
478
+ {
479
+ "iamPrincipalArn": str,
480
+ "user": NotRequired[UserUnionTypeDef],
481
+ },
482
+ )
442
483
  BatchGetFieldRequestRequestTypeDef = TypedDict(
443
484
  "BatchGetFieldRequestRequestTypeDef",
444
485
  {
@@ -690,6 +731,17 @@ SearchCasesRequestRequestTypeDef = TypedDict(
690
731
  "sorts": NotRequired[Sequence[SortTypeDef]],
691
732
  },
692
733
  )
734
+ AuditEventTypeDef = TypedDict(
735
+ "AuditEventTypeDef",
736
+ {
737
+ "eventId": str,
738
+ "fields": List[AuditEventFieldTypeDef],
739
+ "performedTime": datetime,
740
+ "type": AuditEventTypeType,
741
+ "performedBy": NotRequired[AuditEventPerformedByTypeDef],
742
+ "relatedItemType": NotRequired[RelatedItemTypeType],
743
+ },
744
+ )
693
745
  EventIncludedDataTypeDef = TypedDict(
694
746
  "EventIncludedDataTypeDef",
695
747
  {
@@ -750,6 +802,7 @@ CreateCaseRequestRequestTypeDef = TypedDict(
750
802
  "fields": Sequence[FieldValueTypeDef],
751
803
  "templateId": str,
752
804
  "clientToken": NotRequired[str],
805
+ "performedBy": NotRequired[UserUnionTypeDef],
753
806
  },
754
807
  )
755
808
  FieldFilterTypeDef = TypedDict(
@@ -788,6 +841,15 @@ UpdateCaseRequestRequestTypeDef = TypedDict(
788
841
  "caseId": str,
789
842
  "domainId": str,
790
843
  "fields": Sequence[FieldValueTypeDef],
844
+ "performedBy": NotRequired[UserUnionTypeDef],
845
+ },
846
+ )
847
+ GetCaseAuditEventsResponseTypeDef = TypedDict(
848
+ "GetCaseAuditEventsResponseTypeDef",
849
+ {
850
+ "auditEvents": List[AuditEventTypeDef],
851
+ "nextToken": str,
852
+ "ResponseMetadata": ResponseMetadataTypeDef,
791
853
  },
792
854
  )
793
855
  EventBridgeConfigurationTypeDef = TypedDict(
@@ -6,9 +6,9 @@ Type annotations for connectcases service type definitions.
6
6
  Usage::
7
7
 
8
8
  ```python
9
- from mypy_boto3_connectcases.type_defs import FieldIdentifierTypeDef
9
+ from mypy_boto3_connectcases.type_defs import AuditEventFieldValueUnionTypeDef
10
10
 
11
- data: FieldIdentifierTypeDef = ...
11
+ data: AuditEventFieldValueUnionTypeDef = ...
12
12
  ```
13
13
  """
14
14
 
@@ -17,6 +17,7 @@ from datetime import datetime
17
17
  from typing import Any, Dict, List, Mapping, Sequence
18
18
 
19
19
  from .literals import (
20
+ AuditEventTypeType,
20
21
  DomainStatusType,
21
22
  FieldNamespaceType,
22
23
  FieldTypeType,
@@ -39,6 +40,8 @@ else:
39
40
  from typing_extensions import TypedDict
40
41
 
41
42
  __all__ = (
43
+ "AuditEventFieldValueUnionTypeDef",
44
+ "UserUnionTypeDef",
42
45
  "FieldIdentifierTypeDef",
43
46
  "FieldErrorTypeDef",
44
47
  "GetFieldResponseTypeDef",
@@ -52,7 +55,6 @@ __all__ = (
52
55
  "ContactTypeDef",
53
56
  "CreateDomainRequestRequestTypeDef",
54
57
  "CreateFieldRequestRequestTypeDef",
55
- "UserUnionTypeDef",
56
58
  "LayoutConfigurationTypeDef",
57
59
  "RequiredFieldTypeDef",
58
60
  "DeleteDomainRequestRequestTypeDef",
@@ -61,6 +63,7 @@ __all__ = (
61
63
  "FieldItemTypeDef",
62
64
  "FieldSummaryTypeDef",
63
65
  "FieldValueUnionTypeDef",
66
+ "GetCaseAuditEventsRequestRequestTypeDef",
64
67
  "GetCaseEventConfigurationRequestRequestTypeDef",
65
68
  "GetDomainRequestRequestTypeDef",
66
69
  "GetLayoutRequestRequestTypeDef",
@@ -79,6 +82,8 @@ __all__ = (
79
82
  "TagResourceRequestRequestTypeDef",
80
83
  "UntagResourceRequestRequestTypeDef",
81
84
  "UpdateFieldRequestRequestTypeDef",
85
+ "AuditEventFieldTypeDef",
86
+ "AuditEventPerformedByTypeDef",
82
87
  "BatchGetFieldRequestRequestTypeDef",
83
88
  "CaseEventIncludedDataTypeDef",
84
89
  "GetCaseRequestRequestTypeDef",
@@ -109,6 +114,7 @@ __all__ = (
109
114
  "ListLayoutsResponseTypeDef",
110
115
  "ListTemplatesResponseTypeDef",
111
116
  "SearchCasesRequestRequestTypeDef",
117
+ "AuditEventTypeDef",
112
118
  "EventIncludedDataTypeDef",
113
119
  "SearchRelatedItemsResponseItemTypeDef",
114
120
  "SearchRelatedItemsRequestRequestTypeDef",
@@ -120,6 +126,7 @@ __all__ = (
120
126
  "GetCaseResponseTypeDef",
121
127
  "SearchCasesResponseItemTypeDef",
122
128
  "UpdateCaseRequestRequestTypeDef",
129
+ "GetCaseAuditEventsResponseTypeDef",
123
130
  "EventBridgeConfigurationTypeDef",
124
131
  "SearchRelatedItemsResponseTypeDef",
125
132
  "LayoutSectionsTypeDef",
@@ -135,6 +142,22 @@ __all__ = (
135
142
  "UpdateLayoutRequestRequestTypeDef",
136
143
  )
137
144
 
145
+ AuditEventFieldValueUnionTypeDef = TypedDict(
146
+ "AuditEventFieldValueUnionTypeDef",
147
+ {
148
+ "booleanValue": NotRequired[bool],
149
+ "doubleValue": NotRequired[float],
150
+ "emptyValue": NotRequired[Dict[str, Any]],
151
+ "stringValue": NotRequired[str],
152
+ "userArnValue": NotRequired[str],
153
+ },
154
+ )
155
+ UserUnionTypeDef = TypedDict(
156
+ "UserUnionTypeDef",
157
+ {
158
+ "userArn": NotRequired[str],
159
+ },
160
+ )
138
161
  FieldIdentifierTypeDef = TypedDict(
139
162
  "FieldIdentifierTypeDef",
140
163
  {
@@ -237,12 +260,6 @@ CreateFieldRequestRequestTypeDef = TypedDict(
237
260
  "description": NotRequired[str],
238
261
  },
239
262
  )
240
- UserUnionTypeDef = TypedDict(
241
- "UserUnionTypeDef",
242
- {
243
- "userArn": NotRequired[str],
244
- },
245
- )
246
263
  LayoutConfigurationTypeDef = TypedDict(
247
264
  "LayoutConfigurationTypeDef",
248
265
  {
@@ -298,6 +315,16 @@ FieldValueUnionTypeDef = TypedDict(
298
315
  "doubleValue": NotRequired[float],
299
316
  "emptyValue": NotRequired[Mapping[str, Any]],
300
317
  "stringValue": NotRequired[str],
318
+ "userArnValue": NotRequired[str],
319
+ },
320
+ )
321
+ GetCaseAuditEventsRequestRequestTypeDef = TypedDict(
322
+ "GetCaseAuditEventsRequestRequestTypeDef",
323
+ {
324
+ "caseId": str,
325
+ "domainId": str,
326
+ "maxResults": NotRequired[int],
327
+ "nextToken": NotRequired[str],
301
328
  },
302
329
  )
303
330
  GetCaseEventConfigurationRequestRequestTypeDef = TypedDict(
@@ -438,6 +465,21 @@ UpdateFieldRequestRequestTypeDef = TypedDict(
438
465
  "name": NotRequired[str],
439
466
  },
440
467
  )
468
+ AuditEventFieldTypeDef = TypedDict(
469
+ "AuditEventFieldTypeDef",
470
+ {
471
+ "eventFieldId": str,
472
+ "newValue": AuditEventFieldValueUnionTypeDef,
473
+ "oldValue": NotRequired[AuditEventFieldValueUnionTypeDef],
474
+ },
475
+ )
476
+ AuditEventPerformedByTypeDef = TypedDict(
477
+ "AuditEventPerformedByTypeDef",
478
+ {
479
+ "iamPrincipalArn": str,
480
+ "user": NotRequired[UserUnionTypeDef],
481
+ },
482
+ )
441
483
  BatchGetFieldRequestRequestTypeDef = TypedDict(
442
484
  "BatchGetFieldRequestRequestTypeDef",
443
485
  {
@@ -689,6 +731,17 @@ SearchCasesRequestRequestTypeDef = TypedDict(
689
731
  "sorts": NotRequired[Sequence[SortTypeDef]],
690
732
  },
691
733
  )
734
+ AuditEventTypeDef = TypedDict(
735
+ "AuditEventTypeDef",
736
+ {
737
+ "eventId": str,
738
+ "fields": List[AuditEventFieldTypeDef],
739
+ "performedTime": datetime,
740
+ "type": AuditEventTypeType,
741
+ "performedBy": NotRequired[AuditEventPerformedByTypeDef],
742
+ "relatedItemType": NotRequired[RelatedItemTypeType],
743
+ },
744
+ )
692
745
  EventIncludedDataTypeDef = TypedDict(
693
746
  "EventIncludedDataTypeDef",
694
747
  {
@@ -749,6 +802,7 @@ CreateCaseRequestRequestTypeDef = TypedDict(
749
802
  "fields": Sequence[FieldValueTypeDef],
750
803
  "templateId": str,
751
804
  "clientToken": NotRequired[str],
805
+ "performedBy": NotRequired[UserUnionTypeDef],
752
806
  },
753
807
  )
754
808
  FieldFilterTypeDef = TypedDict(
@@ -787,6 +841,15 @@ UpdateCaseRequestRequestTypeDef = TypedDict(
787
841
  "caseId": str,
788
842
  "domainId": str,
789
843
  "fields": Sequence[FieldValueTypeDef],
844
+ "performedBy": NotRequired[UserUnionTypeDef],
845
+ },
846
+ )
847
+ GetCaseAuditEventsResponseTypeDef = TypedDict(
848
+ "GetCaseAuditEventsResponseTypeDef",
849
+ {
850
+ "auditEvents": List[AuditEventTypeDef],
851
+ "nextToken": str,
852
+ "ResponseMetadata": ResponseMetadataTypeDef,
790
853
  },
791
854
  )
792
855
  EventBridgeConfigurationTypeDef = TypedDict(
@@ -2,4 +2,4 @@
2
2
  Source of truth for version.
3
3
  """
4
4
 
5
- __version__ = "1.34.2"
5
+ __version__ = "1.34.24"
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2023 Vlad Emelianov
3
+ Copyright (c) 2024 Vlad Emelianov
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mypy-boto3-connectcases
3
- Version: 1.34.2
4
- Summary: Type annotations for boto3.ConnectCases 1.34.2 service generated with mypy-boto3-builder 7.21.0
3
+ Version: 1.34.24
4
+ Summary: Type annotations for boto3.ConnectCases 1.34.24 service generated with mypy-boto3-builder 7.23.1
5
5
  Home-page: https://github.com/youtype/mypy_boto3_builder
6
6
  Author: Vlad Emelianov
7
7
  Author-email: vlad.emelianov.nz@gmail.com
@@ -17,7 +17,6 @@ Classifier: License :: OSI Approved :: MIT License
17
17
  Classifier: Natural Language :: English
18
18
  Classifier: Operating System :: OS Independent
19
19
  Classifier: Programming Language :: Python :: 3
20
- Classifier: Programming Language :: Python :: 3.7
21
20
  Classifier: Programming Language :: Python :: 3.8
22
21
  Classifier: Programming Language :: Python :: 3.9
23
22
  Classifier: Programming Language :: Python :: 3.10
@@ -26,8 +25,8 @@ Classifier: Programming Language :: Python :: 3.12
26
25
  Classifier: Programming Language :: Python :: 3.13
27
26
  Classifier: Programming Language :: Python :: 3 :: Only
28
27
  Classifier: Programming Language :: Python :: Implementation :: CPython
29
- Classifier: Typing :: Typed
30
- Requires-Python: >=3.7
28
+ Classifier: Typing :: Stubs Only
29
+ Requires-Python: >=3.8
31
30
  Description-Content-Type: text/markdown
32
31
  License-File: LICENSE
33
32
  Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
@@ -44,7 +43,7 @@ Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
44
43
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
45
44
 
46
45
  Type annotations for
47
- [boto3.ConnectCases 1.34.2](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases)
46
+ [boto3.ConnectCases 1.34.24](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases)
48
47
  service compatible with [VSCode](https://code.visualstudio.com/),
49
48
  [PyCharm](https://www.jetbrains.com/pycharm/),
50
49
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -53,7 +52,7 @@ service compatible with [VSCode](https://code.visualstudio.com/),
53
52
  [pyright](https://github.com/microsoft/pyright) and other tools.
54
53
 
55
54
  Generated by
56
- [mypy-boto3-builder 7.21.0](https://github.com/youtype/mypy_boto3_builder).
55
+ [mypy-boto3-builder 7.23.1](https://github.com/youtype/mypy_boto3_builder).
57
56
 
58
57
  More information can be found on
59
58
  [boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
@@ -308,10 +307,10 @@ Full list of `ConnectCases` Literals can be found in
308
307
  [docs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/literals/).
309
308
 
310
309
  ```python
311
- from mypy_boto3_connectcases.literals import CommentBodyTextTypeType
310
+ from mypy_boto3_connectcases.literals import AuditEventTypeType
312
311
 
313
312
 
314
- def check_value(value: CommentBodyTextTypeType) -> bool: ...
313
+ def check_value(value: AuditEventTypeType) -> bool: ...
315
314
  ```
316
315
 
317
316
  <a id="type-definitions"></a>
@@ -325,10 +324,10 @@ Full list of `ConnectCases` TypeDefs can be found in
325
324
  [docs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/type_defs/).
326
325
 
327
326
  ```python
328
- from mypy_boto3_connectcases.type_defs import FieldIdentifierTypeDef
327
+ from mypy_boto3_connectcases.type_defs import AuditEventFieldValueUnionTypeDef
329
328
 
330
329
 
331
- def get_value() -> FieldIdentifierTypeDef:
330
+ def get_value() -> AuditEventFieldValueUnionTypeDef:
332
331
  return {...}
333
332
  ```
334
333
 
@@ -0,0 +1,18 @@
1
+ mypy_boto3_connectcases/__init__.py,sha256=qOc6JM8LUbn7fZPwiPbo0EAcUbLbzyIcQG45TlQCM5A,808
2
+ mypy_boto3_connectcases/__init__.pyi,sha256=qOc6JM8LUbn7fZPwiPbo0EAcUbLbzyIcQG45TlQCM5A,808
3
+ mypy_boto3_connectcases/__main__.py,sha256=VYkD6Lh4DGdAlVEcfF2EXwRwFmsI8_zBxXoeh3UFFfM,928
4
+ mypy_boto3_connectcases/client.py,sha256=XScn_chuZ6LiAPhfrgKogcA2splPoMj9lqn_kY6-2ks,22695
5
+ mypy_boto3_connectcases/client.pyi,sha256=jNGPVLndcLIvt_s39Qyg7GVt9NbRFoicFVJyqwlPhOc,22692
6
+ mypy_boto3_connectcases/literals.py,sha256=6aSiToJM8Upaaefviyw4L1szjyHUskR0dlthdz7zFLA,9303
7
+ mypy_boto3_connectcases/literals.pyi,sha256=6aSiToJM8Upaaefviyw4L1szjyHUskR0dlthdz7zFLA,9303
8
+ mypy_boto3_connectcases/paginator.py,sha256=7_g648l3A4SY5WozI9QzxQI7H0pltsyUAuEM2ywJoKc,3392
9
+ mypy_boto3_connectcases/paginator.pyi,sha256=vhXGSeAYYp5-Uy1PGSSmoi6yJ3R6uA8jBDiaTrA1g8A,3389
10
+ mypy_boto3_connectcases/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ mypy_boto3_connectcases/type_defs.py,sha256=-BRT6wRxTpxq107a8AH42oMJ6ircKurVfQ8u9KFslDc,25935
12
+ mypy_boto3_connectcases/type_defs.pyi,sha256=-BRT6wRxTpxq107a8AH42oMJ6ircKurVfQ8u9KFslDc,25935
13
+ mypy_boto3_connectcases/version.py,sha256=MsugqHIlcZPvkicn5t3Mv8AXVc9pQ6gq0-NE2qMjCeM,62
14
+ mypy_boto3_connectcases-1.34.24.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
15
+ mypy_boto3_connectcases-1.34.24.dist-info/METADATA,sha256=u-5jQHzCAN3ZI7bSuptO9_vNPodArMqymICy8oP5d98,13124
16
+ mypy_boto3_connectcases-1.34.24.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
17
+ mypy_boto3_connectcases-1.34.24.dist-info/top_level.txt,sha256=RqxtwisC_SxV6gssbnzrNY0Ytk0di6EH_J9Hkhs2EDE,24
18
+ mypy_boto3_connectcases-1.34.24.dist-info/RECORD,,
@@ -1,18 +0,0 @@
1
- mypy_boto3_connectcases/__init__.py,sha256=JkI-08yHTYgB3RjkLdyNqfn7YUfYuggAYWiVsHIsvQk,809
2
- mypy_boto3_connectcases/__init__.pyi,sha256=qOc6JM8LUbn7fZPwiPbo0EAcUbLbzyIcQG45TlQCM5A,808
3
- mypy_boto3_connectcases/__main__.py,sha256=BMI83MPRAVunyXHJY7KiAbzrpjc0AmC_QU0ZxquZ-Co,925
4
- mypy_boto3_connectcases/client.py,sha256=-6wFWOjfHg0eCagP9NxgHssw2pb7HX9PakDjJg50I9E,22037
5
- mypy_boto3_connectcases/client.pyi,sha256=l-YAhtvk9_Lqc0Vsm7b3fc0-hxqGhuoXoNVQTn74vRU,22033
6
- mypy_boto3_connectcases/literals.py,sha256=SZUO4aw6Els8JdeKa2R5gcJKJ_KOQE4aWfSrVmznNVk,9154
7
- mypy_boto3_connectcases/literals.pyi,sha256=EAegPwHxjq4yOjpCfB1xbaQamfGHXieXAH_Ncl9d3kw,9152
8
- mypy_boto3_connectcases/paginator.py,sha256=oqvQPO2E4iwZgtDqeI9rzHIihpHP7IIc-kbNKKFJIZM,3391
9
- mypy_boto3_connectcases/paginator.pyi,sha256=PUmak8StAp0NlDlZKZoUK24n0_NRJMkHgA5CTZ8ew9M,3387
10
- mypy_boto3_connectcases/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_connectcases/type_defs.py,sha256=GnKMWLyXtoIqEA2Jpm_8kpNy94mXFlTqPCPSttzPRyE,23986
12
- mypy_boto3_connectcases/type_defs.pyi,sha256=6lyTEU_bRC3kq7URUFAq0Zpi0Hf1-gNhHvifAb9DMsw,23985
13
- mypy_boto3_connectcases/version.py,sha256=MuG4r0-Im-FBmEmwQVMIsAr47eP7IQ5yKphrtl-0ils,61
14
- mypy_boto3_connectcases-1.34.2.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
15
- mypy_boto3_connectcases-1.34.2.dist-info/METADATA,sha256=tXwOvx0N71TrOHJl_8TTPR3a1uhDyJ8XlfLVB2M5fIs,13156
16
- mypy_boto3_connectcases-1.34.2.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
17
- mypy_boto3_connectcases-1.34.2.dist-info/top_level.txt,sha256=RqxtwisC_SxV6gssbnzrNY0Ytk0di6EH_J9Hkhs2EDE,24
18
- mypy_boto3_connectcases-1.34.2.dist-info/RECORD,,