stigg-api-client-v2 3.23.0__py3-none-any.whl → 3.26.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 +1 -0
- stigg/generated/fragments.py +328 -328
- {stigg_api_client_v2-3.23.0.dist-info → stigg_api_client_v2-3.26.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.23.0.dist-info → stigg_api_client_v2-3.26.0.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-3.23.0.dist-info → stigg_api_client_v2-3.26.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.23.0.dist-info → stigg_api_client_v2-3.26.0.dist-info}/WHEEL +0 -0
stigg/generated/enums.py
CHANGED
stigg/generated/fragments.py
CHANGED
|
@@ -80,6 +80,50 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
80
80
|
currency: Currency
|
|
81
81
|
|
|
82
82
|
|
|
83
|
+
class PriceFragment(BaseModel):
|
|
84
|
+
billing_model: BillingModel = Field(alias="billingModel")
|
|
85
|
+
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
86
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
87
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
88
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
89
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
90
|
+
billing_country_code: Optional[str] = Field(
|
|
91
|
+
alias="billingCountryCode", default=None
|
|
92
|
+
)
|
|
93
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
94
|
+
credit_rate: Optional["PriceFragmentCreditRate"] = Field(
|
|
95
|
+
alias="creditRate", default=None
|
|
96
|
+
)
|
|
97
|
+
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
98
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
99
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
100
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
class PriceFragmentPrice(BaseModel):
|
|
104
|
+
amount: float
|
|
105
|
+
currency: Currency
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
class PriceFragmentCreditRate(BaseModel):
|
|
109
|
+
amount: float
|
|
110
|
+
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
114
|
+
pass
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
class PriceFragmentFeature(BaseModel):
|
|
118
|
+
ref_id: str = Field(alias="refId")
|
|
119
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
120
|
+
feature_units_plural: Optional[str] = Field(
|
|
121
|
+
alias="featureUnitsPlural", default=None
|
|
122
|
+
)
|
|
123
|
+
display_name: str = Field(alias="displayName")
|
|
124
|
+
description: Optional[str] = Field(default=None)
|
|
125
|
+
|
|
126
|
+
|
|
83
127
|
class OveragePriceFragment(BaseModel):
|
|
84
128
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
85
129
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -146,50 +190,6 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
146
190
|
)
|
|
147
191
|
|
|
148
192
|
|
|
149
|
-
class PriceFragment(BaseModel):
|
|
150
|
-
billing_model: BillingModel = Field(alias="billingModel")
|
|
151
|
-
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
152
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
153
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
154
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
155
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
156
|
-
billing_country_code: Optional[str] = Field(
|
|
157
|
-
alias="billingCountryCode", default=None
|
|
158
|
-
)
|
|
159
|
-
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
160
|
-
credit_rate: Optional["PriceFragmentCreditRate"] = Field(
|
|
161
|
-
alias="creditRate", default=None
|
|
162
|
-
)
|
|
163
|
-
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
164
|
-
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
165
|
-
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
166
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
class PriceFragmentPrice(BaseModel):
|
|
170
|
-
amount: float
|
|
171
|
-
currency: Currency
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
class PriceFragmentCreditRate(BaseModel):
|
|
175
|
-
amount: float
|
|
176
|
-
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
class PriceFragmentTiers(PriceTierFragment):
|
|
180
|
-
pass
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
class PriceFragmentFeature(BaseModel):
|
|
184
|
-
ref_id: str = Field(alias="refId")
|
|
185
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
186
|
-
feature_units_plural: Optional[str] = Field(
|
|
187
|
-
alias="featureUnitsPlural", default=None
|
|
188
|
-
)
|
|
189
|
-
display_name: str = Field(alias="displayName")
|
|
190
|
-
description: Optional[str] = Field(default=None)
|
|
191
|
-
|
|
192
|
-
|
|
193
193
|
class AddonFragment(BaseModel):
|
|
194
194
|
id: Any
|
|
195
195
|
ref_id: str = Field(alias="refId")
|
|
@@ -228,69 +228,6 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
228
228
|
pass
|
|
229
229
|
|
|
230
230
|
|
|
231
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
232
|
-
billing_id: str = Field(alias="billingId")
|
|
233
|
-
status: SubscriptionInvoiceStatus
|
|
234
|
-
created_at: Any = Field(alias="createdAt")
|
|
235
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
236
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
237
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
238
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
239
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
240
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
241
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
242
|
-
alias="billingReason", default=None
|
|
243
|
-
)
|
|
244
|
-
currency: Optional[str] = Field(default=None)
|
|
245
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
246
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
247
|
-
alias="subTotalExcludingTax", default=None
|
|
248
|
-
)
|
|
249
|
-
total: Optional[float] = Field(default=None)
|
|
250
|
-
total_excluding_tax: Optional[float] = Field(
|
|
251
|
-
alias="totalExcludingTax", default=None
|
|
252
|
-
)
|
|
253
|
-
tax: Optional[float] = Field(default=None)
|
|
254
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
255
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
259
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
class TotalPriceFragment(BaseModel):
|
|
263
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
264
|
-
total: "TotalPriceFragmentTotal"
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
268
|
-
amount: float
|
|
269
|
-
currency: Currency
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
273
|
-
amount: float
|
|
274
|
-
currency: Currency
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
class SlimCustomerFragment(BaseModel):
|
|
278
|
-
id: Any
|
|
279
|
-
name: Optional[str] = Field(default=None)
|
|
280
|
-
email: Optional[str] = Field(default=None)
|
|
281
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
282
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
283
|
-
ref_id: str = Field(alias="refId")
|
|
284
|
-
customer_id: str = Field(alias="customerId")
|
|
285
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
286
|
-
additional_meta_data: Optional[Any] = Field(
|
|
287
|
-
alias="additionalMetaData", default=None
|
|
288
|
-
)
|
|
289
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
290
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
291
|
-
)
|
|
292
|
-
|
|
293
|
-
|
|
294
231
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
295
232
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
296
233
|
alias="subscriptionScheduleType"
|
|
@@ -453,8 +390,179 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
453
390
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
454
391
|
|
|
455
392
|
|
|
456
|
-
class
|
|
457
|
-
|
|
393
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
394
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
398
|
+
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
399
|
+
alias="subscriptionScheduleType"
|
|
400
|
+
)
|
|
401
|
+
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
402
|
+
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
403
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
404
|
+
alias="targetPackage", default=None
|
|
405
|
+
)
|
|
406
|
+
schedule_variables: Optional[
|
|
407
|
+
Annotated[
|
|
408
|
+
Union[
|
|
409
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
410
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
411
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
412
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
413
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
414
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
415
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
416
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
417
|
+
],
|
|
418
|
+
Field(discriminator="typename__"),
|
|
419
|
+
]
|
|
420
|
+
] = Field(alias="scheduleVariables", default=None)
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
424
|
+
id: Any
|
|
425
|
+
ref_id: str = Field(alias="refId")
|
|
426
|
+
display_name: str = Field(alias="displayName")
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
430
|
+
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
431
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
432
|
+
new_quantity: float = Field(alias="newQuantity")
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
436
|
+
BaseModel
|
|
437
|
+
):
|
|
438
|
+
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
439
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
440
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
444
|
+
BaseModel
|
|
445
|
+
):
|
|
446
|
+
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
447
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
451
|
+
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
455
|
+
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
456
|
+
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
457
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
458
|
+
billable_features: Optional[
|
|
459
|
+
List[
|
|
460
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
461
|
+
]
|
|
462
|
+
] = Field(alias="billableFeatures", default=None)
|
|
463
|
+
addons: Optional[
|
|
464
|
+
List[
|
|
465
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
466
|
+
]
|
|
467
|
+
] = Field(default=None)
|
|
468
|
+
price_overrides: Optional[
|
|
469
|
+
List[
|
|
470
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
471
|
+
]
|
|
472
|
+
] = Field(alias="priceOverrides", default=None)
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
476
|
+
BaseModel
|
|
477
|
+
):
|
|
478
|
+
feature_id: str = Field(alias="featureId")
|
|
479
|
+
quantity: float
|
|
480
|
+
|
|
481
|
+
|
|
482
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
483
|
+
BaseModel
|
|
484
|
+
):
|
|
485
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
486
|
+
quantity: float
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
490
|
+
BaseModel
|
|
491
|
+
):
|
|
492
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
493
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
494
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
498
|
+
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
499
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
500
|
+
change_type: PlanChangeType = Field(alias="changeType")
|
|
501
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
502
|
+
billable_features: Optional[
|
|
503
|
+
List[
|
|
504
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
505
|
+
]
|
|
506
|
+
] = Field(alias="billableFeatures", default=None)
|
|
507
|
+
addons: Optional[
|
|
508
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
509
|
+
] = Field(default=None)
|
|
510
|
+
price_overrides: Optional[
|
|
511
|
+
List[
|
|
512
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
513
|
+
]
|
|
514
|
+
] = Field(alias="priceOverrides", default=None)
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
518
|
+
BaseModel
|
|
519
|
+
):
|
|
520
|
+
feature_id: str = Field(alias="featureId")
|
|
521
|
+
quantity: float
|
|
522
|
+
|
|
523
|
+
|
|
524
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
525
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
526
|
+
quantity: float
|
|
527
|
+
|
|
528
|
+
|
|
529
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
530
|
+
BaseModel
|
|
531
|
+
):
|
|
532
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
533
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
534
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
535
|
+
|
|
536
|
+
|
|
537
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
538
|
+
BaseModel
|
|
539
|
+
):
|
|
540
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
541
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
542
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
543
|
+
|
|
544
|
+
|
|
545
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
546
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
547
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
548
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
549
|
+
|
|
550
|
+
|
|
551
|
+
class SlimCustomerFragment(BaseModel):
|
|
552
|
+
id: Any
|
|
553
|
+
name: Optional[str] = Field(default=None)
|
|
554
|
+
email: Optional[str] = Field(default=None)
|
|
555
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
556
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
557
|
+
ref_id: str = Field(alias="refId")
|
|
558
|
+
customer_id: str = Field(alias="customerId")
|
|
559
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
560
|
+
additional_meta_data: Optional[Any] = Field(
|
|
561
|
+
alias="additionalMetaData", default=None
|
|
562
|
+
)
|
|
563
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
564
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
565
|
+
)
|
|
458
566
|
|
|
459
567
|
|
|
460
568
|
class ProductFragment(BaseModel):
|
|
@@ -527,208 +635,100 @@ class PlanFragment(BaseModel):
|
|
|
527
635
|
)
|
|
528
636
|
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
529
637
|
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
530
|
-
alias="defaultTrialConfig", default=None
|
|
531
|
-
)
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
class PlanFragmentProduct(ProductFragment):
|
|
535
|
-
pass
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
539
|
-
ref_id: str = Field(alias="refId")
|
|
540
|
-
display_name: str = Field(alias="displayName")
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
544
|
-
pass
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
548
|
-
pass
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
552
|
-
pass
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
556
|
-
pass
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
class PlanFragmentPrices(PriceFragment):
|
|
560
|
-
pass
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
564
|
-
pass
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
568
|
-
duration: float
|
|
569
|
-
units: TrialPeriodUnits
|
|
570
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
571
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
572
|
-
alias="trialEndBehavior", default=None
|
|
573
|
-
)
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
577
|
-
limit: float
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
class SubscriptionFutureUpdateData(BaseModel):
|
|
581
|
-
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
582
|
-
alias="subscriptionScheduleType"
|
|
583
|
-
)
|
|
584
|
-
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
585
|
-
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
586
|
-
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
587
|
-
alias="targetPackage", default=None
|
|
588
|
-
)
|
|
589
|
-
schedule_variables: Optional[
|
|
590
|
-
Annotated[
|
|
591
|
-
Union[
|
|
592
|
-
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
593
|
-
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
594
|
-
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
595
|
-
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
596
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
597
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
598
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
599
|
-
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
600
|
-
],
|
|
601
|
-
Field(discriminator="typename__"),
|
|
602
|
-
]
|
|
603
|
-
] = Field(alias="scheduleVariables", default=None)
|
|
638
|
+
alias="defaultTrialConfig", default=None
|
|
639
|
+
)
|
|
604
640
|
|
|
605
641
|
|
|
606
|
-
class
|
|
607
|
-
|
|
608
|
-
ref_id: str = Field(alias="refId")
|
|
609
|
-
display_name: str = Field(alias="displayName")
|
|
642
|
+
class PlanFragmentProduct(ProductFragment):
|
|
643
|
+
pass
|
|
610
644
|
|
|
611
645
|
|
|
612
|
-
class
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
new_quantity: float = Field(alias="newQuantity")
|
|
646
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
647
|
+
ref_id: str = Field(alias="refId")
|
|
648
|
+
display_name: str = Field(alias="displayName")
|
|
616
649
|
|
|
617
650
|
|
|
618
|
-
class
|
|
619
|
-
|
|
620
|
-
):
|
|
621
|
-
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
622
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
623
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
651
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
652
|
+
pass
|
|
624
653
|
|
|
625
654
|
|
|
626
|
-
class
|
|
627
|
-
|
|
628
|
-
):
|
|
629
|
-
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
630
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
655
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
656
|
+
pass
|
|
631
657
|
|
|
632
658
|
|
|
633
|
-
class
|
|
634
|
-
|
|
659
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
660
|
+
pass
|
|
635
661
|
|
|
636
662
|
|
|
637
|
-
class
|
|
638
|
-
|
|
639
|
-
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
640
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
641
|
-
billable_features: Optional[
|
|
642
|
-
List[
|
|
643
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
644
|
-
]
|
|
645
|
-
] = Field(alias="billableFeatures", default=None)
|
|
646
|
-
addons: Optional[
|
|
647
|
-
List[
|
|
648
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
649
|
-
]
|
|
650
|
-
] = Field(default=None)
|
|
651
|
-
price_overrides: Optional[
|
|
652
|
-
List[
|
|
653
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
654
|
-
]
|
|
655
|
-
] = Field(alias="priceOverrides", default=None)
|
|
663
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
664
|
+
pass
|
|
656
665
|
|
|
657
666
|
|
|
658
|
-
class
|
|
659
|
-
|
|
660
|
-
):
|
|
661
|
-
feature_id: str = Field(alias="featureId")
|
|
662
|
-
quantity: float
|
|
667
|
+
class PlanFragmentPrices(PriceFragment):
|
|
668
|
+
pass
|
|
663
669
|
|
|
664
670
|
|
|
665
|
-
class
|
|
666
|
-
|
|
667
|
-
):
|
|
668
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
669
|
-
quantity: float
|
|
671
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
672
|
+
pass
|
|
670
673
|
|
|
671
674
|
|
|
672
|
-
class
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
675
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
676
|
+
duration: float
|
|
677
|
+
units: TrialPeriodUnits
|
|
678
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
679
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
680
|
+
alias="trialEndBehavior", default=None
|
|
681
|
+
)
|
|
678
682
|
|
|
679
683
|
|
|
680
|
-
class
|
|
681
|
-
|
|
682
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
683
|
-
change_type: PlanChangeType = Field(alias="changeType")
|
|
684
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
685
|
-
billable_features: Optional[
|
|
686
|
-
List[
|
|
687
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
688
|
-
]
|
|
689
|
-
] = Field(alias="billableFeatures", default=None)
|
|
690
|
-
addons: Optional[
|
|
691
|
-
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
692
|
-
] = Field(default=None)
|
|
693
|
-
price_overrides: Optional[
|
|
694
|
-
List[
|
|
695
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
696
|
-
]
|
|
697
|
-
] = Field(alias="priceOverrides", default=None)
|
|
684
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
685
|
+
limit: float
|
|
698
686
|
|
|
699
687
|
|
|
700
|
-
class
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
688
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
689
|
+
billing_id: str = Field(alias="billingId")
|
|
690
|
+
status: SubscriptionInvoiceStatus
|
|
691
|
+
created_at: Any = Field(alias="createdAt")
|
|
692
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
693
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
694
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
695
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
696
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
697
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
698
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
699
|
+
alias="billingReason", default=None
|
|
700
|
+
)
|
|
701
|
+
currency: Optional[str] = Field(default=None)
|
|
702
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
703
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
704
|
+
alias="subTotalExcludingTax", default=None
|
|
705
|
+
)
|
|
706
|
+
total: Optional[float] = Field(default=None)
|
|
707
|
+
total_excluding_tax: Optional[float] = Field(
|
|
708
|
+
alias="totalExcludingTax", default=None
|
|
709
|
+
)
|
|
710
|
+
tax: Optional[float] = Field(default=None)
|
|
711
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
712
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
705
713
|
|
|
706
714
|
|
|
707
|
-
class
|
|
708
|
-
|
|
709
|
-
quantity: float
|
|
715
|
+
class CustomerResourceFragment(BaseModel):
|
|
716
|
+
resource_id: str = Field(alias="resourceId")
|
|
710
717
|
|
|
711
718
|
|
|
712
|
-
class
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
716
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
717
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
719
|
+
class TotalPriceFragment(BaseModel):
|
|
720
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
721
|
+
total: "TotalPriceFragmentTotal"
|
|
718
722
|
|
|
719
723
|
|
|
720
|
-
class
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
724
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
725
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
724
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
725
|
+
amount: float
|
|
726
|
+
currency: Currency
|
|
726
727
|
|
|
727
728
|
|
|
728
|
-
class
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
729
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
730
|
+
amount: float
|
|
731
|
+
currency: Currency
|
|
732
732
|
|
|
733
733
|
|
|
734
734
|
class SubscriptionFragment(BaseModel):
|
|
@@ -1002,35 +1002,6 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
1002
1002
|
)
|
|
1003
1003
|
|
|
1004
1004
|
|
|
1005
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
1006
|
-
status: PromotionalEntitlementStatus
|
|
1007
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1008
|
-
feature_id: Any = Field(alias="featureId")
|
|
1009
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1010
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1011
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1012
|
-
alias="resetPeriod", default=None
|
|
1013
|
-
)
|
|
1014
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1015
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1016
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1020
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1021
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1022
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1023
|
-
feature_units_plural: Optional[str] = Field(
|
|
1024
|
-
alias="featureUnitsPlural", default=None
|
|
1025
|
-
)
|
|
1026
|
-
display_name: str = Field(alias="displayName")
|
|
1027
|
-
description: Optional[str] = Field(default=None)
|
|
1028
|
-
ref_id: str = Field(alias="refId")
|
|
1029
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1030
|
-
alias="additionalMetaData", default=None
|
|
1031
|
-
)
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
1005
|
class CouponFragment(BaseModel):
|
|
1035
1006
|
id: Any
|
|
1036
1007
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1065,6 +1036,35 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1065
1036
|
status: SyncStatus
|
|
1066
1037
|
|
|
1067
1038
|
|
|
1039
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
1040
|
+
status: PromotionalEntitlementStatus
|
|
1041
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1042
|
+
feature_id: Any = Field(alias="featureId")
|
|
1043
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1044
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1045
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1046
|
+
alias="resetPeriod", default=None
|
|
1047
|
+
)
|
|
1048
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1049
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1050
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1051
|
+
|
|
1052
|
+
|
|
1053
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1054
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1055
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1056
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1057
|
+
feature_units_plural: Optional[str] = Field(
|
|
1058
|
+
alias="featureUnitsPlural", default=None
|
|
1059
|
+
)
|
|
1060
|
+
display_name: str = Field(alias="displayName")
|
|
1061
|
+
description: Optional[str] = Field(default=None)
|
|
1062
|
+
ref_id: str = Field(alias="refId")
|
|
1063
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1064
|
+
alias="additionalMetaData", default=None
|
|
1065
|
+
)
|
|
1066
|
+
|
|
1067
|
+
|
|
1068
1068
|
class CustomerFragment(SlimCustomerFragment):
|
|
1069
1069
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1070
1070
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1271,16 +1271,6 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1271
1271
|
pass
|
|
1272
1272
|
|
|
1273
1273
|
|
|
1274
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1275
|
-
display_name: str = Field(alias="displayName")
|
|
1276
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1277
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1278
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1279
|
-
period: PromotionalEntitlementPeriod
|
|
1280
|
-
start_date: Any = Field(alias="startDate")
|
|
1281
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
1274
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1285
1275
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1286
1276
|
alias="subscriptionScheduleType"
|
|
@@ -1596,6 +1586,16 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1596
1586
|
pass
|
|
1597
1587
|
|
|
1598
1588
|
|
|
1589
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1590
|
+
display_name: str = Field(alias="displayName")
|
|
1591
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1592
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1593
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1594
|
+
period: PromotionalEntitlementPeriod
|
|
1595
|
+
start_date: Any = Field(alias="startDate")
|
|
1596
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1597
|
+
|
|
1598
|
+
|
|
1599
1599
|
class CustomerPortalFragment(BaseModel):
|
|
1600
1600
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1601
1601
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -2873,20 +2873,20 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2873
2873
|
|
|
2874
2874
|
AddonDependencyFragment.model_rebuild()
|
|
2875
2875
|
PriceTierFragment.model_rebuild()
|
|
2876
|
+
PriceFragment.model_rebuild()
|
|
2876
2877
|
OveragePriceFragment.model_rebuild()
|
|
2877
2878
|
PackageEntitlementFragment.model_rebuild()
|
|
2878
|
-
PriceFragment.model_rebuild()
|
|
2879
2879
|
AddonFragment.model_rebuild()
|
|
2880
|
-
|
|
2880
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2881
2881
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2882
|
-
|
|
2882
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2883
2883
|
SlimCustomerFragment.model_rebuild()
|
|
2884
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2885
|
-
CustomerResourceFragment.model_rebuild()
|
|
2886
2884
|
ProductFragment.model_rebuild()
|
|
2887
2885
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2888
2886
|
PlanFragment.model_rebuild()
|
|
2889
|
-
|
|
2887
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2888
|
+
CustomerResourceFragment.model_rebuild()
|
|
2889
|
+
TotalPriceFragment.model_rebuild()
|
|
2890
2890
|
SubscriptionFragment.model_rebuild()
|
|
2891
2891
|
FeatureFragment.model_rebuild()
|
|
2892
2892
|
EntitlementFragment.model_rebuild()
|
|
@@ -2894,18 +2894,18 @@ ApplySubscriptionFragment.model_rebuild()
|
|
|
2894
2894
|
FontVariantFragment.model_rebuild()
|
|
2895
2895
|
TypographyConfigurationFragment.model_rebuild()
|
|
2896
2896
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2897
|
-
PromotionalEntitlementFragment.model_rebuild()
|
|
2898
2897
|
CouponFragment.model_rebuild()
|
|
2898
|
+
PromotionalEntitlementFragment.model_rebuild()
|
|
2899
2899
|
CustomerFragment.model_rebuild()
|
|
2900
2900
|
CheckoutStateFragment.model_rebuild()
|
|
2901
2901
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2902
2902
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2903
2903
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2904
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2905
2904
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2906
2905
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2907
2906
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2908
2907
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2908
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2909
2909
|
CustomerPortalFragment.model_rebuild()
|
|
2910
2910
|
CustomerStatisticsFragment.model_rebuild()
|
|
2911
2911
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -119,11 +119,11 @@ stigg/generated/client.py,sha256=WIS31TSPUg8gKGvs5aSEBG_RSv8f8yCD80oUqCLUCvI,174
|
|
|
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=asjaGM369pxIj2wWuFtgq6mA-p_9U-otD9cP2baB-mQ,37744
|
|
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=Qi3JcK5EP4F7-LxfvcGA9IvrPfEjs5cS6OxK5lG_3kk,104912
|
|
127
127
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
128
128
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
129
129
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -161,7 +161,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
161
161
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
162
162
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
163
163
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
164
|
-
stigg_api_client_v2-3.
|
|
165
|
-
stigg_api_client_v2-3.
|
|
166
|
-
stigg_api_client_v2-3.
|
|
167
|
-
stigg_api_client_v2-3.
|
|
164
|
+
stigg_api_client_v2-3.26.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
165
|
+
stigg_api_client_v2-3.26.0.dist-info/METADATA,sha256=-xeCMEWGqq8DD63UMvQYGu86gMxhqgT-24ZBPZbOryw,2257
|
|
166
|
+
stigg_api_client_v2-3.26.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
167
|
+
stigg_api_client_v2-3.26.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|