moovio_sdk 0.3.17__py3-none-any.whl → 0.3.18__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.
@@ -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=None,
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=None,
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=None,
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=None,
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=None,
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=None,
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=None,
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=None,
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=None,
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=None,
1184
1184
  security_source=get_security_from_env(
1185
1185
  self.sdk_configuration.security, components.Security
1186
1186
  ),
@@ -39,24 +39,20 @@ class CardTypedDict(TypedDict):
39
39
  billing_address: CardAddressTypedDict
40
40
  card_verification: CardVerificationTypedDict
41
41
  r"""The results of submitting cardholder data to a card network for verification."""
42
- issuer: str
43
- r"""Financial institution that issued the card."""
44
- issuer_country: str
45
- r"""Country where the card was issued."""
46
- issuer_url: str
47
- r"""URL of the issuer."""
48
- issuer_phone: str
49
- r"""Phone number of the issuer."""
50
- domestic_push_to_card: DomesticPushToCard
51
- r"""Indicates which level of domestic push-to-card transfer is supported by the card, if any."""
52
- domestic_pull_from_card: DomesticPullFromCard
53
- r"""Indicates if the card supports domestic pull-from-card transfer."""
54
42
  card_category: NotRequired[str]
55
43
  r"""The category or level of the card defined by the issuer.
56
44
  Examples include, but not limited to, \"REWARDS\", \"TRADITIONAL REWARDS\", \"CLASSIC\", and \"CORPORATE PURCHASING\".
57
45
  """
58
46
  holder_name: NotRequired[str]
59
47
  r"""The name of the cardholder as it appears on the card."""
48
+ issuer: NotRequired[str]
49
+ r"""Financial institution that issued the card."""
50
+ issuer_country: NotRequired[str]
51
+ r"""Country where the card was issued."""
52
+ issuer_url: NotRequired[str]
53
+ r"""URL of the issuer."""
54
+ issuer_phone: NotRequired[str]
55
+ r"""Phone number of the issuer."""
60
56
  commercial: NotRequired[bool]
61
57
  r"""If true, the card is for commercial use, or associated with a business.
62
58
  If false, the card is associated with a general consumer.
@@ -70,6 +66,10 @@ class CardTypedDict(TypedDict):
70
66
  merchant_account_id: NotRequired[str]
71
67
  card_account_updater: NotRequired[CardAccountUpdaterTypedDict]
72
68
  r"""The results of the most recent card update request."""
69
+ domestic_push_to_card: NotRequired[DomesticPushToCard]
70
+ r"""Indicates which level of domestic push-to-card transfer is supported by the card, if any."""
71
+ domestic_pull_from_card: NotRequired[DomesticPullFromCard]
72
+ r"""Indicates if the card supports domestic pull-from-card transfer."""
73
73
  payment_methods: NotRequired[List[BasicPaymentMethodTypedDict]]
74
74
 
75
75
 
@@ -107,28 +107,6 @@ class Card(BaseModel):
107
107
  ]
108
108
  r"""The results of submitting cardholder data to a card network for verification."""
109
109
 
110
- issuer: str
111
- r"""Financial institution that issued the card."""
112
-
113
- issuer_country: Annotated[str, pydantic.Field(alias="issuerCountry")]
114
- r"""Country where the card was issued."""
115
-
116
- issuer_url: Annotated[str, pydantic.Field(alias="issuerURL")]
117
- r"""URL of the issuer."""
118
-
119
- issuer_phone: Annotated[str, pydantic.Field(alias="issuerPhone")]
120
- r"""Phone number of the issuer."""
121
-
122
- domestic_push_to_card: Annotated[
123
- DomesticPushToCard, pydantic.Field(alias="domesticPushToCard")
124
- ]
125
- r"""Indicates which level of domestic push-to-card transfer is supported by the card, if any."""
126
-
127
- domestic_pull_from_card: Annotated[
128
- DomesticPullFromCard, pydantic.Field(alias="domesticPullFromCard")
129
- ]
130
- r"""Indicates if the card supports domestic pull-from-card transfer."""
131
-
132
110
  card_category: Annotated[Optional[str], pydantic.Field(alias="cardCategory")] = None
133
111
  r"""The category or level of the card defined by the issuer.
134
112
  Examples include, but not limited to, \"REWARDS\", \"TRADITIONAL REWARDS\", \"CLASSIC\", and \"CORPORATE PURCHASING\".
@@ -137,6 +115,20 @@ class Card(BaseModel):
137
115
  holder_name: Annotated[Optional[str], pydantic.Field(alias="holderName")] = None
138
116
  r"""The name of the cardholder as it appears on the card."""
139
117
 
118
+ issuer: Optional[str] = None
119
+ r"""Financial institution that issued the card."""
120
+
121
+ issuer_country: Annotated[Optional[str], pydantic.Field(alias="issuerCountry")] = (
122
+ None
123
+ )
124
+ r"""Country where the card was issued."""
125
+
126
+ issuer_url: Annotated[Optional[str], pydantic.Field(alias="issuerURL")] = None
127
+ r"""URL of the issuer."""
128
+
129
+ issuer_phone: Annotated[Optional[str], pydantic.Field(alias="issuerPhone")] = None
130
+ r"""Phone number of the issuer."""
131
+
140
132
  commercial: Optional[bool] = None
141
133
  r"""If true, the card is for commercial use, or associated with a business.
142
134
  If false, the card is associated with a general consumer.
@@ -159,6 +151,16 @@ class Card(BaseModel):
159
151
  ] = None
160
152
  r"""The results of the most recent card update request."""
161
153
 
154
+ domestic_push_to_card: Annotated[
155
+ Optional[DomesticPushToCard], pydantic.Field(alias="domesticPushToCard")
156
+ ] = None
157
+ r"""Indicates which level of domestic push-to-card transfer is supported by the card, if any."""
158
+
159
+ domestic_pull_from_card: Annotated[
160
+ Optional[DomesticPullFromCard], pydantic.Field(alias="domesticPullFromCard")
161
+ ] = None
162
+ r"""Indicates if the card supports domestic pull-from-card transfer."""
163
+
162
164
  payment_methods: Annotated[
163
165
  Optional[List[BasicPaymentMethod]], pydantic.Field(alias="paymentMethods")
164
166
  ] = None
@@ -38,21 +38,21 @@ class PaymentMethodsCardTypedDict(TypedDict):
38
38
  billing_address: CardAddressTypedDict
39
39
  card_verification: CardVerificationTypedDict
40
40
  r"""The results of submitting cardholder data to a card network for verification."""
41
- issuer: str
42
- r"""Financial institution that issued the card."""
43
- issuer_country: str
44
- r"""Country where the card was issued."""
45
- domestic_push_to_card: DomesticPushToCard
46
- r"""Indicates which level of domestic push-to-card transfer is supported by the card, if any."""
47
- domestic_pull_from_card: DomesticPullFromCard
48
- r"""Indicates if the card supports domestic pull-from-card transfer."""
49
41
  holder_name: NotRequired[str]
50
42
  r"""The name of the cardholder as it appears on the card."""
43
+ issuer: NotRequired[str]
44
+ r"""Financial institution that issued the card."""
45
+ issuer_country: NotRequired[str]
46
+ r"""Country where the card was issued."""
51
47
  card_on_file: NotRequired[bool]
52
48
  r"""Indicates cardholder has authorized card to be stored for future payments."""
53
49
  merchant_account_id: NotRequired[str]
54
50
  card_account_updater: NotRequired[CardAccountUpdaterTypedDict]
55
51
  r"""The results of the most recent card update request."""
52
+ domestic_push_to_card: NotRequired[DomesticPushToCard]
53
+ r"""Indicates which level of domestic push-to-card transfer is supported by the card, if any."""
54
+ domestic_pull_from_card: NotRequired[DomesticPullFromCard]
55
+ r"""Indicates if the card supports domestic pull-from-card transfer."""
56
56
 
57
57
 
58
58
  class PaymentMethodsCard(BaseModel):
@@ -89,25 +89,17 @@ class PaymentMethodsCard(BaseModel):
89
89
  ]
90
90
  r"""The results of submitting cardholder data to a card network for verification."""
91
91
 
92
- issuer: str
92
+ holder_name: Annotated[Optional[str], pydantic.Field(alias="holderName")] = None
93
+ r"""The name of the cardholder as it appears on the card."""
94
+
95
+ issuer: Optional[str] = None
93
96
  r"""Financial institution that issued the card."""
94
97
 
95
- issuer_country: Annotated[str, pydantic.Field(alias="issuerCountry")]
98
+ issuer_country: Annotated[Optional[str], pydantic.Field(alias="issuerCountry")] = (
99
+ None
100
+ )
96
101
  r"""Country where the card was issued."""
97
102
 
98
- domestic_push_to_card: Annotated[
99
- DomesticPushToCard, pydantic.Field(alias="domesticPushToCard")
100
- ]
101
- r"""Indicates which level of domestic push-to-card transfer is supported by the card, if any."""
102
-
103
- domestic_pull_from_card: Annotated[
104
- DomesticPullFromCard, pydantic.Field(alias="domesticPullFromCard")
105
- ]
106
- r"""Indicates if the card supports domestic pull-from-card transfer."""
107
-
108
- holder_name: Annotated[Optional[str], pydantic.Field(alias="holderName")] = None
109
- r"""The name of the cardholder as it appears on the card."""
110
-
111
103
  card_on_file: Annotated[Optional[bool], pydantic.Field(alias="cardOnFile")] = None
112
104
  r"""Indicates cardholder has authorized card to be stored for future payments."""
113
105
 
@@ -119,3 +111,13 @@ class PaymentMethodsCard(BaseModel):
119
111
  Optional[CardAccountUpdater], pydantic.Field(alias="cardAccountUpdater")
120
112
  ] = None
121
113
  r"""The results of the most recent card update request."""
114
+
115
+ domestic_push_to_card: Annotated[
116
+ Optional[DomesticPushToCard], pydantic.Field(alias="domesticPushToCard")
117
+ ] = None
118
+ r"""Indicates which level of domestic push-to-card transfer is supported by the card, if any."""
119
+
120
+ domestic_pull_from_card: Annotated[
121
+ Optional[DomesticPullFromCard], pydantic.Field(alias="domesticPullFromCard")
122
+ ] = None
123
+ r"""Indicates if the card supports domestic pull-from-card 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=None,
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=None,
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=None,
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=None,
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=None,
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=None,
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=None,
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=None,
934
934
  security_source=get_security_from_env(
935
935
  self.sdk_configuration.security, components.Security
936
936
  ),
@@ -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=None,
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=None,
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=None,
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=None,
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=None,
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=None,
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=None,
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=None,
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=None,
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=None,
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=None,
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=None,
1646
1646
  security_source=get_security_from_env(
1647
1647
  self.sdk_configuration.security, components.Security
1648
1648
  ),
@@ -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=None,
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=None,
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=None,
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=None,
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=None,
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=None,
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=None,
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=None,
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=None,
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=None,
463
463
  security_source=get_security_from_env(
464
464
  self.sdk_configuration.security, components.Security
465
465
  ),
@@ -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=None,
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=None,
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=None,
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=None,
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=None,
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=None,
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=None,
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=None,
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=None,
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=None,
1456
1456
  security_source=get_security_from_env(
1457
1457
  self.sdk_configuration.security, components.Security
1458
1458
  ),