stigg-api-client-v2 2.325.3__py3-none-any.whl → 2.329.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 +3 -0
- stigg/generated/fragments.py +275 -275
- {stigg_api_client_v2-2.325.3.dist-info → stigg_api_client_v2-2.329.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.325.3.dist-info → stigg_api_client_v2-2.329.0.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-2.325.3.dist-info → stigg_api_client_v2-2.329.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.325.3.dist-info → stigg_api_client_v2-2.329.0.dist-info}/WHEEL +0 -0
stigg/generated/enums.py
CHANGED
|
@@ -459,6 +459,8 @@ class ErrorCode(str, Enum):
|
|
|
459
459
|
"FreePlanCantHaveCompatiblePackageGroupError"
|
|
460
460
|
)
|
|
461
461
|
GraphQLAliasesLimitExceeded = "GraphQLAliasesLimitExceeded"
|
|
462
|
+
GraphQLBatchedOperationsLimitExceeded = "GraphQLBatchedOperationsLimitExceeded"
|
|
463
|
+
GraphQLUnsupportedDirective = "GraphQLUnsupportedDirective"
|
|
462
464
|
HubspotIntegrationError = "HubspotIntegrationError"
|
|
463
465
|
IdentityForbidden = "IdentityForbidden"
|
|
464
466
|
ImportAlreadyInProgress = "ImportAlreadyInProgress"
|
|
@@ -1061,6 +1063,7 @@ class SubscriptionScheduleStatus(str, Enum):
|
|
|
1061
1063
|
class SubscriptionScheduleType(str, Enum):
|
|
1062
1064
|
AdditionalMetaData = "AdditionalMetaData"
|
|
1063
1065
|
Addon = "Addon"
|
|
1066
|
+
BillingInfoMetadata = "BillingInfoMetadata"
|
|
1064
1067
|
BillingPeriod = "BillingPeriod"
|
|
1065
1068
|
Coupon = "Coupon"
|
|
1066
1069
|
Downgrade = "Downgrade"
|
stigg/generated/fragments.py
CHANGED
|
@@ -215,87 +215,54 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
215
215
|
pass
|
|
216
216
|
|
|
217
217
|
|
|
218
|
-
class
|
|
219
|
-
|
|
220
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
221
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
222
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
223
|
-
feature_units_plural: Optional[str] = Field(
|
|
224
|
-
alias="featureUnitsPlural", default=None
|
|
225
|
-
)
|
|
226
|
-
description: Optional[str] = Field(default=None)
|
|
227
|
-
display_name: str = Field(alias="displayName")
|
|
228
|
-
ref_id: str = Field(alias="refId")
|
|
229
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
230
|
-
alias="unitTransformation", default=None
|
|
231
|
-
)
|
|
218
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
219
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
232
220
|
|
|
233
221
|
|
|
234
|
-
class
|
|
235
|
-
|
|
236
|
-
|
|
222
|
+
class TotalPriceFragment(BaseModel):
|
|
223
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
224
|
+
total: "TotalPriceFragmentTotal"
|
|
237
225
|
|
|
238
226
|
|
|
239
|
-
class
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
243
|
-
alias="accessDeniedReason", default=None
|
|
244
|
-
)
|
|
245
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
246
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
247
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
248
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
249
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
250
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
251
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
252
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
253
|
-
alias="entitlementUpdatedAt", default=None
|
|
254
|
-
)
|
|
255
|
-
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
256
|
-
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
257
|
-
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
258
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
259
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
260
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
261
|
-
alias="resetPeriod", default=None
|
|
262
|
-
)
|
|
263
|
-
reset_period_configuration: Optional[
|
|
264
|
-
Annotated[
|
|
265
|
-
Union[
|
|
266
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
267
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
268
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
269
|
-
],
|
|
270
|
-
Field(discriminator="typename__"),
|
|
271
|
-
]
|
|
272
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
273
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
227
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
228
|
+
amount: float
|
|
229
|
+
currency: Currency
|
|
274
230
|
|
|
275
231
|
|
|
276
|
-
class
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
alias="monthlyAccordingTo", default=None
|
|
280
|
-
)
|
|
232
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
233
|
+
amount: float
|
|
234
|
+
currency: Currency
|
|
281
235
|
|
|
282
236
|
|
|
283
|
-
class
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
237
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
238
|
+
billing_id: str = Field(alias="billingId")
|
|
239
|
+
status: SubscriptionInvoiceStatus
|
|
240
|
+
created_at: Any = Field(alias="createdAt")
|
|
241
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
242
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
243
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
244
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
245
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
246
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
247
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
248
|
+
alias="billingReason", default=None
|
|
287
249
|
)
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
250
|
+
currency: Optional[str] = Field(default=None)
|
|
251
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
252
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
253
|
+
alias="subTotalExcludingTax", default=None
|
|
254
|
+
)
|
|
255
|
+
total: Optional[float] = Field(default=None)
|
|
256
|
+
total_excluding_tax: Optional[float] = Field(
|
|
257
|
+
alias="totalExcludingTax", default=None
|
|
294
258
|
)
|
|
259
|
+
tax: Optional[float] = Field(default=None)
|
|
260
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
261
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
295
262
|
|
|
296
263
|
|
|
297
|
-
class
|
|
298
|
-
|
|
264
|
+
class CustomerResourceFragment(BaseModel):
|
|
265
|
+
resource_id: str = Field(alias="resourceId")
|
|
299
266
|
|
|
300
267
|
|
|
301
268
|
class ProductFragment(BaseModel):
|
|
@@ -418,53 +385,45 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
418
385
|
limit: float
|
|
419
386
|
|
|
420
387
|
|
|
421
|
-
class
|
|
422
|
-
resource_id: str = Field(alias="resourceId")
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
426
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
class SubscriptionScheduledUpdateData(BaseModel):
|
|
388
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
430
389
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
431
390
|
alias="subscriptionScheduleType"
|
|
432
391
|
)
|
|
433
392
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
434
393
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
435
|
-
target_package: Optional["
|
|
394
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
436
395
|
alias="targetPackage", default=None
|
|
437
396
|
)
|
|
438
397
|
schedule_variables: Optional[
|
|
439
398
|
Annotated[
|
|
440
399
|
Union[
|
|
441
|
-
"
|
|
442
|
-
"
|
|
443
|
-
"
|
|
444
|
-
"
|
|
445
|
-
"
|
|
446
|
-
"
|
|
447
|
-
"
|
|
448
|
-
"
|
|
400
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
401
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
402
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
403
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
404
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
405
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
406
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
407
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
449
408
|
],
|
|
450
409
|
Field(discriminator="typename__"),
|
|
451
410
|
]
|
|
452
411
|
] = Field(alias="scheduleVariables", default=None)
|
|
453
412
|
|
|
454
413
|
|
|
455
|
-
class
|
|
414
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
456
415
|
id: str
|
|
457
416
|
ref_id: str = Field(alias="refId")
|
|
458
417
|
display_name: str = Field(alias="displayName")
|
|
459
418
|
|
|
460
419
|
|
|
461
|
-
class
|
|
420
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
462
421
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
463
422
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
464
423
|
new_quantity: float = Field(alias="newQuantity")
|
|
465
424
|
|
|
466
425
|
|
|
467
|
-
class
|
|
426
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
468
427
|
BaseModel
|
|
469
428
|
):
|
|
470
429
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -472,55 +431,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
472
431
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
473
432
|
|
|
474
433
|
|
|
475
|
-
class
|
|
434
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
476
435
|
BaseModel
|
|
477
436
|
):
|
|
478
437
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
479
438
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
480
439
|
|
|
481
440
|
|
|
482
|
-
class
|
|
441
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
483
442
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
484
443
|
|
|
485
444
|
|
|
486
|
-
class
|
|
487
|
-
BaseModel
|
|
488
|
-
):
|
|
445
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
489
446
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
490
447
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
491
448
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
492
449
|
billable_features: Optional[
|
|
493
450
|
List[
|
|
494
|
-
"
|
|
451
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
495
452
|
]
|
|
496
453
|
] = Field(alias="billableFeatures", default=None)
|
|
497
454
|
addons: Optional[
|
|
498
455
|
List[
|
|
499
|
-
"
|
|
456
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
500
457
|
]
|
|
501
458
|
] = Field(default=None)
|
|
502
459
|
price_overrides: Optional[
|
|
503
460
|
List[
|
|
504
|
-
"
|
|
461
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
505
462
|
]
|
|
506
463
|
] = Field(alias="priceOverrides", default=None)
|
|
507
464
|
|
|
508
465
|
|
|
509
|
-
class
|
|
466
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
510
467
|
BaseModel
|
|
511
468
|
):
|
|
512
469
|
feature_id: str = Field(alias="featureId")
|
|
513
470
|
quantity: float
|
|
514
471
|
|
|
515
472
|
|
|
516
|
-
class
|
|
473
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
517
474
|
BaseModel
|
|
518
475
|
):
|
|
519
476
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
520
477
|
quantity: float
|
|
521
478
|
|
|
522
479
|
|
|
523
|
-
class
|
|
480
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
524
481
|
BaseModel
|
|
525
482
|
):
|
|
526
483
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -528,43 +485,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
528
485
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
529
486
|
|
|
530
487
|
|
|
531
|
-
class
|
|
488
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
532
489
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
533
490
|
plan_ref_id: str = Field(alias="planRefId")
|
|
534
491
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
535
492
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
536
493
|
billable_features: Optional[
|
|
537
494
|
List[
|
|
538
|
-
"
|
|
495
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
539
496
|
]
|
|
540
497
|
] = Field(alias="billableFeatures", default=None)
|
|
541
498
|
addons: Optional[
|
|
542
|
-
List[
|
|
543
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
544
|
-
]
|
|
499
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
545
500
|
] = Field(default=None)
|
|
546
501
|
price_overrides: Optional[
|
|
547
502
|
List[
|
|
548
|
-
"
|
|
503
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
549
504
|
]
|
|
550
505
|
] = Field(alias="priceOverrides", default=None)
|
|
551
506
|
|
|
552
507
|
|
|
553
|
-
class
|
|
508
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
554
509
|
BaseModel
|
|
555
510
|
):
|
|
556
511
|
feature_id: str = Field(alias="featureId")
|
|
557
512
|
quantity: float
|
|
558
513
|
|
|
559
514
|
|
|
560
|
-
class
|
|
561
|
-
BaseModel
|
|
562
|
-
):
|
|
515
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
563
516
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
564
517
|
quantity: float
|
|
565
518
|
|
|
566
519
|
|
|
567
|
-
class
|
|
520
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
568
521
|
BaseModel
|
|
569
522
|
):
|
|
570
523
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -572,7 +525,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
572
525
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
573
526
|
|
|
574
527
|
|
|
575
|
-
class
|
|
528
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
576
529
|
BaseModel
|
|
577
530
|
):
|
|
578
531
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -580,53 +533,68 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
580
533
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
581
534
|
|
|
582
535
|
|
|
583
|
-
class
|
|
584
|
-
BaseModel
|
|
585
|
-
):
|
|
536
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
586
537
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
587
538
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
588
539
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
589
540
|
|
|
590
541
|
|
|
591
|
-
class
|
|
542
|
+
class SlimCustomerFragment(BaseModel):
|
|
543
|
+
id: str
|
|
544
|
+
name: Optional[str] = Field(default=None)
|
|
545
|
+
email: Optional[str] = Field(default=None)
|
|
546
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
547
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
548
|
+
ref_id: str = Field(alias="refId")
|
|
549
|
+
customer_id: str = Field(alias="customerId")
|
|
550
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
551
|
+
additional_meta_data: Optional[Any] = Field(
|
|
552
|
+
alias="additionalMetaData", default=None
|
|
553
|
+
)
|
|
554
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
555
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
556
|
+
)
|
|
557
|
+
|
|
558
|
+
|
|
559
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
592
560
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
593
561
|
alias="subscriptionScheduleType"
|
|
594
562
|
)
|
|
595
563
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
596
564
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
597
|
-
target_package: Optional["
|
|
565
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
598
566
|
alias="targetPackage", default=None
|
|
599
567
|
)
|
|
600
568
|
schedule_variables: Optional[
|
|
601
569
|
Annotated[
|
|
602
570
|
Union[
|
|
603
|
-
"
|
|
604
|
-
"
|
|
605
|
-
"
|
|
606
|
-
"
|
|
607
|
-
"
|
|
608
|
-
"
|
|
609
|
-
"
|
|
610
|
-
"
|
|
571
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
572
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
573
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
574
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
575
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
576
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
577
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
578
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
611
579
|
],
|
|
612
580
|
Field(discriminator="typename__"),
|
|
613
581
|
]
|
|
614
582
|
] = Field(alias="scheduleVariables", default=None)
|
|
615
583
|
|
|
616
584
|
|
|
617
|
-
class
|
|
585
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
618
586
|
id: str
|
|
619
587
|
ref_id: str = Field(alias="refId")
|
|
620
588
|
display_name: str = Field(alias="displayName")
|
|
621
589
|
|
|
622
590
|
|
|
623
|
-
class
|
|
591
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
624
592
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
625
593
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
626
594
|
new_quantity: float = Field(alias="newQuantity")
|
|
627
595
|
|
|
628
596
|
|
|
629
|
-
class
|
|
597
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
630
598
|
BaseModel
|
|
631
599
|
):
|
|
632
600
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -634,53 +602,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
634
602
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
635
603
|
|
|
636
604
|
|
|
637
|
-
class
|
|
605
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
638
606
|
BaseModel
|
|
639
607
|
):
|
|
640
608
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
641
609
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
642
610
|
|
|
643
611
|
|
|
644
|
-
class
|
|
612
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
645
613
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
646
614
|
|
|
647
615
|
|
|
648
|
-
class
|
|
616
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
617
|
+
BaseModel
|
|
618
|
+
):
|
|
649
619
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
650
620
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
651
621
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
652
622
|
billable_features: Optional[
|
|
653
623
|
List[
|
|
654
|
-
"
|
|
624
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
655
625
|
]
|
|
656
626
|
] = Field(alias="billableFeatures", default=None)
|
|
657
627
|
addons: Optional[
|
|
658
628
|
List[
|
|
659
|
-
"
|
|
629
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
660
630
|
]
|
|
661
631
|
] = Field(default=None)
|
|
662
632
|
price_overrides: Optional[
|
|
663
633
|
List[
|
|
664
|
-
"
|
|
634
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
665
635
|
]
|
|
666
636
|
] = Field(alias="priceOverrides", default=None)
|
|
667
637
|
|
|
668
638
|
|
|
669
|
-
class
|
|
639
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
670
640
|
BaseModel
|
|
671
641
|
):
|
|
672
642
|
feature_id: str = Field(alias="featureId")
|
|
673
643
|
quantity: float
|
|
674
644
|
|
|
675
645
|
|
|
676
|
-
class
|
|
646
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
677
647
|
BaseModel
|
|
678
648
|
):
|
|
679
649
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
680
650
|
quantity: float
|
|
681
651
|
|
|
682
652
|
|
|
683
|
-
class
|
|
653
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
684
654
|
BaseModel
|
|
685
655
|
):
|
|
686
656
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -688,117 +658,64 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
688
658
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
689
659
|
|
|
690
660
|
|
|
691
|
-
class
|
|
661
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
692
662
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
693
663
|
plan_ref_id: str = Field(alias="planRefId")
|
|
694
664
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
695
665
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
696
666
|
billable_features: Optional[
|
|
697
667
|
List[
|
|
698
|
-
"
|
|
668
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
699
669
|
]
|
|
700
670
|
] = Field(alias="billableFeatures", default=None)
|
|
701
671
|
addons: Optional[
|
|
702
|
-
List[
|
|
672
|
+
List[
|
|
673
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
674
|
+
]
|
|
703
675
|
] = Field(default=None)
|
|
704
676
|
price_overrides: Optional[
|
|
705
677
|
List[
|
|
706
|
-
"
|
|
678
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
707
679
|
]
|
|
708
680
|
] = Field(alias="priceOverrides", default=None)
|
|
709
681
|
|
|
710
682
|
|
|
711
|
-
class
|
|
683
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
712
684
|
BaseModel
|
|
713
685
|
):
|
|
714
686
|
feature_id: str = Field(alias="featureId")
|
|
715
687
|
quantity: float
|
|
716
688
|
|
|
717
689
|
|
|
718
|
-
class
|
|
719
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
720
|
-
quantity: float
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
724
|
-
BaseModel
|
|
725
|
-
):
|
|
726
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
727
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
728
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
690
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
732
691
|
BaseModel
|
|
733
692
|
):
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
740
|
-
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
741
|
-
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
742
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
class TotalPriceFragment(BaseModel):
|
|
746
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
747
|
-
total: "TotalPriceFragmentTotal"
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
751
|
-
amount: float
|
|
752
|
-
currency: Currency
|
|
693
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
694
|
+
quantity: float
|
|
753
695
|
|
|
754
696
|
|
|
755
|
-
class
|
|
756
|
-
|
|
757
|
-
|
|
697
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
698
|
+
BaseModel
|
|
699
|
+
):
|
|
700
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
701
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
702
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
758
703
|
|
|
759
704
|
|
|
760
|
-
class
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
767
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
768
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
769
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
770
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
771
|
-
alias="billingReason", default=None
|
|
772
|
-
)
|
|
773
|
-
currency: Optional[str] = Field(default=None)
|
|
774
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
775
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
776
|
-
alias="subTotalExcludingTax", default=None
|
|
777
|
-
)
|
|
778
|
-
total: Optional[float] = Field(default=None)
|
|
779
|
-
total_excluding_tax: Optional[float] = Field(
|
|
780
|
-
alias="totalExcludingTax", default=None
|
|
781
|
-
)
|
|
782
|
-
tax: Optional[float] = Field(default=None)
|
|
783
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
784
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
705
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
706
|
+
BaseModel
|
|
707
|
+
):
|
|
708
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
709
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
710
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
785
711
|
|
|
786
712
|
|
|
787
|
-
class
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
ref_id: str = Field(alias="refId")
|
|
794
|
-
customer_id: str = Field(alias="customerId")
|
|
795
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
796
|
-
additional_meta_data: Optional[Any] = Field(
|
|
797
|
-
alias="additionalMetaData", default=None
|
|
798
|
-
)
|
|
799
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
800
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
801
|
-
)
|
|
713
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
714
|
+
BaseModel
|
|
715
|
+
):
|
|
716
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
717
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
718
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
802
719
|
|
|
803
720
|
|
|
804
721
|
class SubscriptionFragment(BaseModel):
|
|
@@ -910,6 +827,89 @@ class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragm
|
|
|
910
827
|
pass
|
|
911
828
|
|
|
912
829
|
|
|
830
|
+
class FeatureFragment(BaseModel):
|
|
831
|
+
typename__: str = Field(alias="__typename")
|
|
832
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
833
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
834
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
835
|
+
feature_units_plural: Optional[str] = Field(
|
|
836
|
+
alias="featureUnitsPlural", default=None
|
|
837
|
+
)
|
|
838
|
+
description: Optional[str] = Field(default=None)
|
|
839
|
+
display_name: str = Field(alias="displayName")
|
|
840
|
+
ref_id: str = Field(alias="refId")
|
|
841
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
842
|
+
alias="unitTransformation", default=None
|
|
843
|
+
)
|
|
844
|
+
|
|
845
|
+
|
|
846
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
847
|
+
divide: float
|
|
848
|
+
round: UnitTransformationRound
|
|
849
|
+
|
|
850
|
+
|
|
851
|
+
class EntitlementFragment(BaseModel):
|
|
852
|
+
typename__: str = Field(alias="__typename")
|
|
853
|
+
is_granted: bool = Field(alias="isGranted")
|
|
854
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
855
|
+
alias="accessDeniedReason", default=None
|
|
856
|
+
)
|
|
857
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
858
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
859
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
860
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
861
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
862
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
863
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
864
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
865
|
+
alias="entitlementUpdatedAt", default=None
|
|
866
|
+
)
|
|
867
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
868
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
869
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
870
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
871
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
872
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
873
|
+
alias="resetPeriod", default=None
|
|
874
|
+
)
|
|
875
|
+
reset_period_configuration: Optional[
|
|
876
|
+
Annotated[
|
|
877
|
+
Union[
|
|
878
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
879
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
880
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
881
|
+
],
|
|
882
|
+
Field(discriminator="typename__"),
|
|
883
|
+
]
|
|
884
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
885
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
886
|
+
|
|
887
|
+
|
|
888
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
889
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
890
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
891
|
+
alias="monthlyAccordingTo", default=None
|
|
892
|
+
)
|
|
893
|
+
|
|
894
|
+
|
|
895
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
896
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
897
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
898
|
+
alias="weeklyAccordingTo", default=None
|
|
899
|
+
)
|
|
900
|
+
|
|
901
|
+
|
|
902
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
903
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
904
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
905
|
+
alias="yearlyAccordingTo", default=None
|
|
906
|
+
)
|
|
907
|
+
|
|
908
|
+
|
|
909
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
910
|
+
pass
|
|
911
|
+
|
|
912
|
+
|
|
913
913
|
class ApplySubscriptionFragment(BaseModel):
|
|
914
914
|
subscription: Optional["ApplySubscriptionFragmentSubscription"] = Field(
|
|
915
915
|
default=None
|
|
@@ -987,6 +987,35 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
987
987
|
)
|
|
988
988
|
|
|
989
989
|
|
|
990
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
991
|
+
status: PromotionalEntitlementStatus
|
|
992
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
993
|
+
feature_id: str = Field(alias="featureId")
|
|
994
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
995
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
996
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
997
|
+
alias="resetPeriod", default=None
|
|
998
|
+
)
|
|
999
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1000
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1001
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1002
|
+
|
|
1003
|
+
|
|
1004
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1005
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1006
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1007
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1008
|
+
feature_units_plural: Optional[str] = Field(
|
|
1009
|
+
alias="featureUnitsPlural", default=None
|
|
1010
|
+
)
|
|
1011
|
+
display_name: str = Field(alias="displayName")
|
|
1012
|
+
description: Optional[str] = Field(default=None)
|
|
1013
|
+
ref_id: str = Field(alias="refId")
|
|
1014
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1015
|
+
alias="additionalMetaData", default=None
|
|
1016
|
+
)
|
|
1017
|
+
|
|
1018
|
+
|
|
990
1019
|
class CouponFragment(BaseModel):
|
|
991
1020
|
id: str
|
|
992
1021
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1021,35 +1050,6 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1021
1050
|
status: SyncStatus
|
|
1022
1051
|
|
|
1023
1052
|
|
|
1024
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
1025
|
-
status: PromotionalEntitlementStatus
|
|
1026
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1027
|
-
feature_id: str = Field(alias="featureId")
|
|
1028
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1029
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1030
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1031
|
-
alias="resetPeriod", default=None
|
|
1032
|
-
)
|
|
1033
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1034
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1035
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1039
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1040
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1041
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1042
|
-
feature_units_plural: Optional[str] = Field(
|
|
1043
|
-
alias="featureUnitsPlural", default=None
|
|
1044
|
-
)
|
|
1045
|
-
display_name: str = Field(alias="displayName")
|
|
1046
|
-
description: Optional[str] = Field(default=None)
|
|
1047
|
-
ref_id: str = Field(alias="refId")
|
|
1048
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1049
|
-
alias="additionalMetaData", default=None
|
|
1050
|
-
)
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
1053
|
class CustomerFragment(SlimCustomerFragment):
|
|
1054
1054
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1055
1055
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1250,23 +1250,6 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1250
1250
|
pass
|
|
1251
1251
|
|
|
1252
1252
|
|
|
1253
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1254
|
-
display_name: str = Field(alias="displayName")
|
|
1255
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1256
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1257
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1258
|
-
period: PromotionalEntitlementPeriod
|
|
1259
|
-
start_date: Any = Field(alias="startDate")
|
|
1260
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1264
|
-
addon_id: str = Field(alias="addonId")
|
|
1265
|
-
description: Optional[str] = Field(default=None)
|
|
1266
|
-
display_name: str = Field(alias="displayName")
|
|
1267
|
-
quantity: int
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
1253
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1271
1254
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1272
1255
|
alias="subscriptionScheduleType"
|
|
@@ -1436,6 +1419,13 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1436
1419
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1437
1420
|
|
|
1438
1421
|
|
|
1422
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1423
|
+
addon_id: str = Field(alias="addonId")
|
|
1424
|
+
description: Optional[str] = Field(default=None)
|
|
1425
|
+
display_name: str = Field(alias="displayName")
|
|
1426
|
+
quantity: int
|
|
1427
|
+
|
|
1428
|
+
|
|
1439
1429
|
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1440
1430
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1441
1431
|
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
@@ -1559,6 +1549,16 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1559
1549
|
pass
|
|
1560
1550
|
|
|
1561
1551
|
|
|
1552
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1553
|
+
display_name: str = Field(alias="displayName")
|
|
1554
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1555
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1556
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1557
|
+
period: PromotionalEntitlementPeriod
|
|
1558
|
+
start_date: Any = Field(alias="startDate")
|
|
1559
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1560
|
+
|
|
1561
|
+
|
|
1562
1562
|
class CustomerPortalFragment(BaseModel):
|
|
1563
1563
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1564
1564
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -2768,35 +2768,35 @@ OveragePriceFragment.model_rebuild()
|
|
|
2768
2768
|
PriceFragment.model_rebuild()
|
|
2769
2769
|
PackageEntitlementFragment.model_rebuild()
|
|
2770
2770
|
AddonFragment.model_rebuild()
|
|
2771
|
-
|
|
2772
|
-
|
|
2771
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2772
|
+
TotalPriceFragment.model_rebuild()
|
|
2773
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2774
|
+
CustomerResourceFragment.model_rebuild()
|
|
2773
2775
|
ProductFragment.model_rebuild()
|
|
2774
2776
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2775
2777
|
PlanFragment.model_rebuild()
|
|
2776
|
-
CustomerResourceFragment.model_rebuild()
|
|
2777
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2778
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2779
2778
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2780
|
-
TotalPriceFragment.model_rebuild()
|
|
2781
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2782
2779
|
SlimCustomerFragment.model_rebuild()
|
|
2780
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2783
2781
|
SubscriptionFragment.model_rebuild()
|
|
2782
|
+
FeatureFragment.model_rebuild()
|
|
2783
|
+
EntitlementFragment.model_rebuild()
|
|
2784
2784
|
ApplySubscriptionFragment.model_rebuild()
|
|
2785
2785
|
FontVariantFragment.model_rebuild()
|
|
2786
2786
|
TypographyConfigurationFragment.model_rebuild()
|
|
2787
2787
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2788
|
-
CouponFragment.model_rebuild()
|
|
2789
2788
|
PromotionalEntitlementFragment.model_rebuild()
|
|
2789
|
+
CouponFragment.model_rebuild()
|
|
2790
2790
|
CustomerFragment.model_rebuild()
|
|
2791
2791
|
CheckoutStateFragment.model_rebuild()
|
|
2792
2792
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2793
2793
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2794
2794
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2795
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2796
|
-
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2797
2795
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2796
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2798
2797
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2799
2798
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2799
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2800
2800
|
CustomerPortalFragment.model_rebuild()
|
|
2801
2801
|
CustomerStatisticsFragment.model_rebuild()
|
|
2802
2802
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -119,11 +119,11 @@ stigg/generated/client.py,sha256=AHebP8X0jl5noIxkZwMgE-EOE3e5lv-tGrCj2xDt58c,169
|
|
|
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=XiTyxApFyNYiRaaHYXIGvi3KCHczQhHCPwNKpJKdh2U,34870
|
|
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=MewKa3yjnMRJ9jhODPIGu85axuFr1E4dCYrnOvIq82o,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
|
|
@@ -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.329.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.329.0.dist-info/METADATA,sha256=Dq2cMDcDJqNMRGMhgh-hLGTHL-95zhEiB5PXgzK10D0,2258
|
|
165
|
+
stigg_api_client_v2-2.329.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.329.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|