stigg-api-client-v2 2.480.0__py3-none-any.whl → 2.482.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.
Potentially problematic release.
This version of stigg-api-client-v2 might be problematic. Click here for more details.
- stigg/generated/enums.py +2 -0
- stigg/generated/fragments.py +222 -222
- {stigg_api_client_v2-2.480.0.dist-info → stigg_api_client_v2-2.482.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.480.0.dist-info → stigg_api_client_v2-2.482.0.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-2.480.0.dist-info → stigg_api_client_v2-2.482.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.480.0.dist-info → stigg_api_client_v2-2.482.0.dist-info}/WHEEL +0 -0
stigg/generated/enums.py
CHANGED
|
@@ -446,6 +446,7 @@ class ErrorCode(str, Enum):
|
|
|
446
446
|
CustomerNoBillingId = "CustomerNoBillingId"
|
|
447
447
|
CustomerNotFound = "CustomerNotFound"
|
|
448
448
|
CustomerResourceNotFound = "CustomerResourceNotFound"
|
|
449
|
+
DeprecatedEstimateSubscriptionError = "DeprecatedEstimateSubscriptionError"
|
|
449
450
|
DowngradeBillingPeriodNotSupportedError = "DowngradeBillingPeriodNotSupportedError"
|
|
450
451
|
DraftAddonCantBeArchived = "DraftAddonCantBeArchived"
|
|
451
452
|
DraftPlanCantBeArchived = "DraftPlanCantBeArchived"
|
|
@@ -562,6 +563,7 @@ class ErrorCode(str, Enum):
|
|
|
562
563
|
Unauthenticated = "Unauthenticated"
|
|
563
564
|
UnexpectedError = "UnexpectedError"
|
|
564
565
|
UnsupportedFeatureType = "UnsupportedFeatureType"
|
|
566
|
+
UnsupportedParameter = "UnsupportedParameter"
|
|
565
567
|
UnsupportedSubscriptionScheduleType = "UnsupportedSubscriptionScheduleType"
|
|
566
568
|
UnsupportedVendorIdentifier = "UnsupportedVendorIdentifier"
|
|
567
569
|
UsageMeasurementDiffOutOfRangeError = "UsageMeasurementDiffOutOfRangeError"
|
stigg/generated/fragments.py
CHANGED
|
@@ -112,6 +112,39 @@ class OveragePriceFragmentFeature(BaseModel):
|
|
|
112
112
|
description: Optional[str] = Field(default=None)
|
|
113
113
|
|
|
114
114
|
|
|
115
|
+
class PackageEntitlementFragment(BaseModel):
|
|
116
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
117
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
118
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
119
|
+
feature_id: str = Field(alias="featureId")
|
|
120
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
121
|
+
alias="resetPeriod", default=None
|
|
122
|
+
)
|
|
123
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
124
|
+
alias="hiddenFromWidgets", default=None
|
|
125
|
+
)
|
|
126
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
127
|
+
display_name_override: Optional[str] = Field(
|
|
128
|
+
alias="displayNameOverride", default=None
|
|
129
|
+
)
|
|
130
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
134
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
135
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
136
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
137
|
+
feature_units_plural: Optional[str] = Field(
|
|
138
|
+
alias="featureUnitsPlural", default=None
|
|
139
|
+
)
|
|
140
|
+
display_name: str = Field(alias="displayName")
|
|
141
|
+
description: Optional[str] = Field(default=None)
|
|
142
|
+
ref_id: str = Field(alias="refId")
|
|
143
|
+
additional_meta_data: Optional[Any] = Field(
|
|
144
|
+
alias="additionalMetaData", default=None
|
|
145
|
+
)
|
|
146
|
+
|
|
147
|
+
|
|
115
148
|
class PriceFragment(BaseModel):
|
|
116
149
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
117
150
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -148,39 +181,6 @@ class PriceFragmentFeature(BaseModel):
|
|
|
148
181
|
description: Optional[str] = Field(default=None)
|
|
149
182
|
|
|
150
183
|
|
|
151
|
-
class PackageEntitlementFragment(BaseModel):
|
|
152
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
153
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
154
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
155
|
-
feature_id: str = Field(alias="featureId")
|
|
156
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
157
|
-
alias="resetPeriod", default=None
|
|
158
|
-
)
|
|
159
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
160
|
-
alias="hiddenFromWidgets", default=None
|
|
161
|
-
)
|
|
162
|
-
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
163
|
-
display_name_override: Optional[str] = Field(
|
|
164
|
-
alias="displayNameOverride", default=None
|
|
165
|
-
)
|
|
166
|
-
feature: "PackageEntitlementFragmentFeature"
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
class PackageEntitlementFragmentFeature(BaseModel):
|
|
170
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
171
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
172
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
173
|
-
feature_units_plural: Optional[str] = Field(
|
|
174
|
-
alias="featureUnitsPlural", default=None
|
|
175
|
-
)
|
|
176
|
-
display_name: str = Field(alias="displayName")
|
|
177
|
-
description: Optional[str] = Field(default=None)
|
|
178
|
-
ref_id: str = Field(alias="refId")
|
|
179
|
-
additional_meta_data: Optional[Any] = Field(
|
|
180
|
-
alias="additionalMetaData", default=None
|
|
181
|
-
)
|
|
182
|
-
|
|
183
|
-
|
|
184
184
|
class AddonFragment(BaseModel):
|
|
185
185
|
id: Any
|
|
186
186
|
ref_id: str = Field(alias="refId")
|
|
@@ -219,45 +219,45 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
219
219
|
pass
|
|
220
220
|
|
|
221
221
|
|
|
222
|
-
class
|
|
222
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
223
223
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
224
224
|
alias="subscriptionScheduleType"
|
|
225
225
|
)
|
|
226
226
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
227
227
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
228
|
-
target_package: Optional["
|
|
228
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
229
229
|
alias="targetPackage", default=None
|
|
230
230
|
)
|
|
231
231
|
schedule_variables: Optional[
|
|
232
232
|
Annotated[
|
|
233
233
|
Union[
|
|
234
|
-
"
|
|
235
|
-
"
|
|
236
|
-
"
|
|
237
|
-
"
|
|
238
|
-
"
|
|
239
|
-
"
|
|
240
|
-
"
|
|
241
|
-
"
|
|
234
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
235
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
236
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
237
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
238
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
239
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
240
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
241
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
242
242
|
],
|
|
243
243
|
Field(discriminator="typename__"),
|
|
244
244
|
]
|
|
245
245
|
] = Field(alias="scheduleVariables", default=None)
|
|
246
246
|
|
|
247
247
|
|
|
248
|
-
class
|
|
248
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
249
249
|
id: Any
|
|
250
250
|
ref_id: str = Field(alias="refId")
|
|
251
251
|
display_name: str = Field(alias="displayName")
|
|
252
252
|
|
|
253
253
|
|
|
254
|
-
class
|
|
254
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
255
255
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
256
256
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
257
257
|
new_quantity: float = Field(alias="newQuantity")
|
|
258
258
|
|
|
259
259
|
|
|
260
|
-
class
|
|
260
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
261
261
|
BaseModel
|
|
262
262
|
):
|
|
263
263
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -265,55 +265,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
265
265
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
266
266
|
|
|
267
267
|
|
|
268
|
-
class
|
|
268
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
269
269
|
BaseModel
|
|
270
270
|
):
|
|
271
271
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
272
272
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
273
273
|
|
|
274
274
|
|
|
275
|
-
class
|
|
275
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
276
276
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
277
277
|
|
|
278
278
|
|
|
279
|
-
class
|
|
280
|
-
BaseModel
|
|
281
|
-
):
|
|
279
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
282
280
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
283
281
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
284
282
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
285
283
|
billable_features: Optional[
|
|
286
284
|
List[
|
|
287
|
-
"
|
|
285
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
288
286
|
]
|
|
289
287
|
] = Field(alias="billableFeatures", default=None)
|
|
290
288
|
addons: Optional[
|
|
291
289
|
List[
|
|
292
|
-
"
|
|
290
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
293
291
|
]
|
|
294
292
|
] = Field(default=None)
|
|
295
293
|
price_overrides: Optional[
|
|
296
294
|
List[
|
|
297
|
-
"
|
|
295
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
298
296
|
]
|
|
299
297
|
] = Field(alias="priceOverrides", default=None)
|
|
300
298
|
|
|
301
299
|
|
|
302
|
-
class
|
|
300
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
303
301
|
BaseModel
|
|
304
302
|
):
|
|
305
303
|
feature_id: str = Field(alias="featureId")
|
|
306
304
|
quantity: float
|
|
307
305
|
|
|
308
306
|
|
|
309
|
-
class
|
|
307
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
310
308
|
BaseModel
|
|
311
309
|
):
|
|
312
310
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
313
311
|
quantity: float
|
|
314
312
|
|
|
315
313
|
|
|
316
|
-
class
|
|
314
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
317
315
|
BaseModel
|
|
318
316
|
):
|
|
319
317
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -321,43 +319,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
321
319
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
322
320
|
|
|
323
321
|
|
|
324
|
-
class
|
|
322
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
325
323
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
326
324
|
plan_ref_id: str = Field(alias="planRefId")
|
|
327
325
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
328
326
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
329
327
|
billable_features: Optional[
|
|
330
328
|
List[
|
|
331
|
-
"
|
|
329
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
332
330
|
]
|
|
333
331
|
] = Field(alias="billableFeatures", default=None)
|
|
334
332
|
addons: Optional[
|
|
335
|
-
List[
|
|
336
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
337
|
-
]
|
|
333
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
338
334
|
] = Field(default=None)
|
|
339
335
|
price_overrides: Optional[
|
|
340
336
|
List[
|
|
341
|
-
"
|
|
337
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
342
338
|
]
|
|
343
339
|
] = Field(alias="priceOverrides", default=None)
|
|
344
340
|
|
|
345
341
|
|
|
346
|
-
class
|
|
342
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
347
343
|
BaseModel
|
|
348
344
|
):
|
|
349
345
|
feature_id: str = Field(alias="featureId")
|
|
350
346
|
quantity: float
|
|
351
347
|
|
|
352
348
|
|
|
353
|
-
class
|
|
354
|
-
BaseModel
|
|
355
|
-
):
|
|
349
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
356
350
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
357
351
|
quantity: float
|
|
358
352
|
|
|
359
353
|
|
|
360
|
-
class
|
|
354
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
361
355
|
BaseModel
|
|
362
356
|
):
|
|
363
357
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -365,7 +359,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
365
359
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
366
360
|
|
|
367
361
|
|
|
368
|
-
class
|
|
362
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
369
363
|
BaseModel
|
|
370
364
|
):
|
|
371
365
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -373,14 +367,58 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
373
367
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
374
368
|
|
|
375
369
|
|
|
376
|
-
class
|
|
377
|
-
BaseModel
|
|
378
|
-
):
|
|
370
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
379
371
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
380
372
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
381
373
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
382
374
|
|
|
383
375
|
|
|
376
|
+
class TotalPriceFragment(BaseModel):
|
|
377
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
378
|
+
total: "TotalPriceFragmentTotal"
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
382
|
+
amount: float
|
|
383
|
+
currency: Currency
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
387
|
+
amount: float
|
|
388
|
+
currency: Currency
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
392
|
+
billing_id: str = Field(alias="billingId")
|
|
393
|
+
status: SubscriptionInvoiceStatus
|
|
394
|
+
created_at: Any = Field(alias="createdAt")
|
|
395
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
396
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
397
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
398
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
399
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
400
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
401
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
402
|
+
alias="billingReason", default=None
|
|
403
|
+
)
|
|
404
|
+
currency: Optional[str] = Field(default=None)
|
|
405
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
406
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
407
|
+
alias="subTotalExcludingTax", default=None
|
|
408
|
+
)
|
|
409
|
+
total: Optional[float] = Field(default=None)
|
|
410
|
+
total_excluding_tax: Optional[float] = Field(
|
|
411
|
+
alias="totalExcludingTax", default=None
|
|
412
|
+
)
|
|
413
|
+
tax: Optional[float] = Field(default=None)
|
|
414
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
415
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
419
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
420
|
+
|
|
421
|
+
|
|
384
422
|
class SlimCustomerFragment(BaseModel):
|
|
385
423
|
id: Any
|
|
386
424
|
name: Optional[str] = Field(default=None)
|
|
@@ -518,64 +556,45 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
518
556
|
limit: float
|
|
519
557
|
|
|
520
558
|
|
|
521
|
-
class
|
|
522
|
-
resource_id: str = Field(alias="resourceId")
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
class TotalPriceFragment(BaseModel):
|
|
526
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
527
|
-
total: "TotalPriceFragmentTotal"
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
531
|
-
amount: float
|
|
532
|
-
currency: Currency
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
536
|
-
amount: float
|
|
537
|
-
currency: Currency
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
class SubscriptionFutureUpdateData(BaseModel):
|
|
559
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
541
560
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
542
561
|
alias="subscriptionScheduleType"
|
|
543
562
|
)
|
|
544
563
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
545
564
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
546
|
-
target_package: Optional["
|
|
565
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
547
566
|
alias="targetPackage", default=None
|
|
548
567
|
)
|
|
549
568
|
schedule_variables: Optional[
|
|
550
569
|
Annotated[
|
|
551
570
|
Union[
|
|
552
|
-
"
|
|
553
|
-
"
|
|
554
|
-
"
|
|
555
|
-
"
|
|
556
|
-
"
|
|
557
|
-
"
|
|
558
|
-
"
|
|
559
|
-
"
|
|
571
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
572
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
573
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
574
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
575
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
576
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
577
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
578
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
560
579
|
],
|
|
561
580
|
Field(discriminator="typename__"),
|
|
562
581
|
]
|
|
563
582
|
] = Field(alias="scheduleVariables", default=None)
|
|
564
583
|
|
|
565
584
|
|
|
566
|
-
class
|
|
585
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
567
586
|
id: Any
|
|
568
587
|
ref_id: str = Field(alias="refId")
|
|
569
588
|
display_name: str = Field(alias="displayName")
|
|
570
589
|
|
|
571
590
|
|
|
572
|
-
class
|
|
591
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
573
592
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
574
593
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
575
594
|
new_quantity: float = Field(alias="newQuantity")
|
|
576
595
|
|
|
577
596
|
|
|
578
|
-
class
|
|
597
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
579
598
|
BaseModel
|
|
580
599
|
):
|
|
581
600
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -583,53 +602,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
583
602
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
584
603
|
|
|
585
604
|
|
|
586
|
-
class
|
|
605
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
587
606
|
BaseModel
|
|
588
607
|
):
|
|
589
608
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
590
609
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
591
610
|
|
|
592
611
|
|
|
593
|
-
class
|
|
612
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
594
613
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
595
614
|
|
|
596
615
|
|
|
597
|
-
class
|
|
616
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
617
|
+
BaseModel
|
|
618
|
+
):
|
|
598
619
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
599
620
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
600
621
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
601
622
|
billable_features: Optional[
|
|
602
623
|
List[
|
|
603
|
-
"
|
|
624
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
604
625
|
]
|
|
605
626
|
] = Field(alias="billableFeatures", default=None)
|
|
606
627
|
addons: Optional[
|
|
607
628
|
List[
|
|
608
|
-
"
|
|
629
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
609
630
|
]
|
|
610
631
|
] = Field(default=None)
|
|
611
632
|
price_overrides: Optional[
|
|
612
633
|
List[
|
|
613
|
-
"
|
|
634
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
614
635
|
]
|
|
615
636
|
] = Field(alias="priceOverrides", default=None)
|
|
616
637
|
|
|
617
638
|
|
|
618
|
-
class
|
|
639
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
619
640
|
BaseModel
|
|
620
641
|
):
|
|
621
642
|
feature_id: str = Field(alias="featureId")
|
|
622
643
|
quantity: float
|
|
623
644
|
|
|
624
645
|
|
|
625
|
-
class
|
|
646
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
626
647
|
BaseModel
|
|
627
648
|
):
|
|
628
649
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
629
650
|
quantity: float
|
|
630
651
|
|
|
631
652
|
|
|
632
|
-
class
|
|
653
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
633
654
|
BaseModel
|
|
634
655
|
):
|
|
635
656
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -637,39 +658,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
637
658
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
638
659
|
|
|
639
660
|
|
|
640
|
-
class
|
|
661
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
641
662
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
642
663
|
plan_ref_id: str = Field(alias="planRefId")
|
|
643
664
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
644
665
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
645
666
|
billable_features: Optional[
|
|
646
667
|
List[
|
|
647
|
-
"
|
|
668
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
648
669
|
]
|
|
649
670
|
] = Field(alias="billableFeatures", default=None)
|
|
650
671
|
addons: Optional[
|
|
651
|
-
List[
|
|
672
|
+
List[
|
|
673
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
674
|
+
]
|
|
652
675
|
] = Field(default=None)
|
|
653
676
|
price_overrides: Optional[
|
|
654
677
|
List[
|
|
655
|
-
"
|
|
678
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
656
679
|
]
|
|
657
680
|
] = Field(alias="priceOverrides", default=None)
|
|
658
681
|
|
|
659
682
|
|
|
660
|
-
class
|
|
683
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
661
684
|
BaseModel
|
|
662
685
|
):
|
|
663
686
|
feature_id: str = Field(alias="featureId")
|
|
664
687
|
quantity: float
|
|
665
688
|
|
|
666
689
|
|
|
667
|
-
class
|
|
690
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
691
|
+
BaseModel
|
|
692
|
+
):
|
|
668
693
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
669
694
|
quantity: float
|
|
670
695
|
|
|
671
696
|
|
|
672
|
-
class
|
|
697
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
673
698
|
BaseModel
|
|
674
699
|
):
|
|
675
700
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -677,7 +702,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
677
702
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
678
703
|
|
|
679
704
|
|
|
680
|
-
class
|
|
705
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
681
706
|
BaseModel
|
|
682
707
|
):
|
|
683
708
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -685,41 +710,16 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
685
710
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
686
711
|
|
|
687
712
|
|
|
688
|
-
class
|
|
713
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
714
|
+
BaseModel
|
|
715
|
+
):
|
|
689
716
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
690
717
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
691
718
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
692
719
|
|
|
693
720
|
|
|
694
|
-
class
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
699
|
-
billing_id: str = Field(alias="billingId")
|
|
700
|
-
status: SubscriptionInvoiceStatus
|
|
701
|
-
created_at: Any = Field(alias="createdAt")
|
|
702
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
703
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
704
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
705
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
706
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
707
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
708
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
709
|
-
alias="billingReason", default=None
|
|
710
|
-
)
|
|
711
|
-
currency: Optional[str] = Field(default=None)
|
|
712
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
713
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
714
|
-
alias="subTotalExcludingTax", default=None
|
|
715
|
-
)
|
|
716
|
-
total: Optional[float] = Field(default=None)
|
|
717
|
-
total_excluding_tax: Optional[float] = Field(
|
|
718
|
-
alias="totalExcludingTax", default=None
|
|
719
|
-
)
|
|
720
|
-
tax: Optional[float] = Field(default=None)
|
|
721
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
722
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
721
|
+
class CustomerResourceFragment(BaseModel):
|
|
722
|
+
resource_id: str = Field(alias="resourceId")
|
|
723
723
|
|
|
724
724
|
|
|
725
725
|
class SubscriptionFragment(BaseModel):
|
|
@@ -993,6 +993,35 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
993
993
|
)
|
|
994
994
|
|
|
995
995
|
|
|
996
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
997
|
+
status: PromotionalEntitlementStatus
|
|
998
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
999
|
+
feature_id: Any = Field(alias="featureId")
|
|
1000
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1001
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1002
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1003
|
+
alias="resetPeriod", default=None
|
|
1004
|
+
)
|
|
1005
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1006
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1007
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1008
|
+
|
|
1009
|
+
|
|
1010
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1011
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1012
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1013
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1014
|
+
feature_units_plural: Optional[str] = Field(
|
|
1015
|
+
alias="featureUnitsPlural", default=None
|
|
1016
|
+
)
|
|
1017
|
+
display_name: str = Field(alias="displayName")
|
|
1018
|
+
description: Optional[str] = Field(default=None)
|
|
1019
|
+
ref_id: str = Field(alias="refId")
|
|
1020
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1021
|
+
alias="additionalMetaData", default=None
|
|
1022
|
+
)
|
|
1023
|
+
|
|
1024
|
+
|
|
996
1025
|
class CouponFragment(BaseModel):
|
|
997
1026
|
id: Any
|
|
998
1027
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1027,35 +1056,6 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1027
1056
|
status: SyncStatus
|
|
1028
1057
|
|
|
1029
1058
|
|
|
1030
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
1031
|
-
status: PromotionalEntitlementStatus
|
|
1032
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1033
|
-
feature_id: Any = Field(alias="featureId")
|
|
1034
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1035
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1036
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1037
|
-
alias="resetPeriod", default=None
|
|
1038
|
-
)
|
|
1039
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1040
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1041
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1045
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1046
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1047
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1048
|
-
feature_units_plural: Optional[str] = Field(
|
|
1049
|
-
alias="featureUnitsPlural", default=None
|
|
1050
|
-
)
|
|
1051
|
-
display_name: str = Field(alias="displayName")
|
|
1052
|
-
description: Optional[str] = Field(default=None)
|
|
1053
|
-
ref_id: str = Field(alias="refId")
|
|
1054
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1055
|
-
alias="additionalMetaData", default=None
|
|
1056
|
-
)
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
1059
|
class CustomerFragment(SlimCustomerFragment):
|
|
1060
1060
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1061
1061
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1272,40 +1272,6 @@ class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
|
1272
1272
|
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1273
1273
|
|
|
1274
1274
|
|
|
1275
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1276
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1277
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1278
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1279
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1280
|
-
default=None
|
|
1281
|
-
)
|
|
1282
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1283
|
-
default=None
|
|
1284
|
-
)
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1288
|
-
amount: float
|
|
1289
|
-
currency: Currency
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1293
|
-
id: Any
|
|
1294
|
-
ref_id: str = Field(alias="refId")
|
|
1295
|
-
display_name: str = Field(alias="displayName")
|
|
1296
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1297
|
-
feature_units_plural: Optional[str] = Field(
|
|
1298
|
-
alias="featureUnitsPlural", default=None
|
|
1299
|
-
)
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1303
|
-
addon_id: str = Field(alias="addonId")
|
|
1304
|
-
description: Optional[str] = Field(default=None)
|
|
1305
|
-
display_name: str = Field(alias="displayName")
|
|
1306
|
-
quantity: int
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
1275
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1310
1276
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1311
1277
|
alias="subscriptionScheduleType"
|
|
@@ -1475,6 +1441,40 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1475
1441
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1476
1442
|
|
|
1477
1443
|
|
|
1444
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1445
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1446
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1447
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1448
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1449
|
+
default=None
|
|
1450
|
+
)
|
|
1451
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1452
|
+
default=None
|
|
1453
|
+
)
|
|
1454
|
+
|
|
1455
|
+
|
|
1456
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1457
|
+
amount: float
|
|
1458
|
+
currency: Currency
|
|
1459
|
+
|
|
1460
|
+
|
|
1461
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1462
|
+
id: Any
|
|
1463
|
+
ref_id: str = Field(alias="refId")
|
|
1464
|
+
display_name: str = Field(alias="displayName")
|
|
1465
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1466
|
+
feature_units_plural: Optional[str] = Field(
|
|
1467
|
+
alias="featureUnitsPlural", default=None
|
|
1468
|
+
)
|
|
1469
|
+
|
|
1470
|
+
|
|
1471
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1472
|
+
addon_id: str = Field(alias="addonId")
|
|
1473
|
+
description: Optional[str] = Field(default=None)
|
|
1474
|
+
display_name: str = Field(alias="displayName")
|
|
1475
|
+
quantity: int
|
|
1476
|
+
|
|
1477
|
+
|
|
1478
1478
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1479
1479
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1480
1480
|
plan_id: str = Field(alias="planId")
|
|
@@ -2840,19 +2840,19 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2840
2840
|
AddonDependencyFragment.model_rebuild()
|
|
2841
2841
|
PriceTierFragment.model_rebuild()
|
|
2842
2842
|
OveragePriceFragment.model_rebuild()
|
|
2843
|
-
PriceFragment.model_rebuild()
|
|
2844
2843
|
PackageEntitlementFragment.model_rebuild()
|
|
2844
|
+
PriceFragment.model_rebuild()
|
|
2845
2845
|
AddonFragment.model_rebuild()
|
|
2846
|
-
|
|
2846
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2847
|
+
TotalPriceFragment.model_rebuild()
|
|
2848
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2849
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2847
2850
|
SlimCustomerFragment.model_rebuild()
|
|
2848
2851
|
ProductFragment.model_rebuild()
|
|
2849
2852
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2850
2853
|
PlanFragment.model_rebuild()
|
|
2854
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2851
2855
|
CustomerResourceFragment.model_rebuild()
|
|
2852
|
-
TotalPriceFragment.model_rebuild()
|
|
2853
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2854
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2855
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2856
2856
|
SubscriptionFragment.model_rebuild()
|
|
2857
2857
|
FeatureFragment.model_rebuild()
|
|
2858
2858
|
EntitlementFragment.model_rebuild()
|
|
@@ -2860,17 +2860,17 @@ ApplySubscriptionFragment.model_rebuild()
|
|
|
2860
2860
|
FontVariantFragment.model_rebuild()
|
|
2861
2861
|
TypographyConfigurationFragment.model_rebuild()
|
|
2862
2862
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2863
|
-
CouponFragment.model_rebuild()
|
|
2864
2863
|
PromotionalEntitlementFragment.model_rebuild()
|
|
2864
|
+
CouponFragment.model_rebuild()
|
|
2865
2865
|
CustomerFragment.model_rebuild()
|
|
2866
2866
|
CheckoutStateFragment.model_rebuild()
|
|
2867
2867
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2868
2868
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2869
2869
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2870
2870
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2871
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2871
2872
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2872
2873
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2873
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2874
2874
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2875
2875
|
CustomerPortalFragment.model_rebuild()
|
|
2876
2876
|
CustomerStatisticsFragment.model_rebuild()
|
|
@@ -119,11 +119,11 @@ stigg/generated/client.py,sha256=FIRvvpLkBu44ce1V4CJtQ1XFIsWX_tqk2Qh46MPpWIM,172
|
|
|
119
119
|
stigg/generated/create_subscription.py,sha256=vbpBJ_daXHcQDtvU3vbwSr2E7s4VGRHxqPavyTV3Mtk,457
|
|
120
120
|
stigg/generated/delegate_subscription_to_customer.py,sha256=0TgQDO0Hk-z7X7PGtqhvciqa8IjkToK9cpiX3Kqu_UY,561
|
|
121
121
|
stigg/generated/detach_customer_payment_method.py,sha256=ACXlC2xsGaUP723OrayFZQ9SbXxe8TtVUYdG1gqcYFc,523
|
|
122
|
-
stigg/generated/enums.py,sha256=
|
|
122
|
+
stigg/generated/enums.py,sha256=KTgzOS_WB86OMovgzudYX1xb40b_-Z_kT96fNwG3TaM,36446
|
|
123
123
|
stigg/generated/estimate_subscription.py,sha256=c0_vg0A_Hi8fdjeGudWZ0WziUF9jcjX5rlRitGMAMaQ,479
|
|
124
124
|
stigg/generated/estimate_subscription_update.py,sha256=ZYIFqqHHDfzhrOn95QnMmPNTXZ7JrKWRlUFzk8fWwKA,528
|
|
125
125
|
stigg/generated/exceptions.py,sha256=OQu-ZYCCV4VyMWTd1HR8gIjIK2CrA_JMlFxqOAJugWY,2411
|
|
126
|
-
stigg/generated/fragments.py,sha256=
|
|
126
|
+
stigg/generated/fragments.py,sha256=V__KilpjDZt2_ICXfumj5m3JwRrRcHYfWO3hmxlNkBA,103692
|
|
127
127
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
128
128
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
129
129
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -161,7 +161,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
161
161
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
162
162
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
163
163
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
164
|
-
stigg_api_client_v2-2.
|
|
165
|
-
stigg_api_client_v2-2.
|
|
166
|
-
stigg_api_client_v2-2.
|
|
167
|
-
stigg_api_client_v2-2.
|
|
164
|
+
stigg_api_client_v2-2.482.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
165
|
+
stigg_api_client_v2-2.482.0.dist-info/METADATA,sha256=ZofhZf01zXLgjqcs3vwoVNdcktVoGXT1rNRJifAi5h4,2258
|
|
166
|
+
stigg_api_client_v2-2.482.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
167
|
+
stigg_api_client_v2-2.482.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|