mypy-boto3-connectcases 1.39.0__py3-none-any.whl → 1.40.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.
- mypy_boto3_connectcases/__main__.py +3 -3
- mypy_boto3_connectcases/client.py +25 -4
- mypy_boto3_connectcases/client.pyi +25 -4
- mypy_boto3_connectcases/literals.py +4 -0
- mypy_boto3_connectcases/literals.pyi +4 -0
- mypy_boto3_connectcases/type_defs.py +13 -0
- mypy_boto3_connectcases/type_defs.pyi +11 -0
- mypy_boto3_connectcases/version.py +1 -1
- {mypy_boto3_connectcases-1.39.0.dist-info → mypy_boto3_connectcases-1.40.0.dist-info}/METADATA +4 -4
- mypy_boto3_connectcases-1.40.0.dist-info/RECORD +18 -0
- mypy_boto3_connectcases-1.39.0.dist-info/RECORD +0 -18
- {mypy_boto3_connectcases-1.39.0.dist-info → mypy_boto3_connectcases-1.40.0.dist-info}/WHEEL +0 -0
- {mypy_boto3_connectcases-1.39.0.dist-info → mypy_boto3_connectcases-1.40.0.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_connectcases-1.39.0.dist-info → mypy_boto3_connectcases-1.40.0.dist-info}/top_level.txt +0 -0
|
@@ -12,8 +12,8 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 ConnectCases 1.
|
|
16
|
-
"Version: 1.
|
|
15
|
+
"Type annotations for boto3 ConnectCases 1.40.0\n"
|
|
16
|
+
"Version: 1.40.0\n"
|
|
17
17
|
"Builder version: 8.11.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#connectcases\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.
|
|
29
|
+
sys.stdout.write("1.40.0\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
|
@@ -47,10 +47,12 @@ from .type_defs import (
|
|
|
47
47
|
CreateRelatedItemResponseTypeDef,
|
|
48
48
|
CreateTemplateRequestTypeDef,
|
|
49
49
|
CreateTemplateResponseTypeDef,
|
|
50
|
+
DeleteCaseRequestTypeDef,
|
|
50
51
|
DeleteCaseRuleRequestTypeDef,
|
|
51
52
|
DeleteDomainRequestTypeDef,
|
|
52
53
|
DeleteFieldRequestTypeDef,
|
|
53
54
|
DeleteLayoutRequestTypeDef,
|
|
55
|
+
DeleteRelatedItemRequestTypeDef,
|
|
54
56
|
DeleteTemplateRequestTypeDef,
|
|
55
57
|
EmptyResponseMetadataTypeDef,
|
|
56
58
|
GetCaseAuditEventsRequestTypeDef,
|
|
@@ -189,8 +191,8 @@ class ConnectCasesClient(BaseClient):
|
|
|
189
191
|
|
|
190
192
|
def create_case(self, **kwargs: Unpack[CreateCaseRequestTypeDef]) -> CreateCaseResponseTypeDef:
|
|
191
193
|
"""
|
|
192
|
-
If you provide a value for <code>PerformedBy.UserArn</code> you must
|
|
193
|
-
<a
|
|
194
|
+
<note> <p>If you provide a value for <code>PerformedBy.UserArn</code> you must
|
|
195
|
+
also have <a
|
|
194
196
|
href="https://docs.aws.amazon.com/connect/latest/APIReference/API_DescribeUser.html">connect:DescribeUser</a>
|
|
195
197
|
permission on the User ARN resource that you provide.
|
|
196
198
|
|
|
@@ -260,6 +262,15 @@ class ConnectCasesClient(BaseClient):
|
|
|
260
262
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#create_template)
|
|
261
263
|
"""
|
|
262
264
|
|
|
265
|
+
def delete_case(self, **kwargs: Unpack[DeleteCaseRequestTypeDef]) -> Dict[str, Any]:
|
|
266
|
+
"""
|
|
267
|
+
The DeleteCase API permanently deletes a case and all its associated resources
|
|
268
|
+
from the cases data store.
|
|
269
|
+
|
|
270
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/client/delete_case.html)
|
|
271
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#delete_case)
|
|
272
|
+
"""
|
|
273
|
+
|
|
263
274
|
def delete_case_rule(self, **kwargs: Unpack[DeleteCaseRuleRequestTypeDef]) -> Dict[str, Any]:
|
|
264
275
|
"""
|
|
265
276
|
Deletes a case rule.
|
|
@@ -292,6 +303,16 @@ class ConnectCasesClient(BaseClient):
|
|
|
292
303
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#delete_layout)
|
|
293
304
|
"""
|
|
294
305
|
|
|
306
|
+
def delete_related_item(
|
|
307
|
+
self, **kwargs: Unpack[DeleteRelatedItemRequestTypeDef]
|
|
308
|
+
) -> Dict[str, Any]:
|
|
309
|
+
"""
|
|
310
|
+
Deletes the related item resource under a case.
|
|
311
|
+
|
|
312
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/client/delete_related_item.html)
|
|
313
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#delete_related_item)
|
|
314
|
+
"""
|
|
315
|
+
|
|
295
316
|
def delete_template(self, **kwargs: Unpack[DeleteTemplateRequestTypeDef]) -> Dict[str, Any]:
|
|
296
317
|
"""
|
|
297
318
|
Deletes a cases template.
|
|
@@ -484,8 +505,8 @@ class ConnectCasesClient(BaseClient):
|
|
|
484
505
|
|
|
485
506
|
def update_case(self, **kwargs: Unpack[UpdateCaseRequestTypeDef]) -> Dict[str, Any]:
|
|
486
507
|
"""
|
|
487
|
-
If you provide a value for <code>PerformedBy.UserArn</code> you must
|
|
488
|
-
<a
|
|
508
|
+
<note> <p>If you provide a value for <code>PerformedBy.UserArn</code> you must
|
|
509
|
+
also have <a
|
|
489
510
|
href="https://docs.aws.amazon.com/connect/latest/APIReference/API_DescribeUser.html">connect:DescribeUser</a>
|
|
490
511
|
permission on the User ARN resource that you provide.
|
|
491
512
|
|
|
@@ -47,10 +47,12 @@ from .type_defs import (
|
|
|
47
47
|
CreateRelatedItemResponseTypeDef,
|
|
48
48
|
CreateTemplateRequestTypeDef,
|
|
49
49
|
CreateTemplateResponseTypeDef,
|
|
50
|
+
DeleteCaseRequestTypeDef,
|
|
50
51
|
DeleteCaseRuleRequestTypeDef,
|
|
51
52
|
DeleteDomainRequestTypeDef,
|
|
52
53
|
DeleteFieldRequestTypeDef,
|
|
53
54
|
DeleteLayoutRequestTypeDef,
|
|
55
|
+
DeleteRelatedItemRequestTypeDef,
|
|
54
56
|
DeleteTemplateRequestTypeDef,
|
|
55
57
|
EmptyResponseMetadataTypeDef,
|
|
56
58
|
GetCaseAuditEventsRequestTypeDef,
|
|
@@ -186,8 +188,8 @@ class ConnectCasesClient(BaseClient):
|
|
|
186
188
|
|
|
187
189
|
def create_case(self, **kwargs: Unpack[CreateCaseRequestTypeDef]) -> CreateCaseResponseTypeDef:
|
|
188
190
|
"""
|
|
189
|
-
If you provide a value for <code>PerformedBy.UserArn</code> you must
|
|
190
|
-
<a
|
|
191
|
+
<note> <p>If you provide a value for <code>PerformedBy.UserArn</code> you must
|
|
192
|
+
also have <a
|
|
191
193
|
href="https://docs.aws.amazon.com/connect/latest/APIReference/API_DescribeUser.html">connect:DescribeUser</a>
|
|
192
194
|
permission on the User ARN resource that you provide.
|
|
193
195
|
|
|
@@ -257,6 +259,15 @@ class ConnectCasesClient(BaseClient):
|
|
|
257
259
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#create_template)
|
|
258
260
|
"""
|
|
259
261
|
|
|
262
|
+
def delete_case(self, **kwargs: Unpack[DeleteCaseRequestTypeDef]) -> Dict[str, Any]:
|
|
263
|
+
"""
|
|
264
|
+
The DeleteCase API permanently deletes a case and all its associated resources
|
|
265
|
+
from the cases data store.
|
|
266
|
+
|
|
267
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/client/delete_case.html)
|
|
268
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#delete_case)
|
|
269
|
+
"""
|
|
270
|
+
|
|
260
271
|
def delete_case_rule(self, **kwargs: Unpack[DeleteCaseRuleRequestTypeDef]) -> Dict[str, Any]:
|
|
261
272
|
"""
|
|
262
273
|
Deletes a case rule.
|
|
@@ -289,6 +300,16 @@ class ConnectCasesClient(BaseClient):
|
|
|
289
300
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#delete_layout)
|
|
290
301
|
"""
|
|
291
302
|
|
|
303
|
+
def delete_related_item(
|
|
304
|
+
self, **kwargs: Unpack[DeleteRelatedItemRequestTypeDef]
|
|
305
|
+
) -> Dict[str, Any]:
|
|
306
|
+
"""
|
|
307
|
+
Deletes the related item resource under a case.
|
|
308
|
+
|
|
309
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/client/delete_related_item.html)
|
|
310
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#delete_related_item)
|
|
311
|
+
"""
|
|
312
|
+
|
|
292
313
|
def delete_template(self, **kwargs: Unpack[DeleteTemplateRequestTypeDef]) -> Dict[str, Any]:
|
|
293
314
|
"""
|
|
294
315
|
Deletes a cases template.
|
|
@@ -481,8 +502,8 @@ class ConnectCasesClient(BaseClient):
|
|
|
481
502
|
|
|
482
503
|
def update_case(self, **kwargs: Unpack[UpdateCaseRequestTypeDef]) -> Dict[str, Any]:
|
|
483
504
|
"""
|
|
484
|
-
If you provide a value for <code>PerformedBy.UserArn</code> you must
|
|
485
|
-
<a
|
|
505
|
+
<note> <p>If you provide a value for <code>PerformedBy.UserArn</code> you must
|
|
506
|
+
also have <a
|
|
486
507
|
href="https://docs.aws.amazon.com/connect/latest/APIReference/API_DescribeUser.html">connect:DescribeUser</a>
|
|
487
508
|
permission on the User ARN resource that you provide.
|
|
488
509
|
|
|
@@ -103,6 +103,8 @@ ServiceName = Literal[
|
|
|
103
103
|
"bedrock",
|
|
104
104
|
"bedrock-agent",
|
|
105
105
|
"bedrock-agent-runtime",
|
|
106
|
+
"bedrock-agentcore",
|
|
107
|
+
"bedrock-agentcore-control",
|
|
106
108
|
"bedrock-data-automation",
|
|
107
109
|
"bedrock-data-automation-runtime",
|
|
108
110
|
"bedrock-runtime",
|
|
@@ -335,6 +337,7 @@ ServiceName = Literal[
|
|
|
335
337
|
"notificationscontacts",
|
|
336
338
|
"oam",
|
|
337
339
|
"observabilityadmin",
|
|
340
|
+
"odb",
|
|
338
341
|
"omics",
|
|
339
342
|
"opensearch",
|
|
340
343
|
"opensearchserverless",
|
|
@@ -395,6 +398,7 @@ ServiceName = Literal[
|
|
|
395
398
|
"s3control",
|
|
396
399
|
"s3outposts",
|
|
397
400
|
"s3tables",
|
|
401
|
+
"s3vectors",
|
|
398
402
|
"sagemaker",
|
|
399
403
|
"sagemaker-a2i-runtime",
|
|
400
404
|
"sagemaker-edge",
|
|
@@ -101,6 +101,8 @@ ServiceName = Literal[
|
|
|
101
101
|
"bedrock",
|
|
102
102
|
"bedrock-agent",
|
|
103
103
|
"bedrock-agent-runtime",
|
|
104
|
+
"bedrock-agentcore",
|
|
105
|
+
"bedrock-agentcore-control",
|
|
104
106
|
"bedrock-data-automation",
|
|
105
107
|
"bedrock-data-automation-runtime",
|
|
106
108
|
"bedrock-runtime",
|
|
@@ -333,6 +335,7 @@ ServiceName = Literal[
|
|
|
333
335
|
"notificationscontacts",
|
|
334
336
|
"oam",
|
|
335
337
|
"observabilityadmin",
|
|
338
|
+
"odb",
|
|
336
339
|
"omics",
|
|
337
340
|
"opensearch",
|
|
338
341
|
"opensearchserverless",
|
|
@@ -393,6 +396,7 @@ ServiceName = Literal[
|
|
|
393
396
|
"s3control",
|
|
394
397
|
"s3outposts",
|
|
395
398
|
"s3tables",
|
|
399
|
+
"s3vectors",
|
|
396
400
|
"sagemaker",
|
|
397
401
|
"sagemaker-a2i-runtime",
|
|
398
402
|
"sagemaker-edge",
|
|
@@ -89,10 +89,12 @@ __all__ = (
|
|
|
89
89
|
"CreateRelatedItemResponseTypeDef",
|
|
90
90
|
"CreateTemplateRequestTypeDef",
|
|
91
91
|
"CreateTemplateResponseTypeDef",
|
|
92
|
+
"DeleteCaseRequestTypeDef",
|
|
92
93
|
"DeleteCaseRuleRequestTypeDef",
|
|
93
94
|
"DeleteDomainRequestTypeDef",
|
|
94
95
|
"DeleteFieldRequestTypeDef",
|
|
95
96
|
"DeleteLayoutRequestTypeDef",
|
|
97
|
+
"DeleteRelatedItemRequestTypeDef",
|
|
96
98
|
"DeleteTemplateRequestTypeDef",
|
|
97
99
|
"DomainSummaryTypeDef",
|
|
98
100
|
"EmptyResponseMetadataTypeDef",
|
|
@@ -357,6 +359,11 @@ class TemplateRuleTypeDef(TypedDict):
|
|
|
357
359
|
fieldId: str
|
|
358
360
|
|
|
359
361
|
|
|
362
|
+
class DeleteCaseRequestTypeDef(TypedDict):
|
|
363
|
+
caseId: str
|
|
364
|
+
domainId: str
|
|
365
|
+
|
|
366
|
+
|
|
360
367
|
class DeleteCaseRuleRequestTypeDef(TypedDict):
|
|
361
368
|
caseRuleId: str
|
|
362
369
|
domainId: str
|
|
@@ -376,6 +383,12 @@ class DeleteLayoutRequestTypeDef(TypedDict):
|
|
|
376
383
|
layoutId: str
|
|
377
384
|
|
|
378
385
|
|
|
386
|
+
class DeleteRelatedItemRequestTypeDef(TypedDict):
|
|
387
|
+
caseId: str
|
|
388
|
+
domainId: str
|
|
389
|
+
relatedItemId: str
|
|
390
|
+
|
|
391
|
+
|
|
379
392
|
class DeleteTemplateRequestTypeDef(TypedDict):
|
|
380
393
|
domainId: str
|
|
381
394
|
templateId: str
|
|
@@ -88,10 +88,12 @@ __all__ = (
|
|
|
88
88
|
"CreateRelatedItemResponseTypeDef",
|
|
89
89
|
"CreateTemplateRequestTypeDef",
|
|
90
90
|
"CreateTemplateResponseTypeDef",
|
|
91
|
+
"DeleteCaseRequestTypeDef",
|
|
91
92
|
"DeleteCaseRuleRequestTypeDef",
|
|
92
93
|
"DeleteDomainRequestTypeDef",
|
|
93
94
|
"DeleteFieldRequestTypeDef",
|
|
94
95
|
"DeleteLayoutRequestTypeDef",
|
|
96
|
+
"DeleteRelatedItemRequestTypeDef",
|
|
95
97
|
"DeleteTemplateRequestTypeDef",
|
|
96
98
|
"DomainSummaryTypeDef",
|
|
97
99
|
"EmptyResponseMetadataTypeDef",
|
|
@@ -334,6 +336,10 @@ class TemplateRuleTypeDef(TypedDict):
|
|
|
334
336
|
caseRuleId: str
|
|
335
337
|
fieldId: str
|
|
336
338
|
|
|
339
|
+
class DeleteCaseRequestTypeDef(TypedDict):
|
|
340
|
+
caseId: str
|
|
341
|
+
domainId: str
|
|
342
|
+
|
|
337
343
|
class DeleteCaseRuleRequestTypeDef(TypedDict):
|
|
338
344
|
caseRuleId: str
|
|
339
345
|
domainId: str
|
|
@@ -349,6 +355,11 @@ class DeleteLayoutRequestTypeDef(TypedDict):
|
|
|
349
355
|
domainId: str
|
|
350
356
|
layoutId: str
|
|
351
357
|
|
|
358
|
+
class DeleteRelatedItemRequestTypeDef(TypedDict):
|
|
359
|
+
caseId: str
|
|
360
|
+
domainId: str
|
|
361
|
+
relatedItemId: str
|
|
362
|
+
|
|
352
363
|
class DeleteTemplateRequestTypeDef(TypedDict):
|
|
353
364
|
domainId: str
|
|
354
365
|
templateId: str
|
{mypy_boto3_connectcases-1.39.0.dist-info → mypy_boto3_connectcases-1.40.0.dist-info}/METADATA
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mypy-boto3-connectcases
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3 ConnectCases 1.
|
|
3
|
+
Version: 1.40.0
|
|
4
|
+
Summary: Type annotations for boto3 ConnectCases 1.40.0 service generated with mypy-boto3-builder 8.11.0
|
|
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
|
|
@@ -57,7 +57,7 @@ Dynamic: summary
|
|
|
57
57
|

|
|
58
58
|
|
|
59
59
|
Type annotations for
|
|
60
|
-
[boto3 ConnectCases 1.
|
|
60
|
+
[boto3 ConnectCases 1.40.0](https://pypi.org/project/boto3/) compatible with
|
|
61
61
|
[VSCode](https://code.visualstudio.com/),
|
|
62
62
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
63
63
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -119,7 +119,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
119
119
|
isolation.
|
|
120
120
|
|
|
121
121
|
1. Run mypy-boto3-builder in your package root directory:
|
|
122
|
-
`uvx --with 'boto3==1.
|
|
122
|
+
`uvx --with 'boto3==1.40.0' mypy-boto3-builder`
|
|
123
123
|
2. Select `boto3-stubs` AWS SDK.
|
|
124
124
|
3. Add `ConnectCases` service.
|
|
125
125
|
4. Use provided commands to install generated packages.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
mypy_boto3_connectcases/__init__.py,sha256=6LcpFpDHsJ_YEhXKTLo20Yt9dZuqrlHie5sD8VxPzo0,1127
|
|
2
|
+
mypy_boto3_connectcases/__init__.pyi,sha256=MIoYFm2NmMDJM-3iF0oNJrxWZEhiDmyfvWrFnrJRYgo,1126
|
|
3
|
+
mypy_boto3_connectcases/__main__.py,sha256=0EClJ0Hob6pR9nYViH5tZgi83ScbFLMSsEHa50NkksY,1001
|
|
4
|
+
mypy_boto3_connectcases/client.py,sha256=BO30yuMdaTAnj4XSQnc56ZNu7v4mNWgYiu-tCivvDzI,27414
|
|
5
|
+
mypy_boto3_connectcases/client.pyi,sha256=hvOuDySH6bDZUE7ujOVK3-dHPCi2VhJrQMKn6wvcS-w,27411
|
|
6
|
+
mypy_boto3_connectcases/literals.py,sha256=hugGJUpd-yt-q24cACvV1mM99WwvlK1ONow96ElMh_A,10451
|
|
7
|
+
mypy_boto3_connectcases/literals.pyi,sha256=d8XrtaBs1vGBYvlGsFcje3X5apfwNzun1jduUWxM26M,10449
|
|
8
|
+
mypy_boto3_connectcases/paginator.py,sha256=onpwCcIXxAX_txJfppY0WEqoHc7hbwBqhoF-2oiG0GA,4838
|
|
9
|
+
mypy_boto3_connectcases/paginator.pyi,sha256=RPn9yr1yJ_QQ6WewDSJeIavm-JsZbhofGi0F0Bhn1mw,4828
|
|
10
|
+
mypy_boto3_connectcases/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_connectcases/type_defs.py,sha256=NWD-L-opLX1ZWruqK-vAiF22k0G58qBr084GCKTcerw,29914
|
|
12
|
+
mypy_boto3_connectcases/type_defs.pyi,sha256=13DxnXczwkUvvY7BvgEMKEaXKB0zEV3aNyhDEvoRC6Q,29771
|
|
13
|
+
mypy_boto3_connectcases/version.py,sha256=52Sk0XpA8tC09WfcAI6nm69vLa0ysg1C33ACO_NFSwc,92
|
|
14
|
+
mypy_boto3_connectcases-1.40.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
+
mypy_boto3_connectcases-1.40.0.dist-info/METADATA,sha256=6yBJlAaDpgvWryjLTHVwZLIu8q_P5GPQCB7UaPN_lv8,15465
|
|
16
|
+
mypy_boto3_connectcases-1.40.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
17
|
+
mypy_boto3_connectcases-1.40.0.dist-info/top_level.txt,sha256=RqxtwisC_SxV6gssbnzrNY0Ytk0di6EH_J9Hkhs2EDE,24
|
|
18
|
+
mypy_boto3_connectcases-1.40.0.dist-info/RECORD,,
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
mypy_boto3_connectcases/__init__.py,sha256=6LcpFpDHsJ_YEhXKTLo20Yt9dZuqrlHie5sD8VxPzo0,1127
|
|
2
|
-
mypy_boto3_connectcases/__init__.pyi,sha256=MIoYFm2NmMDJM-3iF0oNJrxWZEhiDmyfvWrFnrJRYgo,1126
|
|
3
|
-
mypy_boto3_connectcases/__main__.py,sha256=8KWBIJuv4Xo-SepXhxNAbQJUeUn2DObURm9yH2HDHwY,1001
|
|
4
|
-
mypy_boto3_connectcases/client.py,sha256=XbjlN2cbvvPsj9ADTPfJB7q3fsvFvrXOTHbEW-Af1C0,26320
|
|
5
|
-
mypy_boto3_connectcases/client.pyi,sha256=3p2DwFekivPE-__EKTydFtkEQwWGz3MYTt_BllJiNFY,26317
|
|
6
|
-
mypy_boto3_connectcases/literals.py,sha256=Z18hOpsgUU3gXRqUnb-q8OeJ2tAbcg6Zk7cHcZTNzns,10365
|
|
7
|
-
mypy_boto3_connectcases/literals.pyi,sha256=HUxvmdkGB34-CGJVY0QKPsN68zS3OFMuznwJfj5kHtQ,10363
|
|
8
|
-
mypy_boto3_connectcases/paginator.py,sha256=onpwCcIXxAX_txJfppY0WEqoHc7hbwBqhoF-2oiG0GA,4838
|
|
9
|
-
mypy_boto3_connectcases/paginator.pyi,sha256=RPn9yr1yJ_QQ6WewDSJeIavm-JsZbhofGi0F0Bhn1mw,4828
|
|
10
|
-
mypy_boto3_connectcases/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_connectcases/type_defs.py,sha256=9hDcWPCHxQYtos3XPU9MpQBakyKSXRRwoJmBk10E4uA,29655
|
|
12
|
-
mypy_boto3_connectcases/type_defs.pyi,sha256=D0ieNDKQAmnXk4oXvzxmJvci2t4XXQcAGtFQ9qXINGo,29514
|
|
13
|
-
mypy_boto3_connectcases/version.py,sha256=2zoG4eEWPRyRE1KcrQlbWADhaM3qPJ9AE2mKAu218VA,92
|
|
14
|
-
mypy_boto3_connectcases-1.39.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
-
mypy_boto3_connectcases-1.39.0.dist-info/METADATA,sha256=1BPVXpeb9awNDAxR8XnhvxXCtEfa2OSnsS9EBIyLIac,15465
|
|
16
|
-
mypy_boto3_connectcases-1.39.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
17
|
-
mypy_boto3_connectcases-1.39.0.dist-info/top_level.txt,sha256=RqxtwisC_SxV6gssbnzrNY0Ytk0di6EH_J9Hkhs2EDE,24
|
|
18
|
-
mypy_boto3_connectcases-1.39.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{mypy_boto3_connectcases-1.39.0.dist-info → mypy_boto3_connectcases-1.40.0.dist-info}/top_level.txt
RENAMED
|
File without changes
|