stigg-api-client-v2 2.315.3__py3-none-any.whl → 2.319.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/fragments.py +310 -310
- stigg/generated/input_types.py +4 -2
- {stigg_api_client_v2-2.315.3.dist-info → stigg_api_client_v2-2.319.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.315.3.dist-info → stigg_api_client_v2-2.319.0.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-2.315.3.dist-info → stigg_api_client_v2-2.319.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.315.3.dist-info → stigg_api_client_v2-2.319.0.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -59,6 +59,39 @@ class AddonDependencyFragment(BaseModel):
|
|
|
59
59
|
description: Optional[str] = Field(default=None)
|
|
60
60
|
|
|
61
61
|
|
|
62
|
+
class PackageEntitlementFragment(BaseModel):
|
|
63
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
64
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
65
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
66
|
+
feature_id: str = Field(alias="featureId")
|
|
67
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
68
|
+
alias="resetPeriod", default=None
|
|
69
|
+
)
|
|
70
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
71
|
+
alias="hiddenFromWidgets", default=None
|
|
72
|
+
)
|
|
73
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
74
|
+
display_name_override: Optional[str] = Field(
|
|
75
|
+
alias="displayNameOverride", default=None
|
|
76
|
+
)
|
|
77
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
81
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
82
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
83
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
84
|
+
feature_units_plural: Optional[str] = Field(
|
|
85
|
+
alias="featureUnitsPlural", default=None
|
|
86
|
+
)
|
|
87
|
+
display_name: str = Field(alias="displayName")
|
|
88
|
+
description: Optional[str] = Field(default=None)
|
|
89
|
+
ref_id: str = Field(alias="refId")
|
|
90
|
+
additional_meta_data: Optional[Any] = Field(
|
|
91
|
+
alias="additionalMetaData", default=None
|
|
92
|
+
)
|
|
93
|
+
|
|
94
|
+
|
|
62
95
|
class PriceTierFragment(BaseModel):
|
|
63
96
|
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
64
97
|
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
@@ -147,39 +180,6 @@ class OveragePriceFragmentFeature(BaseModel):
|
|
|
147
180
|
description: Optional[str] = Field(default=None)
|
|
148
181
|
|
|
149
182
|
|
|
150
|
-
class PackageEntitlementFragment(BaseModel):
|
|
151
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
152
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
153
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
154
|
-
feature_id: str = Field(alias="featureId")
|
|
155
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
156
|
-
alias="resetPeriod", default=None
|
|
157
|
-
)
|
|
158
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
159
|
-
alias="hiddenFromWidgets", default=None
|
|
160
|
-
)
|
|
161
|
-
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
162
|
-
display_name_override: Optional[str] = Field(
|
|
163
|
-
alias="displayNameOverride", default=None
|
|
164
|
-
)
|
|
165
|
-
feature: "PackageEntitlementFragmentFeature"
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
class PackageEntitlementFragmentFeature(BaseModel):
|
|
169
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
170
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
171
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
172
|
-
feature_units_plural: Optional[str] = Field(
|
|
173
|
-
alias="featureUnitsPlural", default=None
|
|
174
|
-
)
|
|
175
|
-
display_name: str = Field(alias="displayName")
|
|
176
|
-
description: Optional[str] = Field(default=None)
|
|
177
|
-
ref_id: str = Field(alias="refId")
|
|
178
|
-
additional_meta_data: Optional[Any] = Field(
|
|
179
|
-
alias="additionalMetaData", default=None
|
|
180
|
-
)
|
|
181
|
-
|
|
182
|
-
|
|
183
183
|
class AddonFragment(BaseModel):
|
|
184
184
|
id: str
|
|
185
185
|
ref_id: str = Field(alias="refId")
|
|
@@ -298,66 +298,196 @@ class EntitlementFragmentFeature(FeatureFragment):
|
|
|
298
298
|
pass
|
|
299
299
|
|
|
300
300
|
|
|
301
|
-
class
|
|
301
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
302
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
303
|
+
display_name: str = Field(alias="displayName")
|
|
304
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
305
|
+
default=None
|
|
306
|
+
)
|
|
307
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
311
|
+
pass
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
315
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
316
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
class ProductFragment(BaseModel):
|
|
320
|
+
ref_id: str = Field(alias="refId")
|
|
321
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
322
|
+
description: Optional[str] = Field(default=None)
|
|
323
|
+
additional_meta_data: Optional[Any] = Field(
|
|
324
|
+
alias="additionalMetaData", default=None
|
|
325
|
+
)
|
|
326
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
330
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
331
|
+
alias="downgradePlan", default=None
|
|
332
|
+
)
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
336
|
+
ref_id: str = Field(alias="refId")
|
|
337
|
+
display_name: str = Field(alias="displayName")
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
class PlanFragment(BaseModel):
|
|
302
341
|
id: str
|
|
303
|
-
name: Optional[str] = Field(default=None)
|
|
304
|
-
email: Optional[str] = Field(default=None)
|
|
305
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
306
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
307
342
|
ref_id: str = Field(alias="refId")
|
|
308
|
-
|
|
343
|
+
display_name: str = Field(alias="displayName")
|
|
344
|
+
description: Optional[str] = Field(default=None)
|
|
309
345
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
346
|
+
version_number: int = Field(alias="versionNumber")
|
|
310
347
|
additional_meta_data: Optional[Any] = Field(
|
|
311
348
|
alias="additionalMetaData", default=None
|
|
312
349
|
)
|
|
313
|
-
|
|
314
|
-
alias="
|
|
350
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
351
|
+
alias="hiddenFromWidgets", default=None
|
|
352
|
+
)
|
|
353
|
+
product: "PlanFragmentProduct"
|
|
354
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
355
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
356
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
357
|
+
alias="inheritedEntitlements", default=None
|
|
315
358
|
)
|
|
359
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
360
|
+
alias="compatibleAddons", default=None
|
|
361
|
+
)
|
|
362
|
+
compatible_package_groups: Optional[
|
|
363
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
364
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
365
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
366
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
367
|
+
alias="overagePrices", default=None
|
|
368
|
+
)
|
|
369
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
370
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
371
|
+
alias="defaultTrialConfig", default=None
|
|
372
|
+
)
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
class PlanFragmentProduct(ProductFragment):
|
|
376
|
+
pass
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
380
|
+
ref_id: str = Field(alias="refId")
|
|
381
|
+
display_name: str = Field(alias="displayName")
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
385
|
+
pass
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
389
|
+
pass
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
393
|
+
pass
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
397
|
+
pass
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
class PlanFragmentPrices(PriceFragment):
|
|
401
|
+
pass
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
405
|
+
pass
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
409
|
+
duration: float
|
|
410
|
+
units: TrialPeriodUnits
|
|
411
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
412
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
413
|
+
alias="trialEndBehavior", default=None
|
|
414
|
+
)
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
418
|
+
limit: float
|
|
316
419
|
|
|
317
420
|
|
|
318
421
|
class CustomerResourceFragment(BaseModel):
|
|
319
422
|
resource_id: str = Field(alias="resourceId")
|
|
320
423
|
|
|
321
424
|
|
|
322
|
-
class
|
|
425
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
426
|
+
billing_id: str = Field(alias="billingId")
|
|
427
|
+
status: SubscriptionInvoiceStatus
|
|
428
|
+
created_at: Any = Field(alias="createdAt")
|
|
429
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
430
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
431
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
432
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
433
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
434
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
435
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
436
|
+
alias="billingReason", default=None
|
|
437
|
+
)
|
|
438
|
+
currency: Optional[str] = Field(default=None)
|
|
439
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
440
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
441
|
+
alias="subTotalExcludingTax", default=None
|
|
442
|
+
)
|
|
443
|
+
total: Optional[float] = Field(default=None)
|
|
444
|
+
total_excluding_tax: Optional[float] = Field(
|
|
445
|
+
alias="totalExcludingTax", default=None
|
|
446
|
+
)
|
|
447
|
+
tax: Optional[float] = Field(default=None)
|
|
448
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
449
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
450
|
+
|
|
451
|
+
|
|
452
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
323
453
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
324
454
|
alias="subscriptionScheduleType"
|
|
325
455
|
)
|
|
326
456
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
327
457
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
328
|
-
target_package: Optional["
|
|
458
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
329
459
|
alias="targetPackage", default=None
|
|
330
460
|
)
|
|
331
461
|
schedule_variables: Optional[
|
|
332
462
|
Annotated[
|
|
333
463
|
Union[
|
|
334
|
-
"
|
|
335
|
-
"
|
|
336
|
-
"
|
|
337
|
-
"
|
|
338
|
-
"
|
|
339
|
-
"
|
|
340
|
-
"
|
|
341
|
-
"
|
|
464
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
465
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
466
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
467
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
468
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
469
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
470
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
471
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
342
472
|
],
|
|
343
473
|
Field(discriminator="typename__"),
|
|
344
474
|
]
|
|
345
475
|
] = Field(alias="scheduleVariables", default=None)
|
|
346
476
|
|
|
347
477
|
|
|
348
|
-
class
|
|
478
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
349
479
|
id: str
|
|
350
480
|
ref_id: str = Field(alias="refId")
|
|
351
481
|
display_name: str = Field(alias="displayName")
|
|
352
482
|
|
|
353
483
|
|
|
354
|
-
class
|
|
484
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
355
485
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
356
486
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
357
487
|
new_quantity: float = Field(alias="newQuantity")
|
|
358
488
|
|
|
359
489
|
|
|
360
|
-
class
|
|
490
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
361
491
|
BaseModel
|
|
362
492
|
):
|
|
363
493
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -365,53 +495,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
365
495
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
366
496
|
|
|
367
497
|
|
|
368
|
-
class
|
|
498
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
369
499
|
BaseModel
|
|
370
500
|
):
|
|
371
501
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
372
502
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
373
503
|
|
|
374
504
|
|
|
375
|
-
class
|
|
505
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
376
506
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
377
507
|
|
|
378
508
|
|
|
379
|
-
class
|
|
509
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
510
|
+
BaseModel
|
|
511
|
+
):
|
|
380
512
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
381
513
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
382
514
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
383
515
|
billable_features: Optional[
|
|
384
516
|
List[
|
|
385
|
-
"
|
|
517
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
386
518
|
]
|
|
387
519
|
] = Field(alias="billableFeatures", default=None)
|
|
388
520
|
addons: Optional[
|
|
389
521
|
List[
|
|
390
|
-
"
|
|
522
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
391
523
|
]
|
|
392
524
|
] = Field(default=None)
|
|
393
525
|
price_overrides: Optional[
|
|
394
526
|
List[
|
|
395
|
-
"
|
|
527
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
396
528
|
]
|
|
397
529
|
] = Field(alias="priceOverrides", default=None)
|
|
398
530
|
|
|
399
531
|
|
|
400
|
-
class
|
|
532
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
401
533
|
BaseModel
|
|
402
534
|
):
|
|
403
535
|
feature_id: str = Field(alias="featureId")
|
|
404
536
|
quantity: float
|
|
405
537
|
|
|
406
538
|
|
|
407
|
-
class
|
|
539
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
408
540
|
BaseModel
|
|
409
541
|
):
|
|
410
542
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
411
543
|
quantity: float
|
|
412
544
|
|
|
413
545
|
|
|
414
|
-
class
|
|
546
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
415
547
|
BaseModel
|
|
416
548
|
):
|
|
417
549
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -419,39 +551,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
419
551
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
420
552
|
|
|
421
553
|
|
|
422
|
-
class
|
|
554
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
423
555
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
424
556
|
plan_ref_id: str = Field(alias="planRefId")
|
|
425
557
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
426
558
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
427
559
|
billable_features: Optional[
|
|
428
560
|
List[
|
|
429
|
-
"
|
|
561
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
430
562
|
]
|
|
431
563
|
] = Field(alias="billableFeatures", default=None)
|
|
432
564
|
addons: Optional[
|
|
433
|
-
List[
|
|
565
|
+
List[
|
|
566
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
567
|
+
]
|
|
434
568
|
] = Field(default=None)
|
|
435
569
|
price_overrides: Optional[
|
|
436
570
|
List[
|
|
437
|
-
"
|
|
571
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
438
572
|
]
|
|
439
573
|
] = Field(alias="priceOverrides", default=None)
|
|
440
574
|
|
|
441
575
|
|
|
442
|
-
class
|
|
576
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
443
577
|
BaseModel
|
|
444
578
|
):
|
|
445
579
|
feature_id: str = Field(alias="featureId")
|
|
446
580
|
quantity: float
|
|
447
581
|
|
|
448
582
|
|
|
449
|
-
class
|
|
583
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
584
|
+
BaseModel
|
|
585
|
+
):
|
|
450
586
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
451
587
|
quantity: float
|
|
452
588
|
|
|
453
589
|
|
|
454
|
-
class
|
|
590
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
455
591
|
BaseModel
|
|
456
592
|
):
|
|
457
593
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -459,7 +595,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
459
595
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
460
596
|
|
|
461
597
|
|
|
462
|
-
class
|
|
598
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
463
599
|
BaseModel
|
|
464
600
|
):
|
|
465
601
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -467,51 +603,85 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
467
603
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
468
604
|
|
|
469
605
|
|
|
470
|
-
class
|
|
606
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
607
|
+
BaseModel
|
|
608
|
+
):
|
|
471
609
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
472
610
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
473
611
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
474
612
|
|
|
475
613
|
|
|
476
|
-
class
|
|
614
|
+
class SlimCustomerFragment(BaseModel):
|
|
615
|
+
id: str
|
|
616
|
+
name: Optional[str] = Field(default=None)
|
|
617
|
+
email: Optional[str] = Field(default=None)
|
|
618
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
619
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
620
|
+
ref_id: str = Field(alias="refId")
|
|
621
|
+
customer_id: str = Field(alias="customerId")
|
|
622
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
623
|
+
additional_meta_data: Optional[Any] = Field(
|
|
624
|
+
alias="additionalMetaData", default=None
|
|
625
|
+
)
|
|
626
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
627
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
628
|
+
)
|
|
629
|
+
|
|
630
|
+
|
|
631
|
+
class TotalPriceFragment(BaseModel):
|
|
632
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
633
|
+
total: "TotalPriceFragmentTotal"
|
|
634
|
+
|
|
635
|
+
|
|
636
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
637
|
+
amount: float
|
|
638
|
+
currency: Currency
|
|
639
|
+
|
|
640
|
+
|
|
641
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
642
|
+
amount: float
|
|
643
|
+
currency: Currency
|
|
644
|
+
|
|
645
|
+
|
|
646
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
477
647
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
478
648
|
alias="subscriptionScheduleType"
|
|
479
649
|
)
|
|
480
650
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
481
651
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
482
|
-
target_package: Optional["
|
|
652
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
483
653
|
alias="targetPackage", default=None
|
|
484
654
|
)
|
|
485
655
|
schedule_variables: Optional[
|
|
486
656
|
Annotated[
|
|
487
657
|
Union[
|
|
488
|
-
"
|
|
489
|
-
"
|
|
490
|
-
"
|
|
491
|
-
"
|
|
492
|
-
"
|
|
493
|
-
"
|
|
494
|
-
"
|
|
495
|
-
"
|
|
658
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
659
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
660
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
661
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
662
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
663
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
664
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
665
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
496
666
|
],
|
|
497
667
|
Field(discriminator="typename__"),
|
|
498
668
|
]
|
|
499
669
|
] = Field(alias="scheduleVariables", default=None)
|
|
500
670
|
|
|
501
671
|
|
|
502
|
-
class
|
|
672
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
503
673
|
id: str
|
|
504
674
|
ref_id: str = Field(alias="refId")
|
|
505
675
|
display_name: str = Field(alias="displayName")
|
|
506
676
|
|
|
507
677
|
|
|
508
|
-
class
|
|
678
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
509
679
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
510
680
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
511
681
|
new_quantity: float = Field(alias="newQuantity")
|
|
512
682
|
|
|
513
683
|
|
|
514
|
-
class
|
|
684
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
515
685
|
BaseModel
|
|
516
686
|
):
|
|
517
687
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -519,55 +689,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
519
689
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
520
690
|
|
|
521
691
|
|
|
522
|
-
class
|
|
692
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
523
693
|
BaseModel
|
|
524
694
|
):
|
|
525
695
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
526
696
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
527
697
|
|
|
528
698
|
|
|
529
|
-
class
|
|
699
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
530
700
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
531
701
|
|
|
532
702
|
|
|
533
|
-
class
|
|
534
|
-
BaseModel
|
|
535
|
-
):
|
|
703
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
536
704
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
537
705
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
538
706
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
539
707
|
billable_features: Optional[
|
|
540
708
|
List[
|
|
541
|
-
"
|
|
709
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
542
710
|
]
|
|
543
711
|
] = Field(alias="billableFeatures", default=None)
|
|
544
712
|
addons: Optional[
|
|
545
713
|
List[
|
|
546
|
-
"
|
|
714
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
547
715
|
]
|
|
548
716
|
] = Field(default=None)
|
|
549
717
|
price_overrides: Optional[
|
|
550
718
|
List[
|
|
551
|
-
"
|
|
719
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
552
720
|
]
|
|
553
721
|
] = Field(alias="priceOverrides", default=None)
|
|
554
722
|
|
|
555
723
|
|
|
556
|
-
class
|
|
724
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
557
725
|
BaseModel
|
|
558
726
|
):
|
|
559
727
|
feature_id: str = Field(alias="featureId")
|
|
560
728
|
quantity: float
|
|
561
729
|
|
|
562
730
|
|
|
563
|
-
class
|
|
731
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
564
732
|
BaseModel
|
|
565
733
|
):
|
|
566
734
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
567
735
|
quantity: float
|
|
568
736
|
|
|
569
737
|
|
|
570
|
-
class
|
|
738
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
571
739
|
BaseModel
|
|
572
740
|
):
|
|
573
741
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -575,43 +743,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
575
743
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
576
744
|
|
|
577
745
|
|
|
578
|
-
class
|
|
746
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
579
747
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
580
748
|
plan_ref_id: str = Field(alias="planRefId")
|
|
581
749
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
582
750
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
583
751
|
billable_features: Optional[
|
|
584
752
|
List[
|
|
585
|
-
"
|
|
753
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
586
754
|
]
|
|
587
755
|
] = Field(alias="billableFeatures", default=None)
|
|
588
756
|
addons: Optional[
|
|
589
|
-
List[
|
|
590
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
591
|
-
]
|
|
757
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
592
758
|
] = Field(default=None)
|
|
593
759
|
price_overrides: Optional[
|
|
594
760
|
List[
|
|
595
|
-
"
|
|
761
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
596
762
|
]
|
|
597
763
|
] = Field(alias="priceOverrides", default=None)
|
|
598
764
|
|
|
599
765
|
|
|
600
|
-
class
|
|
766
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
601
767
|
BaseModel
|
|
602
768
|
):
|
|
603
769
|
feature_id: str = Field(alias="featureId")
|
|
604
770
|
quantity: float
|
|
605
771
|
|
|
606
772
|
|
|
607
|
-
class
|
|
608
|
-
BaseModel
|
|
609
|
-
):
|
|
773
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
610
774
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
611
775
|
quantity: float
|
|
612
776
|
|
|
613
777
|
|
|
614
|
-
class
|
|
778
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
615
779
|
BaseModel
|
|
616
780
|
):
|
|
617
781
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -619,7 +783,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
619
783
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
620
784
|
|
|
621
785
|
|
|
622
|
-
class
|
|
786
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
623
787
|
BaseModel
|
|
624
788
|
):
|
|
625
789
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -627,180 +791,16 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
627
791
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
628
792
|
|
|
629
793
|
|
|
630
|
-
class
|
|
631
|
-
BaseModel
|
|
632
|
-
):
|
|
794
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
633
795
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
634
796
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
635
797
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
636
798
|
|
|
637
799
|
|
|
638
|
-
class TotalPriceFragment(BaseModel):
|
|
639
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
640
|
-
total: "TotalPriceFragmentTotal"
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
644
|
-
amount: float
|
|
645
|
-
currency: Currency
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
649
|
-
amount: float
|
|
650
|
-
currency: Currency
|
|
651
|
-
|
|
652
|
-
|
|
653
800
|
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
654
801
|
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
655
802
|
|
|
656
803
|
|
|
657
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
658
|
-
billing_id: str = Field(alias="billingId")
|
|
659
|
-
status: SubscriptionInvoiceStatus
|
|
660
|
-
created_at: Any = Field(alias="createdAt")
|
|
661
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
662
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
663
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
664
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
665
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
666
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
667
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
668
|
-
alias="billingReason", default=None
|
|
669
|
-
)
|
|
670
|
-
currency: Optional[str] = Field(default=None)
|
|
671
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
672
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
673
|
-
alias="subTotalExcludingTax", default=None
|
|
674
|
-
)
|
|
675
|
-
total: Optional[float] = Field(default=None)
|
|
676
|
-
total_excluding_tax: Optional[float] = Field(
|
|
677
|
-
alias="totalExcludingTax", default=None
|
|
678
|
-
)
|
|
679
|
-
tax: Optional[float] = Field(default=None)
|
|
680
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
681
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
class ProductFragment(BaseModel):
|
|
685
|
-
ref_id: str = Field(alias="refId")
|
|
686
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
687
|
-
description: Optional[str] = Field(default=None)
|
|
688
|
-
additional_meta_data: Optional[Any] = Field(
|
|
689
|
-
alias="additionalMetaData", default=None
|
|
690
|
-
)
|
|
691
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
695
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
696
|
-
alias="downgradePlan", default=None
|
|
697
|
-
)
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
701
|
-
ref_id: str = Field(alias="refId")
|
|
702
|
-
display_name: str = Field(alias="displayName")
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
706
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
707
|
-
display_name: str = Field(alias="displayName")
|
|
708
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
709
|
-
default=None
|
|
710
|
-
)
|
|
711
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
715
|
-
pass
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
719
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
720
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
class PlanFragment(BaseModel):
|
|
724
|
-
id: str
|
|
725
|
-
ref_id: str = Field(alias="refId")
|
|
726
|
-
display_name: str = Field(alias="displayName")
|
|
727
|
-
description: Optional[str] = Field(default=None)
|
|
728
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
729
|
-
version_number: int = Field(alias="versionNumber")
|
|
730
|
-
additional_meta_data: Optional[Any] = Field(
|
|
731
|
-
alias="additionalMetaData", default=None
|
|
732
|
-
)
|
|
733
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
734
|
-
alias="hiddenFromWidgets", default=None
|
|
735
|
-
)
|
|
736
|
-
product: "PlanFragmentProduct"
|
|
737
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
738
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
739
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
740
|
-
alias="inheritedEntitlements", default=None
|
|
741
|
-
)
|
|
742
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
743
|
-
alias="compatibleAddons", default=None
|
|
744
|
-
)
|
|
745
|
-
compatible_package_groups: Optional[
|
|
746
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
747
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
748
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
749
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
750
|
-
alias="overagePrices", default=None
|
|
751
|
-
)
|
|
752
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
753
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
754
|
-
alias="defaultTrialConfig", default=None
|
|
755
|
-
)
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
class PlanFragmentProduct(ProductFragment):
|
|
759
|
-
pass
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
763
|
-
ref_id: str = Field(alias="refId")
|
|
764
|
-
display_name: str = Field(alias="displayName")
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
768
|
-
pass
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
772
|
-
pass
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
776
|
-
pass
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
780
|
-
pass
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
class PlanFragmentPrices(PriceFragment):
|
|
784
|
-
pass
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
788
|
-
pass
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
792
|
-
duration: float
|
|
793
|
-
units: TrialPeriodUnits
|
|
794
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
795
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
796
|
-
alias="trialEndBehavior", default=None
|
|
797
|
-
)
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
801
|
-
limit: float
|
|
802
|
-
|
|
803
|
-
|
|
804
804
|
class SubscriptionFragment(BaseModel):
|
|
805
805
|
id: str
|
|
806
806
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -1250,31 +1250,11 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1250
1250
|
pass
|
|
1251
1251
|
|
|
1252
1252
|
|
|
1253
|
-
class
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1257
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1258
|
-
default=None
|
|
1259
|
-
)
|
|
1260
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1261
|
-
default=None
|
|
1262
|
-
)
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1266
|
-
amount: float
|
|
1267
|
-
currency: Currency
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1271
|
-
id: str
|
|
1272
|
-
ref_id: str = Field(alias="refId")
|
|
1253
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1254
|
+
addon_id: str = Field(alias="addonId")
|
|
1255
|
+
description: Optional[str] = Field(default=None)
|
|
1273
1256
|
display_name: str = Field(alias="displayName")
|
|
1274
|
-
|
|
1275
|
-
feature_units_plural: Optional[str] = Field(
|
|
1276
|
-
alias="featureUnitsPlural", default=None
|
|
1277
|
-
)
|
|
1257
|
+
quantity: int
|
|
1278
1258
|
|
|
1279
1259
|
|
|
1280
1260
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
@@ -1446,11 +1426,31 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1446
1426
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1447
1427
|
|
|
1448
1428
|
|
|
1449
|
-
class
|
|
1450
|
-
|
|
1451
|
-
|
|
1429
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1430
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1431
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1432
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1433
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1434
|
+
default=None
|
|
1435
|
+
)
|
|
1436
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1437
|
+
default=None
|
|
1438
|
+
)
|
|
1439
|
+
|
|
1440
|
+
|
|
1441
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1442
|
+
amount: float
|
|
1443
|
+
currency: Currency
|
|
1444
|
+
|
|
1445
|
+
|
|
1446
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1447
|
+
id: str
|
|
1448
|
+
ref_id: str = Field(alias="refId")
|
|
1452
1449
|
display_name: str = Field(alias="displayName")
|
|
1453
|
-
|
|
1450
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1451
|
+
feature_units_plural: Optional[str] = Field(
|
|
1452
|
+
alias="featureUnitsPlural", default=None
|
|
1453
|
+
)
|
|
1454
1454
|
|
|
1455
1455
|
|
|
1456
1456
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
@@ -2763,23 +2763,23 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2763
2763
|
|
|
2764
2764
|
|
|
2765
2765
|
AddonDependencyFragment.model_rebuild()
|
|
2766
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2766
2767
|
PriceTierFragment.model_rebuild()
|
|
2767
2768
|
PriceFragment.model_rebuild()
|
|
2768
2769
|
OveragePriceFragment.model_rebuild()
|
|
2769
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2770
2770
|
AddonFragment.model_rebuild()
|
|
2771
2771
|
FeatureFragment.model_rebuild()
|
|
2772
2772
|
EntitlementFragment.model_rebuild()
|
|
2773
|
-
|
|
2773
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2774
|
+
ProductFragment.model_rebuild()
|
|
2775
|
+
PlanFragment.model_rebuild()
|
|
2774
2776
|
CustomerResourceFragment.model_rebuild()
|
|
2775
|
-
|
|
2777
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2776
2778
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2779
|
+
SlimCustomerFragment.model_rebuild()
|
|
2777
2780
|
TotalPriceFragment.model_rebuild()
|
|
2781
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2778
2782
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2779
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2780
|
-
ProductFragment.model_rebuild()
|
|
2781
|
-
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2782
|
-
PlanFragment.model_rebuild()
|
|
2783
2783
|
SubscriptionFragment.model_rebuild()
|
|
2784
2784
|
ApplySubscriptionFragment.model_rebuild()
|
|
2785
2785
|
FontVariantFragment.model_rebuild()
|
|
@@ -2792,9 +2792,9 @@ CheckoutStateFragment.model_rebuild()
|
|
|
2792
2792
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2793
2793
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2794
2794
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2795
|
-
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2796
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2797
2795
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2796
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2797
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2798
2798
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2799
2799
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2800
2800
|
CustomerPortalFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -3394,11 +3394,13 @@ class ReportUsageInput(BaseModel):
|
|
|
3394
3394
|
|
|
3395
3395
|
class ResyncIntegrationInput(BaseModel):
|
|
3396
3396
|
environment_id: str = Field(alias="environmentId")
|
|
3397
|
-
integration_id:
|
|
3397
|
+
integration_id: str = Field(alias="integrationId")
|
|
3398
3398
|
recalculate_entitlements: Optional[bool] = Field(
|
|
3399
3399
|
alias="recalculateEntitlements", default=None
|
|
3400
3400
|
)
|
|
3401
|
-
vendor_identifier: VendorIdentifier = Field(
|
|
3401
|
+
vendor_identifier: Optional[VendorIdentifier] = Field(
|
|
3402
|
+
alias="vendorIdentifier", default=None
|
|
3403
|
+
)
|
|
3402
3404
|
|
|
3403
3405
|
|
|
3404
3406
|
class RevokePromotionalEntitlementInput(BaseModel):
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=-KENNOE-xsKr2JErSh1nQWK3pBt0DrPbIM45Tg8PCGE,3447
|
|
|
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=kDVj5F8YGBwPlFb8P2e1KBJd-hXIIZW3Sjx1UoLcHy0,100632
|
|
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
|
|
@@ -144,7 +144,7 @@ stigg/generated/grant_promotional_entitlements.py,sha256=72PRYuqecL-0SkWb7deygkh
|
|
|
144
144
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
145
145
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
146
146
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
147
|
-
stigg/generated/input_types.py,sha256=
|
|
147
|
+
stigg/generated/input_types.py,sha256=Vpk36x_g6IcZNyf_9468U50_hycdNtwDPEggOEdWu_o,191503
|
|
148
148
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
149
149
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
150
150
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -160,7 +160,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
160
160
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
161
161
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
162
162
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
163
|
-
stigg_api_client_v2-2.
|
|
164
|
-
stigg_api_client_v2-2.
|
|
165
|
-
stigg_api_client_v2-2.
|
|
166
|
-
stigg_api_client_v2-2.
|
|
163
|
+
stigg_api_client_v2-2.319.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.319.0.dist-info/METADATA,sha256=RcSEexhlBAdGDKagUdBaGORQvqj02t1b_QHKTPVl_tA,2258
|
|
165
|
+
stigg_api_client_v2-2.319.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.319.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|