moovio_sdk 0.3.18__py3-none-any.whl → 0.3.19__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 +3 -3
- moovio_sdk/accounts.py +18 -18
- moovio_sdk/adjustments.py +4 -4
- moovio_sdk/apple_pay.py +10 -10
- moovio_sdk/authentication.py +4 -4
- moovio_sdk/avatars.py +2 -2
- moovio_sdk/bank_accounts.py +18 -18
- moovio_sdk/branding.py +8 -8
- moovio_sdk/capabilities.py +8 -8
- moovio_sdk/card_issuing.py +10 -10
- moovio_sdk/cards.py +10 -10
- moovio_sdk/disputes.py +22 -22
- moovio_sdk/end_to_end_encryption.py +4 -4
- moovio_sdk/enriched_address.py +2 -2
- moovio_sdk/enriched_profile.py +2 -2
- moovio_sdk/fee_plans.py +14 -14
- moovio_sdk/files.py +6 -6
- moovio_sdk/industries.py +2 -2
- moovio_sdk/institutions.py +2 -2
- moovio_sdk/issuing_transactions.py +10 -10
- moovio_sdk/models/components/createtransfer.py +7 -0
- moovio_sdk/models/components/transfer.py +7 -0
- moovio_sdk/models/errors/transfer.py +5 -0
- moovio_sdk/onboarding.py +8 -8
- moovio_sdk/payment_links.py +12 -12
- moovio_sdk/payment_methods.py +4 -4
- moovio_sdk/ping.py +2 -2
- moovio_sdk/receipts.py +4 -4
- moovio_sdk/representatives.py +10 -10
- moovio_sdk/scheduling.py +12 -12
- moovio_sdk/sweeps.py +12 -12
- moovio_sdk/terminal_applications.py +8 -8
- moovio_sdk/terminal_configurations.py +2 -2
- moovio_sdk/transfers.py +36 -22
- moovio_sdk/underwriting.py +4 -4
- moovio_sdk/wallet_transactions.py +4 -4
- moovio_sdk/wallets.py +4 -4
- {moovio_sdk-0.3.18.dist-info → moovio_sdk-0.3.19.dist-info}/METADATA +1 -1
- {moovio_sdk-0.3.18.dist-info → moovio_sdk-0.3.19.dist-info}/RECORD +40 -40
- {moovio_sdk-0.3.18.dist-info → moovio_sdk-0.3.19.dist-info}/WHEEL +0 -0
@@ -94,7 +94,7 @@ class IssuingTransactions(BaseSDK):
|
|
94
94
|
hook_ctx=HookContext(
|
95
95
|
base_url=base_url or "",
|
96
96
|
operation_id="listIssuedCardAuthorizations",
|
97
|
-
oauth2_scopes=
|
97
|
+
oauth2_scopes=[],
|
98
98
|
security_source=get_security_from_env(
|
99
99
|
self.sdk_configuration.security, components.Security
|
100
100
|
),
|
@@ -224,7 +224,7 @@ class IssuingTransactions(BaseSDK):
|
|
224
224
|
hook_ctx=HookContext(
|
225
225
|
base_url=base_url or "",
|
226
226
|
operation_id="listIssuedCardAuthorizations",
|
227
|
-
oauth2_scopes=
|
227
|
+
oauth2_scopes=[],
|
228
228
|
security_source=get_security_from_env(
|
229
229
|
self.sdk_configuration.security, components.Security
|
230
230
|
),
|
@@ -339,7 +339,7 @@ class IssuingTransactions(BaseSDK):
|
|
339
339
|
hook_ctx=HookContext(
|
340
340
|
base_url=base_url or "",
|
341
341
|
operation_id="getIssuedCardAuthorization",
|
342
|
-
oauth2_scopes=
|
342
|
+
oauth2_scopes=[],
|
343
343
|
security_source=get_security_from_env(
|
344
344
|
self.sdk_configuration.security, components.Security
|
345
345
|
),
|
@@ -454,7 +454,7 @@ class IssuingTransactions(BaseSDK):
|
|
454
454
|
hook_ctx=HookContext(
|
455
455
|
base_url=base_url or "",
|
456
456
|
operation_id="getIssuedCardAuthorization",
|
457
|
-
oauth2_scopes=
|
457
|
+
oauth2_scopes=[],
|
458
458
|
security_source=get_security_from_env(
|
459
459
|
self.sdk_configuration.security, components.Security
|
460
460
|
),
|
@@ -575,7 +575,7 @@ class IssuingTransactions(BaseSDK):
|
|
575
575
|
hook_ctx=HookContext(
|
576
576
|
base_url=base_url or "",
|
577
577
|
operation_id="listIssuedCardAuthorizationEvents",
|
578
|
-
oauth2_scopes=
|
578
|
+
oauth2_scopes=[],
|
579
579
|
security_source=get_security_from_env(
|
580
580
|
self.sdk_configuration.security, components.Security
|
581
581
|
),
|
@@ -696,7 +696,7 @@ class IssuingTransactions(BaseSDK):
|
|
696
696
|
hook_ctx=HookContext(
|
697
697
|
base_url=base_url or "",
|
698
698
|
operation_id="listIssuedCardAuthorizationEvents",
|
699
|
-
oauth2_scopes=
|
699
|
+
oauth2_scopes=[],
|
700
700
|
security_source=get_security_from_env(
|
701
701
|
self.sdk_configuration.security, components.Security
|
702
702
|
),
|
@@ -823,7 +823,7 @@ class IssuingTransactions(BaseSDK):
|
|
823
823
|
hook_ctx=HookContext(
|
824
824
|
base_url=base_url or "",
|
825
825
|
operation_id="listIssuedCardTransactions",
|
826
|
-
oauth2_scopes=
|
826
|
+
oauth2_scopes=[],
|
827
827
|
security_source=get_security_from_env(
|
828
828
|
self.sdk_configuration.security, components.Security
|
829
829
|
),
|
@@ -950,7 +950,7 @@ class IssuingTransactions(BaseSDK):
|
|
950
950
|
hook_ctx=HookContext(
|
951
951
|
base_url=base_url or "",
|
952
952
|
operation_id="listIssuedCardTransactions",
|
953
|
-
oauth2_scopes=
|
953
|
+
oauth2_scopes=[],
|
954
954
|
security_source=get_security_from_env(
|
955
955
|
self.sdk_configuration.security, components.Security
|
956
956
|
),
|
@@ -1065,7 +1065,7 @@ class IssuingTransactions(BaseSDK):
|
|
1065
1065
|
hook_ctx=HookContext(
|
1066
1066
|
base_url=base_url or "",
|
1067
1067
|
operation_id="getIssuedCardTransaction",
|
1068
|
-
oauth2_scopes=
|
1068
|
+
oauth2_scopes=[],
|
1069
1069
|
security_source=get_security_from_env(
|
1070
1070
|
self.sdk_configuration.security, components.Security
|
1071
1071
|
),
|
@@ -1180,7 +1180,7 @@ class IssuingTransactions(BaseSDK):
|
|
1180
1180
|
hook_ctx=HookContext(
|
1181
1181
|
base_url=base_url or "",
|
1182
1182
|
operation_id="getIssuedCardTransaction",
|
1183
|
-
oauth2_scopes=
|
1183
|
+
oauth2_scopes=[],
|
1184
1184
|
security_source=get_security_from_env(
|
1185
1185
|
self.sdk_configuration.security, components.Security
|
1186
1186
|
),
|
@@ -26,6 +26,8 @@ class CreateTransferTypedDict(TypedDict):
|
|
26
26
|
r"""An optional description of the transfer for your own internal use."""
|
27
27
|
metadata: NotRequired[Dict[str, str]]
|
28
28
|
r"""Free-form key-value pair list. Useful for storing information that is not captured elsewhere."""
|
29
|
+
sales_tax_amount: NotRequired[AmountTypedDict]
|
30
|
+
r"""Optional sales tax amount. `transfer.amount.value` should be inclusive of any sales tax and represents the total amount charged."""
|
29
31
|
|
30
32
|
|
31
33
|
class CreateTransfer(BaseModel):
|
@@ -47,3 +49,8 @@ class CreateTransfer(BaseModel):
|
|
47
49
|
|
48
50
|
metadata: Optional[Dict[str, str]] = None
|
49
51
|
r"""Free-form key-value pair list. Useful for storing information that is not captured elsewhere."""
|
52
|
+
|
53
|
+
sales_tax_amount: Annotated[
|
54
|
+
Optional[Amount], pydantic.Field(alias="salesTaxAmount")
|
55
|
+
] = None
|
56
|
+
r"""Optional sales tax amount. `transfer.amount.value` should be inclusive of any sales tax and represents the total amount charged."""
|
@@ -52,6 +52,8 @@ class TransferTypedDict(TypedDict):
|
|
52
52
|
sweep_id: NotRequired[str]
|
53
53
|
schedule_id: NotRequired[str]
|
54
54
|
occurrence_id: NotRequired[str]
|
55
|
+
sales_tax_amount: NotRequired[AmountTypedDict]
|
56
|
+
r"""Optional sales tax amount. `transfer.amount.value` should be inclusive of any sales tax and represents the total amount charged."""
|
55
57
|
|
56
58
|
|
57
59
|
class Transfer(BaseModel):
|
@@ -124,3 +126,8 @@ class Transfer(BaseModel):
|
|
124
126
|
schedule_id: Annotated[Optional[str], pydantic.Field(alias="scheduleID")] = None
|
125
127
|
|
126
128
|
occurrence_id: Annotated[Optional[str], pydantic.Field(alias="occurrenceID")] = None
|
129
|
+
|
130
|
+
sales_tax_amount: Annotated[
|
131
|
+
Optional[Amount], pydantic.Field(alias="salesTaxAmount")
|
132
|
+
] = None
|
133
|
+
r"""Optional sales tax amount. `transfer.amount.value` should be inclusive of any sales tax and represents the total amount charged."""
|
@@ -95,6 +95,11 @@ class TransferData(BaseModel):
|
|
95
95
|
|
96
96
|
occurrence_id: Annotated[Optional[str], pydantic.Field(alias="occurrenceID")] = None
|
97
97
|
|
98
|
+
sales_tax_amount: Annotated[
|
99
|
+
Optional[components_amount.Amount], pydantic.Field(alias="salesTaxAmount")
|
100
|
+
] = None
|
101
|
+
r"""Optional sales tax amount. `transfer.amount.value` should be inclusive of any sales tax and represents the total amount charged."""
|
102
|
+
|
98
103
|
|
99
104
|
class Transfer(Exception):
|
100
105
|
r"""Details of a Transfer."""
|
moovio_sdk/onboarding.py
CHANGED
@@ -97,7 +97,7 @@ class Onboarding(BaseSDK):
|
|
97
97
|
hook_ctx=HookContext(
|
98
98
|
base_url=base_url or "",
|
99
99
|
operation_id="createOnboardingInvite",
|
100
|
-
oauth2_scopes=
|
100
|
+
oauth2_scopes=[],
|
101
101
|
security_source=get_security_from_env(
|
102
102
|
self.sdk_configuration.security, components.Security
|
103
103
|
),
|
@@ -250,7 +250,7 @@ class Onboarding(BaseSDK):
|
|
250
250
|
hook_ctx=HookContext(
|
251
251
|
base_url=base_url or "",
|
252
252
|
operation_id="createOnboardingInvite",
|
253
|
-
oauth2_scopes=
|
253
|
+
oauth2_scopes=[],
|
254
254
|
security_source=get_security_from_env(
|
255
255
|
self.sdk_configuration.security, components.Security
|
256
256
|
),
|
@@ -384,7 +384,7 @@ class Onboarding(BaseSDK):
|
|
384
384
|
hook_ctx=HookContext(
|
385
385
|
base_url=base_url or "",
|
386
386
|
operation_id="listOnboardingInvites",
|
387
|
-
oauth2_scopes=
|
387
|
+
oauth2_scopes=[],
|
388
388
|
security_source=get_security_from_env(
|
389
389
|
self.sdk_configuration.security, components.Security
|
390
390
|
),
|
@@ -499,7 +499,7 @@ class Onboarding(BaseSDK):
|
|
499
499
|
hook_ctx=HookContext(
|
500
500
|
base_url=base_url or "",
|
501
501
|
operation_id="listOnboardingInvites",
|
502
|
-
oauth2_scopes=
|
502
|
+
oauth2_scopes=[],
|
503
503
|
security_source=get_security_from_env(
|
504
504
|
self.sdk_configuration.security, components.Security
|
505
505
|
),
|
@@ -611,7 +611,7 @@ class Onboarding(BaseSDK):
|
|
611
611
|
hook_ctx=HookContext(
|
612
612
|
base_url=base_url or "",
|
613
613
|
operation_id="getOnboardingInvite",
|
614
|
-
oauth2_scopes=
|
614
|
+
oauth2_scopes=[],
|
615
615
|
security_source=get_security_from_env(
|
616
616
|
self.sdk_configuration.security, components.Security
|
617
617
|
),
|
@@ -721,7 +721,7 @@ class Onboarding(BaseSDK):
|
|
721
721
|
hook_ctx=HookContext(
|
722
722
|
base_url=base_url or "",
|
723
723
|
operation_id="getOnboardingInvite",
|
724
|
-
oauth2_scopes=
|
724
|
+
oauth2_scopes=[],
|
725
725
|
security_source=get_security_from_env(
|
726
726
|
self.sdk_configuration.security, components.Security
|
727
727
|
),
|
@@ -831,7 +831,7 @@ class Onboarding(BaseSDK):
|
|
831
831
|
hook_ctx=HookContext(
|
832
832
|
base_url=base_url or "",
|
833
833
|
operation_id="revokeOnboardingInvite",
|
834
|
-
oauth2_scopes=
|
834
|
+
oauth2_scopes=[],
|
835
835
|
security_source=get_security_from_env(
|
836
836
|
self.sdk_configuration.security, components.Security
|
837
837
|
),
|
@@ -930,7 +930,7 @@ class Onboarding(BaseSDK):
|
|
930
930
|
hook_ctx=HookContext(
|
931
931
|
base_url=base_url or "",
|
932
932
|
operation_id="revokeOnboardingInvite",
|
933
|
-
oauth2_scopes=
|
933
|
+
oauth2_scopes=[],
|
934
934
|
security_source=get_security_from_env(
|
935
935
|
self.sdk_configuration.security, components.Security
|
936
936
|
),
|
moovio_sdk/payment_links.py
CHANGED
@@ -144,7 +144,7 @@ class PaymentLinks(BaseSDK):
|
|
144
144
|
hook_ctx=HookContext(
|
145
145
|
base_url=base_url or "",
|
146
146
|
operation_id="createPaymentLink",
|
147
|
-
oauth2_scopes=
|
147
|
+
oauth2_scopes=[],
|
148
148
|
security_source=get_security_from_env(
|
149
149
|
self.sdk_configuration.security, components.Security
|
150
150
|
),
|
@@ -337,7 +337,7 @@ class PaymentLinks(BaseSDK):
|
|
337
337
|
hook_ctx=HookContext(
|
338
338
|
base_url=base_url or "",
|
339
339
|
operation_id="createPaymentLink",
|
340
|
-
oauth2_scopes=
|
340
|
+
oauth2_scopes=[],
|
341
341
|
security_source=get_security_from_env(
|
342
342
|
self.sdk_configuration.security, components.Security
|
343
343
|
),
|
@@ -468,7 +468,7 @@ class PaymentLinks(BaseSDK):
|
|
468
468
|
hook_ctx=HookContext(
|
469
469
|
base_url=base_url or "",
|
470
470
|
operation_id="listPaymentLinks",
|
471
|
-
oauth2_scopes=
|
471
|
+
oauth2_scopes=[],
|
472
472
|
security_source=get_security_from_env(
|
473
473
|
self.sdk_configuration.security, components.Security
|
474
474
|
),
|
@@ -580,7 +580,7 @@ class PaymentLinks(BaseSDK):
|
|
580
580
|
hook_ctx=HookContext(
|
581
581
|
base_url=base_url or "",
|
582
582
|
operation_id="listPaymentLinks",
|
583
|
-
oauth2_scopes=
|
583
|
+
oauth2_scopes=[],
|
584
584
|
security_source=get_security_from_env(
|
585
585
|
self.sdk_configuration.security, components.Security
|
586
586
|
),
|
@@ -695,7 +695,7 @@ class PaymentLinks(BaseSDK):
|
|
695
695
|
hook_ctx=HookContext(
|
696
696
|
base_url=base_url or "",
|
697
697
|
operation_id="getPaymentLink",
|
698
|
-
oauth2_scopes=
|
698
|
+
oauth2_scopes=[],
|
699
699
|
security_source=get_security_from_env(
|
700
700
|
self.sdk_configuration.security, components.Security
|
701
701
|
),
|
@@ -808,7 +808,7 @@ class PaymentLinks(BaseSDK):
|
|
808
808
|
hook_ctx=HookContext(
|
809
809
|
base_url=base_url or "",
|
810
810
|
operation_id="getPaymentLink",
|
811
|
-
oauth2_scopes=
|
811
|
+
oauth2_scopes=[],
|
812
812
|
security_source=get_security_from_env(
|
813
813
|
self.sdk_configuration.security, components.Security
|
814
814
|
),
|
@@ -980,7 +980,7 @@ class PaymentLinks(BaseSDK):
|
|
980
980
|
hook_ctx=HookContext(
|
981
981
|
base_url=base_url or "",
|
982
982
|
operation_id="updatePaymentLink",
|
983
|
-
oauth2_scopes=
|
983
|
+
oauth2_scopes=[],
|
984
984
|
security_source=get_security_from_env(
|
985
985
|
self.sdk_configuration.security, components.Security
|
986
986
|
),
|
@@ -1173,7 +1173,7 @@ class PaymentLinks(BaseSDK):
|
|
1173
1173
|
hook_ctx=HookContext(
|
1174
1174
|
base_url=base_url or "",
|
1175
1175
|
operation_id="updatePaymentLink",
|
1176
|
-
oauth2_scopes=
|
1176
|
+
oauth2_scopes=[],
|
1177
1177
|
security_source=get_security_from_env(
|
1178
1178
|
self.sdk_configuration.security, components.Security
|
1179
1179
|
),
|
@@ -1307,7 +1307,7 @@ class PaymentLinks(BaseSDK):
|
|
1307
1307
|
hook_ctx=HookContext(
|
1308
1308
|
base_url=base_url or "",
|
1309
1309
|
operation_id="disablePaymentLink",
|
1310
|
-
oauth2_scopes=
|
1310
|
+
oauth2_scopes=[],
|
1311
1311
|
security_source=get_security_from_env(
|
1312
1312
|
self.sdk_configuration.security, components.Security
|
1313
1313
|
),
|
@@ -1409,7 +1409,7 @@ class PaymentLinks(BaseSDK):
|
|
1409
1409
|
hook_ctx=HookContext(
|
1410
1410
|
base_url=base_url or "",
|
1411
1411
|
operation_id="disablePaymentLink",
|
1412
|
-
oauth2_scopes=
|
1412
|
+
oauth2_scopes=[],
|
1413
1413
|
security_source=get_security_from_env(
|
1414
1414
|
self.sdk_configuration.security, components.Security
|
1415
1415
|
),
|
@@ -1517,7 +1517,7 @@ class PaymentLinks(BaseSDK):
|
|
1517
1517
|
hook_ctx=HookContext(
|
1518
1518
|
base_url=base_url or "",
|
1519
1519
|
operation_id="getPaymentLinkQRCode",
|
1520
|
-
oauth2_scopes=
|
1520
|
+
oauth2_scopes=[],
|
1521
1521
|
security_source=get_security_from_env(
|
1522
1522
|
self.sdk_configuration.security, components.Security
|
1523
1523
|
),
|
@@ -1642,7 +1642,7 @@ class PaymentLinks(BaseSDK):
|
|
1642
1642
|
hook_ctx=HookContext(
|
1643
1643
|
base_url=base_url or "",
|
1644
1644
|
operation_id="getPaymentLinkQRCode",
|
1645
|
-
oauth2_scopes=
|
1645
|
+
oauth2_scopes=[],
|
1646
1646
|
security_source=get_security_from_env(
|
1647
1647
|
self.sdk_configuration.security, components.Security
|
1648
1648
|
),
|
moovio_sdk/payment_methods.py
CHANGED
@@ -82,7 +82,7 @@ class PaymentMethods(BaseSDK):
|
|
82
82
|
hook_ctx=HookContext(
|
83
83
|
base_url=base_url or "",
|
84
84
|
operation_id="listPaymentMethods",
|
85
|
-
oauth2_scopes=
|
85
|
+
oauth2_scopes=[],
|
86
86
|
security_source=get_security_from_env(
|
87
87
|
self.sdk_configuration.security, components.Security
|
88
88
|
),
|
@@ -201,7 +201,7 @@ class PaymentMethods(BaseSDK):
|
|
201
201
|
hook_ctx=HookContext(
|
202
202
|
base_url=base_url or "",
|
203
203
|
operation_id="listPaymentMethods",
|
204
|
-
oauth2_scopes=
|
204
|
+
oauth2_scopes=[],
|
205
205
|
security_source=get_security_from_env(
|
206
206
|
self.sdk_configuration.security, components.Security
|
207
207
|
),
|
@@ -316,7 +316,7 @@ class PaymentMethods(BaseSDK):
|
|
316
316
|
hook_ctx=HookContext(
|
317
317
|
base_url=base_url or "",
|
318
318
|
operation_id="getPaymentMethod",
|
319
|
-
oauth2_scopes=
|
319
|
+
oauth2_scopes=[],
|
320
320
|
security_source=get_security_from_env(
|
321
321
|
self.sdk_configuration.security, components.Security
|
322
322
|
),
|
@@ -429,7 +429,7 @@ class PaymentMethods(BaseSDK):
|
|
429
429
|
hook_ctx=HookContext(
|
430
430
|
base_url=base_url or "",
|
431
431
|
operation_id="getPaymentMethod",
|
432
|
-
oauth2_scopes=
|
432
|
+
oauth2_scopes=[],
|
433
433
|
security_source=get_security_from_env(
|
434
434
|
self.sdk_configuration.security, components.Security
|
435
435
|
),
|
moovio_sdk/ping.py
CHANGED
@@ -77,7 +77,7 @@ class Ping(BaseSDK):
|
|
77
77
|
hook_ctx=HookContext(
|
78
78
|
base_url=base_url or "",
|
79
79
|
operation_id="ping",
|
80
|
-
oauth2_scopes=
|
80
|
+
oauth2_scopes=[],
|
81
81
|
security_source=get_security_from_env(
|
82
82
|
self.sdk_configuration.security, components.Security
|
83
83
|
),
|
@@ -188,7 +188,7 @@ class Ping(BaseSDK):
|
|
188
188
|
hook_ctx=HookContext(
|
189
189
|
base_url=base_url or "",
|
190
190
|
operation_id="ping",
|
191
|
-
oauth2_scopes=
|
191
|
+
oauth2_scopes=[],
|
192
192
|
security_source=get_security_from_env(
|
193
193
|
self.sdk_configuration.security, components.Security
|
194
194
|
),
|
moovio_sdk/receipts.py
CHANGED
@@ -80,7 +80,7 @@ class Receipts(BaseSDK):
|
|
80
80
|
hook_ctx=HookContext(
|
81
81
|
base_url=base_url or "",
|
82
82
|
operation_id="createReceipts",
|
83
|
-
oauth2_scopes=
|
83
|
+
oauth2_scopes=[],
|
84
84
|
security_source=get_security_from_env(
|
85
85
|
self.sdk_configuration.security, components.Security
|
86
86
|
),
|
@@ -216,7 +216,7 @@ class Receipts(BaseSDK):
|
|
216
216
|
hook_ctx=HookContext(
|
217
217
|
base_url=base_url or "",
|
218
218
|
operation_id="createReceipts",
|
219
|
-
oauth2_scopes=
|
219
|
+
oauth2_scopes=[],
|
220
220
|
security_source=get_security_from_env(
|
221
221
|
self.sdk_configuration.security, components.Security
|
222
222
|
),
|
@@ -347,7 +347,7 @@ class Receipts(BaseSDK):
|
|
347
347
|
hook_ctx=HookContext(
|
348
348
|
base_url=base_url or "",
|
349
349
|
operation_id="listReceipts",
|
350
|
-
oauth2_scopes=
|
350
|
+
oauth2_scopes=[],
|
351
351
|
security_source=get_security_from_env(
|
352
352
|
self.sdk_configuration.security, components.Security
|
353
353
|
),
|
@@ -459,7 +459,7 @@ class Receipts(BaseSDK):
|
|
459
459
|
hook_ctx=HookContext(
|
460
460
|
base_url=base_url or "",
|
461
461
|
operation_id="listReceipts",
|
462
|
-
oauth2_scopes=
|
462
|
+
oauth2_scopes=[],
|
463
463
|
security_source=get_security_from_env(
|
464
464
|
self.sdk_configuration.security, components.Security
|
465
465
|
),
|
moovio_sdk/representatives.py
CHANGED
@@ -127,7 +127,7 @@ class Representatives(BaseSDK):
|
|
127
127
|
hook_ctx=HookContext(
|
128
128
|
base_url=base_url or "",
|
129
129
|
operation_id="createRepresentative",
|
130
|
-
oauth2_scopes=
|
130
|
+
oauth2_scopes=[],
|
131
131
|
security_source=get_security_from_env(
|
132
132
|
self.sdk_configuration.security, components.Security
|
133
133
|
),
|
@@ -310,7 +310,7 @@ class Representatives(BaseSDK):
|
|
310
310
|
hook_ctx=HookContext(
|
311
311
|
base_url=base_url or "",
|
312
312
|
operation_id="createRepresentative",
|
313
|
-
oauth2_scopes=
|
313
|
+
oauth2_scopes=[],
|
314
314
|
security_source=get_security_from_env(
|
315
315
|
self.sdk_configuration.security, components.Security
|
316
316
|
),
|
@@ -444,7 +444,7 @@ class Representatives(BaseSDK):
|
|
444
444
|
hook_ctx=HookContext(
|
445
445
|
base_url=base_url or "",
|
446
446
|
operation_id="listRepresentatives",
|
447
|
-
oauth2_scopes=
|
447
|
+
oauth2_scopes=[],
|
448
448
|
security_source=get_security_from_env(
|
449
449
|
self.sdk_configuration.security, components.Security
|
450
450
|
),
|
@@ -559,7 +559,7 @@ class Representatives(BaseSDK):
|
|
559
559
|
hook_ctx=HookContext(
|
560
560
|
base_url=base_url or "",
|
561
561
|
operation_id="listRepresentatives",
|
562
|
-
oauth2_scopes=
|
562
|
+
oauth2_scopes=[],
|
563
563
|
security_source=get_security_from_env(
|
564
564
|
self.sdk_configuration.security, components.Security
|
565
565
|
),
|
@@ -674,7 +674,7 @@ class Representatives(BaseSDK):
|
|
674
674
|
hook_ctx=HookContext(
|
675
675
|
base_url=base_url or "",
|
676
676
|
operation_id="deleteRepresentative",
|
677
|
-
oauth2_scopes=
|
677
|
+
oauth2_scopes=[],
|
678
678
|
security_source=get_security_from_env(
|
679
679
|
self.sdk_configuration.security, components.Security
|
680
680
|
),
|
@@ -801,7 +801,7 @@ class Representatives(BaseSDK):
|
|
801
801
|
hook_ctx=HookContext(
|
802
802
|
base_url=base_url or "",
|
803
803
|
operation_id="deleteRepresentative",
|
804
|
-
oauth2_scopes=
|
804
|
+
oauth2_scopes=[],
|
805
805
|
security_source=get_security_from_env(
|
806
806
|
self.sdk_configuration.security, components.Security
|
807
807
|
),
|
@@ -928,7 +928,7 @@ class Representatives(BaseSDK):
|
|
928
928
|
hook_ctx=HookContext(
|
929
929
|
base_url=base_url or "",
|
930
930
|
operation_id="getRepresentative",
|
931
|
-
oauth2_scopes=
|
931
|
+
oauth2_scopes=[],
|
932
932
|
security_source=get_security_from_env(
|
933
933
|
self.sdk_configuration.security, components.Security
|
934
934
|
),
|
@@ -1041,7 +1041,7 @@ class Representatives(BaseSDK):
|
|
1041
1041
|
hook_ctx=HookContext(
|
1042
1042
|
base_url=base_url or "",
|
1043
1043
|
operation_id="getRepresentative",
|
1044
|
-
oauth2_scopes=
|
1044
|
+
oauth2_scopes=[],
|
1045
1045
|
security_source=get_security_from_env(
|
1046
1046
|
self.sdk_configuration.security, components.Security
|
1047
1047
|
),
|
@@ -1239,7 +1239,7 @@ class Representatives(BaseSDK):
|
|
1239
1239
|
hook_ctx=HookContext(
|
1240
1240
|
base_url=base_url or "",
|
1241
1241
|
operation_id="updateRepresentative",
|
1242
|
-
oauth2_scopes=
|
1242
|
+
oauth2_scopes=[],
|
1243
1243
|
security_source=get_security_from_env(
|
1244
1244
|
self.sdk_configuration.security, components.Security
|
1245
1245
|
),
|
@@ -1452,7 +1452,7 @@ class Representatives(BaseSDK):
|
|
1452
1452
|
hook_ctx=HookContext(
|
1453
1453
|
base_url=base_url or "",
|
1454
1454
|
operation_id="updateRepresentative",
|
1455
|
-
oauth2_scopes=
|
1455
|
+
oauth2_scopes=[],
|
1456
1456
|
security_source=get_security_from_env(
|
1457
1457
|
self.sdk_configuration.security, components.Security
|
1458
1458
|
),
|
moovio_sdk/scheduling.py
CHANGED
@@ -93,7 +93,7 @@ class Scheduling(BaseSDK):
|
|
93
93
|
hook_ctx=HookContext(
|
94
94
|
base_url=base_url or "",
|
95
95
|
operation_id="createSchedule",
|
96
|
-
oauth2_scopes=
|
96
|
+
oauth2_scopes=[],
|
97
97
|
security_source=get_security_from_env(
|
98
98
|
self.sdk_configuration.security, components.Security
|
99
99
|
),
|
@@ -242,7 +242,7 @@ class Scheduling(BaseSDK):
|
|
242
242
|
hook_ctx=HookContext(
|
243
243
|
base_url=base_url or "",
|
244
244
|
operation_id="createSchedule",
|
245
|
-
oauth2_scopes=
|
245
|
+
oauth2_scopes=[],
|
246
246
|
security_source=get_security_from_env(
|
247
247
|
self.sdk_configuration.security, components.Security
|
248
248
|
),
|
@@ -382,7 +382,7 @@ class Scheduling(BaseSDK):
|
|
382
382
|
hook_ctx=HookContext(
|
383
383
|
base_url=base_url or "",
|
384
384
|
operation_id="listSchedules",
|
385
|
-
oauth2_scopes=
|
385
|
+
oauth2_scopes=[],
|
386
386
|
security_source=get_security_from_env(
|
387
387
|
self.sdk_configuration.security, components.Security
|
388
388
|
),
|
@@ -503,7 +503,7 @@ class Scheduling(BaseSDK):
|
|
503
503
|
hook_ctx=HookContext(
|
504
504
|
base_url=base_url or "",
|
505
505
|
operation_id="listSchedules",
|
506
|
-
oauth2_scopes=
|
506
|
+
oauth2_scopes=[],
|
507
507
|
security_source=get_security_from_env(
|
508
508
|
self.sdk_configuration.security, components.Security
|
509
509
|
),
|
@@ -636,7 +636,7 @@ class Scheduling(BaseSDK):
|
|
636
636
|
hook_ctx=HookContext(
|
637
637
|
base_url=base_url or "",
|
638
638
|
operation_id="updateSchedule",
|
639
|
-
oauth2_scopes=
|
639
|
+
oauth2_scopes=[],
|
640
640
|
security_source=get_security_from_env(
|
641
641
|
self.sdk_configuration.security, components.Security
|
642
642
|
),
|
@@ -788,7 +788,7 @@ class Scheduling(BaseSDK):
|
|
788
788
|
hook_ctx=HookContext(
|
789
789
|
base_url=base_url or "",
|
790
790
|
operation_id="updateSchedule",
|
791
|
-
oauth2_scopes=
|
791
|
+
oauth2_scopes=[],
|
792
792
|
security_source=get_security_from_env(
|
793
793
|
self.sdk_configuration.security, components.Security
|
794
794
|
),
|
@@ -922,7 +922,7 @@ class Scheduling(BaseSDK):
|
|
922
922
|
hook_ctx=HookContext(
|
923
923
|
base_url=base_url or "",
|
924
924
|
operation_id="getSchedules",
|
925
|
-
oauth2_scopes=
|
925
|
+
oauth2_scopes=[],
|
926
926
|
security_source=get_security_from_env(
|
927
927
|
self.sdk_configuration.security, components.Security
|
928
928
|
),
|
@@ -1035,7 +1035,7 @@ class Scheduling(BaseSDK):
|
|
1035
1035
|
hook_ctx=HookContext(
|
1036
1036
|
base_url=base_url or "",
|
1037
1037
|
operation_id="getSchedules",
|
1038
|
-
oauth2_scopes=
|
1038
|
+
oauth2_scopes=[],
|
1039
1039
|
security_source=get_security_from_env(
|
1040
1040
|
self.sdk_configuration.security, components.Security
|
1041
1041
|
),
|
@@ -1148,7 +1148,7 @@ class Scheduling(BaseSDK):
|
|
1148
1148
|
hook_ctx=HookContext(
|
1149
1149
|
base_url=base_url or "",
|
1150
1150
|
operation_id="cancelSchedule",
|
1151
|
-
oauth2_scopes=
|
1151
|
+
oauth2_scopes=[],
|
1152
1152
|
security_source=get_security_from_env(
|
1153
1153
|
self.sdk_configuration.security, components.Security
|
1154
1154
|
),
|
@@ -1275,7 +1275,7 @@ class Scheduling(BaseSDK):
|
|
1275
1275
|
hook_ctx=HookContext(
|
1276
1276
|
base_url=base_url or "",
|
1277
1277
|
operation_id="cancelSchedule",
|
1278
|
-
oauth2_scopes=
|
1278
|
+
oauth2_scopes=[],
|
1279
1279
|
security_source=get_security_from_env(
|
1280
1280
|
self.sdk_configuration.security, components.Security
|
1281
1281
|
),
|
@@ -1405,7 +1405,7 @@ class Scheduling(BaseSDK):
|
|
1405
1405
|
hook_ctx=HookContext(
|
1406
1406
|
base_url=base_url or "",
|
1407
1407
|
operation_id="getScheduledOccurrence",
|
1408
|
-
oauth2_scopes=
|
1408
|
+
oauth2_scopes=[],
|
1409
1409
|
security_source=get_security_from_env(
|
1410
1410
|
self.sdk_configuration.security, components.Security
|
1411
1411
|
),
|
@@ -1523,7 +1523,7 @@ class Scheduling(BaseSDK):
|
|
1523
1523
|
hook_ctx=HookContext(
|
1524
1524
|
base_url=base_url or "",
|
1525
1525
|
operation_id="getScheduledOccurrence",
|
1526
|
-
oauth2_scopes=
|
1526
|
+
oauth2_scopes=[],
|
1527
1527
|
security_source=get_security_from_env(
|
1528
1528
|
self.sdk_configuration.security, components.Security
|
1529
1529
|
),
|