stigg-api-client-v2 3.127.0__py3-none-any.whl → 3.128.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 +192 -192
- stigg/generated/input_types.py +3 -0
- {stigg_api_client_v2-3.127.0.dist-info → stigg_api_client_v2-3.128.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.127.0.dist-info → stigg_api_client_v2-3.128.0.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-3.127.0.dist-info → stigg_api_client_v2-3.128.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.127.0.dist-info → stigg_api_client_v2-3.128.0.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -82,29 +82,42 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
82
82
|
currency: Currency
|
|
83
83
|
|
|
84
84
|
|
|
85
|
-
class
|
|
85
|
+
class PriceFragment(BaseModel):
|
|
86
86
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
87
87
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
88
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
88
89
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
90
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
91
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
89
92
|
billing_country_code: Optional[str] = Field(
|
|
90
93
|
alias="billingCountryCode", default=None
|
|
91
94
|
)
|
|
92
|
-
price: Optional["
|
|
95
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
96
|
+
credit_rate: Optional["PriceFragmentCreditRate"] = Field(
|
|
97
|
+
alias="creditRate", default=None
|
|
98
|
+
)
|
|
93
99
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
94
|
-
tiers: Optional[List["
|
|
95
|
-
feature: Optional["
|
|
100
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
101
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
102
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
96
103
|
|
|
97
104
|
|
|
98
|
-
class
|
|
105
|
+
class PriceFragmentPrice(BaseModel):
|
|
99
106
|
amount: float
|
|
100
107
|
currency: Currency
|
|
101
108
|
|
|
102
109
|
|
|
103
|
-
class
|
|
110
|
+
class PriceFragmentCreditRate(BaseModel):
|
|
111
|
+
amount: float
|
|
112
|
+
custom_currency_id: Optional[Any] = Field(alias="customCurrencyId", default=None)
|
|
113
|
+
currency_id: str = Field(alias="currencyId")
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
104
117
|
pass
|
|
105
118
|
|
|
106
119
|
|
|
107
|
-
class
|
|
120
|
+
class PriceFragmentFeature(BaseModel):
|
|
108
121
|
ref_id: str = Field(alias="refId")
|
|
109
122
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
110
123
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -149,42 +162,29 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
149
162
|
)
|
|
150
163
|
|
|
151
164
|
|
|
152
|
-
class
|
|
165
|
+
class OveragePriceFragment(BaseModel):
|
|
153
166
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
154
167
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
155
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
156
168
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
157
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
158
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
159
169
|
billing_country_code: Optional[str] = Field(
|
|
160
170
|
alias="billingCountryCode", default=None
|
|
161
171
|
)
|
|
162
|
-
price: Optional["
|
|
163
|
-
credit_rate: Optional["PriceFragmentCreditRate"] = Field(
|
|
164
|
-
alias="creditRate", default=None
|
|
165
|
-
)
|
|
172
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
166
173
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
167
|
-
tiers: Optional[List["
|
|
168
|
-
feature: Optional["
|
|
169
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
174
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
175
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
170
176
|
|
|
171
177
|
|
|
172
|
-
class
|
|
178
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
173
179
|
amount: float
|
|
174
180
|
currency: Currency
|
|
175
181
|
|
|
176
182
|
|
|
177
|
-
class
|
|
178
|
-
amount: float
|
|
179
|
-
custom_currency_id: Optional[Any] = Field(alias="customCurrencyId", default=None)
|
|
180
|
-
currency_id: str = Field(alias="currencyId")
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
class PriceFragmentTiers(PriceTierFragment):
|
|
183
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
184
184
|
pass
|
|
185
185
|
|
|
186
186
|
|
|
187
|
-
class
|
|
187
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
188
188
|
ref_id: str = Field(alias="refId")
|
|
189
189
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
190
190
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -326,45 +326,45 @@ class EntitlementFragmentCreditRate(BaseModel):
|
|
|
326
326
|
currency_id: str = Field(alias="currencyId")
|
|
327
327
|
|
|
328
328
|
|
|
329
|
-
class
|
|
329
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
330
330
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
331
331
|
alias="subscriptionScheduleType"
|
|
332
332
|
)
|
|
333
333
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
334
334
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
335
|
-
target_package: Optional["
|
|
335
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
336
336
|
alias="targetPackage", default=None
|
|
337
337
|
)
|
|
338
338
|
schedule_variables: Optional[
|
|
339
339
|
Annotated[
|
|
340
340
|
Union[
|
|
341
|
-
"
|
|
342
|
-
"
|
|
343
|
-
"
|
|
344
|
-
"
|
|
345
|
-
"
|
|
346
|
-
"
|
|
347
|
-
"
|
|
348
|
-
"
|
|
341
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
342
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
343
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
344
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
345
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
346
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
347
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
348
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
349
349
|
],
|
|
350
350
|
Field(discriminator="typename__"),
|
|
351
351
|
]
|
|
352
352
|
] = Field(alias="scheduleVariables", default=None)
|
|
353
353
|
|
|
354
354
|
|
|
355
|
-
class
|
|
355
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
356
356
|
id: Any
|
|
357
357
|
ref_id: str = Field(alias="refId")
|
|
358
358
|
display_name: str = Field(alias="displayName")
|
|
359
359
|
|
|
360
360
|
|
|
361
|
-
class
|
|
361
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
362
362
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
363
363
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
364
364
|
new_quantity: float = Field(alias="newQuantity")
|
|
365
365
|
|
|
366
366
|
|
|
367
|
-
class
|
|
367
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
368
368
|
BaseModel
|
|
369
369
|
):
|
|
370
370
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -372,55 +372,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
372
372
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
373
373
|
|
|
374
374
|
|
|
375
|
-
class
|
|
375
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
376
376
|
BaseModel
|
|
377
377
|
):
|
|
378
378
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
379
379
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
380
380
|
|
|
381
381
|
|
|
382
|
-
class
|
|
382
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
383
383
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
384
384
|
|
|
385
385
|
|
|
386
|
-
class
|
|
387
|
-
BaseModel
|
|
388
|
-
):
|
|
386
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
389
387
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
390
388
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
391
389
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
392
390
|
billable_features: Optional[
|
|
393
391
|
List[
|
|
394
|
-
"
|
|
392
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
395
393
|
]
|
|
396
394
|
] = Field(alias="billableFeatures", default=None)
|
|
397
395
|
addons: Optional[
|
|
398
396
|
List[
|
|
399
|
-
"
|
|
397
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
400
398
|
]
|
|
401
399
|
] = Field(default=None)
|
|
402
400
|
price_overrides: Optional[
|
|
403
401
|
List[
|
|
404
|
-
"
|
|
402
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
405
403
|
]
|
|
406
404
|
] = Field(alias="priceOverrides", default=None)
|
|
407
405
|
|
|
408
406
|
|
|
409
|
-
class
|
|
407
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
410
408
|
BaseModel
|
|
411
409
|
):
|
|
412
410
|
feature_id: str = Field(alias="featureId")
|
|
413
411
|
quantity: float
|
|
414
412
|
|
|
415
413
|
|
|
416
|
-
class
|
|
414
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
417
415
|
BaseModel
|
|
418
416
|
):
|
|
419
417
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
420
418
|
quantity: float
|
|
421
419
|
|
|
422
420
|
|
|
423
|
-
class
|
|
421
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
424
422
|
BaseModel
|
|
425
423
|
):
|
|
426
424
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -428,43 +426,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
428
426
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
429
427
|
|
|
430
428
|
|
|
431
|
-
class
|
|
429
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
432
430
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
433
431
|
plan_ref_id: str = Field(alias="planRefId")
|
|
434
432
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
435
433
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
436
434
|
billable_features: Optional[
|
|
437
435
|
List[
|
|
438
|
-
"
|
|
436
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
439
437
|
]
|
|
440
438
|
] = Field(alias="billableFeatures", default=None)
|
|
441
439
|
addons: Optional[
|
|
442
|
-
List[
|
|
443
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
444
|
-
]
|
|
440
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
445
441
|
] = Field(default=None)
|
|
446
442
|
price_overrides: Optional[
|
|
447
443
|
List[
|
|
448
|
-
"
|
|
444
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
449
445
|
]
|
|
450
446
|
] = Field(alias="priceOverrides", default=None)
|
|
451
447
|
|
|
452
448
|
|
|
453
|
-
class
|
|
449
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
454
450
|
BaseModel
|
|
455
451
|
):
|
|
456
452
|
feature_id: str = Field(alias="featureId")
|
|
457
453
|
quantity: float
|
|
458
454
|
|
|
459
455
|
|
|
460
|
-
class
|
|
461
|
-
BaseModel
|
|
462
|
-
):
|
|
456
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
463
457
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
464
458
|
quantity: float
|
|
465
459
|
|
|
466
460
|
|
|
467
|
-
class
|
|
461
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
468
462
|
BaseModel
|
|
469
463
|
):
|
|
470
464
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -472,7 +466,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
472
466
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
473
467
|
|
|
474
468
|
|
|
475
|
-
class
|
|
469
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
476
470
|
BaseModel
|
|
477
471
|
):
|
|
478
472
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -480,53 +474,74 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
480
474
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
481
475
|
|
|
482
476
|
|
|
483
|
-
class
|
|
484
|
-
BaseModel
|
|
485
|
-
):
|
|
477
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
486
478
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
487
479
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
488
480
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
489
481
|
|
|
490
482
|
|
|
491
|
-
class
|
|
483
|
+
class TotalPriceFragment(BaseModel):
|
|
484
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
485
|
+
total: "TotalPriceFragmentTotal"
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
489
|
+
amount: float
|
|
490
|
+
currency: Currency
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
494
|
+
amount: float
|
|
495
|
+
currency: Currency
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
499
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
class CustomerResourceFragment(BaseModel):
|
|
503
|
+
resource_id: str = Field(alias="resourceId")
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
492
507
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
493
508
|
alias="subscriptionScheduleType"
|
|
494
509
|
)
|
|
495
510
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
496
511
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
497
|
-
target_package: Optional["
|
|
512
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
498
513
|
alias="targetPackage", default=None
|
|
499
514
|
)
|
|
500
515
|
schedule_variables: Optional[
|
|
501
516
|
Annotated[
|
|
502
517
|
Union[
|
|
503
|
-
"
|
|
504
|
-
"
|
|
505
|
-
"
|
|
506
|
-
"
|
|
507
|
-
"
|
|
508
|
-
"
|
|
509
|
-
"
|
|
510
|
-
"
|
|
518
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
519
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
520
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
521
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
522
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
523
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
524
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
525
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
511
526
|
],
|
|
512
527
|
Field(discriminator="typename__"),
|
|
513
528
|
]
|
|
514
529
|
] = Field(alias="scheduleVariables", default=None)
|
|
515
530
|
|
|
516
531
|
|
|
517
|
-
class
|
|
532
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
518
533
|
id: Any
|
|
519
534
|
ref_id: str = Field(alias="refId")
|
|
520
535
|
display_name: str = Field(alias="displayName")
|
|
521
536
|
|
|
522
537
|
|
|
523
|
-
class
|
|
538
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
524
539
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
525
540
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
526
541
|
new_quantity: float = Field(alias="newQuantity")
|
|
527
542
|
|
|
528
543
|
|
|
529
|
-
class
|
|
544
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
530
545
|
BaseModel
|
|
531
546
|
):
|
|
532
547
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -534,53 +549,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
534
549
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
535
550
|
|
|
536
551
|
|
|
537
|
-
class
|
|
552
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
538
553
|
BaseModel
|
|
539
554
|
):
|
|
540
555
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
541
556
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
542
557
|
|
|
543
558
|
|
|
544
|
-
class
|
|
559
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
545
560
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
546
561
|
|
|
547
562
|
|
|
548
|
-
class
|
|
563
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
564
|
+
BaseModel
|
|
565
|
+
):
|
|
549
566
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
550
567
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
551
568
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
552
569
|
billable_features: Optional[
|
|
553
570
|
List[
|
|
554
|
-
"
|
|
571
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
555
572
|
]
|
|
556
573
|
] = Field(alias="billableFeatures", default=None)
|
|
557
574
|
addons: Optional[
|
|
558
575
|
List[
|
|
559
|
-
"
|
|
576
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
560
577
|
]
|
|
561
578
|
] = Field(default=None)
|
|
562
579
|
price_overrides: Optional[
|
|
563
580
|
List[
|
|
564
|
-
"
|
|
581
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
565
582
|
]
|
|
566
583
|
] = Field(alias="priceOverrides", default=None)
|
|
567
584
|
|
|
568
585
|
|
|
569
|
-
class
|
|
586
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
570
587
|
BaseModel
|
|
571
588
|
):
|
|
572
589
|
feature_id: str = Field(alias="featureId")
|
|
573
590
|
quantity: float
|
|
574
591
|
|
|
575
592
|
|
|
576
|
-
class
|
|
593
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
577
594
|
BaseModel
|
|
578
595
|
):
|
|
579
596
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
580
597
|
quantity: float
|
|
581
598
|
|
|
582
599
|
|
|
583
|
-
class
|
|
600
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
584
601
|
BaseModel
|
|
585
602
|
):
|
|
586
603
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -588,39 +605,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
588
605
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
589
606
|
|
|
590
607
|
|
|
591
|
-
class
|
|
608
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
592
609
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
593
610
|
plan_ref_id: str = Field(alias="planRefId")
|
|
594
611
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
595
612
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
596
613
|
billable_features: Optional[
|
|
597
614
|
List[
|
|
598
|
-
"
|
|
615
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
599
616
|
]
|
|
600
617
|
] = Field(alias="billableFeatures", default=None)
|
|
601
618
|
addons: Optional[
|
|
602
|
-
List[
|
|
619
|
+
List[
|
|
620
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
621
|
+
]
|
|
603
622
|
] = Field(default=None)
|
|
604
623
|
price_overrides: Optional[
|
|
605
624
|
List[
|
|
606
|
-
"
|
|
625
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
607
626
|
]
|
|
608
627
|
] = Field(alias="priceOverrides", default=None)
|
|
609
628
|
|
|
610
629
|
|
|
611
|
-
class
|
|
630
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
612
631
|
BaseModel
|
|
613
632
|
):
|
|
614
633
|
feature_id: str = Field(alias="featureId")
|
|
615
634
|
quantity: float
|
|
616
635
|
|
|
617
636
|
|
|
618
|
-
class
|
|
637
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
638
|
+
BaseModel
|
|
639
|
+
):
|
|
619
640
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
620
641
|
quantity: float
|
|
621
642
|
|
|
622
643
|
|
|
623
|
-
class
|
|
644
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
624
645
|
BaseModel
|
|
625
646
|
):
|
|
626
647
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -628,7 +649,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
628
649
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
629
650
|
|
|
630
651
|
|
|
631
|
-
class
|
|
652
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
632
653
|
BaseModel
|
|
633
654
|
):
|
|
634
655
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -636,16 +657,14 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
636
657
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
637
658
|
|
|
638
659
|
|
|
639
|
-
class
|
|
660
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
661
|
+
BaseModel
|
|
662
|
+
):
|
|
640
663
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
641
664
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
642
665
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
643
666
|
|
|
644
667
|
|
|
645
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
646
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
647
|
-
|
|
648
|
-
|
|
649
668
|
class SubscriptionInvoiceFragment(BaseModel):
|
|
650
669
|
billing_id: str = Field(alias="billingId")
|
|
651
670
|
status: SubscriptionInvoiceStatus
|
|
@@ -674,10 +693,6 @@ class SubscriptionInvoiceFragment(BaseModel):
|
|
|
674
693
|
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
675
694
|
|
|
676
695
|
|
|
677
|
-
class CustomerResourceFragment(BaseModel):
|
|
678
|
-
resource_id: str = Field(alias="resourceId")
|
|
679
|
-
|
|
680
|
-
|
|
681
696
|
class ProductFragment(BaseModel):
|
|
682
697
|
ref_id: str = Field(alias="refId")
|
|
683
698
|
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
@@ -798,21 +813,6 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
798
813
|
limit: float
|
|
799
814
|
|
|
800
815
|
|
|
801
|
-
class TotalPriceFragment(BaseModel):
|
|
802
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
803
|
-
total: "TotalPriceFragmentTotal"
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
807
|
-
amount: float
|
|
808
|
-
currency: Currency
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
812
|
-
amount: float
|
|
813
|
-
currency: Currency
|
|
814
|
-
|
|
815
|
-
|
|
816
816
|
class SlimCustomerFragment(BaseModel):
|
|
817
817
|
id: Any
|
|
818
818
|
name: Optional[str] = Field(default=None)
|
|
@@ -1016,6 +1016,16 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
1016
1016
|
)
|
|
1017
1017
|
|
|
1018
1018
|
|
|
1019
|
+
class ZuoraCheckoutCredentialsFragment(BaseModel):
|
|
1020
|
+
publishable_key: str = Field(alias="publishableKey")
|
|
1021
|
+
|
|
1022
|
+
|
|
1023
|
+
class StripeCheckoutCredentialsFragment(BaseModel):
|
|
1024
|
+
account_id: Optional[str] = Field(alias="accountId", default=None)
|
|
1025
|
+
setup_secret: str = Field(alias="setupSecret")
|
|
1026
|
+
public_key: Optional[str] = Field(alias="publicKey", default=None)
|
|
1027
|
+
|
|
1028
|
+
|
|
1019
1029
|
class CouponFragment(BaseModel):
|
|
1020
1030
|
id: Any
|
|
1021
1031
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1137,16 +1147,6 @@ class CustomerFragmentPromotionalEntitlements(PromotionalEntitlementFragment):
|
|
|
1137
1147
|
pass
|
|
1138
1148
|
|
|
1139
1149
|
|
|
1140
|
-
class StripeCheckoutCredentialsFragment(BaseModel):
|
|
1141
|
-
account_id: Optional[str] = Field(alias="accountId", default=None)
|
|
1142
|
-
setup_secret: str = Field(alias="setupSecret")
|
|
1143
|
-
public_key: Optional[str] = Field(alias="publicKey", default=None)
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
class ZuoraCheckoutCredentialsFragment(BaseModel):
|
|
1147
|
-
publishable_key: str = Field(alias="publishableKey")
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
1150
|
class CheckoutStateFragment(BaseModel):
|
|
1151
1151
|
configuration: Optional["CheckoutStateFragmentConfiguration"] = Field(default=None)
|
|
1152
1152
|
setup_secret: str = Field(alias="setupSecret")
|
|
@@ -1435,58 +1435,6 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1435
1435
|
pass
|
|
1436
1436
|
|
|
1437
1437
|
|
|
1438
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1439
|
-
display_name: str = Field(alias="displayName")
|
|
1440
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1441
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1442
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1443
|
-
period: PromotionalEntitlementPeriod
|
|
1444
|
-
start_date: Any = Field(alias="startDate")
|
|
1445
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1449
|
-
addon_id: str = Field(alias="addonId")
|
|
1450
|
-
description: Optional[str] = Field(default=None)
|
|
1451
|
-
display_name: str = Field(alias="displayName")
|
|
1452
|
-
quantity: int
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1456
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1457
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1458
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1459
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1460
|
-
default=None
|
|
1461
|
-
)
|
|
1462
|
-
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1463
|
-
alias="creditRate", default=None
|
|
1464
|
-
)
|
|
1465
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1466
|
-
default=None
|
|
1467
|
-
)
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1471
|
-
amount: float
|
|
1472
|
-
currency: Currency
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1476
|
-
amount: float
|
|
1477
|
-
currency_id: str = Field(alias="currencyId")
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1481
|
-
id: Any
|
|
1482
|
-
ref_id: str = Field(alias="refId")
|
|
1483
|
-
display_name: str = Field(alias="displayName")
|
|
1484
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1485
|
-
feature_units_plural: Optional[str] = Field(
|
|
1486
|
-
alias="featureUnitsPlural", default=None
|
|
1487
|
-
)
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
1438
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1491
1439
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1492
1440
|
alias="subscriptionScheduleType"
|
|
@@ -1656,6 +1604,48 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1656
1604
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1657
1605
|
|
|
1658
1606
|
|
|
1607
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1608
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1609
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1610
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1611
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1612
|
+
default=None
|
|
1613
|
+
)
|
|
1614
|
+
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1615
|
+
alias="creditRate", default=None
|
|
1616
|
+
)
|
|
1617
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1618
|
+
default=None
|
|
1619
|
+
)
|
|
1620
|
+
|
|
1621
|
+
|
|
1622
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1623
|
+
amount: float
|
|
1624
|
+
currency: Currency
|
|
1625
|
+
|
|
1626
|
+
|
|
1627
|
+
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1628
|
+
amount: float
|
|
1629
|
+
currency_id: str = Field(alias="currencyId")
|
|
1630
|
+
|
|
1631
|
+
|
|
1632
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1633
|
+
id: Any
|
|
1634
|
+
ref_id: str = Field(alias="refId")
|
|
1635
|
+
display_name: str = Field(alias="displayName")
|
|
1636
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1637
|
+
feature_units_plural: Optional[str] = Field(
|
|
1638
|
+
alias="featureUnitsPlural", default=None
|
|
1639
|
+
)
|
|
1640
|
+
|
|
1641
|
+
|
|
1642
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1643
|
+
addon_id: str = Field(alias="addonId")
|
|
1644
|
+
description: Optional[str] = Field(default=None)
|
|
1645
|
+
display_name: str = Field(alias="displayName")
|
|
1646
|
+
quantity: int
|
|
1647
|
+
|
|
1648
|
+
|
|
1659
1649
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1660
1650
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1661
1651
|
plan_id: str = Field(alias="planId")
|
|
@@ -1760,6 +1750,16 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1760
1750
|
pass
|
|
1761
1751
|
|
|
1762
1752
|
|
|
1753
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1754
|
+
display_name: str = Field(alias="displayName")
|
|
1755
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1756
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1757
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1758
|
+
period: PromotionalEntitlementPeriod
|
|
1759
|
+
start_date: Any = Field(alias="startDate")
|
|
1760
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1761
|
+
|
|
1762
|
+
|
|
1763
1763
|
class CustomerPortalFragment(BaseModel):
|
|
1764
1764
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1765
1765
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -3042,32 +3042,32 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
3042
3042
|
|
|
3043
3043
|
AddonDependencyFragment.model_rebuild()
|
|
3044
3044
|
PriceTierFragment.model_rebuild()
|
|
3045
|
-
OveragePriceFragment.model_rebuild()
|
|
3046
|
-
PackageEntitlementFragment.model_rebuild()
|
|
3047
3045
|
PriceFragment.model_rebuild()
|
|
3046
|
+
PackageEntitlementFragment.model_rebuild()
|
|
3047
|
+
OveragePriceFragment.model_rebuild()
|
|
3048
3048
|
AddonFragment.model_rebuild()
|
|
3049
3049
|
FeatureFragment.model_rebuild()
|
|
3050
3050
|
EntitlementFragment.model_rebuild()
|
|
3051
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
3052
3051
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
3052
|
+
TotalPriceFragment.model_rebuild()
|
|
3053
3053
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
3054
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
3055
3054
|
CustomerResourceFragment.model_rebuild()
|
|
3055
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
3056
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
3056
3057
|
ProductFragment.model_rebuild()
|
|
3057
3058
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
3058
3059
|
PlanFragment.model_rebuild()
|
|
3059
|
-
TotalPriceFragment.model_rebuild()
|
|
3060
3060
|
SlimCustomerFragment.model_rebuild()
|
|
3061
3061
|
SubscriptionFragment.model_rebuild()
|
|
3062
3062
|
ApplySubscriptionFragment.model_rebuild()
|
|
3063
3063
|
FontVariantFragment.model_rebuild()
|
|
3064
3064
|
TypographyConfigurationFragment.model_rebuild()
|
|
3065
3065
|
CheckoutConfigurationFragment.model_rebuild()
|
|
3066
|
+
ZuoraCheckoutCredentialsFragment.model_rebuild()
|
|
3067
|
+
StripeCheckoutCredentialsFragment.model_rebuild()
|
|
3066
3068
|
CouponFragment.model_rebuild()
|
|
3067
3069
|
PromotionalEntitlementFragment.model_rebuild()
|
|
3068
3070
|
CustomerFragment.model_rebuild()
|
|
3069
|
-
StripeCheckoutCredentialsFragment.model_rebuild()
|
|
3070
|
-
ZuoraCheckoutCredentialsFragment.model_rebuild()
|
|
3071
3071
|
CheckoutStateFragment.model_rebuild()
|
|
3072
3072
|
CreditBalanceFragment.model_rebuild()
|
|
3073
3073
|
CreditBalanceUpdatedPayload.model_rebuild()
|
|
@@ -3079,11 +3079,11 @@ CreditsBalanceSummaryFragment.model_rebuild()
|
|
|
3079
3079
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
3080
3080
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
3081
3081
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
3082
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
3083
|
-
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
3084
|
-
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
3085
3082
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
3083
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
3084
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
3086
3085
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
3086
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
3087
3087
|
CustomerPortalFragment.model_rebuild()
|
|
3088
3088
|
CustomerStatisticsFragment.model_rebuild()
|
|
3089
3089
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -4966,6 +4966,9 @@ class UpdateIntegrationInput(BaseModel):
|
|
|
4966
4966
|
salesforce_credentials: Optional["SalesforceCredentialsInput"] = Field(
|
|
4967
4967
|
alias="salesforceCredentials", default=None
|
|
4968
4968
|
)
|
|
4969
|
+
snowflake_credentials: Optional["SnowflakeCredentialsInput"] = Field(
|
|
4970
|
+
alias="snowflakeCredentials", default=None
|
|
4971
|
+
)
|
|
4969
4972
|
stripe_credentials: Optional["UpdateStripeCredentialsInput"] = Field(
|
|
4970
4973
|
alias="stripeCredentials", default=None
|
|
4971
4974
|
)
|
|
@@ -124,7 +124,7 @@ stigg/generated/enums.py,sha256=yOboGgUVS7wmn812LV-fgQh478Ry3VtuFFl7G5cZe4U,4013
|
|
|
124
124
|
stigg/generated/estimate_subscription.py,sha256=c0_vg0A_Hi8fdjeGudWZ0WziUF9jcjX5rlRitGMAMaQ,479
|
|
125
125
|
stigg/generated/estimate_subscription_update.py,sha256=ZYIFqqHHDfzhrOn95QnMmPNTXZ7JrKWRlUFzk8fWwKA,528
|
|
126
126
|
stigg/generated/exceptions.py,sha256=OQu-ZYCCV4VyMWTd1HR8gIjIK2CrA_JMlFxqOAJugWY,2411
|
|
127
|
-
stigg/generated/fragments.py,sha256=
|
|
127
|
+
stigg/generated/fragments.py,sha256=rVA8i0Uh4CvRC5fCm9Qb-wJPPb08igwtpiSoqa7pmVc,111377
|
|
128
128
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
129
129
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
130
130
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -153,7 +153,7 @@ stigg/generated/grant_promotional_entitlements_group.py,sha256=iQwCd07VFaYbsN_E-
|
|
|
153
153
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
154
154
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
155
155
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
156
|
-
stigg/generated/input_types.py,sha256=
|
|
156
|
+
stigg/generated/input_types.py,sha256=Taz1op-OF0PujF2xYEizY0C8bTT1hK0QJ62ThHN6Faw,218370
|
|
157
157
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
158
158
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
159
159
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -172,7 +172,7 @@ stigg/generated/unlink_promotional_entitlements_group.py,sha256=8UIRQ0CNvReRfX0L
|
|
|
172
172
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
173
173
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
174
174
|
stigg/generated/void_credit_grant.py,sha256=uQ22Xb2vwMOJfqh48GU2fhZ6Dcv9nHNIx_UJpjmJSBU,410
|
|
175
|
-
stigg_api_client_v2-3.
|
|
176
|
-
stigg_api_client_v2-3.
|
|
177
|
-
stigg_api_client_v2-3.
|
|
178
|
-
stigg_api_client_v2-3.
|
|
175
|
+
stigg_api_client_v2-3.128.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
176
|
+
stigg_api_client_v2-3.128.0.dist-info/METADATA,sha256=WMHR7N6WU3tfxEAt83wU1hdfu8tGTyF9BBaN30i02Cw,2264
|
|
177
|
+
stigg_api_client_v2-3.128.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
178
|
+
stigg_api_client_v2-3.128.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|