stigg-api-client-v2 2.414.3__py3-none-any.whl → 2.415.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.
- stigg/generated/fragments.py +224 -224
- stigg/generated/input_types.py +1 -1
- {stigg_api_client_v2-2.414.3.dist-info → stigg_api_client_v2-2.415.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.414.3.dist-info → stigg_api_client_v2-2.415.0.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-2.414.3.dist-info → stigg_api_client_v2-2.415.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.414.3.dist-info → stigg_api_client_v2-2.415.0.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -60,39 +60,6 @@ class AddonDependencyFragment(BaseModel):
|
|
|
60
60
|
description: Optional[str] = Field(default=None)
|
|
61
61
|
|
|
62
62
|
|
|
63
|
-
class PackageEntitlementFragment(BaseModel):
|
|
64
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
65
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
66
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
67
|
-
feature_id: str = Field(alias="featureId")
|
|
68
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
69
|
-
alias="resetPeriod", default=None
|
|
70
|
-
)
|
|
71
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
72
|
-
alias="hiddenFromWidgets", default=None
|
|
73
|
-
)
|
|
74
|
-
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
75
|
-
display_name_override: Optional[str] = Field(
|
|
76
|
-
alias="displayNameOverride", default=None
|
|
77
|
-
)
|
|
78
|
-
feature: "PackageEntitlementFragmentFeature"
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
class PackageEntitlementFragmentFeature(BaseModel):
|
|
82
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
83
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
84
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
85
|
-
feature_units_plural: Optional[str] = Field(
|
|
86
|
-
alias="featureUnitsPlural", default=None
|
|
87
|
-
)
|
|
88
|
-
display_name: str = Field(alias="displayName")
|
|
89
|
-
description: Optional[str] = Field(default=None)
|
|
90
|
-
ref_id: str = Field(alias="refId")
|
|
91
|
-
additional_meta_data: Optional[Any] = Field(
|
|
92
|
-
alias="additionalMetaData", default=None
|
|
93
|
-
)
|
|
94
|
-
|
|
95
|
-
|
|
96
63
|
class PriceTierFragment(BaseModel):
|
|
97
64
|
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
98
65
|
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
@@ -145,6 +112,39 @@ class OveragePriceFragmentFeature(BaseModel):
|
|
|
145
112
|
description: Optional[str] = Field(default=None)
|
|
146
113
|
|
|
147
114
|
|
|
115
|
+
class PackageEntitlementFragment(BaseModel):
|
|
116
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
117
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
118
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
119
|
+
feature_id: str = Field(alias="featureId")
|
|
120
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
121
|
+
alias="resetPeriod", default=None
|
|
122
|
+
)
|
|
123
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
124
|
+
alias="hiddenFromWidgets", default=None
|
|
125
|
+
)
|
|
126
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
127
|
+
display_name_override: Optional[str] = Field(
|
|
128
|
+
alias="displayNameOverride", default=None
|
|
129
|
+
)
|
|
130
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
134
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
135
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
136
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
137
|
+
feature_units_plural: Optional[str] = Field(
|
|
138
|
+
alias="featureUnitsPlural", default=None
|
|
139
|
+
)
|
|
140
|
+
display_name: str = Field(alias="displayName")
|
|
141
|
+
description: Optional[str] = Field(default=None)
|
|
142
|
+
ref_id: str = Field(alias="refId")
|
|
143
|
+
additional_meta_data: Optional[Any] = Field(
|
|
144
|
+
alias="additionalMetaData", default=None
|
|
145
|
+
)
|
|
146
|
+
|
|
147
|
+
|
|
148
148
|
class PriceFragment(BaseModel):
|
|
149
149
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
150
150
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -299,37 +299,6 @@ class EntitlementFragmentFeature(FeatureFragment):
|
|
|
299
299
|
pass
|
|
300
300
|
|
|
301
301
|
|
|
302
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
303
|
-
billing_id: str = Field(alias="billingId")
|
|
304
|
-
status: SubscriptionInvoiceStatus
|
|
305
|
-
created_at: Any = Field(alias="createdAt")
|
|
306
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
307
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
308
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
309
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
310
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
311
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
312
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
313
|
-
alias="billingReason", default=None
|
|
314
|
-
)
|
|
315
|
-
currency: Optional[str] = Field(default=None)
|
|
316
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
317
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
318
|
-
alias="subTotalExcludingTax", default=None
|
|
319
|
-
)
|
|
320
|
-
total: Optional[float] = Field(default=None)
|
|
321
|
-
total_excluding_tax: Optional[float] = Field(
|
|
322
|
-
alias="totalExcludingTax", default=None
|
|
323
|
-
)
|
|
324
|
-
tax: Optional[float] = Field(default=None)
|
|
325
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
326
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
class CustomerResourceFragment(BaseModel):
|
|
330
|
-
resource_id: str = Field(alias="resourceId")
|
|
331
|
-
|
|
332
|
-
|
|
333
302
|
class SlimCustomerFragment(BaseModel):
|
|
334
303
|
id: str
|
|
335
304
|
name: Optional[str] = Field(default=None)
|
|
@@ -347,45 +316,45 @@ class SlimCustomerFragment(BaseModel):
|
|
|
347
316
|
)
|
|
348
317
|
|
|
349
318
|
|
|
350
|
-
class
|
|
319
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
351
320
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
352
321
|
alias="subscriptionScheduleType"
|
|
353
322
|
)
|
|
354
323
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
355
324
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
356
|
-
target_package: Optional["
|
|
325
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
357
326
|
alias="targetPackage", default=None
|
|
358
327
|
)
|
|
359
328
|
schedule_variables: Optional[
|
|
360
329
|
Annotated[
|
|
361
330
|
Union[
|
|
362
|
-
"
|
|
363
|
-
"
|
|
364
|
-
"
|
|
365
|
-
"
|
|
366
|
-
"
|
|
367
|
-
"
|
|
368
|
-
"
|
|
369
|
-
"
|
|
331
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
332
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
333
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
334
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
335
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
336
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
337
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
338
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
370
339
|
],
|
|
371
340
|
Field(discriminator="typename__"),
|
|
372
341
|
]
|
|
373
342
|
] = Field(alias="scheduleVariables", default=None)
|
|
374
343
|
|
|
375
344
|
|
|
376
|
-
class
|
|
345
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
377
346
|
id: str
|
|
378
347
|
ref_id: str = Field(alias="refId")
|
|
379
348
|
display_name: str = Field(alias="displayName")
|
|
380
349
|
|
|
381
350
|
|
|
382
|
-
class
|
|
351
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
383
352
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
384
353
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
385
354
|
new_quantity: float = Field(alias="newQuantity")
|
|
386
355
|
|
|
387
356
|
|
|
388
|
-
class
|
|
357
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
389
358
|
BaseModel
|
|
390
359
|
):
|
|
391
360
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -393,55 +362,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
393
362
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
394
363
|
|
|
395
364
|
|
|
396
|
-
class
|
|
365
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
397
366
|
BaseModel
|
|
398
367
|
):
|
|
399
368
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
400
369
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
401
370
|
|
|
402
371
|
|
|
403
|
-
class
|
|
372
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
404
373
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
405
374
|
|
|
406
375
|
|
|
407
|
-
class
|
|
408
|
-
BaseModel
|
|
409
|
-
):
|
|
376
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
410
377
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
411
378
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
412
379
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
413
380
|
billable_features: Optional[
|
|
414
381
|
List[
|
|
415
|
-
"
|
|
382
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
416
383
|
]
|
|
417
384
|
] = Field(alias="billableFeatures", default=None)
|
|
418
385
|
addons: Optional[
|
|
419
386
|
List[
|
|
420
|
-
"
|
|
387
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
421
388
|
]
|
|
422
389
|
] = Field(default=None)
|
|
423
390
|
price_overrides: Optional[
|
|
424
391
|
List[
|
|
425
|
-
"
|
|
392
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
426
393
|
]
|
|
427
394
|
] = Field(alias="priceOverrides", default=None)
|
|
428
395
|
|
|
429
396
|
|
|
430
|
-
class
|
|
397
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
431
398
|
BaseModel
|
|
432
399
|
):
|
|
433
400
|
feature_id: str = Field(alias="featureId")
|
|
434
401
|
quantity: float
|
|
435
402
|
|
|
436
403
|
|
|
437
|
-
class
|
|
404
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
438
405
|
BaseModel
|
|
439
406
|
):
|
|
440
407
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
441
408
|
quantity: float
|
|
442
409
|
|
|
443
410
|
|
|
444
|
-
class
|
|
411
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
445
412
|
BaseModel
|
|
446
413
|
):
|
|
447
414
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -449,43 +416,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
449
416
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
450
417
|
|
|
451
418
|
|
|
452
|
-
class
|
|
419
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
453
420
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
454
421
|
plan_ref_id: str = Field(alias="planRefId")
|
|
455
422
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
456
423
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
457
424
|
billable_features: Optional[
|
|
458
425
|
List[
|
|
459
|
-
"
|
|
426
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
460
427
|
]
|
|
461
428
|
] = Field(alias="billableFeatures", default=None)
|
|
462
429
|
addons: Optional[
|
|
463
|
-
List[
|
|
464
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
465
|
-
]
|
|
430
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
466
431
|
] = Field(default=None)
|
|
467
432
|
price_overrides: Optional[
|
|
468
433
|
List[
|
|
469
|
-
"
|
|
434
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
470
435
|
]
|
|
471
436
|
] = Field(alias="priceOverrides", default=None)
|
|
472
437
|
|
|
473
438
|
|
|
474
|
-
class
|
|
439
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
475
440
|
BaseModel
|
|
476
441
|
):
|
|
477
442
|
feature_id: str = Field(alias="featureId")
|
|
478
443
|
quantity: float
|
|
479
444
|
|
|
480
445
|
|
|
481
|
-
class
|
|
482
|
-
BaseModel
|
|
483
|
-
):
|
|
446
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
484
447
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
485
448
|
quantity: float
|
|
486
449
|
|
|
487
450
|
|
|
488
|
-
class
|
|
451
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
489
452
|
BaseModel
|
|
490
453
|
):
|
|
491
454
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -493,7 +456,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
493
456
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
494
457
|
|
|
495
458
|
|
|
496
|
-
class
|
|
459
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
497
460
|
BaseModel
|
|
498
461
|
):
|
|
499
462
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -501,33 +464,12 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
501
464
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
502
465
|
|
|
503
466
|
|
|
504
|
-
class
|
|
505
|
-
BaseModel
|
|
506
|
-
):
|
|
467
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
507
468
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
508
469
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
509
470
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
510
471
|
|
|
511
472
|
|
|
512
|
-
class TotalPriceFragment(BaseModel):
|
|
513
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
514
|
-
total: "TotalPriceFragmentTotal"
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
518
|
-
amount: float
|
|
519
|
-
currency: Currency
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
523
|
-
amount: float
|
|
524
|
-
currency: Currency
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
528
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
529
|
-
|
|
530
|
-
|
|
531
473
|
class ProductFragment(BaseModel):
|
|
532
474
|
ref_id: str = Field(alias="refId")
|
|
533
475
|
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
@@ -648,45 +590,49 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
648
590
|
limit: float
|
|
649
591
|
|
|
650
592
|
|
|
651
|
-
class
|
|
593
|
+
class CustomerResourceFragment(BaseModel):
|
|
594
|
+
resource_id: str = Field(alias="resourceId")
|
|
595
|
+
|
|
596
|
+
|
|
597
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
652
598
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
653
599
|
alias="subscriptionScheduleType"
|
|
654
600
|
)
|
|
655
601
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
656
602
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
657
|
-
target_package: Optional["
|
|
603
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
658
604
|
alias="targetPackage", default=None
|
|
659
605
|
)
|
|
660
606
|
schedule_variables: Optional[
|
|
661
607
|
Annotated[
|
|
662
608
|
Union[
|
|
663
|
-
"
|
|
664
|
-
"
|
|
665
|
-
"
|
|
666
|
-
"
|
|
667
|
-
"
|
|
668
|
-
"
|
|
669
|
-
"
|
|
670
|
-
"
|
|
609
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
610
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
611
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
612
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
613
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
614
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
615
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
616
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
671
617
|
],
|
|
672
618
|
Field(discriminator="typename__"),
|
|
673
619
|
]
|
|
674
620
|
] = Field(alias="scheduleVariables", default=None)
|
|
675
621
|
|
|
676
622
|
|
|
677
|
-
class
|
|
623
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
678
624
|
id: str
|
|
679
625
|
ref_id: str = Field(alias="refId")
|
|
680
626
|
display_name: str = Field(alias="displayName")
|
|
681
627
|
|
|
682
628
|
|
|
683
|
-
class
|
|
629
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
684
630
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
685
631
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
686
632
|
new_quantity: float = Field(alias="newQuantity")
|
|
687
633
|
|
|
688
634
|
|
|
689
|
-
class
|
|
635
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
690
636
|
BaseModel
|
|
691
637
|
):
|
|
692
638
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -694,53 +640,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
694
640
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
695
641
|
|
|
696
642
|
|
|
697
|
-
class
|
|
643
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
698
644
|
BaseModel
|
|
699
645
|
):
|
|
700
646
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
701
647
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
702
648
|
|
|
703
649
|
|
|
704
|
-
class
|
|
650
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
705
651
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
706
652
|
|
|
707
653
|
|
|
708
|
-
class
|
|
654
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
655
|
+
BaseModel
|
|
656
|
+
):
|
|
709
657
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
710
658
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
711
659
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
712
660
|
billable_features: Optional[
|
|
713
661
|
List[
|
|
714
|
-
"
|
|
662
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
715
663
|
]
|
|
716
664
|
] = Field(alias="billableFeatures", default=None)
|
|
717
665
|
addons: Optional[
|
|
718
666
|
List[
|
|
719
|
-
"
|
|
667
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
720
668
|
]
|
|
721
669
|
] = Field(default=None)
|
|
722
670
|
price_overrides: Optional[
|
|
723
671
|
List[
|
|
724
|
-
"
|
|
672
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
725
673
|
]
|
|
726
674
|
] = Field(alias="priceOverrides", default=None)
|
|
727
675
|
|
|
728
676
|
|
|
729
|
-
class
|
|
677
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
730
678
|
BaseModel
|
|
731
679
|
):
|
|
732
680
|
feature_id: str = Field(alias="featureId")
|
|
733
681
|
quantity: float
|
|
734
682
|
|
|
735
683
|
|
|
736
|
-
class
|
|
684
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
737
685
|
BaseModel
|
|
738
686
|
):
|
|
739
687
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
740
688
|
quantity: float
|
|
741
689
|
|
|
742
690
|
|
|
743
|
-
class
|
|
691
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
744
692
|
BaseModel
|
|
745
693
|
):
|
|
746
694
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -748,39 +696,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
748
696
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
749
697
|
|
|
750
698
|
|
|
751
|
-
class
|
|
699
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
752
700
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
753
701
|
plan_ref_id: str = Field(alias="planRefId")
|
|
754
702
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
755
703
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
756
704
|
billable_features: Optional[
|
|
757
705
|
List[
|
|
758
|
-
"
|
|
706
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
759
707
|
]
|
|
760
708
|
] = Field(alias="billableFeatures", default=None)
|
|
761
709
|
addons: Optional[
|
|
762
|
-
List[
|
|
710
|
+
List[
|
|
711
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
712
|
+
]
|
|
763
713
|
] = Field(default=None)
|
|
764
714
|
price_overrides: Optional[
|
|
765
715
|
List[
|
|
766
|
-
"
|
|
716
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
767
717
|
]
|
|
768
718
|
] = Field(alias="priceOverrides", default=None)
|
|
769
719
|
|
|
770
720
|
|
|
771
|
-
class
|
|
721
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
772
722
|
BaseModel
|
|
773
723
|
):
|
|
774
724
|
feature_id: str = Field(alias="featureId")
|
|
775
725
|
quantity: float
|
|
776
726
|
|
|
777
727
|
|
|
778
|
-
class
|
|
728
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
729
|
+
BaseModel
|
|
730
|
+
):
|
|
779
731
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
780
732
|
quantity: float
|
|
781
733
|
|
|
782
734
|
|
|
783
|
-
class
|
|
735
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
784
736
|
BaseModel
|
|
785
737
|
):
|
|
786
738
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -788,7 +740,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
788
740
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
789
741
|
|
|
790
742
|
|
|
791
|
-
class
|
|
743
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
792
744
|
BaseModel
|
|
793
745
|
):
|
|
794
746
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -796,12 +748,60 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
796
748
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
797
749
|
|
|
798
750
|
|
|
799
|
-
class
|
|
751
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
752
|
+
BaseModel
|
|
753
|
+
):
|
|
800
754
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
801
755
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
802
756
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
803
757
|
|
|
804
758
|
|
|
759
|
+
class TotalPriceFragment(BaseModel):
|
|
760
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
761
|
+
total: "TotalPriceFragmentTotal"
|
|
762
|
+
|
|
763
|
+
|
|
764
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
765
|
+
amount: float
|
|
766
|
+
currency: Currency
|
|
767
|
+
|
|
768
|
+
|
|
769
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
770
|
+
amount: float
|
|
771
|
+
currency: Currency
|
|
772
|
+
|
|
773
|
+
|
|
774
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
775
|
+
billing_id: str = Field(alias="billingId")
|
|
776
|
+
status: SubscriptionInvoiceStatus
|
|
777
|
+
created_at: Any = Field(alias="createdAt")
|
|
778
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
779
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
780
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
781
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
782
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
783
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
784
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
785
|
+
alias="billingReason", default=None
|
|
786
|
+
)
|
|
787
|
+
currency: Optional[str] = Field(default=None)
|
|
788
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
789
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
790
|
+
alias="subTotalExcludingTax", default=None
|
|
791
|
+
)
|
|
792
|
+
total: Optional[float] = Field(default=None)
|
|
793
|
+
total_excluding_tax: Optional[float] = Field(
|
|
794
|
+
alias="totalExcludingTax", default=None
|
|
795
|
+
)
|
|
796
|
+
tax: Optional[float] = Field(default=None)
|
|
797
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
798
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
799
|
+
|
|
800
|
+
|
|
801
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
802
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
803
|
+
|
|
804
|
+
|
|
805
805
|
class SubscriptionFragment(BaseModel):
|
|
806
806
|
id: str
|
|
807
807
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -988,35 +988,6 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
988
988
|
)
|
|
989
989
|
|
|
990
990
|
|
|
991
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
992
|
-
status: PromotionalEntitlementStatus
|
|
993
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
994
|
-
feature_id: str = Field(alias="featureId")
|
|
995
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
996
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
997
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
998
|
-
alias="resetPeriod", default=None
|
|
999
|
-
)
|
|
1000
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1001
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1002
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1006
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1007
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1008
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1009
|
-
feature_units_plural: Optional[str] = Field(
|
|
1010
|
-
alias="featureUnitsPlural", default=None
|
|
1011
|
-
)
|
|
1012
|
-
display_name: str = Field(alias="displayName")
|
|
1013
|
-
description: Optional[str] = Field(default=None)
|
|
1014
|
-
ref_id: str = Field(alias="refId")
|
|
1015
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1016
|
-
alias="additionalMetaData", default=None
|
|
1017
|
-
)
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
991
|
class CouponFragment(BaseModel):
|
|
1021
992
|
id: str
|
|
1022
993
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1051,6 +1022,35 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1051
1022
|
status: SyncStatus
|
|
1052
1023
|
|
|
1053
1024
|
|
|
1025
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
1026
|
+
status: PromotionalEntitlementStatus
|
|
1027
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1028
|
+
feature_id: str = Field(alias="featureId")
|
|
1029
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1030
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1031
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1032
|
+
alias="resetPeriod", default=None
|
|
1033
|
+
)
|
|
1034
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1035
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1036
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1037
|
+
|
|
1038
|
+
|
|
1039
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1040
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1041
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1042
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1043
|
+
feature_units_plural: Optional[str] = Field(
|
|
1044
|
+
alias="featureUnitsPlural", default=None
|
|
1045
|
+
)
|
|
1046
|
+
display_name: str = Field(alias="displayName")
|
|
1047
|
+
description: Optional[str] = Field(default=None)
|
|
1048
|
+
ref_id: str = Field(alias="refId")
|
|
1049
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1050
|
+
alias="additionalMetaData", default=None
|
|
1051
|
+
)
|
|
1052
|
+
|
|
1053
|
+
|
|
1054
1054
|
class CustomerFragment(SlimCustomerFragment):
|
|
1055
1055
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1056
1056
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1793,39 +1793,6 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1793
1793
|
description: Optional[str] = Field(default=None)
|
|
1794
1794
|
|
|
1795
1795
|
|
|
1796
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1797
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1798
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1799
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1800
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1801
|
-
alias="resetPeriod", default=None
|
|
1802
|
-
)
|
|
1803
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1804
|
-
alias="hiddenFromWidgets", default=None
|
|
1805
|
-
)
|
|
1806
|
-
display_name_override: Optional[str] = Field(
|
|
1807
|
-
alias="displayNameOverride", default=None
|
|
1808
|
-
)
|
|
1809
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1810
|
-
default=None
|
|
1811
|
-
)
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1815
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1816
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1817
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1818
|
-
feature_units_plural: Optional[str] = Field(
|
|
1819
|
-
alias="featureUnitsPlural", default=None
|
|
1820
|
-
)
|
|
1821
|
-
display_name: str = Field(alias="displayName")
|
|
1822
|
-
description: Optional[str] = Field(default=None)
|
|
1823
|
-
ref_id: str = Field(alias="refId")
|
|
1824
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1825
|
-
alias="additionalMetaData", default=None
|
|
1826
|
-
)
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
1796
|
class MockPaywallPriceFragment(BaseModel):
|
|
1830
1797
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1831
1798
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1860,6 +1827,39 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1860
1827
|
display_name: str = Field(alias="displayName")
|
|
1861
1828
|
|
|
1862
1829
|
|
|
1830
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1831
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1832
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1833
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1834
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1835
|
+
alias="resetPeriod", default=None
|
|
1836
|
+
)
|
|
1837
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1838
|
+
alias="hiddenFromWidgets", default=None
|
|
1839
|
+
)
|
|
1840
|
+
display_name_override: Optional[str] = Field(
|
|
1841
|
+
alias="displayNameOverride", default=None
|
|
1842
|
+
)
|
|
1843
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1844
|
+
default=None
|
|
1845
|
+
)
|
|
1846
|
+
|
|
1847
|
+
|
|
1848
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1849
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1850
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1851
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1852
|
+
feature_units_plural: Optional[str] = Field(
|
|
1853
|
+
alias="featureUnitsPlural", default=None
|
|
1854
|
+
)
|
|
1855
|
+
display_name: str = Field(alias="displayName")
|
|
1856
|
+
description: Optional[str] = Field(default=None)
|
|
1857
|
+
ref_id: str = Field(alias="refId")
|
|
1858
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1859
|
+
alias="additionalMetaData", default=None
|
|
1860
|
+
)
|
|
1861
|
+
|
|
1862
|
+
|
|
1863
1863
|
class MockPaywallAddonFragment(BaseModel):
|
|
1864
1864
|
ref_id: str = Field(alias="refId")
|
|
1865
1865
|
display_name: str = Field(alias="displayName")
|
|
@@ -2770,30 +2770,30 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2770
2770
|
|
|
2771
2771
|
|
|
2772
2772
|
AddonDependencyFragment.model_rebuild()
|
|
2773
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2774
2773
|
PriceTierFragment.model_rebuild()
|
|
2775
2774
|
OveragePriceFragment.model_rebuild()
|
|
2775
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2776
2776
|
PriceFragment.model_rebuild()
|
|
2777
2777
|
AddonFragment.model_rebuild()
|
|
2778
2778
|
FeatureFragment.model_rebuild()
|
|
2779
2779
|
EntitlementFragment.model_rebuild()
|
|
2780
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2781
|
-
CustomerResourceFragment.model_rebuild()
|
|
2782
2780
|
SlimCustomerFragment.model_rebuild()
|
|
2783
|
-
|
|
2784
|
-
TotalPriceFragment.model_rebuild()
|
|
2785
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2781
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2786
2782
|
ProductFragment.model_rebuild()
|
|
2787
2783
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2788
2784
|
PlanFragment.model_rebuild()
|
|
2789
|
-
|
|
2785
|
+
CustomerResourceFragment.model_rebuild()
|
|
2786
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2787
|
+
TotalPriceFragment.model_rebuild()
|
|
2788
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2789
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2790
2790
|
SubscriptionFragment.model_rebuild()
|
|
2791
2791
|
ApplySubscriptionFragment.model_rebuild()
|
|
2792
2792
|
FontVariantFragment.model_rebuild()
|
|
2793
2793
|
TypographyConfigurationFragment.model_rebuild()
|
|
2794
2794
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2795
|
-
PromotionalEntitlementFragment.model_rebuild()
|
|
2796
2795
|
CouponFragment.model_rebuild()
|
|
2796
|
+
PromotionalEntitlementFragment.model_rebuild()
|
|
2797
2797
|
CustomerFragment.model_rebuild()
|
|
2798
2798
|
CheckoutStateFragment.model_rebuild()
|
|
2799
2799
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
@@ -2813,8 +2813,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2813
2813
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2814
2814
|
LayoutConfigurationFragment.model_rebuild()
|
|
2815
2815
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2816
|
-
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2817
2816
|
MockPaywallPriceFragment.model_rebuild()
|
|
2817
|
+
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2818
2818
|
MockPaywallAddonFragment.model_rebuild()
|
|
2819
2819
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2820
2820
|
MockPaywallPlanFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -4319,7 +4319,7 @@ class UpdateCouponInput(BaseModel):
|
|
|
4319
4319
|
)
|
|
4320
4320
|
description: Optional[str] = None
|
|
4321
4321
|
environment_id: Optional[str] = Field(alias="environmentId", default=None)
|
|
4322
|
-
name: str
|
|
4322
|
+
name: Optional[str] = None
|
|
4323
4323
|
ref_id: str = Field(alias="refId")
|
|
4324
4324
|
|
|
4325
4325
|
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=t6q4y-5cKBmgLTrf_2YWXkNvmclEjnvBos1Ycd0aomI,3521
|
|
|
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=XZkCYkOQJ5cj6xYbvLijhDnv9i-kbiGM8slOpq-tbHE,100917
|
|
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=uDdFYmmvwvobLQDS09UDQZQYnOlsupzz4bXQMMM-Ba4,193972
|
|
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.415.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.415.0.dist-info/METADATA,sha256=r3AprAiLJjFjoOfAp2LHwackkcG6JOENawXCE278nwc,2258
|
|
165
|
+
stigg_api_client_v2-2.415.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.415.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|