mypy-boto3-connectcases 1.28.71__py3-none-any.whl → 1.28.81__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 +3 -1
- mypy_boto3_connectcases/client.pyi +3 -1
- mypy_boto3_connectcases/literals.py +1 -0
- mypy_boto3_connectcases/literals.pyi +1 -0
- mypy_boto3_connectcases/type_defs.py +10 -0
- mypy_boto3_connectcases/type_defs.pyi +10 -0
- mypy_boto3_connectcases/version.py +1 -1
- {mypy_boto3_connectcases-1.28.71.dist-info → mypy_boto3_connectcases-1.28.81.dist-info}/METADATA +5 -4
- mypy_boto3_connectcases-1.28.81.dist-info/RECORD +18 -0
- {mypy_boto3_connectcases-1.28.71.dist-info → mypy_boto3_connectcases-1.28.81.dist-info}/WHEEL +1 -1
- mypy_boto3_connectcases-1.28.71.dist-info/RECORD +0 -18
- {mypy_boto3_connectcases-1.28.71.dist-info → mypy_boto3_connectcases-1.28.81.dist-info}/LICENSE +0 -0
- {mypy_boto3_connectcases-1.28.71.dist-info → mypy_boto3_connectcases-1.28.81.dist-info}/top_level.txt +0 -0
|
@@ -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.28.
|
|
14
|
-
" version: 7.19.
|
|
13
|
+
"Type annotations for boto3.ConnectCases 1.28.81\nVersion: 1.28.81\nBuilder"
|
|
14
|
+
" version: 7.19.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.28.
|
|
26
|
+
print("1.28.81")
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
def main() -> None:
|
|
@@ -56,6 +56,7 @@ from .type_defs import (
|
|
|
56
56
|
SearchCasesResponseTypeDef,
|
|
57
57
|
SearchRelatedItemsResponseTypeDef,
|
|
58
58
|
SortTypeDef,
|
|
59
|
+
UserUnionTypeDef,
|
|
59
60
|
)
|
|
60
61
|
|
|
61
62
|
if sys.version_info >= (3, 12):
|
|
@@ -191,7 +192,8 @@ class ConnectCasesClient(BaseClient):
|
|
|
191
192
|
caseId: str,
|
|
192
193
|
content: RelatedItemInputContentTypeDef,
|
|
193
194
|
domainId: str,
|
|
194
|
-
type: RelatedItemTypeType
|
|
195
|
+
type: RelatedItemTypeType,
|
|
196
|
+
performedBy: UserUnionTypeDef = ...
|
|
195
197
|
) -> CreateRelatedItemResponseTypeDef:
|
|
196
198
|
"""
|
|
197
199
|
Creates a related item (comments, tasks, and contacts) and associates it with a
|
|
@@ -56,6 +56,7 @@ from .type_defs import (
|
|
|
56
56
|
SearchCasesResponseTypeDef,
|
|
57
57
|
SearchRelatedItemsResponseTypeDef,
|
|
58
58
|
SortTypeDef,
|
|
59
|
+
UserUnionTypeDef,
|
|
59
60
|
)
|
|
60
61
|
|
|
61
62
|
if sys.version_info >= (3, 12):
|
|
@@ -187,7 +188,8 @@ class ConnectCasesClient(BaseClient):
|
|
|
187
188
|
caseId: str,
|
|
188
189
|
content: RelatedItemInputContentTypeDef,
|
|
189
190
|
domainId: str,
|
|
190
|
-
type: RelatedItemTypeType
|
|
191
|
+
type: RelatedItemTypeType,
|
|
192
|
+
performedBy: UserUnionTypeDef = ...
|
|
191
193
|
) -> CreateRelatedItemResponseTypeDef:
|
|
192
194
|
"""
|
|
193
195
|
Creates a related item (comments, tasks, and contacts) and associates it with a
|
|
@@ -53,6 +53,7 @@ __all__ = (
|
|
|
53
53
|
"ContactTypeDef",
|
|
54
54
|
"CreateDomainRequestRequestTypeDef",
|
|
55
55
|
"CreateFieldRequestRequestTypeDef",
|
|
56
|
+
"UserUnionTypeDef",
|
|
56
57
|
"LayoutConfigurationTypeDef",
|
|
57
58
|
"RequiredFieldTypeDef",
|
|
58
59
|
"DeleteDomainRequestRequestTypeDef",
|
|
@@ -250,6 +251,13 @@ CreateFieldRequestRequestTypeDef = TypedDict(
|
|
|
250
251
|
},
|
|
251
252
|
)
|
|
252
253
|
|
|
254
|
+
UserUnionTypeDef = TypedDict(
|
|
255
|
+
"UserUnionTypeDef",
|
|
256
|
+
{
|
|
257
|
+
"userArn": NotRequired[str],
|
|
258
|
+
},
|
|
259
|
+
)
|
|
260
|
+
|
|
253
261
|
LayoutConfigurationTypeDef = TypedDict(
|
|
254
262
|
"LayoutConfigurationTypeDef",
|
|
255
263
|
{
|
|
@@ -767,6 +775,7 @@ SearchRelatedItemsResponseItemTypeDef = TypedDict(
|
|
|
767
775
|
"content": RelatedItemContentTypeDef,
|
|
768
776
|
"relatedItemId": str,
|
|
769
777
|
"type": RelatedItemTypeType,
|
|
778
|
+
"performedBy": NotRequired[UserUnionTypeDef],
|
|
770
779
|
"tags": NotRequired[Dict[str, str]],
|
|
771
780
|
},
|
|
772
781
|
)
|
|
@@ -799,6 +808,7 @@ CreateRelatedItemRequestRequestTypeDef = TypedDict(
|
|
|
799
808
|
"content": RelatedItemInputContentTypeDef,
|
|
800
809
|
"domainId": str,
|
|
801
810
|
"type": RelatedItemTypeType,
|
|
811
|
+
"performedBy": NotRequired[UserUnionTypeDef],
|
|
802
812
|
},
|
|
803
813
|
)
|
|
804
814
|
|
|
@@ -52,6 +52,7 @@ __all__ = (
|
|
|
52
52
|
"ContactTypeDef",
|
|
53
53
|
"CreateDomainRequestRequestTypeDef",
|
|
54
54
|
"CreateFieldRequestRequestTypeDef",
|
|
55
|
+
"UserUnionTypeDef",
|
|
55
56
|
"LayoutConfigurationTypeDef",
|
|
56
57
|
"RequiredFieldTypeDef",
|
|
57
58
|
"DeleteDomainRequestRequestTypeDef",
|
|
@@ -249,6 +250,13 @@ CreateFieldRequestRequestTypeDef = TypedDict(
|
|
|
249
250
|
},
|
|
250
251
|
)
|
|
251
252
|
|
|
253
|
+
UserUnionTypeDef = TypedDict(
|
|
254
|
+
"UserUnionTypeDef",
|
|
255
|
+
{
|
|
256
|
+
"userArn": NotRequired[str],
|
|
257
|
+
},
|
|
258
|
+
)
|
|
259
|
+
|
|
252
260
|
LayoutConfigurationTypeDef = TypedDict(
|
|
253
261
|
"LayoutConfigurationTypeDef",
|
|
254
262
|
{
|
|
@@ -766,6 +774,7 @@ SearchRelatedItemsResponseItemTypeDef = TypedDict(
|
|
|
766
774
|
"content": RelatedItemContentTypeDef,
|
|
767
775
|
"relatedItemId": str,
|
|
768
776
|
"type": RelatedItemTypeType,
|
|
777
|
+
"performedBy": NotRequired[UserUnionTypeDef],
|
|
769
778
|
"tags": NotRequired[Dict[str, str]],
|
|
770
779
|
},
|
|
771
780
|
)
|
|
@@ -798,6 +807,7 @@ CreateRelatedItemRequestRequestTypeDef = TypedDict(
|
|
|
798
807
|
"content": RelatedItemInputContentTypeDef,
|
|
799
808
|
"domainId": str,
|
|
800
809
|
"type": RelatedItemTypeType,
|
|
810
|
+
"performedBy": NotRequired[UserUnionTypeDef],
|
|
801
811
|
},
|
|
802
812
|
)
|
|
803
813
|
|
{mypy_boto3_connectcases-1.28.71.dist-info → mypy_boto3_connectcases-1.28.81.dist-info}/METADATA
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mypy-boto3-connectcases
|
|
3
|
-
Version: 1.28.
|
|
4
|
-
Summary: Type annotations for boto3.ConnectCases 1.28.
|
|
3
|
+
Version: 1.28.81
|
|
4
|
+
Summary: Type annotations for boto3.ConnectCases 1.28.81 service generated with mypy-boto3-builder 7.19.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
|
|
@@ -23,6 +23,7 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
23
23
|
Classifier: Programming Language :: Python :: 3.10
|
|
24
24
|
Classifier: Programming Language :: Python :: 3.11
|
|
25
25
|
Classifier: Programming Language :: Python :: 3.12
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
26
27
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
27
28
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
28
29
|
Classifier: Typing :: Typed
|
|
@@ -43,7 +44,7 @@ Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
|
|
|
43
44
|

|
|
44
45
|
|
|
45
46
|
Type annotations for
|
|
46
|
-
[boto3.ConnectCases 1.28.
|
|
47
|
+
[boto3.ConnectCases 1.28.81](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases)
|
|
47
48
|
service compatible with [VSCode](https://code.visualstudio.com/),
|
|
48
49
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
49
50
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -52,7 +53,7 @@ service compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
52
53
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
53
54
|
|
|
54
55
|
Generated by
|
|
55
|
-
[mypy-boto3-builder 7.19.
|
|
56
|
+
[mypy-boto3-builder 7.19.1](https://github.com/youtype/mypy_boto3_builder).
|
|
56
57
|
|
|
57
58
|
More information can be found on
|
|
58
59
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -0,0 +1,18 @@
|
|
|
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=widdMK7W6GfKiyQjLhg2GjG64sSv06_A0cfwK6p-zvo,928
|
|
4
|
+
mypy_boto3_connectcases/client.py,sha256=q0TKVh3mfB0Hj2nD5c0vdfjcdmTpvlJzzfDVaSuQabs,22041
|
|
5
|
+
mypy_boto3_connectcases/client.pyi,sha256=ZNglrQwE7EXKUlRg5scjiGxZiqocOVYWK6rvCqbBbis,22037
|
|
6
|
+
mypy_boto3_connectcases/literals.py,sha256=2KVr5Z3H-nU2C7qcLxxebJvxRQHYrVI5WPJx9L9jfCU,8762
|
|
7
|
+
mypy_boto3_connectcases/literals.pyi,sha256=7M03mYT1jk6flxr8wyPv2KlhLOxu2Zjacv2gh7aqS1U,8760
|
|
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=jzpqskipL-TBA_2xg_JgqcT0b8yzADzOjwl36LDfV8s,24079
|
|
12
|
+
mypy_boto3_connectcases/type_defs.pyi,sha256=EFbTJAPge6XGfTX8a7eRKd8J-VGbcwmp33OqB-Qx_KA,24078
|
|
13
|
+
mypy_boto3_connectcases/version.py,sha256=4Hq6RUEuHf-ZDp0ijeU3x8Sged4dx8KnvYLfrFUnbro,62
|
|
14
|
+
mypy_boto3_connectcases-1.28.81.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
|
|
15
|
+
mypy_boto3_connectcases-1.28.81.dist-info/METADATA,sha256=JeEXVPFCABbZecCd_UWNq8K2Gkuc1PFxKf5jbKsGLoA,13159
|
|
16
|
+
mypy_boto3_connectcases-1.28.81.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
|
|
17
|
+
mypy_boto3_connectcases-1.28.81.dist-info/top_level.txt,sha256=RqxtwisC_SxV6gssbnzrNY0Ytk0di6EH_J9Hkhs2EDE,24
|
|
18
|
+
mypy_boto3_connectcases-1.28.81.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=hkuRsDnYN9anWtbzUgcmK9sT9DKnTYuSlxOUg6ZBy5A,928
|
|
4
|
-
mypy_boto3_connectcases/client.py,sha256=jBO8dZ7d4hYvJDVKt5ISTWkQkw3Unlh1K66JI6CS-EY,21974
|
|
5
|
-
mypy_boto3_connectcases/client.pyi,sha256=421uEjrM6q-dMhMttauPm2nc8ZqWco5TrD-ffRhq8hw,21970
|
|
6
|
-
mypy_boto3_connectcases/literals.py,sha256=1abH75VKPn_XGWSuO7eMzGtdYgmuXBppchzK4mMsurY,8741
|
|
7
|
-
mypy_boto3_connectcases/literals.pyi,sha256=2X_rQWOz9HdFA1VsL-IeQA-ZET25J6RWaxMYdXhR_dk,8739
|
|
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=LU5AE2_9I-T71P_6LHmY1je3iggCWbwPIKfeypqorSk,23840
|
|
12
|
-
mypy_boto3_connectcases/type_defs.pyi,sha256=vc75awDAZM1e5zGkLt06BvJGsRERVudFnTilNP-rb-E,23839
|
|
13
|
-
mypy_boto3_connectcases/version.py,sha256=WWfBAnM6t0tmLl1E_oUHH0IzsL9uqL36CXV5a1zZejc,62
|
|
14
|
-
mypy_boto3_connectcases-1.28.71.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
|
|
15
|
-
mypy_boto3_connectcases-1.28.71.dist-info/METADATA,sha256=2dN4Oo87JYn_zKLagHbtqzhzhRraFytfOVVDvvB0Bi0,13108
|
|
16
|
-
mypy_boto3_connectcases-1.28.71.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
17
|
-
mypy_boto3_connectcases-1.28.71.dist-info/top_level.txt,sha256=RqxtwisC_SxV6gssbnzrNY0Ytk0di6EH_J9Hkhs2EDE,24
|
|
18
|
-
mypy_boto3_connectcases-1.28.71.dist-info/RECORD,,
|
{mypy_boto3_connectcases-1.28.71.dist-info → mypy_boto3_connectcases-1.28.81.dist-info}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|