stigg-api-client-v2 3.6.0__py3-none-any.whl → 3.10.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/__init__.py +2 -0
- stigg/generated/fragments.py +317 -317
- stigg/generated/input_types.py +8 -0
- {stigg_api_client_v2-3.6.0.dist-info → stigg_api_client_v2-3.10.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.6.0.dist-info → stigg_api_client_v2-3.10.0.dist-info}/RECORD +7 -7
- {stigg_api_client_v2-3.6.0.dist-info → stigg_api_client_v2-3.10.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.6.0.dist-info → stigg_api_client_v2-3.10.0.dist-info}/WHEEL +0 -0
stigg/generated/__init__.py
CHANGED
|
@@ -757,6 +757,7 @@ from .input_types import (
|
|
|
757
757
|
MeterConditionInput,
|
|
758
758
|
MeterFilterDefinitionInput,
|
|
759
759
|
MeterTypeFilterComparison,
|
|
760
|
+
MigratePackageFeatureGroupsToLatestInput,
|
|
760
761
|
MinimumSpendInput,
|
|
761
762
|
MoneyInputDTO,
|
|
762
763
|
MonthlyResetPeriodConfigInput,
|
|
@@ -1415,6 +1416,7 @@ __all__ = [
|
|
|
1415
1416
|
"MeterFilterDefinitionInput",
|
|
1416
1417
|
"MeterType",
|
|
1417
1418
|
"MeterTypeFilterComparison",
|
|
1419
|
+
"MigratePackageFeatureGroupsToLatestInput",
|
|
1418
1420
|
"MigrateSubscriptionToLatest",
|
|
1419
1421
|
"MigrateSubscriptionToLatestMigrateSubscriptionToLatest",
|
|
1420
1422
|
"MinimumSpendInput",
|
stigg/generated/fragments.py
CHANGED
|
@@ -80,38 +80,6 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
80
80
|
currency: Currency
|
|
81
81
|
|
|
82
82
|
|
|
83
|
-
class OveragePriceFragment(BaseModel):
|
|
84
|
-
billing_model: BillingModel = Field(alias="billingModel")
|
|
85
|
-
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
86
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
87
|
-
billing_country_code: Optional[str] = Field(
|
|
88
|
-
alias="billingCountryCode", default=None
|
|
89
|
-
)
|
|
90
|
-
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
91
|
-
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
92
|
-
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
93
|
-
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
class OveragePriceFragmentPrice(BaseModel):
|
|
97
|
-
amount: float
|
|
98
|
-
currency: Currency
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
102
|
-
pass
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
class OveragePriceFragmentFeature(BaseModel):
|
|
106
|
-
ref_id: str = Field(alias="refId")
|
|
107
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
108
|
-
feature_units_plural: Optional[str] = Field(
|
|
109
|
-
alias="featureUnitsPlural", default=None
|
|
110
|
-
)
|
|
111
|
-
display_name: str = Field(alias="displayName")
|
|
112
|
-
description: Optional[str] = Field(default=None)
|
|
113
|
-
|
|
114
|
-
|
|
115
83
|
class PriceFragment(BaseModel):
|
|
116
84
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
117
85
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -182,6 +150,38 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
182
150
|
)
|
|
183
151
|
|
|
184
152
|
|
|
153
|
+
class OveragePriceFragment(BaseModel):
|
|
154
|
+
billing_model: BillingModel = Field(alias="billingModel")
|
|
155
|
+
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
156
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
157
|
+
billing_country_code: Optional[str] = Field(
|
|
158
|
+
alias="billingCountryCode", default=None
|
|
159
|
+
)
|
|
160
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
161
|
+
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
162
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
163
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
167
|
+
amount: float
|
|
168
|
+
currency: Currency
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
172
|
+
pass
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
176
|
+
ref_id: str = Field(alias="refId")
|
|
177
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
178
|
+
feature_units_plural: Optional[str] = Field(
|
|
179
|
+
alias="featureUnitsPlural", default=None
|
|
180
|
+
)
|
|
181
|
+
display_name: str = Field(alias="displayName")
|
|
182
|
+
description: Optional[str] = Field(default=None)
|
|
183
|
+
|
|
184
|
+
|
|
185
185
|
class AddonFragment(BaseModel):
|
|
186
186
|
id: Any
|
|
187
187
|
ref_id: str = Field(alias="refId")
|
|
@@ -220,8 +220,160 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
220
220
|
pass
|
|
221
221
|
|
|
222
222
|
|
|
223
|
-
class
|
|
224
|
-
|
|
223
|
+
class ProductFragment(BaseModel):
|
|
224
|
+
ref_id: str = Field(alias="refId")
|
|
225
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
226
|
+
description: Optional[str] = Field(default=None)
|
|
227
|
+
additional_meta_data: Optional[Any] = Field(
|
|
228
|
+
alias="additionalMetaData", default=None
|
|
229
|
+
)
|
|
230
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
234
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
235
|
+
alias="downgradePlan", default=None
|
|
236
|
+
)
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
240
|
+
ref_id: str = Field(alias="refId")
|
|
241
|
+
display_name: str = Field(alias="displayName")
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
245
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
246
|
+
display_name: str = Field(alias="displayName")
|
|
247
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
248
|
+
default=None
|
|
249
|
+
)
|
|
250
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
254
|
+
pass
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
258
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
259
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
class PlanFragment(BaseModel):
|
|
263
|
+
id: Any
|
|
264
|
+
ref_id: str = Field(alias="refId")
|
|
265
|
+
display_name: str = Field(alias="displayName")
|
|
266
|
+
description: Optional[str] = Field(default=None)
|
|
267
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
268
|
+
version_number: int = Field(alias="versionNumber")
|
|
269
|
+
additional_meta_data: Optional[Any] = Field(
|
|
270
|
+
alias="additionalMetaData", default=None
|
|
271
|
+
)
|
|
272
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
273
|
+
alias="hiddenFromWidgets", default=None
|
|
274
|
+
)
|
|
275
|
+
product: "PlanFragmentProduct"
|
|
276
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
277
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
278
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
279
|
+
alias="inheritedEntitlements", default=None
|
|
280
|
+
)
|
|
281
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
282
|
+
alias="compatibleAddons", default=None
|
|
283
|
+
)
|
|
284
|
+
compatible_package_groups: Optional[
|
|
285
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
286
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
287
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
288
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
289
|
+
alias="overagePrices", default=None
|
|
290
|
+
)
|
|
291
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
292
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
293
|
+
alias="defaultTrialConfig", default=None
|
|
294
|
+
)
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
class PlanFragmentProduct(ProductFragment):
|
|
298
|
+
pass
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
302
|
+
ref_id: str = Field(alias="refId")
|
|
303
|
+
display_name: str = Field(alias="displayName")
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
307
|
+
pass
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
311
|
+
pass
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
315
|
+
pass
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
319
|
+
pass
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
class PlanFragmentPrices(PriceFragment):
|
|
323
|
+
pass
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
327
|
+
pass
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
331
|
+
duration: float
|
|
332
|
+
units: TrialPeriodUnits
|
|
333
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
334
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
335
|
+
alias="trialEndBehavior", default=None
|
|
336
|
+
)
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
340
|
+
limit: float
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
class TotalPriceFragment(BaseModel):
|
|
344
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
345
|
+
total: "TotalPriceFragmentTotal"
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
349
|
+
amount: float
|
|
350
|
+
currency: Currency
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
354
|
+
amount: float
|
|
355
|
+
currency: Currency
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
class SlimCustomerFragment(BaseModel):
|
|
359
|
+
id: Any
|
|
360
|
+
name: Optional[str] = Field(default=None)
|
|
361
|
+
email: Optional[str] = Field(default=None)
|
|
362
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
363
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
364
|
+
ref_id: str = Field(alias="refId")
|
|
365
|
+
customer_id: str = Field(alias="customerId")
|
|
366
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
367
|
+
additional_meta_data: Optional[Any] = Field(
|
|
368
|
+
alias="additionalMetaData", default=None
|
|
369
|
+
)
|
|
370
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
371
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
372
|
+
)
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
class CustomerResourceFragment(BaseModel):
|
|
376
|
+
resource_id: str = Field(alias="resourceId")
|
|
225
377
|
|
|
226
378
|
|
|
227
379
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
@@ -514,213 +666,61 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFe
|
|
|
514
666
|
|
|
515
667
|
|
|
516
668
|
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
517
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
518
|
-
quantity: float
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
522
|
-
BaseModel
|
|
523
|
-
):
|
|
524
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
525
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
526
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
530
|
-
BaseModel
|
|
531
|
-
):
|
|
532
|
-
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
533
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
534
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
538
|
-
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
539
|
-
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
540
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
544
|
-
billing_id: str = Field(alias="billingId")
|
|
545
|
-
status: SubscriptionInvoiceStatus
|
|
546
|
-
created_at: Any = Field(alias="createdAt")
|
|
547
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
548
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
549
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
550
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
551
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
552
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
553
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
554
|
-
alias="billingReason", default=None
|
|
555
|
-
)
|
|
556
|
-
currency: Optional[str] = Field(default=None)
|
|
557
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
558
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
559
|
-
alias="subTotalExcludingTax", default=None
|
|
560
|
-
)
|
|
561
|
-
total: Optional[float] = Field(default=None)
|
|
562
|
-
total_excluding_tax: Optional[float] = Field(
|
|
563
|
-
alias="totalExcludingTax", default=None
|
|
564
|
-
)
|
|
565
|
-
tax: Optional[float] = Field(default=None)
|
|
566
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
567
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
571
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
572
|
-
display_name: str = Field(alias="displayName")
|
|
573
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
574
|
-
default=None
|
|
575
|
-
)
|
|
576
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
580
|
-
pass
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
584
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
585
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
class ProductFragment(BaseModel):
|
|
589
|
-
ref_id: str = Field(alias="refId")
|
|
590
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
591
|
-
description: Optional[str] = Field(default=None)
|
|
592
|
-
additional_meta_data: Optional[Any] = Field(
|
|
593
|
-
alias="additionalMetaData", default=None
|
|
594
|
-
)
|
|
595
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
599
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
600
|
-
alias="downgradePlan", default=None
|
|
601
|
-
)
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
605
|
-
ref_id: str = Field(alias="refId")
|
|
606
|
-
display_name: str = Field(alias="displayName")
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
class PlanFragment(BaseModel):
|
|
610
|
-
id: Any
|
|
611
|
-
ref_id: str = Field(alias="refId")
|
|
612
|
-
display_name: str = Field(alias="displayName")
|
|
613
|
-
description: Optional[str] = Field(default=None)
|
|
614
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
615
|
-
version_number: int = Field(alias="versionNumber")
|
|
616
|
-
additional_meta_data: Optional[Any] = Field(
|
|
617
|
-
alias="additionalMetaData", default=None
|
|
618
|
-
)
|
|
619
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
620
|
-
alias="hiddenFromWidgets", default=None
|
|
621
|
-
)
|
|
622
|
-
product: "PlanFragmentProduct"
|
|
623
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
624
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
625
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
626
|
-
alias="inheritedEntitlements", default=None
|
|
627
|
-
)
|
|
628
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
629
|
-
alias="compatibleAddons", default=None
|
|
630
|
-
)
|
|
631
|
-
compatible_package_groups: Optional[
|
|
632
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
633
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
634
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
635
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
636
|
-
alias="overagePrices", default=None
|
|
637
|
-
)
|
|
638
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
639
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
640
|
-
alias="defaultTrialConfig", default=None
|
|
641
|
-
)
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
class PlanFragmentProduct(ProductFragment):
|
|
645
|
-
pass
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
649
|
-
ref_id: str = Field(alias="refId")
|
|
650
|
-
display_name: str = Field(alias="displayName")
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
654
|
-
pass
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
658
|
-
pass
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
662
|
-
pass
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
666
|
-
pass
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
class PlanFragmentPrices(PriceFragment):
|
|
670
|
-
pass
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
674
|
-
pass
|
|
669
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
670
|
+
quantity: float
|
|
675
671
|
|
|
676
672
|
|
|
677
|
-
class
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
)
|
|
673
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
674
|
+
BaseModel
|
|
675
|
+
):
|
|
676
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
677
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
678
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
684
679
|
|
|
685
680
|
|
|
686
|
-
class
|
|
687
|
-
|
|
681
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
682
|
+
BaseModel
|
|
683
|
+
):
|
|
684
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
685
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
686
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
688
687
|
|
|
689
688
|
|
|
690
|
-
class
|
|
691
|
-
|
|
689
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
690
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
691
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
692
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
692
693
|
|
|
693
694
|
|
|
694
|
-
class
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
695
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
696
|
+
billing_id: str = Field(alias="billingId")
|
|
697
|
+
status: SubscriptionInvoiceStatus
|
|
698
|
+
created_at: Any = Field(alias="createdAt")
|
|
699
699
|
updated_at: Any = Field(alias="updatedAt")
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
700
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
701
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
702
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
703
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
704
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
705
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
706
|
+
alias="billingReason", default=None
|
|
705
707
|
)
|
|
706
|
-
|
|
707
|
-
|
|
708
|
+
currency: Optional[str] = Field(default=None)
|
|
709
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
710
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
711
|
+
alias="subTotalExcludingTax", default=None
|
|
708
712
|
)
|
|
713
|
+
total: Optional[float] = Field(default=None)
|
|
714
|
+
total_excluding_tax: Optional[float] = Field(
|
|
715
|
+
alias="totalExcludingTax", default=None
|
|
716
|
+
)
|
|
717
|
+
tax: Optional[float] = Field(default=None)
|
|
718
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
719
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
709
720
|
|
|
710
721
|
|
|
711
|
-
class
|
|
712
|
-
|
|
713
|
-
total: "TotalPriceFragmentTotal"
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
717
|
-
amount: float
|
|
718
|
-
currency: Currency
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
722
|
-
amount: float
|
|
723
|
-
currency: Currency
|
|
722
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
723
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
724
724
|
|
|
725
725
|
|
|
726
726
|
class SubscriptionFragment(BaseModel):
|
|
@@ -994,35 +994,6 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
994
994
|
)
|
|
995
995
|
|
|
996
996
|
|
|
997
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
998
|
-
status: PromotionalEntitlementStatus
|
|
999
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1000
|
-
feature_id: Any = Field(alias="featureId")
|
|
1001
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1002
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1003
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1004
|
-
alias="resetPeriod", default=None
|
|
1005
|
-
)
|
|
1006
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1007
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1008
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1012
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1013
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1014
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1015
|
-
feature_units_plural: Optional[str] = Field(
|
|
1016
|
-
alias="featureUnitsPlural", default=None
|
|
1017
|
-
)
|
|
1018
|
-
display_name: str = Field(alias="displayName")
|
|
1019
|
-
description: Optional[str] = Field(default=None)
|
|
1020
|
-
ref_id: str = Field(alias="refId")
|
|
1021
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1022
|
-
alias="additionalMetaData", default=None
|
|
1023
|
-
)
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
997
|
class CouponFragment(BaseModel):
|
|
1027
998
|
id: Any
|
|
1028
999
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1057,6 +1028,35 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1057
1028
|
status: SyncStatus
|
|
1058
1029
|
|
|
1059
1030
|
|
|
1031
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
1032
|
+
status: PromotionalEntitlementStatus
|
|
1033
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1034
|
+
feature_id: Any = Field(alias="featureId")
|
|
1035
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1036
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1037
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1038
|
+
alias="resetPeriod", default=None
|
|
1039
|
+
)
|
|
1040
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1041
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1042
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1043
|
+
|
|
1044
|
+
|
|
1045
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1046
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1047
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1048
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1049
|
+
feature_units_plural: Optional[str] = Field(
|
|
1050
|
+
alias="featureUnitsPlural", default=None
|
|
1051
|
+
)
|
|
1052
|
+
display_name: str = Field(alias="displayName")
|
|
1053
|
+
description: Optional[str] = Field(default=None)
|
|
1054
|
+
ref_id: str = Field(alias="refId")
|
|
1055
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1056
|
+
alias="additionalMetaData", default=None
|
|
1057
|
+
)
|
|
1058
|
+
|
|
1059
|
+
|
|
1060
1060
|
class CustomerFragment(SlimCustomerFragment):
|
|
1061
1061
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1062
1062
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1263,14 +1263,11 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1263
1263
|
pass
|
|
1264
1264
|
|
|
1265
1265
|
|
|
1266
|
-
class
|
|
1266
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1267
|
+
addon_id: str = Field(alias="addonId")
|
|
1268
|
+
description: Optional[str] = Field(default=None)
|
|
1267
1269
|
display_name: str = Field(alias="displayName")
|
|
1268
|
-
|
|
1269
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1270
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1271
|
-
period: PromotionalEntitlementPeriod
|
|
1272
|
-
start_date: Any = Field(alias="startDate")
|
|
1273
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1270
|
+
quantity: int
|
|
1274
1271
|
|
|
1275
1272
|
|
|
1276
1273
|
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
@@ -1469,13 +1466,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1469
1466
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1470
1467
|
|
|
1471
1468
|
|
|
1472
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1473
|
-
addon_id: str = Field(alias="addonId")
|
|
1474
|
-
description: Optional[str] = Field(default=None)
|
|
1475
|
-
display_name: str = Field(alias="displayName")
|
|
1476
|
-
quantity: int
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
1469
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1480
1470
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1481
1471
|
plan_id: str = Field(alias="planId")
|
|
@@ -1572,6 +1562,16 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1572
1562
|
pass
|
|
1573
1563
|
|
|
1574
1564
|
|
|
1565
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1566
|
+
display_name: str = Field(alias="displayName")
|
|
1567
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1568
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1569
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1570
|
+
period: PromotionalEntitlementPeriod
|
|
1571
|
+
start_date: Any = Field(alias="startDate")
|
|
1572
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1573
|
+
|
|
1574
|
+
|
|
1575
1575
|
class CustomerPortalFragment(BaseModel):
|
|
1576
1576
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1577
1577
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -1799,40 +1799,6 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1799
1799
|
description: Optional[str] = Field(default=None)
|
|
1800
1800
|
|
|
1801
1801
|
|
|
1802
|
-
class MockPaywallPriceFragment(BaseModel):
|
|
1803
|
-
billing_model: BillingModel = Field(alias="billingModel")
|
|
1804
|
-
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
1805
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
1806
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
1807
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
1808
|
-
billing_country_code: Optional[str] = Field(
|
|
1809
|
-
alias="billingCountryCode", default=None
|
|
1810
|
-
)
|
|
1811
|
-
price: Optional["MockPaywallPriceFragmentPrice"] = Field(default=None)
|
|
1812
|
-
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
1813
|
-
tiers: Optional[List["MockPaywallPriceFragmentTiers"]] = Field(default=None)
|
|
1814
|
-
feature: Optional["MockPaywallPriceFragmentFeature"] = Field(default=None)
|
|
1815
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
class MockPaywallPriceFragmentPrice(BaseModel):
|
|
1819
|
-
amount: float
|
|
1820
|
-
currency: Currency
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
class MockPaywallPriceFragmentTiers(PriceTierFragment):
|
|
1824
|
-
pass
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
class MockPaywallPriceFragmentFeature(BaseModel):
|
|
1828
|
-
ref_id: str = Field(alias="refId")
|
|
1829
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1830
|
-
feature_units_plural: Optional[str] = Field(
|
|
1831
|
-
alias="featureUnitsPlural", default=None
|
|
1832
|
-
)
|
|
1833
|
-
display_name: str = Field(alias="displayName")
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
1802
|
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1837
1803
|
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1838
1804
|
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
@@ -1867,6 +1833,40 @@ class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
|
1867
1833
|
)
|
|
1868
1834
|
|
|
1869
1835
|
|
|
1836
|
+
class MockPaywallPriceFragment(BaseModel):
|
|
1837
|
+
billing_model: BillingModel = Field(alias="billingModel")
|
|
1838
|
+
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
1839
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
1840
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
1841
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
1842
|
+
billing_country_code: Optional[str] = Field(
|
|
1843
|
+
alias="billingCountryCode", default=None
|
|
1844
|
+
)
|
|
1845
|
+
price: Optional["MockPaywallPriceFragmentPrice"] = Field(default=None)
|
|
1846
|
+
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
1847
|
+
tiers: Optional[List["MockPaywallPriceFragmentTiers"]] = Field(default=None)
|
|
1848
|
+
feature: Optional["MockPaywallPriceFragmentFeature"] = Field(default=None)
|
|
1849
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1850
|
+
|
|
1851
|
+
|
|
1852
|
+
class MockPaywallPriceFragmentPrice(BaseModel):
|
|
1853
|
+
amount: float
|
|
1854
|
+
currency: Currency
|
|
1855
|
+
|
|
1856
|
+
|
|
1857
|
+
class MockPaywallPriceFragmentTiers(PriceTierFragment):
|
|
1858
|
+
pass
|
|
1859
|
+
|
|
1860
|
+
|
|
1861
|
+
class MockPaywallPriceFragmentFeature(BaseModel):
|
|
1862
|
+
ref_id: str = Field(alias="refId")
|
|
1863
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1864
|
+
feature_units_plural: Optional[str] = Field(
|
|
1865
|
+
alias="featureUnitsPlural", default=None
|
|
1866
|
+
)
|
|
1867
|
+
display_name: str = Field(alias="displayName")
|
|
1868
|
+
|
|
1869
|
+
|
|
1870
1870
|
class MockPaywallAddonFragment(BaseModel):
|
|
1871
1871
|
ref_id: str = Field(alias="refId")
|
|
1872
1872
|
display_name: str = Field(alias="displayName")
|
|
@@ -2841,20 +2841,20 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2841
2841
|
|
|
2842
2842
|
AddonDependencyFragment.model_rebuild()
|
|
2843
2843
|
PriceTierFragment.model_rebuild()
|
|
2844
|
-
OveragePriceFragment.model_rebuild()
|
|
2845
2844
|
PriceFragment.model_rebuild()
|
|
2846
2845
|
PackageEntitlementFragment.model_rebuild()
|
|
2846
|
+
OveragePriceFragment.model_rebuild()
|
|
2847
2847
|
AddonFragment.model_rebuild()
|
|
2848
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2849
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2850
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2851
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2852
|
-
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2853
2848
|
ProductFragment.model_rebuild()
|
|
2849
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2854
2850
|
PlanFragment.model_rebuild()
|
|
2855
|
-
CustomerResourceFragment.model_rebuild()
|
|
2856
|
-
SlimCustomerFragment.model_rebuild()
|
|
2857
2851
|
TotalPriceFragment.model_rebuild()
|
|
2852
|
+
SlimCustomerFragment.model_rebuild()
|
|
2853
|
+
CustomerResourceFragment.model_rebuild()
|
|
2854
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2855
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2856
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2857
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2858
2858
|
SubscriptionFragment.model_rebuild()
|
|
2859
2859
|
FeatureFragment.model_rebuild()
|
|
2860
2860
|
EntitlementFragment.model_rebuild()
|
|
@@ -2862,18 +2862,18 @@ ApplySubscriptionFragment.model_rebuild()
|
|
|
2862
2862
|
FontVariantFragment.model_rebuild()
|
|
2863
2863
|
TypographyConfigurationFragment.model_rebuild()
|
|
2864
2864
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2865
|
-
PromotionalEntitlementFragment.model_rebuild()
|
|
2866
2865
|
CouponFragment.model_rebuild()
|
|
2866
|
+
PromotionalEntitlementFragment.model_rebuild()
|
|
2867
2867
|
CustomerFragment.model_rebuild()
|
|
2868
2868
|
CheckoutStateFragment.model_rebuild()
|
|
2869
2869
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2870
2870
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2871
2871
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2872
|
-
|
|
2872
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2873
2873
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2874
2874
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2875
|
-
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2876
2875
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2876
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2877
2877
|
CustomerPortalFragment.model_rebuild()
|
|
2878
2878
|
CustomerStatisticsFragment.model_rebuild()
|
|
2879
2879
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -2883,8 +2883,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2883
2883
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2884
2884
|
LayoutConfigurationFragment.model_rebuild()
|
|
2885
2885
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2886
|
-
MockPaywallPriceFragment.model_rebuild()
|
|
2887
2886
|
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2887
|
+
MockPaywallPriceFragment.model_rebuild()
|
|
2888
2888
|
MockPaywallAddonFragment.model_rebuild()
|
|
2889
2889
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2890
2890
|
MockPaywallPlanFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -253,6 +253,7 @@ class ApplySubscriptionInput(BaseModel):
|
|
|
253
253
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
254
254
|
budget: Optional["BudgetConfigurationInput"] = None
|
|
255
255
|
customer_id: str = Field(alias="customerId")
|
|
256
|
+
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
256
257
|
minimum_spend: Optional["SubscriptionMinimumSpendValueInput"] = Field(
|
|
257
258
|
alias="minimumSpend", default=None
|
|
258
259
|
)
|
|
@@ -2369,6 +2370,13 @@ class MeterTypeFilterComparison(BaseModel):
|
|
|
2369
2370
|
not_like: Optional[MeterType] = Field(alias="notLike", default=None)
|
|
2370
2371
|
|
|
2371
2372
|
|
|
2373
|
+
class MigratePackageFeatureGroupsToLatestInput(BaseModel):
|
|
2374
|
+
account_id: Any = Field(alias="accountId")
|
|
2375
|
+
entitlements: List["PackageEntitlementInput"]
|
|
2376
|
+
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
2377
|
+
package_id: Any = Field(alias="packageId")
|
|
2378
|
+
|
|
2379
|
+
|
|
2372
2380
|
class MinimumSpendInput(BaseModel):
|
|
2373
2381
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
2374
2382
|
minimum: "MoneyInputDTO"
|
|
@@ -106,7 +106,7 @@ stigg/_vendors/pydantic-2.6.4.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCe
|
|
|
106
106
|
stigg/_vendors/pydantic-2.6.4.dist-info/WHEEL,sha256=TJPnKdtrSue7xZ_AVGkp9YXcvDrobsjBds1du3Nx6dc,87
|
|
107
107
|
stigg/_vendors/pydantic-2.6.4.dist-info/licenses/LICENSE,sha256=qeGG88oWte74QxjnpwFyE1GgDLe4rjpDlLZ7SeNSnvM,1129
|
|
108
108
|
stigg/client.py,sha256=RWrVnxo9zHFXka8KJVE4sMgyek70ispQk0vqOINCvM0,8335
|
|
109
|
-
stigg/generated/__init__.py,sha256=
|
|
109
|
+
stigg/generated/__init__.py,sha256=4ZZkhO8EF6XtRGy77VA7OwIo78-40B-uSR1716jC-ig,72259
|
|
110
110
|
stigg/generated/apply_subscription.py,sha256=Vbs-QZZxN16pUpt3Hp7Jvvcc5o_8xwJK9oTLQQjH0ZA,451
|
|
111
111
|
stigg/generated/archive_customer.py,sha256=3N3iBiT2Vvzfb0ckV3o57A6lmJ_ef7JNPaMX_Jtcg6c,396
|
|
112
112
|
stigg/generated/async_base_client.py,sha256=zqd6IhYxpalyA6KQkeGhXgSurC0vXSwSWmSlM2zZ0VM,12593
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=Q8Po8_Wmdxjpc5xevWh2mBx2SoemvHwq5jGyLn8QwUg,3729
|
|
|
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=CB_SHiPmmtCuN7FlNURlN-uJA2FJV5i1dg0MWtjSHjI,103850
|
|
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
|
|
@@ -145,7 +145,7 @@ stigg/generated/grant_promotional_entitlements.py,sha256=72PRYuqecL-0SkWb7deygkh
|
|
|
145
145
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
146
146
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
147
147
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
148
|
-
stigg/generated/input_types.py,sha256=
|
|
148
|
+
stigg/generated/input_types.py,sha256=WEYa9D2cw-Dd-XDLbuIcSVWfiLFVPcgZ67cgCMp3ESo,204758
|
|
149
149
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
150
150
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
151
151
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -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.10.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
165
|
+
stigg_api_client_v2-3.10.0.dist-info/METADATA,sha256=7748sZmIG9KmnUfMdzgakvnTaNKpxctgqJUOV_ysh9U,2257
|
|
166
|
+
stigg_api_client_v2-3.10.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
167
|
+
stigg_api_client_v2-3.10.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|