stigg-api-client-v2 3.57.0__py3-none-any.whl → 3.61.2__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/async_client.py +4 -0
- stigg/generated/client.py +4 -0
- stigg/generated/fragments.py +387 -379
- stigg/generated/input_types.py +3 -0
- {stigg_api_client_v2-3.57.0.dist-info → stigg_api_client_v2-3.61.2.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.57.0.dist-info → stigg_api_client_v2-3.61.2.dist-info}/RECORD +9 -9
- {stigg_api_client_v2-3.57.0.dist-info → stigg_api_client_v2-3.61.2.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.57.0.dist-info → stigg_api_client_v2-3.61.2.dist-info}/WHEEL +0 -0
stigg/generated/__init__.py
CHANGED
|
@@ -188,6 +188,7 @@ from .fragments import (
|
|
|
188
188
|
CreditsBalanceSummaryFragment,
|
|
189
189
|
CreditsBalanceSummaryFragmentBalances,
|
|
190
190
|
CreditsBalanceSummaryFragmentBalancesCurrency,
|
|
191
|
+
CreditsBalanceSummaryFragmentBalancesCurrencyUnits,
|
|
191
192
|
CustomerFragment,
|
|
192
193
|
CustomerFragmentCoupon,
|
|
193
194
|
CustomerFragmentEligibleForTrial,
|
|
@@ -1133,6 +1134,7 @@ __all__ = [
|
|
|
1133
1134
|
"CreditsBalanceSummaryFragment",
|
|
1134
1135
|
"CreditsBalanceSummaryFragmentBalances",
|
|
1135
1136
|
"CreditsBalanceSummaryFragmentBalancesCurrency",
|
|
1137
|
+
"CreditsBalanceSummaryFragmentBalancesCurrencyUnits",
|
|
1136
1138
|
"Currency",
|
|
1137
1139
|
"CursorPaging",
|
|
1138
1140
|
"CustomCurrencyInput",
|
stigg/generated/async_client.py
CHANGED
stigg/generated/client.py
CHANGED
stigg/generated/fragments.py
CHANGED
|
@@ -61,41 +61,6 @@ class AddonDependencyFragment(BaseModel):
|
|
|
61
61
|
description: Optional[str] = Field(default=None)
|
|
62
62
|
|
|
63
63
|
|
|
64
|
-
class PackageEntitlementFragment(BaseModel):
|
|
65
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
66
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
67
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
68
|
-
feature_id: str = Field(alias="featureId")
|
|
69
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
70
|
-
alias="resetPeriod", default=None
|
|
71
|
-
)
|
|
72
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
73
|
-
alias="hiddenFromWidgets", default=None
|
|
74
|
-
)
|
|
75
|
-
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
76
|
-
display_name_override: Optional[str] = Field(
|
|
77
|
-
alias="displayNameOverride", default=None
|
|
78
|
-
)
|
|
79
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
80
|
-
is_granted: bool = Field(alias="isGranted")
|
|
81
|
-
feature: "PackageEntitlementFragmentFeature"
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
class PackageEntitlementFragmentFeature(BaseModel):
|
|
85
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
86
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
87
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
88
|
-
feature_units_plural: Optional[str] = Field(
|
|
89
|
-
alias="featureUnitsPlural", default=None
|
|
90
|
-
)
|
|
91
|
-
display_name: str = Field(alias="displayName")
|
|
92
|
-
description: Optional[str] = Field(default=None)
|
|
93
|
-
ref_id: str = Field(alias="refId")
|
|
94
|
-
additional_meta_data: Optional[Any] = Field(
|
|
95
|
-
alias="additionalMetaData", default=None
|
|
96
|
-
)
|
|
97
|
-
|
|
98
|
-
|
|
99
64
|
class PriceTierFragment(BaseModel):
|
|
100
65
|
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
101
66
|
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
@@ -116,29 +81,41 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
116
81
|
currency: Currency
|
|
117
82
|
|
|
118
83
|
|
|
119
|
-
class
|
|
84
|
+
class PriceFragment(BaseModel):
|
|
120
85
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
121
86
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
87
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
122
88
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
89
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
90
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
123
91
|
billing_country_code: Optional[str] = Field(
|
|
124
92
|
alias="billingCountryCode", default=None
|
|
125
93
|
)
|
|
126
|
-
price: Optional["
|
|
94
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
95
|
+
credit_rate: Optional["PriceFragmentCreditRate"] = Field(
|
|
96
|
+
alias="creditRate", default=None
|
|
97
|
+
)
|
|
127
98
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
128
|
-
tiers: Optional[List["
|
|
129
|
-
feature: Optional["
|
|
99
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
100
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
101
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
130
102
|
|
|
131
103
|
|
|
132
|
-
class
|
|
104
|
+
class PriceFragmentPrice(BaseModel):
|
|
133
105
|
amount: float
|
|
134
106
|
currency: Currency
|
|
135
107
|
|
|
136
108
|
|
|
137
|
-
class
|
|
109
|
+
class PriceFragmentCreditRate(BaseModel):
|
|
110
|
+
amount: float
|
|
111
|
+
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
138
115
|
pass
|
|
139
116
|
|
|
140
117
|
|
|
141
|
-
class
|
|
118
|
+
class PriceFragmentFeature(BaseModel):
|
|
142
119
|
ref_id: str = Field(alias="refId")
|
|
143
120
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
144
121
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -148,41 +125,64 @@ class OveragePriceFragmentFeature(BaseModel):
|
|
|
148
125
|
description: Optional[str] = Field(default=None)
|
|
149
126
|
|
|
150
127
|
|
|
151
|
-
class
|
|
128
|
+
class PackageEntitlementFragment(BaseModel):
|
|
129
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
130
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
131
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
132
|
+
feature_id: str = Field(alias="featureId")
|
|
133
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
134
|
+
alias="resetPeriod", default=None
|
|
135
|
+
)
|
|
136
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
137
|
+
alias="hiddenFromWidgets", default=None
|
|
138
|
+
)
|
|
139
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
140
|
+
display_name_override: Optional[str] = Field(
|
|
141
|
+
alias="displayNameOverride", default=None
|
|
142
|
+
)
|
|
143
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
144
|
+
is_granted: bool = Field(alias="isGranted")
|
|
145
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
149
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
150
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
151
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
152
|
+
feature_units_plural: Optional[str] = Field(
|
|
153
|
+
alias="featureUnitsPlural", default=None
|
|
154
|
+
)
|
|
155
|
+
display_name: str = Field(alias="displayName")
|
|
156
|
+
description: Optional[str] = Field(default=None)
|
|
157
|
+
ref_id: str = Field(alias="refId")
|
|
158
|
+
additional_meta_data: Optional[Any] = Field(
|
|
159
|
+
alias="additionalMetaData", default=None
|
|
160
|
+
)
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
class OveragePriceFragment(BaseModel):
|
|
152
164
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
153
165
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
154
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
155
166
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
156
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
157
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
158
167
|
billing_country_code: Optional[str] = Field(
|
|
159
168
|
alias="billingCountryCode", default=None
|
|
160
169
|
)
|
|
161
|
-
price: Optional["
|
|
162
|
-
credit_rate: Optional["PriceFragmentCreditRate"] = Field(
|
|
163
|
-
alias="creditRate", default=None
|
|
164
|
-
)
|
|
170
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
165
171
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
166
|
-
tiers: Optional[List["
|
|
167
|
-
feature: Optional["
|
|
168
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
172
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
173
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
169
174
|
|
|
170
175
|
|
|
171
|
-
class
|
|
176
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
172
177
|
amount: float
|
|
173
178
|
currency: Currency
|
|
174
179
|
|
|
175
180
|
|
|
176
|
-
class
|
|
177
|
-
amount: float
|
|
178
|
-
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
class PriceFragmentTiers(PriceTierFragment):
|
|
181
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
182
182
|
pass
|
|
183
183
|
|
|
184
184
|
|
|
185
|
-
class
|
|
185
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
186
186
|
ref_id: str = Field(alias="refId")
|
|
187
187
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
188
188
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -315,188 +315,45 @@ class EntitlementFragmentFeature(FeatureFragment):
|
|
|
315
315
|
pass
|
|
316
316
|
|
|
317
317
|
|
|
318
|
-
class
|
|
319
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
320
|
-
total: "TotalPriceFragmentTotal"
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
324
|
-
amount: float
|
|
325
|
-
currency: Currency
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
329
|
-
amount: float
|
|
330
|
-
currency: Currency
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
class CustomerResourceFragment(BaseModel):
|
|
334
|
-
resource_id: str = Field(alias="resourceId")
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
class ProductFragment(BaseModel):
|
|
338
|
-
ref_id: str = Field(alias="refId")
|
|
339
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
340
|
-
description: Optional[str] = Field(default=None)
|
|
341
|
-
additional_meta_data: Optional[Any] = Field(
|
|
342
|
-
alias="additionalMetaData", default=None
|
|
343
|
-
)
|
|
344
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
348
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
349
|
-
alias="downgradePlan", default=None
|
|
350
|
-
)
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
354
|
-
ref_id: str = Field(alias="refId")
|
|
355
|
-
display_name: str = Field(alias="displayName")
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
359
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
360
|
-
display_name: str = Field(alias="displayName")
|
|
361
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
362
|
-
default=None
|
|
363
|
-
)
|
|
364
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
368
|
-
pass
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
372
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
373
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
class PlanFragment(BaseModel):
|
|
377
|
-
id: Any
|
|
378
|
-
ref_id: str = Field(alias="refId")
|
|
379
|
-
display_name: str = Field(alias="displayName")
|
|
380
|
-
description: Optional[str] = Field(default=None)
|
|
381
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
382
|
-
version_number: int = Field(alias="versionNumber")
|
|
383
|
-
additional_meta_data: Optional[Any] = Field(
|
|
384
|
-
alias="additionalMetaData", default=None
|
|
385
|
-
)
|
|
386
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
387
|
-
alias="hiddenFromWidgets", default=None
|
|
388
|
-
)
|
|
389
|
-
product: "PlanFragmentProduct"
|
|
390
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
391
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
392
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
393
|
-
alias="inheritedEntitlements", default=None
|
|
394
|
-
)
|
|
395
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
396
|
-
alias="compatibleAddons", default=None
|
|
397
|
-
)
|
|
398
|
-
compatible_package_groups: Optional[
|
|
399
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
400
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
401
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
402
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
403
|
-
alias="overagePrices", default=None
|
|
404
|
-
)
|
|
405
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
406
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
407
|
-
alias="defaultTrialConfig", default=None
|
|
408
|
-
)
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
class PlanFragmentProduct(ProductFragment):
|
|
412
|
-
pass
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
416
|
-
ref_id: str = Field(alias="refId")
|
|
417
|
-
display_name: str = Field(alias="displayName")
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
421
|
-
pass
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
425
|
-
pass
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
429
|
-
pass
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
433
|
-
pass
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
class PlanFragmentPrices(PriceFragment):
|
|
437
|
-
pass
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
441
|
-
pass
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
445
|
-
duration: float
|
|
446
|
-
units: TrialPeriodUnits
|
|
447
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
448
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
449
|
-
alias="trialEndBehavior", default=None
|
|
450
|
-
)
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
454
|
-
limit: float
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
458
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
class SubscriptionScheduledUpdateData(BaseModel):
|
|
318
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
462
319
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
463
320
|
alias="subscriptionScheduleType"
|
|
464
321
|
)
|
|
465
322
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
466
323
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
467
|
-
target_package: Optional["
|
|
324
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
468
325
|
alias="targetPackage", default=None
|
|
469
326
|
)
|
|
470
327
|
schedule_variables: Optional[
|
|
471
328
|
Annotated[
|
|
472
329
|
Union[
|
|
473
|
-
"
|
|
474
|
-
"
|
|
475
|
-
"
|
|
476
|
-
"
|
|
477
|
-
"
|
|
478
|
-
"
|
|
479
|
-
"
|
|
480
|
-
"
|
|
330
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
331
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
332
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
333
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
334
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
335
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
336
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
337
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
481
338
|
],
|
|
482
339
|
Field(discriminator="typename__"),
|
|
483
340
|
]
|
|
484
341
|
] = Field(alias="scheduleVariables", default=None)
|
|
485
342
|
|
|
486
343
|
|
|
487
|
-
class
|
|
344
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
488
345
|
id: Any
|
|
489
346
|
ref_id: str = Field(alias="refId")
|
|
490
347
|
display_name: str = Field(alias="displayName")
|
|
491
348
|
|
|
492
349
|
|
|
493
|
-
class
|
|
350
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
494
351
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
495
352
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
496
353
|
new_quantity: float = Field(alias="newQuantity")
|
|
497
354
|
|
|
498
355
|
|
|
499
|
-
class
|
|
356
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
500
357
|
BaseModel
|
|
501
358
|
):
|
|
502
359
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -504,55 +361,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
504
361
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
505
362
|
|
|
506
363
|
|
|
507
|
-
class
|
|
364
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
508
365
|
BaseModel
|
|
509
366
|
):
|
|
510
367
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
511
368
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
512
369
|
|
|
513
370
|
|
|
514
|
-
class
|
|
371
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
515
372
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
516
373
|
|
|
517
374
|
|
|
518
|
-
class
|
|
519
|
-
BaseModel
|
|
520
|
-
):
|
|
375
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
521
376
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
522
377
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
523
378
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
524
379
|
billable_features: Optional[
|
|
525
380
|
List[
|
|
526
|
-
"
|
|
381
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
527
382
|
]
|
|
528
383
|
] = Field(alias="billableFeatures", default=None)
|
|
529
384
|
addons: Optional[
|
|
530
385
|
List[
|
|
531
|
-
"
|
|
386
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
532
387
|
]
|
|
533
388
|
] = Field(default=None)
|
|
534
389
|
price_overrides: Optional[
|
|
535
390
|
List[
|
|
536
|
-
"
|
|
391
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
537
392
|
]
|
|
538
393
|
] = Field(alias="priceOverrides", default=None)
|
|
539
394
|
|
|
540
395
|
|
|
541
|
-
class
|
|
396
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
542
397
|
BaseModel
|
|
543
398
|
):
|
|
544
399
|
feature_id: str = Field(alias="featureId")
|
|
545
400
|
quantity: float
|
|
546
401
|
|
|
547
402
|
|
|
548
|
-
class
|
|
403
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
549
404
|
BaseModel
|
|
550
405
|
):
|
|
551
406
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
552
407
|
quantity: float
|
|
553
408
|
|
|
554
409
|
|
|
555
|
-
class
|
|
410
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
556
411
|
BaseModel
|
|
557
412
|
):
|
|
558
413
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -560,150 +415,287 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
560
415
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
561
416
|
|
|
562
417
|
|
|
563
|
-
class
|
|
418
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
564
419
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
565
420
|
plan_ref_id: str = Field(alias="planRefId")
|
|
566
421
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
567
422
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
568
423
|
billable_features: Optional[
|
|
569
424
|
List[
|
|
570
|
-
"
|
|
425
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
571
426
|
]
|
|
572
427
|
] = Field(alias="billableFeatures", default=None)
|
|
573
428
|
addons: Optional[
|
|
574
|
-
List[
|
|
575
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
576
|
-
]
|
|
429
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
577
430
|
] = Field(default=None)
|
|
578
431
|
price_overrides: Optional[
|
|
579
432
|
List[
|
|
580
|
-
"
|
|
433
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
581
434
|
]
|
|
582
435
|
] = Field(alias="priceOverrides", default=None)
|
|
583
436
|
|
|
584
437
|
|
|
585
|
-
class
|
|
438
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
586
439
|
BaseModel
|
|
587
440
|
):
|
|
588
441
|
feature_id: str = Field(alias="featureId")
|
|
589
442
|
quantity: float
|
|
590
443
|
|
|
591
444
|
|
|
592
|
-
class
|
|
593
|
-
BaseModel
|
|
594
|
-
):
|
|
445
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
595
446
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
596
447
|
quantity: float
|
|
597
448
|
|
|
598
449
|
|
|
599
|
-
class
|
|
600
|
-
BaseModel
|
|
601
|
-
):
|
|
602
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
603
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
604
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
450
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
451
|
+
BaseModel
|
|
452
|
+
):
|
|
453
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
454
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
455
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
459
|
+
BaseModel
|
|
460
|
+
):
|
|
461
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
462
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
463
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
467
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
468
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
469
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
class SlimCustomerFragment(BaseModel):
|
|
473
|
+
id: Any
|
|
474
|
+
name: Optional[str] = Field(default=None)
|
|
475
|
+
email: Optional[str] = Field(default=None)
|
|
476
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
477
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
478
|
+
ref_id: str = Field(alias="refId")
|
|
479
|
+
customer_id: str = Field(alias="customerId")
|
|
480
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
481
|
+
additional_meta_data: Optional[Any] = Field(
|
|
482
|
+
alias="additionalMetaData", default=None
|
|
483
|
+
)
|
|
484
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
485
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
486
|
+
)
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
490
|
+
billing_id: str = Field(alias="billingId")
|
|
491
|
+
status: SubscriptionInvoiceStatus
|
|
492
|
+
created_at: Any = Field(alias="createdAt")
|
|
493
|
+
due_date: Optional[Any] = Field(alias="dueDate", default=None)
|
|
494
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
495
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
496
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
497
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
498
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
499
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
500
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
501
|
+
alias="billingReason", default=None
|
|
502
|
+
)
|
|
503
|
+
currency: Optional[str] = Field(default=None)
|
|
504
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
505
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
506
|
+
alias="subTotalExcludingTax", default=None
|
|
507
|
+
)
|
|
508
|
+
total: Optional[float] = Field(default=None)
|
|
509
|
+
total_excluding_tax: Optional[float] = Field(
|
|
510
|
+
alias="totalExcludingTax", default=None
|
|
511
|
+
)
|
|
512
|
+
tax: Optional[float] = Field(default=None)
|
|
513
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
514
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
518
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
519
|
+
|
|
520
|
+
|
|
521
|
+
class TotalPriceFragment(BaseModel):
|
|
522
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
523
|
+
total: "TotalPriceFragmentTotal"
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
527
|
+
amount: float
|
|
528
|
+
currency: Currency
|
|
529
|
+
|
|
530
|
+
|
|
531
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
532
|
+
amount: float
|
|
533
|
+
currency: Currency
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
537
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
538
|
+
display_name: str = Field(alias="displayName")
|
|
539
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
540
|
+
default=None
|
|
541
|
+
)
|
|
542
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
543
|
+
|
|
544
|
+
|
|
545
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
546
|
+
pass
|
|
547
|
+
|
|
548
|
+
|
|
549
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
550
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
551
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
552
|
+
|
|
553
|
+
|
|
554
|
+
class ProductFragment(BaseModel):
|
|
555
|
+
ref_id: str = Field(alias="refId")
|
|
556
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
557
|
+
description: Optional[str] = Field(default=None)
|
|
558
|
+
additional_meta_data: Optional[Any] = Field(
|
|
559
|
+
alias="additionalMetaData", default=None
|
|
560
|
+
)
|
|
561
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
565
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
566
|
+
alias="downgradePlan", default=None
|
|
567
|
+
)
|
|
568
|
+
|
|
569
|
+
|
|
570
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
571
|
+
ref_id: str = Field(alias="refId")
|
|
572
|
+
display_name: str = Field(alias="displayName")
|
|
573
|
+
|
|
574
|
+
|
|
575
|
+
class PlanFragment(BaseModel):
|
|
576
|
+
id: Any
|
|
577
|
+
ref_id: str = Field(alias="refId")
|
|
578
|
+
display_name: str = Field(alias="displayName")
|
|
579
|
+
description: Optional[str] = Field(default=None)
|
|
580
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
581
|
+
version_number: int = Field(alias="versionNumber")
|
|
582
|
+
additional_meta_data: Optional[Any] = Field(
|
|
583
|
+
alias="additionalMetaData", default=None
|
|
584
|
+
)
|
|
585
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
586
|
+
alias="hiddenFromWidgets", default=None
|
|
587
|
+
)
|
|
588
|
+
product: "PlanFragmentProduct"
|
|
589
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
590
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
591
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
592
|
+
alias="inheritedEntitlements", default=None
|
|
593
|
+
)
|
|
594
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
595
|
+
alias="compatibleAddons", default=None
|
|
596
|
+
)
|
|
597
|
+
compatible_package_groups: Optional[
|
|
598
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
599
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
600
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
601
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
602
|
+
alias="overagePrices", default=None
|
|
603
|
+
)
|
|
604
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
605
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
606
|
+
alias="defaultTrialConfig", default=None
|
|
607
|
+
)
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
class PlanFragmentProduct(ProductFragment):
|
|
611
|
+
pass
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
615
|
+
ref_id: str = Field(alias="refId")
|
|
616
|
+
display_name: str = Field(alias="displayName")
|
|
617
|
+
|
|
618
|
+
|
|
619
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
620
|
+
pass
|
|
621
|
+
|
|
622
|
+
|
|
623
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
624
|
+
pass
|
|
625
|
+
|
|
626
|
+
|
|
627
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
628
|
+
pass
|
|
629
|
+
|
|
630
|
+
|
|
631
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
632
|
+
pass
|
|
605
633
|
|
|
606
634
|
|
|
607
|
-
class
|
|
608
|
-
|
|
609
|
-
):
|
|
610
|
-
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
611
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
612
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
635
|
+
class PlanFragmentPrices(PriceFragment):
|
|
636
|
+
pass
|
|
613
637
|
|
|
614
638
|
|
|
615
|
-
class
|
|
616
|
-
|
|
617
|
-
):
|
|
618
|
-
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
619
|
-
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
620
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
639
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
640
|
+
pass
|
|
621
641
|
|
|
622
642
|
|
|
623
|
-
class
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
630
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
631
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
632
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
633
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
634
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
635
|
-
alias="billingReason", default=None
|
|
636
|
-
)
|
|
637
|
-
currency: Optional[str] = Field(default=None)
|
|
638
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
639
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
640
|
-
alias="subTotalExcludingTax", default=None
|
|
641
|
-
)
|
|
642
|
-
total: Optional[float] = Field(default=None)
|
|
643
|
-
total_excluding_tax: Optional[float] = Field(
|
|
644
|
-
alias="totalExcludingTax", default=None
|
|
643
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
644
|
+
duration: float
|
|
645
|
+
units: TrialPeriodUnits
|
|
646
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
647
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
648
|
+
alias="trialEndBehavior", default=None
|
|
645
649
|
)
|
|
646
|
-
tax: Optional[float] = Field(default=None)
|
|
647
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
648
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
649
650
|
|
|
650
651
|
|
|
651
|
-
class
|
|
652
|
-
|
|
653
|
-
name: Optional[str] = Field(default=None)
|
|
654
|
-
email: Optional[str] = Field(default=None)
|
|
655
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
656
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
657
|
-
ref_id: str = Field(alias="refId")
|
|
658
|
-
customer_id: str = Field(alias="customerId")
|
|
659
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
660
|
-
additional_meta_data: Optional[Any] = Field(
|
|
661
|
-
alias="additionalMetaData", default=None
|
|
662
|
-
)
|
|
663
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
664
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
665
|
-
)
|
|
652
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
653
|
+
limit: float
|
|
666
654
|
|
|
667
655
|
|
|
668
|
-
class
|
|
656
|
+
class CustomerResourceFragment(BaseModel):
|
|
657
|
+
resource_id: str = Field(alias="resourceId")
|
|
658
|
+
|
|
659
|
+
|
|
660
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
669
661
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
670
662
|
alias="subscriptionScheduleType"
|
|
671
663
|
)
|
|
672
664
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
673
665
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
674
|
-
target_package: Optional["
|
|
666
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
675
667
|
alias="targetPackage", default=None
|
|
676
668
|
)
|
|
677
669
|
schedule_variables: Optional[
|
|
678
670
|
Annotated[
|
|
679
671
|
Union[
|
|
680
|
-
"
|
|
681
|
-
"
|
|
682
|
-
"
|
|
683
|
-
"
|
|
684
|
-
"
|
|
685
|
-
"
|
|
686
|
-
"
|
|
687
|
-
"
|
|
672
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
673
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
674
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
675
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
676
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
677
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
678
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
679
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
688
680
|
],
|
|
689
681
|
Field(discriminator="typename__"),
|
|
690
682
|
]
|
|
691
683
|
] = Field(alias="scheduleVariables", default=None)
|
|
692
684
|
|
|
693
685
|
|
|
694
|
-
class
|
|
686
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
695
687
|
id: Any
|
|
696
688
|
ref_id: str = Field(alias="refId")
|
|
697
689
|
display_name: str = Field(alias="displayName")
|
|
698
690
|
|
|
699
691
|
|
|
700
|
-
class
|
|
692
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
701
693
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
702
694
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
703
695
|
new_quantity: float = Field(alias="newQuantity")
|
|
704
696
|
|
|
705
697
|
|
|
706
|
-
class
|
|
698
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
707
699
|
BaseModel
|
|
708
700
|
):
|
|
709
701
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -711,53 +703,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
711
703
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
712
704
|
|
|
713
705
|
|
|
714
|
-
class
|
|
706
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
715
707
|
BaseModel
|
|
716
708
|
):
|
|
717
709
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
718
710
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
719
711
|
|
|
720
712
|
|
|
721
|
-
class
|
|
713
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
722
714
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
723
715
|
|
|
724
716
|
|
|
725
|
-
class
|
|
717
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
718
|
+
BaseModel
|
|
719
|
+
):
|
|
726
720
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
727
721
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
728
722
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
729
723
|
billable_features: Optional[
|
|
730
724
|
List[
|
|
731
|
-
"
|
|
725
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
732
726
|
]
|
|
733
727
|
] = Field(alias="billableFeatures", default=None)
|
|
734
728
|
addons: Optional[
|
|
735
729
|
List[
|
|
736
|
-
"
|
|
730
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
737
731
|
]
|
|
738
732
|
] = Field(default=None)
|
|
739
733
|
price_overrides: Optional[
|
|
740
734
|
List[
|
|
741
|
-
"
|
|
735
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
742
736
|
]
|
|
743
737
|
] = Field(alias="priceOverrides", default=None)
|
|
744
738
|
|
|
745
739
|
|
|
746
|
-
class
|
|
740
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
747
741
|
BaseModel
|
|
748
742
|
):
|
|
749
743
|
feature_id: str = Field(alias="featureId")
|
|
750
744
|
quantity: float
|
|
751
745
|
|
|
752
746
|
|
|
753
|
-
class
|
|
747
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
754
748
|
BaseModel
|
|
755
749
|
):
|
|
756
750
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
757
751
|
quantity: float
|
|
758
752
|
|
|
759
753
|
|
|
760
|
-
class
|
|
754
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
761
755
|
BaseModel
|
|
762
756
|
):
|
|
763
757
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -765,39 +759,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
765
759
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
766
760
|
|
|
767
761
|
|
|
768
|
-
class
|
|
762
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
769
763
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
770
764
|
plan_ref_id: str = Field(alias="planRefId")
|
|
771
765
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
772
766
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
773
767
|
billable_features: Optional[
|
|
774
768
|
List[
|
|
775
|
-
"
|
|
769
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
776
770
|
]
|
|
777
771
|
] = Field(alias="billableFeatures", default=None)
|
|
778
772
|
addons: Optional[
|
|
779
|
-
List[
|
|
773
|
+
List[
|
|
774
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
775
|
+
]
|
|
780
776
|
] = Field(default=None)
|
|
781
777
|
price_overrides: Optional[
|
|
782
778
|
List[
|
|
783
|
-
"
|
|
779
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
784
780
|
]
|
|
785
781
|
] = Field(alias="priceOverrides", default=None)
|
|
786
782
|
|
|
787
783
|
|
|
788
|
-
class
|
|
784
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
789
785
|
BaseModel
|
|
790
786
|
):
|
|
791
787
|
feature_id: str = Field(alias="featureId")
|
|
792
788
|
quantity: float
|
|
793
789
|
|
|
794
790
|
|
|
795
|
-
class
|
|
791
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
792
|
+
BaseModel
|
|
793
|
+
):
|
|
796
794
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
797
795
|
quantity: float
|
|
798
796
|
|
|
799
797
|
|
|
800
|
-
class
|
|
798
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
801
799
|
BaseModel
|
|
802
800
|
):
|
|
803
801
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -805,7 +803,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
805
803
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
806
804
|
|
|
807
805
|
|
|
808
|
-
class
|
|
806
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
809
807
|
BaseModel
|
|
810
808
|
):
|
|
811
809
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -813,7 +811,9 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
813
811
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
814
812
|
|
|
815
813
|
|
|
816
|
-
class
|
|
814
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
815
|
+
BaseModel
|
|
816
|
+
):
|
|
817
817
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
818
818
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
819
819
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
@@ -1212,6 +1212,14 @@ class CreditsBalanceSummaryFragmentBalancesCurrency(BaseModel):
|
|
|
1212
1212
|
currency_id: str = Field(alias="currencyId")
|
|
1213
1213
|
display_name: str = Field(alias="displayName")
|
|
1214
1214
|
symbol: Optional[str] = Field(default=None)
|
|
1215
|
+
units: Optional["CreditsBalanceSummaryFragmentBalancesCurrencyUnits"] = Field(
|
|
1216
|
+
default=None
|
|
1217
|
+
)
|
|
1218
|
+
|
|
1219
|
+
|
|
1220
|
+
class CreditsBalanceSummaryFragmentBalancesCurrencyUnits(BaseModel):
|
|
1221
|
+
singular: str
|
|
1222
|
+
plural: str
|
|
1215
1223
|
|
|
1216
1224
|
|
|
1217
1225
|
class CustomerPortalBillingInformationFragment(BaseModel):
|
|
@@ -1318,14 +1326,39 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1318
1326
|
pass
|
|
1319
1327
|
|
|
1320
1328
|
|
|
1321
|
-
class
|
|
1329
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1330
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1331
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1332
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1333
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1334
|
+
default=None
|
|
1335
|
+
)
|
|
1336
|
+
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1337
|
+
alias="creditRate", default=None
|
|
1338
|
+
)
|
|
1339
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1340
|
+
default=None
|
|
1341
|
+
)
|
|
1342
|
+
|
|
1343
|
+
|
|
1344
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1345
|
+
amount: float
|
|
1346
|
+
currency: Currency
|
|
1347
|
+
|
|
1348
|
+
|
|
1349
|
+
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1350
|
+
amount: float
|
|
1351
|
+
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
1352
|
+
|
|
1353
|
+
|
|
1354
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1355
|
+
id: Any
|
|
1356
|
+
ref_id: str = Field(alias="refId")
|
|
1322
1357
|
display_name: str = Field(alias="displayName")
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
start_date: Any = Field(alias="startDate")
|
|
1328
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1358
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1359
|
+
feature_units_plural: Optional[str] = Field(
|
|
1360
|
+
alias="featureUnitsPlural", default=None
|
|
1361
|
+
)
|
|
1329
1362
|
|
|
1330
1363
|
|
|
1331
1364
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
@@ -1504,41 +1537,6 @@ class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
|
1504
1537
|
quantity: int
|
|
1505
1538
|
|
|
1506
1539
|
|
|
1507
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1508
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1509
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1510
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1511
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1512
|
-
default=None
|
|
1513
|
-
)
|
|
1514
|
-
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1515
|
-
alias="creditRate", default=None
|
|
1516
|
-
)
|
|
1517
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1518
|
-
default=None
|
|
1519
|
-
)
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1523
|
-
amount: float
|
|
1524
|
-
currency: Currency
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1528
|
-
amount: float
|
|
1529
|
-
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1533
|
-
id: Any
|
|
1534
|
-
ref_id: str = Field(alias="refId")
|
|
1535
|
-
display_name: str = Field(alias="displayName")
|
|
1536
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1537
|
-
feature_units_plural: Optional[str] = Field(
|
|
1538
|
-
alias="featureUnitsPlural", default=None
|
|
1539
|
-
)
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
1540
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1543
1541
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1544
1542
|
plan_id: str = Field(alias="planId")
|
|
@@ -1643,6 +1641,16 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1643
1641
|
pass
|
|
1644
1642
|
|
|
1645
1643
|
|
|
1644
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1645
|
+
display_name: str = Field(alias="displayName")
|
|
1646
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1647
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1648
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1649
|
+
period: PromotionalEntitlementPeriod
|
|
1650
|
+
start_date: Any = Field(alias="startDate")
|
|
1651
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1652
|
+
|
|
1653
|
+
|
|
1646
1654
|
class CustomerPortalFragment(BaseModel):
|
|
1647
1655
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1648
1656
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -2920,23 +2928,23 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2920
2928
|
|
|
2921
2929
|
|
|
2922
2930
|
AddonDependencyFragment.model_rebuild()
|
|
2923
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2924
2931
|
PriceTierFragment.model_rebuild()
|
|
2925
|
-
OveragePriceFragment.model_rebuild()
|
|
2926
2932
|
PriceFragment.model_rebuild()
|
|
2933
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2934
|
+
OveragePriceFragment.model_rebuild()
|
|
2927
2935
|
AddonFragment.model_rebuild()
|
|
2928
2936
|
FeatureFragment.model_rebuild()
|
|
2929
2937
|
EntitlementFragment.model_rebuild()
|
|
2938
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2939
|
+
SlimCustomerFragment.model_rebuild()
|
|
2940
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2941
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2930
2942
|
TotalPriceFragment.model_rebuild()
|
|
2931
|
-
CustomerResourceFragment.model_rebuild()
|
|
2932
|
-
ProductFragment.model_rebuild()
|
|
2933
2943
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2944
|
+
ProductFragment.model_rebuild()
|
|
2934
2945
|
PlanFragment.model_rebuild()
|
|
2935
|
-
|
|
2946
|
+
CustomerResourceFragment.model_rebuild()
|
|
2936
2947
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2937
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2938
|
-
SlimCustomerFragment.model_rebuild()
|
|
2939
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2940
2948
|
SubscriptionFragment.model_rebuild()
|
|
2941
2949
|
ApplySubscriptionFragment.model_rebuild()
|
|
2942
2950
|
FontVariantFragment.model_rebuild()
|
|
@@ -2951,11 +2959,11 @@ CreditsBalanceSummaryFragment.model_rebuild()
|
|
|
2951
2959
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2952
2960
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2953
2961
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2954
|
-
|
|
2962
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2955
2963
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2956
2964
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2957
|
-
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2958
2965
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2966
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2959
2967
|
CustomerPortalFragment.model_rebuild()
|
|
2960
2968
|
CustomerStatisticsFragment.model_rebuild()
|
|
2961
2969
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -3930,6 +3930,9 @@ class SubscriptionCancelReasonFilterComparison(BaseModel):
|
|
|
3930
3930
|
|
|
3931
3931
|
|
|
3932
3932
|
class SubscriptionCancellationInput(BaseModel):
|
|
3933
|
+
await_subscription_cancellation: Optional[bool] = Field(
|
|
3934
|
+
alias="awaitSubscriptionCancellation", default=True
|
|
3935
|
+
)
|
|
3933
3936
|
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
3934
3937
|
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
3935
3938
|
prorate: Optional[bool] = None
|
|
@@ -106,16 +106,16 @@ 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=JOlfsbCpgVqxrsuD9UnuVMnFmjYvuXyV-gRsX6aZy2Q,74138
|
|
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
|
|
113
|
-
stigg/generated/async_client.py,sha256=
|
|
113
|
+
stigg/generated/async_client.py,sha256=_CA5WZZH5GK6R-t2Ea-Xu3wSlIDV6RuEzmyNAdUclZ4,179747
|
|
114
114
|
stigg/generated/base_client.py,sha256=nAto-nOqrOHFTLqdRy2ZDpT1afgsqCzf6hTeBh5MyPQ,6674
|
|
115
115
|
stigg/generated/base_model.py,sha256=0rs99bmZqPbltlPVMfhExeA5zD6ATQFaNZVsxGNonI4,635
|
|
116
116
|
stigg/generated/cancel_subscription.py,sha256=pKrMFmKjGIuWvnVCYQ8brWQO9_JeTnfScgGQjztuN-o,457
|
|
117
117
|
stigg/generated/cancel_subscription_updates.py,sha256=T1C9vyppzZi_91pEnIGkHUL3GEsvtf5EMwr1f01tjbM,241
|
|
118
|
-
stigg/generated/client.py,sha256=
|
|
118
|
+
stigg/generated/client.py,sha256=bnZRTJbAlKpxFiTdvloJhvjXqnG9rNAHTmbVQPdDsRI,179108
|
|
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
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=4wSfEXeZZqMSjsCsSG8baVg3Si8sjzV3bp_unHWHBtQ,3800
|
|
|
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=MCfcL9f9LuOk8IW8mXbJuCUHbiNSyVlKBpuPmE4MbJk,107006
|
|
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
|
|
@@ -148,7 +148,7 @@ stigg/generated/grant_promotional_entitlements.py,sha256=72PRYuqecL-0SkWb7deygkh
|
|
|
148
148
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
149
149
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
150
150
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
151
|
-
stigg/generated/input_types.py,sha256=
|
|
151
|
+
stigg/generated/input_types.py,sha256=I4wHmB3YgGbzLRfYbTBO11FC0Rhdcxj2L6Fx0j1bMpg,207301
|
|
152
152
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
153
153
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
154
154
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -164,7 +164,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
164
164
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
165
165
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
166
166
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
167
|
-
stigg_api_client_v2-3.
|
|
168
|
-
stigg_api_client_v2-3.
|
|
169
|
-
stigg_api_client_v2-3.
|
|
170
|
-
stigg_api_client_v2-3.
|
|
167
|
+
stigg_api_client_v2-3.61.2.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
168
|
+
stigg_api_client_v2-3.61.2.dist-info/METADATA,sha256=Yctxau9B1L5MqtIFAIldLI6N4fbqgeTmt3jxKksCgf0,2257
|
|
169
|
+
stigg_api_client_v2-3.61.2.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
170
|
+
stigg_api_client_v2-3.61.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|