moovio_sdk 0.13.2__py3-none-any.whl → 0.13.3__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.
moovio_sdk/_version.py CHANGED
@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "moovio_sdk"
6
- __version__: str = "0.13.2"
6
+ __version__: str = "0.13.3"
7
7
  __openapi_doc_version__: str = "latest"
8
- __gen_version__: str = "2.654.2"
9
- __user_agent__: str = "speakeasy-sdk/python 0.13.2 2.654.2 latest moovio_sdk"
8
+ __gen_version__: str = "2.656.3"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.13.3 2.656.3 latest moovio_sdk"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -3,12 +3,7 @@
3
3
  from __future__ import annotations
4
4
  from moovio_sdk.models.components import ticketmessage as components_ticketmessage
5
5
  from moovio_sdk.types import BaseModel
6
- from moovio_sdk.utils import (
7
- FieldMetadata,
8
- HeaderMetadata,
9
- PathParamMetadata,
10
- QueryParamMetadata,
11
- )
6
+ from moovio_sdk.utils import FieldMetadata, HeaderMetadata, PathParamMetadata
12
7
  import pydantic
13
8
  from typing import Dict, List, Optional
14
9
  from typing_extensions import Annotated, NotRequired, TypedDict
@@ -49,8 +44,6 @@ class ListTicketMessagesGlobals(BaseModel):
49
44
  class ListTicketMessagesRequestTypedDict(TypedDict):
50
45
  account_id: str
51
46
  ticket_id: str
52
- skip: NotRequired[int]
53
- count: NotRequired[int]
54
47
 
55
48
 
56
49
  class ListTicketMessagesRequest(BaseModel):
@@ -66,16 +59,6 @@ class ListTicketMessagesRequest(BaseModel):
66
59
  FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
67
60
  ]
68
61
 
69
- skip: Annotated[
70
- Optional[int],
71
- FieldMetadata(query=QueryParamMetadata(style="form", explode=False)),
72
- ] = None
73
-
74
- count: Annotated[
75
- Optional[int],
76
- FieldMetadata(query=QueryParamMetadata(style="form", explode=False)),
77
- ] = None
78
-
79
62
 
80
63
  class ListTicketMessagesResponseTypedDict(TypedDict):
81
64
  headers: Dict[str, List[str]]
@@ -48,7 +48,7 @@ class ListTicketsGlobals(BaseModel):
48
48
 
49
49
  class ListTicketsRequestTypedDict(TypedDict):
50
50
  account_id: str
51
- skip: NotRequired[int]
51
+ cursor: NotRequired[str]
52
52
  count: NotRequired[int]
53
53
 
54
54
 
@@ -59,8 +59,8 @@ class ListTicketsRequest(BaseModel):
59
59
  FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
60
60
  ]
61
61
 
62
- skip: Annotated[
63
- Optional[int],
62
+ cursor: Annotated[
63
+ Optional[str],
64
64
  FieldMetadata(query=QueryParamMetadata(style="form", explode=False)),
65
65
  ] = None
66
66
 
moovio_sdk/support.py CHANGED
@@ -26,7 +26,7 @@ class Support(BaseSDK):
26
26
  r"""Create a support ticket for a Moov account.
27
27
 
28
28
  To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
29
- you'll need to specify the `/accounts/{accountID}/support.write` scope.
29
+ you'll need to specify the `/accounts/{accountID}/tickets.write` scope.
30
30
 
31
31
  :param account_id:
32
32
  :param title:
@@ -157,7 +157,7 @@ class Support(BaseSDK):
157
157
  r"""Create a support ticket for a Moov account.
158
158
 
159
159
  To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
160
- you'll need to specify the `/accounts/{accountID}/support.write` scope.
160
+ you'll need to specify the `/accounts/{accountID}/tickets.write` scope.
161
161
 
162
162
  :param account_id:
163
163
  :param title:
@@ -277,7 +277,7 @@ class Support(BaseSDK):
277
277
  self,
278
278
  *,
279
279
  account_id: str,
280
- skip: Optional[int] = None,
280
+ cursor: Optional[str] = None,
281
281
  count: Optional[int] = None,
282
282
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
283
283
  server_url: Optional[str] = None,
@@ -287,10 +287,10 @@ class Support(BaseSDK):
287
287
  r"""List all the support tickets created under a Moov account.
288
288
 
289
289
  To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
290
- you'll need to specify the `/accounts/{accountID}/support.read` scope.
290
+ you'll need to specify the `/accounts/{accountID}/tickets.read` scope.
291
291
 
292
292
  :param account_id:
293
- :param skip:
293
+ :param cursor:
294
294
  :param count:
295
295
  :param retries: Override the default retry configuration for this method
296
296
  :param server_url: Override the default server URL for this method
@@ -308,7 +308,7 @@ class Support(BaseSDK):
308
308
  base_url = self._get_url(base_url, url_variables)
309
309
 
310
310
  request = operations.ListTicketsRequest(
311
- skip=skip,
311
+ cursor=cursor,
312
312
  count=count,
313
313
  account_id=account_id,
314
314
  )
@@ -379,7 +379,7 @@ class Support(BaseSDK):
379
379
  self,
380
380
  *,
381
381
  account_id: str,
382
- skip: Optional[int] = None,
382
+ cursor: Optional[str] = None,
383
383
  count: Optional[int] = None,
384
384
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
385
385
  server_url: Optional[str] = None,
@@ -389,10 +389,10 @@ class Support(BaseSDK):
389
389
  r"""List all the support tickets created under a Moov account.
390
390
 
391
391
  To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
392
- you'll need to specify the `/accounts/{accountID}/support.read` scope.
392
+ you'll need to specify the `/accounts/{accountID}/tickets.read` scope.
393
393
 
394
394
  :param account_id:
395
- :param skip:
395
+ :param cursor:
396
396
  :param count:
397
397
  :param retries: Override the default retry configuration for this method
398
398
  :param server_url: Override the default server URL for this method
@@ -410,7 +410,7 @@ class Support(BaseSDK):
410
410
  base_url = self._get_url(base_url, url_variables)
411
411
 
412
412
  request = operations.ListTicketsRequest(
413
- skip=skip,
413
+ cursor=cursor,
414
414
  count=count,
415
415
  account_id=account_id,
416
416
  )
@@ -490,7 +490,7 @@ class Support(BaseSDK):
490
490
  r"""Retrieve a support ticket by ID.
491
491
 
492
492
  To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
493
- you'll need to specify the `/accounts/{accountID}/support.read` scope.
493
+ you'll need to specify the `/accounts/{accountID}/tickets.read` scope.
494
494
 
495
495
  :param account_id:
496
496
  :param ticket_id:
@@ -589,7 +589,7 @@ class Support(BaseSDK):
589
589
  r"""Retrieve a support ticket by ID.
590
590
 
591
591
  To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
592
- you'll need to specify the `/accounts/{accountID}/support.read` scope.
592
+ you'll need to specify the `/accounts/{accountID}/tickets.read` scope.
593
593
 
594
594
  :param account_id:
595
595
  :param ticket_id:
@@ -689,7 +689,7 @@ class Support(BaseSDK):
689
689
  r"""Updates a support ticket.
690
690
 
691
691
  To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
692
- you'll need to specify the `/accounts/{accountID}/support.write` scope.
692
+ you'll need to specify the `/accounts/{accountID}/tickets.write` scope.
693
693
 
694
694
  :param account_id:
695
695
  :param ticket_id:
@@ -817,7 +817,7 @@ class Support(BaseSDK):
817
817
  r"""Updates a support ticket.
818
818
 
819
819
  To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
820
- you'll need to specify the `/accounts/{accountID}/support.write` scope.
820
+ you'll need to specify the `/accounts/{accountID}/tickets.write` scope.
821
821
 
822
822
  :param account_id:
823
823
  :param ticket_id:
@@ -936,8 +936,6 @@ class Support(BaseSDK):
936
936
  *,
937
937
  account_id: str,
938
938
  ticket_id: str,
939
- skip: Optional[int] = None,
940
- count: Optional[int] = None,
941
939
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
942
940
  server_url: Optional[str] = None,
943
941
  timeout_ms: Optional[int] = None,
@@ -946,12 +944,10 @@ class Support(BaseSDK):
946
944
  r"""List all the messages for a support ticket.
947
945
 
948
946
  To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
949
- you'll need to specify the `/accounts/{accountID}/support.read` scope.
947
+ you'll need to specify the `/accounts/{accountID}/tickets.read` scope.
950
948
 
951
949
  :param account_id:
952
950
  :param ticket_id:
953
- :param skip:
954
- :param count:
955
951
  :param retries: Override the default retry configuration for this method
956
952
  :param server_url: Override the default server URL for this method
957
953
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -968,8 +964,6 @@ class Support(BaseSDK):
968
964
  base_url = self._get_url(base_url, url_variables)
969
965
 
970
966
  request = operations.ListTicketMessagesRequest(
971
- skip=skip,
972
- count=count,
973
967
  account_id=account_id,
974
968
  ticket_id=ticket_id,
975
969
  )
@@ -1043,8 +1037,6 @@ class Support(BaseSDK):
1043
1037
  *,
1044
1038
  account_id: str,
1045
1039
  ticket_id: str,
1046
- skip: Optional[int] = None,
1047
- count: Optional[int] = None,
1048
1040
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
1049
1041
  server_url: Optional[str] = None,
1050
1042
  timeout_ms: Optional[int] = None,
@@ -1053,12 +1045,10 @@ class Support(BaseSDK):
1053
1045
  r"""List all the messages for a support ticket.
1054
1046
 
1055
1047
  To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1056
- you'll need to specify the `/accounts/{accountID}/support.read` scope.
1048
+ you'll need to specify the `/accounts/{accountID}/tickets.read` scope.
1057
1049
 
1058
1050
  :param account_id:
1059
1051
  :param ticket_id:
1060
- :param skip:
1061
- :param count:
1062
1052
  :param retries: Override the default retry configuration for this method
1063
1053
  :param server_url: Override the default server URL for this method
1064
1054
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -1075,8 +1065,6 @@ class Support(BaseSDK):
1075
1065
  base_url = self._get_url(base_url, url_variables)
1076
1066
 
1077
1067
  request = operations.ListTicketMessagesRequest(
1078
- skip=skip,
1079
- count=count,
1080
1068
  account_id=account_id,
1081
1069
  ticket_id=ticket_id,
1082
1070
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: moovio_sdk
3
- Version: 0.13.2
3
+ Version: 0.13.3
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Speakeasy
6
6
  Requires-Python: >=3.9.2
@@ -1012,23 +1012,23 @@ you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
1012
1012
  * [create_ticket](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/support/README.md#create_ticket) - Create a support ticket for a Moov account.
1013
1013
 
1014
1014
  To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1015
- you'll need to specify the `/accounts/{accountID}/support.write` scope.
1015
+ you'll need to specify the `/accounts/{accountID}/tickets.write` scope.
1016
1016
  * [list_tickets](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/support/README.md#list_tickets) - List all the support tickets created under a Moov account.
1017
1017
 
1018
1018
  To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1019
- you'll need to specify the `/accounts/{accountID}/support.read` scope.
1019
+ you'll need to specify the `/accounts/{accountID}/tickets.read` scope.
1020
1020
  * [get_ticket](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/support/README.md#get_ticket) - Retrieve a support ticket by ID.
1021
1021
 
1022
1022
  To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1023
- you'll need to specify the `/accounts/{accountID}/support.read` scope.
1023
+ you'll need to specify the `/accounts/{accountID}/tickets.read` scope.
1024
1024
  * [update_ticket](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/support/README.md#update_ticket) - Updates a support ticket.
1025
1025
 
1026
1026
  To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1027
- you'll need to specify the `/accounts/{accountID}/support.write` scope.
1027
+ you'll need to specify the `/accounts/{accountID}/tickets.write` scope.
1028
1028
  * [list_ticket_messages](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/support/README.md#list_ticket_messages) - List all the messages for a support ticket.
1029
1029
 
1030
1030
  To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1031
- you'll need to specify the `/accounts/{accountID}/support.read` scope.
1031
+ you'll need to specify the `/accounts/{accountID}/tickets.read` scope.
1032
1032
 
1033
1033
  ### [sweeps](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/sweeps/README.md)
1034
1034
 
@@ -3,7 +3,7 @@ moovio_sdk/_hooks/__init__.py,sha256=9_7W5jAYw8rcO8Kfc-Ty-lB82BHfksAJJpVFb_UeU1c
3
3
  moovio_sdk/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
4
4
  moovio_sdk/_hooks/sdkhooks.py,sha256=2XuMgiV2N7UE7lN00Is-c3spxVWigYitXS6xSmS_Qow,2560
5
5
  moovio_sdk/_hooks/types.py,sha256=Yi9LD8_sd4zG7_idzCZY4MTxTXMhDlmCdpQvU4dXFI4,3049
6
- moovio_sdk/_version.py,sha256=WjHLDDiKGNtPGZI8msjhdOctXL_MvfIUxnGBhQpJVRk,466
6
+ moovio_sdk/_version.py,sha256=HQLsakR3GL4JSFA4kXX_clLHAuuoqkGskiEbMSp0e5g,466
7
7
  moovio_sdk/account_terminal_applications.py,sha256=FdmR9Yl_njyg2J-AK3d_I_OINKzkTZrq19JM4lHDzYM,38480
8
8
  moovio_sdk/accounts.py,sha256=B82uLoV_GgKNYnUYfqFSePvla09WF-7Ws95tD51vBKI,100716
9
9
  moovio_sdk/adjustments.py,sha256=U2AtbA2k71S1IpwjJ96LT4SdGUDqR3JEgOSvMm9a2yU,17613
@@ -633,8 +633,8 @@ moovio_sdk/models/operations/listschedules.py,sha256=EUMVtQGVBLGU8xx56WnfmzVRNzN
633
633
  moovio_sdk/models/operations/listsweepconfigs.py,sha256=FyXZ5L01-nF52nj4WCqKEwGEERoZtTzW9KJxnIwb0wA,2410
634
634
  moovio_sdk/models/operations/listsweeps.py,sha256=RcjWsbeutBY68KA1J3NevCjcAgrZOnl60xQA6RWgSdo,3659
635
635
  moovio_sdk/models/operations/listterminalapplications.py,sha256=auLtS7-MJZStu2qvn6drroaW5Hfyb7lF2ELdN4Ue-88,2327
636
- moovio_sdk/models/operations/listticketmessages.py,sha256=yMPauobgu3Z0AzsH1yQLSDKMKt654RQSpbHZvj7XsEQ,2988
637
- moovio_sdk/models/operations/listtickets.py,sha256=0Zfre4r4vzV0-mlOgSyAbD8NIh3I9DlcpV3ghi_G8d0,2719
636
+ moovio_sdk/models/operations/listticketmessages.py,sha256=YnOys5jBUweItLMkdGbfE-DL3KVt5Z-28LjV86Bdq7U,2619
637
+ moovio_sdk/models/operations/listtickets.py,sha256=bBIGNVr3cinpoLmGTvlCOwlQMPnDG-firKbyXlaNacY,2723
638
638
  moovio_sdk/models/operations/listtransfers.py,sha256=ERB6HuonDVt-tYdwgU4fYHhTCHp79DvcgKjCp6F4Z_Y,6786
639
639
  moovio_sdk/models/operations/listwallets.py,sha256=Yfpc2ZMHjDiCUSl9R9NddqEezlM2mGXzGlWxMp_xyAY,2350
640
640
  moovio_sdk/models/operations/listwallettransactions.py,sha256=Q6fdn8q2IkY9tM31mtWkCrVvpKSUt4spSFuJ97UVNTc,7848
@@ -676,7 +676,7 @@ moovio_sdk/representatives.py,sha256=3XG8tnLGs5pB8gDzMNgGCxiqcHp29vFSc12G7S-K3A8
676
676
  moovio_sdk/scheduling.py,sha256=CldoqnTp7yEZHc0qESYaSYLYQC22M1Y73jvQk_SNHc0,60556
677
677
  moovio_sdk/sdk.py,sha256=9PhJ_WSLVeg8HDfviwTVIfpeyujXR83dyHtCvCB5B20,11998
678
678
  moovio_sdk/sdkconfiguration.py,sha256=vvZHznUDI2m3Z8ddTKDFUXkQu4mNBGX8Q9Zx7XpR3WY,1665
679
- moovio_sdk/support.py,sha256=neBGxiC199K4MrdE9vRN-4J3lllOGODlw583jp43Cto,47969
679
+ moovio_sdk/support.py,sha256=0c71FrE0cI3juxZ07p_6kopwpxYrNndokE8ThVuOypQ,47657
680
680
  moovio_sdk/sweeps.py,sha256=bp71dtVpazfJo3BmB7SKru5e9XLWgFKZEVJ4R-fw6WQ,61528
681
681
  moovio_sdk/terminal_applications.py,sha256=dkqloZojg7fNo-cJ2HQxlwolKdKbgSljzBR6xz6E7tA,39457
682
682
  moovio_sdk/transfers.py,sha256=SbSkuIGbnNWEO4YNefx4yPQ7ucj5Qz2I172eqfkf4Ag,138159
@@ -702,6 +702,6 @@ moovio_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
702
702
  moovio_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
703
703
  moovio_sdk/wallet_transactions.py,sha256=rWA4_DLFg6QegHSA1GCsCQWx2EfO12vimnvYZg0dRbc,23208
704
704
  moovio_sdk/wallets.py,sha256=V5yUDAo42AG9AlkMsY_9_mmF65JJM-9ApLJdxqIIZLE,17591
705
- moovio_sdk-0.13.2.dist-info/METADATA,sha256=yhTXDV3v86Tkr11F34qWAWi9dE1wDSyn1-4hEjyLo0M,110065
706
- moovio_sdk-0.13.2.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
707
- moovio_sdk-0.13.2.dist-info/RECORD,,
705
+ moovio_sdk-0.13.3.dist-info/METADATA,sha256=M0geLerFJAOArcJgUER814SwxHODqCYTbVz7_-68Av8,110065
706
+ moovio_sdk-0.13.3.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
707
+ moovio_sdk-0.13.3.dist-info/RECORD,,