stigg-api-client-v2 2.327.0__py3-none-any.whl → 2.329.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of stigg-api-client-v2 might be problematic. Click here for more details.
- stigg/generated/enums.py +1 -0
- stigg/generated/fragments.py +434 -434
- {stigg_api_client_v2-2.327.0.dist-info → stigg_api_client_v2-2.329.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.327.0.dist-info → stigg_api_client_v2-2.329.0.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-2.327.0.dist-info → stigg_api_client_v2-2.329.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.327.0.dist-info → stigg_api_client_v2-2.329.0.dist-info}/WHEEL +0 -0
stigg/generated/enums.py
CHANGED
|
@@ -1063,6 +1063,7 @@ class SubscriptionScheduleStatus(str, Enum):
|
|
|
1063
1063
|
class SubscriptionScheduleType(str, Enum):
|
|
1064
1064
|
AdditionalMetaData = "AdditionalMetaData"
|
|
1065
1065
|
Addon = "Addon"
|
|
1066
|
+
BillingInfoMetadata = "BillingInfoMetadata"
|
|
1066
1067
|
BillingPeriod = "BillingPeriod"
|
|
1067
1068
|
Coupon = "Coupon"
|
|
1068
1069
|
Downgrade = "Downgrade"
|
stigg/generated/fragments.py
CHANGED
|
@@ -59,39 +59,6 @@ class AddonDependencyFragment(BaseModel):
|
|
|
59
59
|
description: Optional[str] = Field(default=None)
|
|
60
60
|
|
|
61
61
|
|
|
62
|
-
class PackageEntitlementFragment(BaseModel):
|
|
63
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
64
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
65
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
66
|
-
feature_id: str = Field(alias="featureId")
|
|
67
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
68
|
-
alias="resetPeriod", default=None
|
|
69
|
-
)
|
|
70
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
71
|
-
alias="hiddenFromWidgets", default=None
|
|
72
|
-
)
|
|
73
|
-
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
74
|
-
display_name_override: Optional[str] = Field(
|
|
75
|
-
alias="displayNameOverride", default=None
|
|
76
|
-
)
|
|
77
|
-
feature: "PackageEntitlementFragmentFeature"
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
class PackageEntitlementFragmentFeature(BaseModel):
|
|
81
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
82
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
83
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
84
|
-
feature_units_plural: Optional[str] = Field(
|
|
85
|
-
alias="featureUnitsPlural", default=None
|
|
86
|
-
)
|
|
87
|
-
display_name: str = Field(alias="displayName")
|
|
88
|
-
description: Optional[str] = Field(default=None)
|
|
89
|
-
ref_id: str = Field(alias="refId")
|
|
90
|
-
additional_meta_data: Optional[Any] = Field(
|
|
91
|
-
alias="additionalMetaData", default=None
|
|
92
|
-
)
|
|
93
|
-
|
|
94
|
-
|
|
95
62
|
class PriceTierFragment(BaseModel):
|
|
96
63
|
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
97
64
|
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
@@ -180,6 +147,39 @@ class PriceFragmentFeature(BaseModel):
|
|
|
180
147
|
description: Optional[str] = Field(default=None)
|
|
181
148
|
|
|
182
149
|
|
|
150
|
+
class PackageEntitlementFragment(BaseModel):
|
|
151
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
152
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
153
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
154
|
+
feature_id: str = Field(alias="featureId")
|
|
155
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
156
|
+
alias="resetPeriod", default=None
|
|
157
|
+
)
|
|
158
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
159
|
+
alias="hiddenFromWidgets", default=None
|
|
160
|
+
)
|
|
161
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
162
|
+
display_name_override: Optional[str] = Field(
|
|
163
|
+
alias="displayNameOverride", default=None
|
|
164
|
+
)
|
|
165
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
169
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
170
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
171
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
172
|
+
feature_units_plural: Optional[str] = Field(
|
|
173
|
+
alias="featureUnitsPlural", default=None
|
|
174
|
+
)
|
|
175
|
+
display_name: str = Field(alias="displayName")
|
|
176
|
+
description: Optional[str] = Field(default=None)
|
|
177
|
+
ref_id: str = Field(alias="refId")
|
|
178
|
+
additional_meta_data: Optional[Any] = Field(
|
|
179
|
+
alias="additionalMetaData", default=None
|
|
180
|
+
)
|
|
181
|
+
|
|
182
|
+
|
|
183
183
|
class AddonFragment(BaseModel):
|
|
184
184
|
id: str
|
|
185
185
|
ref_id: str = Field(alias="refId")
|
|
@@ -215,195 +215,215 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
215
215
|
pass
|
|
216
216
|
|
|
217
217
|
|
|
218
|
-
class
|
|
219
|
-
|
|
220
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
221
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
222
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
223
|
-
feature_units_plural: Optional[str] = Field(
|
|
224
|
-
alias="featureUnitsPlural", default=None
|
|
225
|
-
)
|
|
226
|
-
description: Optional[str] = Field(default=None)
|
|
227
|
-
display_name: str = Field(alias="displayName")
|
|
228
|
-
ref_id: str = Field(alias="refId")
|
|
229
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
230
|
-
alias="unitTransformation", default=None
|
|
231
|
-
)
|
|
218
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
219
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
232
220
|
|
|
233
221
|
|
|
234
|
-
class
|
|
235
|
-
|
|
236
|
-
|
|
222
|
+
class TotalPriceFragment(BaseModel):
|
|
223
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
224
|
+
total: "TotalPriceFragmentTotal"
|
|
237
225
|
|
|
238
226
|
|
|
239
|
-
class
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
227
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
228
|
+
amount: float
|
|
229
|
+
currency: Currency
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
233
|
+
amount: float
|
|
234
|
+
currency: Currency
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
238
|
+
billing_id: str = Field(alias="billingId")
|
|
239
|
+
status: SubscriptionInvoiceStatus
|
|
240
|
+
created_at: Any = Field(alias="createdAt")
|
|
241
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
242
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
243
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
244
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
245
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
246
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
247
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
248
|
+
alias="billingReason", default=None
|
|
244
249
|
)
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
250
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
251
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
252
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
253
|
-
alias="entitlementUpdatedAt", default=None
|
|
250
|
+
currency: Optional[str] = Field(default=None)
|
|
251
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
252
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
253
|
+
alias="subTotalExcludingTax", default=None
|
|
254
254
|
)
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
259
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
260
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
261
|
-
alias="resetPeriod", default=None
|
|
255
|
+
total: Optional[float] = Field(default=None)
|
|
256
|
+
total_excluding_tax: Optional[float] = Field(
|
|
257
|
+
alias="totalExcludingTax", default=None
|
|
262
258
|
)
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
267
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
268
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
269
|
-
],
|
|
270
|
-
Field(discriminator="typename__"),
|
|
271
|
-
]
|
|
272
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
273
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
259
|
+
tax: Optional[float] = Field(default=None)
|
|
260
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
261
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
274
262
|
|
|
275
263
|
|
|
276
|
-
class
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
264
|
+
class CustomerResourceFragment(BaseModel):
|
|
265
|
+
resource_id: str = Field(alias="resourceId")
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
class ProductFragment(BaseModel):
|
|
269
|
+
ref_id: str = Field(alias="refId")
|
|
270
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
271
|
+
description: Optional[str] = Field(default=None)
|
|
272
|
+
additional_meta_data: Optional[Any] = Field(
|
|
273
|
+
alias="additionalMetaData", default=None
|
|
280
274
|
)
|
|
275
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
281
276
|
|
|
282
277
|
|
|
283
|
-
class
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
alias="weeklyAccordingTo", default=None
|
|
278
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
279
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
280
|
+
alias="downgradePlan", default=None
|
|
287
281
|
)
|
|
288
282
|
|
|
289
283
|
|
|
290
|
-
class
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
284
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
285
|
+
ref_id: str = Field(alias="refId")
|
|
286
|
+
display_name: str = Field(alias="displayName")
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
290
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
291
|
+
display_name: str = Field(alias="displayName")
|
|
292
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
293
|
+
default=None
|
|
294
294
|
)
|
|
295
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
295
296
|
|
|
296
297
|
|
|
297
|
-
class
|
|
298
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
298
299
|
pass
|
|
299
300
|
|
|
300
301
|
|
|
301
|
-
class
|
|
302
|
-
|
|
302
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
303
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
304
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
303
305
|
|
|
304
306
|
|
|
305
|
-
class
|
|
307
|
+
class PlanFragment(BaseModel):
|
|
306
308
|
id: str
|
|
307
|
-
name: Optional[str] = Field(default=None)
|
|
308
|
-
email: Optional[str] = Field(default=None)
|
|
309
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
310
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
311
309
|
ref_id: str = Field(alias="refId")
|
|
312
|
-
|
|
310
|
+
display_name: str = Field(alias="displayName")
|
|
311
|
+
description: Optional[str] = Field(default=None)
|
|
313
312
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
313
|
+
version_number: int = Field(alias="versionNumber")
|
|
314
314
|
additional_meta_data: Optional[Any] = Field(
|
|
315
315
|
alias="additionalMetaData", default=None
|
|
316
316
|
)
|
|
317
|
-
|
|
318
|
-
alias="
|
|
317
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
318
|
+
alias="hiddenFromWidgets", default=None
|
|
319
|
+
)
|
|
320
|
+
product: "PlanFragmentProduct"
|
|
321
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
322
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
323
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
324
|
+
alias="inheritedEntitlements", default=None
|
|
325
|
+
)
|
|
326
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
327
|
+
alias="compatibleAddons", default=None
|
|
328
|
+
)
|
|
329
|
+
compatible_package_groups: Optional[
|
|
330
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
331
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
332
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
333
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
334
|
+
alias="overagePrices", default=None
|
|
335
|
+
)
|
|
336
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
337
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
338
|
+
alias="defaultTrialConfig", default=None
|
|
319
339
|
)
|
|
320
340
|
|
|
321
341
|
|
|
322
|
-
class
|
|
323
|
-
|
|
342
|
+
class PlanFragmentProduct(ProductFragment):
|
|
343
|
+
pass
|
|
324
344
|
|
|
325
345
|
|
|
326
|
-
class
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
created_at: Any = Field(alias="createdAt")
|
|
330
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
331
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
332
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
333
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
334
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
335
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
336
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
337
|
-
alias="billingReason", default=None
|
|
338
|
-
)
|
|
339
|
-
currency: Optional[str] = Field(default=None)
|
|
340
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
341
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
342
|
-
alias="subTotalExcludingTax", default=None
|
|
343
|
-
)
|
|
344
|
-
total: Optional[float] = Field(default=None)
|
|
345
|
-
total_excluding_tax: Optional[float] = Field(
|
|
346
|
-
alias="totalExcludingTax", default=None
|
|
347
|
-
)
|
|
348
|
-
tax: Optional[float] = Field(default=None)
|
|
349
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
350
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
346
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
347
|
+
ref_id: str = Field(alias="refId")
|
|
348
|
+
display_name: str = Field(alias="displayName")
|
|
351
349
|
|
|
352
350
|
|
|
353
|
-
class
|
|
354
|
-
|
|
355
|
-
total: "TotalPriceFragmentTotal"
|
|
351
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
352
|
+
pass
|
|
356
353
|
|
|
357
354
|
|
|
358
|
-
class
|
|
359
|
-
|
|
360
|
-
currency: Currency
|
|
355
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
356
|
+
pass
|
|
361
357
|
|
|
362
358
|
|
|
363
|
-
class
|
|
364
|
-
|
|
365
|
-
currency: Currency
|
|
359
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
360
|
+
pass
|
|
366
361
|
|
|
367
362
|
|
|
368
|
-
class
|
|
363
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
364
|
+
pass
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
class PlanFragmentPrices(PriceFragment):
|
|
368
|
+
pass
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
372
|
+
pass
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
376
|
+
duration: float
|
|
377
|
+
units: TrialPeriodUnits
|
|
378
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
379
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
380
|
+
alias="trialEndBehavior", default=None
|
|
381
|
+
)
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
385
|
+
limit: float
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
369
389
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
370
390
|
alias="subscriptionScheduleType"
|
|
371
391
|
)
|
|
372
392
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
373
393
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
374
|
-
target_package: Optional["
|
|
394
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
375
395
|
alias="targetPackage", default=None
|
|
376
396
|
)
|
|
377
397
|
schedule_variables: Optional[
|
|
378
398
|
Annotated[
|
|
379
399
|
Union[
|
|
380
|
-
"
|
|
381
|
-
"
|
|
382
|
-
"
|
|
383
|
-
"
|
|
384
|
-
"
|
|
385
|
-
"
|
|
386
|
-
"
|
|
387
|
-
"
|
|
400
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
401
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
402
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
403
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
404
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
405
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
406
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
407
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
388
408
|
],
|
|
389
409
|
Field(discriminator="typename__"),
|
|
390
410
|
]
|
|
391
411
|
] = Field(alias="scheduleVariables", default=None)
|
|
392
412
|
|
|
393
413
|
|
|
394
|
-
class
|
|
414
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
395
415
|
id: str
|
|
396
416
|
ref_id: str = Field(alias="refId")
|
|
397
417
|
display_name: str = Field(alias="displayName")
|
|
398
418
|
|
|
399
419
|
|
|
400
|
-
class
|
|
420
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
401
421
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
402
422
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
403
423
|
new_quantity: float = Field(alias="newQuantity")
|
|
404
424
|
|
|
405
425
|
|
|
406
|
-
class
|
|
426
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
407
427
|
BaseModel
|
|
408
428
|
):
|
|
409
429
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -411,55 +431,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
411
431
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
412
432
|
|
|
413
433
|
|
|
414
|
-
class
|
|
434
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
415
435
|
BaseModel
|
|
416
436
|
):
|
|
417
437
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
418
438
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
419
439
|
|
|
420
440
|
|
|
421
|
-
class
|
|
441
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
422
442
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
423
443
|
|
|
424
444
|
|
|
425
|
-
class
|
|
426
|
-
BaseModel
|
|
427
|
-
):
|
|
445
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
428
446
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
429
447
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
430
448
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
431
449
|
billable_features: Optional[
|
|
432
450
|
List[
|
|
433
|
-
"
|
|
451
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
434
452
|
]
|
|
435
453
|
] = Field(alias="billableFeatures", default=None)
|
|
436
454
|
addons: Optional[
|
|
437
455
|
List[
|
|
438
|
-
"
|
|
456
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
439
457
|
]
|
|
440
458
|
] = Field(default=None)
|
|
441
459
|
price_overrides: Optional[
|
|
442
460
|
List[
|
|
443
|
-
"
|
|
461
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
444
462
|
]
|
|
445
463
|
] = Field(alias="priceOverrides", default=None)
|
|
446
464
|
|
|
447
465
|
|
|
448
|
-
class
|
|
466
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
449
467
|
BaseModel
|
|
450
468
|
):
|
|
451
469
|
feature_id: str = Field(alias="featureId")
|
|
452
470
|
quantity: float
|
|
453
471
|
|
|
454
472
|
|
|
455
|
-
class
|
|
473
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
456
474
|
BaseModel
|
|
457
475
|
):
|
|
458
476
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
459
477
|
quantity: float
|
|
460
478
|
|
|
461
479
|
|
|
462
|
-
class
|
|
480
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
463
481
|
BaseModel
|
|
464
482
|
):
|
|
465
483
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -467,43 +485,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
467
485
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
468
486
|
|
|
469
487
|
|
|
470
|
-
class
|
|
488
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
471
489
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
472
490
|
plan_ref_id: str = Field(alias="planRefId")
|
|
473
491
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
474
492
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
475
493
|
billable_features: Optional[
|
|
476
494
|
List[
|
|
477
|
-
"
|
|
495
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
478
496
|
]
|
|
479
497
|
] = Field(alias="billableFeatures", default=None)
|
|
480
|
-
addons: Optional[
|
|
481
|
-
List[
|
|
482
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
483
|
-
]
|
|
498
|
+
addons: Optional[
|
|
499
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
484
500
|
] = Field(default=None)
|
|
485
501
|
price_overrides: Optional[
|
|
486
502
|
List[
|
|
487
|
-
"
|
|
503
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
488
504
|
]
|
|
489
505
|
] = Field(alias="priceOverrides", default=None)
|
|
490
506
|
|
|
491
507
|
|
|
492
|
-
class
|
|
508
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
493
509
|
BaseModel
|
|
494
510
|
):
|
|
495
511
|
feature_id: str = Field(alias="featureId")
|
|
496
512
|
quantity: float
|
|
497
513
|
|
|
498
514
|
|
|
499
|
-
class
|
|
500
|
-
BaseModel
|
|
501
|
-
):
|
|
515
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
502
516
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
503
517
|
quantity: float
|
|
504
518
|
|
|
505
519
|
|
|
506
|
-
class
|
|
520
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
507
521
|
BaseModel
|
|
508
522
|
):
|
|
509
523
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -511,7 +525,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
511
525
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
512
526
|
|
|
513
527
|
|
|
514
|
-
class
|
|
528
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
515
529
|
BaseModel
|
|
516
530
|
):
|
|
517
531
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -519,53 +533,68 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
519
533
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
520
534
|
|
|
521
535
|
|
|
522
|
-
class
|
|
523
|
-
BaseModel
|
|
524
|
-
):
|
|
536
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
525
537
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
526
538
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
527
539
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
528
540
|
|
|
529
541
|
|
|
530
|
-
class
|
|
542
|
+
class SlimCustomerFragment(BaseModel):
|
|
543
|
+
id: str
|
|
544
|
+
name: Optional[str] = Field(default=None)
|
|
545
|
+
email: Optional[str] = Field(default=None)
|
|
546
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
547
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
548
|
+
ref_id: str = Field(alias="refId")
|
|
549
|
+
customer_id: str = Field(alias="customerId")
|
|
550
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
551
|
+
additional_meta_data: Optional[Any] = Field(
|
|
552
|
+
alias="additionalMetaData", default=None
|
|
553
|
+
)
|
|
554
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
555
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
556
|
+
)
|
|
557
|
+
|
|
558
|
+
|
|
559
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
531
560
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
532
561
|
alias="subscriptionScheduleType"
|
|
533
562
|
)
|
|
534
563
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
535
564
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
536
|
-
target_package: Optional["
|
|
565
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
537
566
|
alias="targetPackage", default=None
|
|
538
567
|
)
|
|
539
568
|
schedule_variables: Optional[
|
|
540
569
|
Annotated[
|
|
541
570
|
Union[
|
|
542
|
-
"
|
|
543
|
-
"
|
|
544
|
-
"
|
|
545
|
-
"
|
|
546
|
-
"
|
|
547
|
-
"
|
|
548
|
-
"
|
|
549
|
-
"
|
|
571
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
572
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
573
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
574
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
575
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
576
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
577
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
578
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
550
579
|
],
|
|
551
580
|
Field(discriminator="typename__"),
|
|
552
581
|
]
|
|
553
582
|
] = Field(alias="scheduleVariables", default=None)
|
|
554
583
|
|
|
555
584
|
|
|
556
|
-
class
|
|
585
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
557
586
|
id: str
|
|
558
587
|
ref_id: str = Field(alias="refId")
|
|
559
588
|
display_name: str = Field(alias="displayName")
|
|
560
589
|
|
|
561
590
|
|
|
562
|
-
class
|
|
591
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
563
592
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
564
593
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
565
594
|
new_quantity: float = Field(alias="newQuantity")
|
|
566
595
|
|
|
567
596
|
|
|
568
|
-
class
|
|
597
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
569
598
|
BaseModel
|
|
570
599
|
):
|
|
571
600
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -573,53 +602,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
573
602
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
574
603
|
|
|
575
604
|
|
|
576
|
-
class
|
|
605
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
577
606
|
BaseModel
|
|
578
607
|
):
|
|
579
608
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
580
609
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
581
610
|
|
|
582
611
|
|
|
583
|
-
class
|
|
612
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
584
613
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
585
614
|
|
|
586
615
|
|
|
587
|
-
class
|
|
616
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
617
|
+
BaseModel
|
|
618
|
+
):
|
|
588
619
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
589
620
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
590
621
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
591
622
|
billable_features: Optional[
|
|
592
623
|
List[
|
|
593
|
-
"
|
|
624
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
594
625
|
]
|
|
595
626
|
] = Field(alias="billableFeatures", default=None)
|
|
596
627
|
addons: Optional[
|
|
597
628
|
List[
|
|
598
|
-
"
|
|
629
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
599
630
|
]
|
|
600
631
|
] = Field(default=None)
|
|
601
632
|
price_overrides: Optional[
|
|
602
633
|
List[
|
|
603
|
-
"
|
|
634
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
604
635
|
]
|
|
605
636
|
] = Field(alias="priceOverrides", default=None)
|
|
606
637
|
|
|
607
638
|
|
|
608
|
-
class
|
|
639
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
609
640
|
BaseModel
|
|
610
641
|
):
|
|
611
642
|
feature_id: str = Field(alias="featureId")
|
|
612
643
|
quantity: float
|
|
613
644
|
|
|
614
645
|
|
|
615
|
-
class
|
|
646
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
616
647
|
BaseModel
|
|
617
648
|
):
|
|
618
649
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
619
650
|
quantity: float
|
|
620
651
|
|
|
621
652
|
|
|
622
|
-
class
|
|
653
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
623
654
|
BaseModel
|
|
624
655
|
):
|
|
625
656
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -627,39 +658,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
627
658
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
628
659
|
|
|
629
660
|
|
|
630
|
-
class
|
|
661
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
631
662
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
632
663
|
plan_ref_id: str = Field(alias="planRefId")
|
|
633
664
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
634
665
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
635
666
|
billable_features: Optional[
|
|
636
667
|
List[
|
|
637
|
-
"
|
|
668
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
638
669
|
]
|
|
639
670
|
] = Field(alias="billableFeatures", default=None)
|
|
640
671
|
addons: Optional[
|
|
641
|
-
List[
|
|
672
|
+
List[
|
|
673
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
674
|
+
]
|
|
642
675
|
] = Field(default=None)
|
|
643
676
|
price_overrides: Optional[
|
|
644
677
|
List[
|
|
645
|
-
"
|
|
678
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
646
679
|
]
|
|
647
680
|
] = Field(alias="priceOverrides", default=None)
|
|
648
681
|
|
|
649
682
|
|
|
650
|
-
class
|
|
683
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
651
684
|
BaseModel
|
|
652
685
|
):
|
|
653
686
|
feature_id: str = Field(alias="featureId")
|
|
654
687
|
quantity: float
|
|
655
688
|
|
|
656
689
|
|
|
657
|
-
class
|
|
690
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
691
|
+
BaseModel
|
|
692
|
+
):
|
|
658
693
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
659
694
|
quantity: float
|
|
660
695
|
|
|
661
696
|
|
|
662
|
-
class
|
|
697
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
663
698
|
BaseModel
|
|
664
699
|
):
|
|
665
700
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -667,7 +702,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
667
702
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
668
703
|
|
|
669
704
|
|
|
670
|
-
class
|
|
705
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
671
706
|
BaseModel
|
|
672
707
|
):
|
|
673
708
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -675,132 +710,14 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
675
710
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
676
711
|
|
|
677
712
|
|
|
678
|
-
class
|
|
713
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
714
|
+
BaseModel
|
|
715
|
+
):
|
|
679
716
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
680
717
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
681
718
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
682
719
|
|
|
683
720
|
|
|
684
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
685
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
686
|
-
display_name: str = Field(alias="displayName")
|
|
687
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
688
|
-
default=None
|
|
689
|
-
)
|
|
690
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
694
|
-
pass
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
698
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
699
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
class ProductFragment(BaseModel):
|
|
703
|
-
ref_id: str = Field(alias="refId")
|
|
704
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
705
|
-
description: Optional[str] = Field(default=None)
|
|
706
|
-
additional_meta_data: Optional[Any] = Field(
|
|
707
|
-
alias="additionalMetaData", default=None
|
|
708
|
-
)
|
|
709
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
713
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
714
|
-
alias="downgradePlan", default=None
|
|
715
|
-
)
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
719
|
-
ref_id: str = Field(alias="refId")
|
|
720
|
-
display_name: str = Field(alias="displayName")
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
class PlanFragment(BaseModel):
|
|
724
|
-
id: str
|
|
725
|
-
ref_id: str = Field(alias="refId")
|
|
726
|
-
display_name: str = Field(alias="displayName")
|
|
727
|
-
description: Optional[str] = Field(default=None)
|
|
728
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
729
|
-
version_number: int = Field(alias="versionNumber")
|
|
730
|
-
additional_meta_data: Optional[Any] = Field(
|
|
731
|
-
alias="additionalMetaData", default=None
|
|
732
|
-
)
|
|
733
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
734
|
-
alias="hiddenFromWidgets", default=None
|
|
735
|
-
)
|
|
736
|
-
product: "PlanFragmentProduct"
|
|
737
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
738
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
739
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
740
|
-
alias="inheritedEntitlements", default=None
|
|
741
|
-
)
|
|
742
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
743
|
-
alias="compatibleAddons", default=None
|
|
744
|
-
)
|
|
745
|
-
compatible_package_groups: Optional[
|
|
746
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
747
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
748
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
749
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
750
|
-
alias="overagePrices", default=None
|
|
751
|
-
)
|
|
752
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
753
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
754
|
-
alias="defaultTrialConfig", default=None
|
|
755
|
-
)
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
class PlanFragmentProduct(ProductFragment):
|
|
759
|
-
pass
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
763
|
-
ref_id: str = Field(alias="refId")
|
|
764
|
-
display_name: str = Field(alias="displayName")
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
768
|
-
pass
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
772
|
-
pass
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
776
|
-
pass
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
780
|
-
pass
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
class PlanFragmentPrices(PriceFragment):
|
|
784
|
-
pass
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
788
|
-
pass
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
792
|
-
duration: float
|
|
793
|
-
units: TrialPeriodUnits
|
|
794
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
795
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
796
|
-
alias="trialEndBehavior", default=None
|
|
797
|
-
)
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
801
|
-
limit: float
|
|
802
|
-
|
|
803
|
-
|
|
804
721
|
class SubscriptionFragment(BaseModel):
|
|
805
722
|
id: str
|
|
806
723
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -884,29 +801,112 @@ class SubscriptionFragmentTotalPrice(TotalPriceFragment):
|
|
|
884
801
|
pass
|
|
885
802
|
|
|
886
803
|
|
|
887
|
-
class SubscriptionFragmentPlan(PlanFragment):
|
|
888
|
-
pass
|
|
804
|
+
class SubscriptionFragmentPlan(PlanFragment):
|
|
805
|
+
pass
|
|
806
|
+
|
|
807
|
+
|
|
808
|
+
class SubscriptionFragmentAddons(BaseModel):
|
|
809
|
+
id: str
|
|
810
|
+
quantity: float
|
|
811
|
+
addon: "SubscriptionFragmentAddonsAddon"
|
|
812
|
+
|
|
813
|
+
|
|
814
|
+
class SubscriptionFragmentAddonsAddon(AddonFragment):
|
|
815
|
+
pass
|
|
816
|
+
|
|
817
|
+
|
|
818
|
+
class SubscriptionFragmentScheduledUpdates(SubscriptionScheduledUpdateData):
|
|
819
|
+
pass
|
|
820
|
+
|
|
821
|
+
|
|
822
|
+
class SubscriptionFragmentFutureUpdates(SubscriptionFutureUpdateData):
|
|
823
|
+
pass
|
|
824
|
+
|
|
825
|
+
|
|
826
|
+
class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragment):
|
|
827
|
+
pass
|
|
828
|
+
|
|
829
|
+
|
|
830
|
+
class FeatureFragment(BaseModel):
|
|
831
|
+
typename__: str = Field(alias="__typename")
|
|
832
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
833
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
834
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
835
|
+
feature_units_plural: Optional[str] = Field(
|
|
836
|
+
alias="featureUnitsPlural", default=None
|
|
837
|
+
)
|
|
838
|
+
description: Optional[str] = Field(default=None)
|
|
839
|
+
display_name: str = Field(alias="displayName")
|
|
840
|
+
ref_id: str = Field(alias="refId")
|
|
841
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
842
|
+
alias="unitTransformation", default=None
|
|
843
|
+
)
|
|
844
|
+
|
|
845
|
+
|
|
846
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
847
|
+
divide: float
|
|
848
|
+
round: UnitTransformationRound
|
|
889
849
|
|
|
890
850
|
|
|
891
|
-
class
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
851
|
+
class EntitlementFragment(BaseModel):
|
|
852
|
+
typename__: str = Field(alias="__typename")
|
|
853
|
+
is_granted: bool = Field(alias="isGranted")
|
|
854
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
855
|
+
alias="accessDeniedReason", default=None
|
|
856
|
+
)
|
|
857
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
858
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
859
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
860
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
861
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
862
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
863
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
864
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
865
|
+
alias="entitlementUpdatedAt", default=None
|
|
866
|
+
)
|
|
867
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
868
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
869
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
870
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
871
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
872
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
873
|
+
alias="resetPeriod", default=None
|
|
874
|
+
)
|
|
875
|
+
reset_period_configuration: Optional[
|
|
876
|
+
Annotated[
|
|
877
|
+
Union[
|
|
878
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
879
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
880
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
881
|
+
],
|
|
882
|
+
Field(discriminator="typename__"),
|
|
883
|
+
]
|
|
884
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
885
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
895
886
|
|
|
896
887
|
|
|
897
|
-
class
|
|
898
|
-
|
|
888
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
889
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
890
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
891
|
+
alias="monthlyAccordingTo", default=None
|
|
892
|
+
)
|
|
899
893
|
|
|
900
894
|
|
|
901
|
-
class
|
|
902
|
-
|
|
895
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
896
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
897
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
898
|
+
alias="weeklyAccordingTo", default=None
|
|
899
|
+
)
|
|
903
900
|
|
|
904
901
|
|
|
905
|
-
class
|
|
906
|
-
|
|
902
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
903
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
904
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
905
|
+
alias="yearlyAccordingTo", default=None
|
|
906
|
+
)
|
|
907
907
|
|
|
908
908
|
|
|
909
|
-
class
|
|
909
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
910
910
|
pass
|
|
911
911
|
|
|
912
912
|
|
|
@@ -1250,50 +1250,6 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1250
1250
|
pass
|
|
1251
1251
|
|
|
1252
1252
|
|
|
1253
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1254
|
-
display_name: str = Field(alias="displayName")
|
|
1255
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1256
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1257
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1258
|
-
period: PromotionalEntitlementPeriod
|
|
1259
|
-
start_date: Any = Field(alias="startDate")
|
|
1260
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1264
|
-
addon_id: str = Field(alias="addonId")
|
|
1265
|
-
description: Optional[str] = Field(default=None)
|
|
1266
|
-
display_name: str = Field(alias="displayName")
|
|
1267
|
-
quantity: int
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1271
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1272
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1273
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1274
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1275
|
-
default=None
|
|
1276
|
-
)
|
|
1277
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1278
|
-
default=None
|
|
1279
|
-
)
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1283
|
-
amount: float
|
|
1284
|
-
currency: Currency
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1288
|
-
id: str
|
|
1289
|
-
ref_id: str = Field(alias="refId")
|
|
1290
|
-
display_name: str = Field(alias="displayName")
|
|
1291
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1292
|
-
feature_units_plural: Optional[str] = Field(
|
|
1293
|
-
alias="featureUnitsPlural", default=None
|
|
1294
|
-
)
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
1253
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1298
1254
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1299
1255
|
alias="subscriptionScheduleType"
|
|
@@ -1463,6 +1419,40 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1463
1419
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1464
1420
|
|
|
1465
1421
|
|
|
1422
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1423
|
+
addon_id: str = Field(alias="addonId")
|
|
1424
|
+
description: Optional[str] = Field(default=None)
|
|
1425
|
+
display_name: str = Field(alias="displayName")
|
|
1426
|
+
quantity: int
|
|
1427
|
+
|
|
1428
|
+
|
|
1429
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1430
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1431
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1432
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1433
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1434
|
+
default=None
|
|
1435
|
+
)
|
|
1436
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1437
|
+
default=None
|
|
1438
|
+
)
|
|
1439
|
+
|
|
1440
|
+
|
|
1441
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1442
|
+
amount: float
|
|
1443
|
+
currency: Currency
|
|
1444
|
+
|
|
1445
|
+
|
|
1446
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1447
|
+
id: str
|
|
1448
|
+
ref_id: str = Field(alias="refId")
|
|
1449
|
+
display_name: str = Field(alias="displayName")
|
|
1450
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1451
|
+
feature_units_plural: Optional[str] = Field(
|
|
1452
|
+
alias="featureUnitsPlural", default=None
|
|
1453
|
+
)
|
|
1454
|
+
|
|
1455
|
+
|
|
1466
1456
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1467
1457
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1468
1458
|
plan_id: str = Field(alias="planId")
|
|
@@ -1559,6 +1549,16 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1559
1549
|
pass
|
|
1560
1550
|
|
|
1561
1551
|
|
|
1552
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1553
|
+
display_name: str = Field(alias="displayName")
|
|
1554
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1555
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1556
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1557
|
+
period: PromotionalEntitlementPeriod
|
|
1558
|
+
start_date: Any = Field(alias="startDate")
|
|
1559
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1560
|
+
|
|
1561
|
+
|
|
1562
1562
|
class CustomerPortalFragment(BaseModel):
|
|
1563
1563
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1564
1564
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -1786,39 +1786,6 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1786
1786
|
description: Optional[str] = Field(default=None)
|
|
1787
1787
|
|
|
1788
1788
|
|
|
1789
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1790
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1791
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1792
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1793
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1794
|
-
alias="resetPeriod", default=None
|
|
1795
|
-
)
|
|
1796
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1797
|
-
alias="hiddenFromWidgets", default=None
|
|
1798
|
-
)
|
|
1799
|
-
display_name_override: Optional[str] = Field(
|
|
1800
|
-
alias="displayNameOverride", default=None
|
|
1801
|
-
)
|
|
1802
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1803
|
-
default=None
|
|
1804
|
-
)
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1808
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1809
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1810
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1811
|
-
feature_units_plural: Optional[str] = Field(
|
|
1812
|
-
alias="featureUnitsPlural", default=None
|
|
1813
|
-
)
|
|
1814
|
-
display_name: str = Field(alias="displayName")
|
|
1815
|
-
description: Optional[str] = Field(default=None)
|
|
1816
|
-
ref_id: str = Field(alias="refId")
|
|
1817
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1818
|
-
alias="additionalMetaData", default=None
|
|
1819
|
-
)
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
1789
|
class MockPaywallPriceFragment(BaseModel):
|
|
1823
1790
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1824
1791
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1853,6 +1820,39 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1853
1820
|
display_name: str = Field(alias="displayName")
|
|
1854
1821
|
|
|
1855
1822
|
|
|
1823
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1824
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1825
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1826
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1827
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1828
|
+
alias="resetPeriod", default=None
|
|
1829
|
+
)
|
|
1830
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1831
|
+
alias="hiddenFromWidgets", default=None
|
|
1832
|
+
)
|
|
1833
|
+
display_name_override: Optional[str] = Field(
|
|
1834
|
+
alias="displayNameOverride", default=None
|
|
1835
|
+
)
|
|
1836
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1837
|
+
default=None
|
|
1838
|
+
)
|
|
1839
|
+
|
|
1840
|
+
|
|
1841
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1842
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1843
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1844
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1845
|
+
feature_units_plural: Optional[str] = Field(
|
|
1846
|
+
alias="featureUnitsPlural", default=None
|
|
1847
|
+
)
|
|
1848
|
+
display_name: str = Field(alias="displayName")
|
|
1849
|
+
description: Optional[str] = Field(default=None)
|
|
1850
|
+
ref_id: str = Field(alias="refId")
|
|
1851
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1852
|
+
alias="additionalMetaData", default=None
|
|
1853
|
+
)
|
|
1854
|
+
|
|
1855
|
+
|
|
1856
1856
|
class MockPaywallAddonFragment(BaseModel):
|
|
1857
1857
|
ref_id: str = Field(alias="refId")
|
|
1858
1858
|
display_name: str = Field(alias="displayName")
|
|
@@ -2763,24 +2763,24 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2763
2763
|
|
|
2764
2764
|
|
|
2765
2765
|
AddonDependencyFragment.model_rebuild()
|
|
2766
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2767
2766
|
PriceTierFragment.model_rebuild()
|
|
2768
2767
|
OveragePriceFragment.model_rebuild()
|
|
2769
2768
|
PriceFragment.model_rebuild()
|
|
2769
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2770
2770
|
AddonFragment.model_rebuild()
|
|
2771
|
-
FeatureFragment.model_rebuild()
|
|
2772
|
-
EntitlementFragment.model_rebuild()
|
|
2773
|
-
CustomerResourceFragment.model_rebuild()
|
|
2774
|
-
SlimCustomerFragment.model_rebuild()
|
|
2775
2771
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2776
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2777
2772
|
TotalPriceFragment.model_rebuild()
|
|
2778
|
-
|
|
2779
|
-
|
|
2780
|
-
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2773
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2774
|
+
CustomerResourceFragment.model_rebuild()
|
|
2781
2775
|
ProductFragment.model_rebuild()
|
|
2776
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2782
2777
|
PlanFragment.model_rebuild()
|
|
2778
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2779
|
+
SlimCustomerFragment.model_rebuild()
|
|
2780
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2783
2781
|
SubscriptionFragment.model_rebuild()
|
|
2782
|
+
FeatureFragment.model_rebuild()
|
|
2783
|
+
EntitlementFragment.model_rebuild()
|
|
2784
2784
|
ApplySubscriptionFragment.model_rebuild()
|
|
2785
2785
|
FontVariantFragment.model_rebuild()
|
|
2786
2786
|
TypographyConfigurationFragment.model_rebuild()
|
|
@@ -2792,11 +2792,11 @@ CheckoutStateFragment.model_rebuild()
|
|
|
2792
2792
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2793
2793
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2794
2794
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2795
|
-
|
|
2795
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2796
2796
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2797
2797
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2798
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2799
2798
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2799
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2800
2800
|
CustomerPortalFragment.model_rebuild()
|
|
2801
2801
|
CustomerStatisticsFragment.model_rebuild()
|
|
2802
2802
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -2806,8 +2806,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2806
2806
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2807
2807
|
LayoutConfigurationFragment.model_rebuild()
|
|
2808
2808
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2809
|
-
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2810
2809
|
MockPaywallPriceFragment.model_rebuild()
|
|
2810
|
+
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2811
2811
|
MockPaywallAddonFragment.model_rebuild()
|
|
2812
2812
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2813
2813
|
MockPaywallPlanFragment.model_rebuild()
|
|
@@ -119,11 +119,11 @@ stigg/generated/client.py,sha256=AHebP8X0jl5noIxkZwMgE-EOE3e5lv-tGrCj2xDt58c,169
|
|
|
119
119
|
stigg/generated/create_subscription.py,sha256=vbpBJ_daXHcQDtvU3vbwSr2E7s4VGRHxqPavyTV3Mtk,457
|
|
120
120
|
stigg/generated/delegate_subscription_to_customer.py,sha256=0TgQDO0Hk-z7X7PGtqhvciqa8IjkToK9cpiX3Kqu_UY,561
|
|
121
121
|
stigg/generated/detach_customer_payment_method.py,sha256=ACXlC2xsGaUP723OrayFZQ9SbXxe8TtVUYdG1gqcYFc,523
|
|
122
|
-
stigg/generated/enums.py,sha256=
|
|
122
|
+
stigg/generated/enums.py,sha256=XiTyxApFyNYiRaaHYXIGvi3KCHczQhHCPwNKpJKdh2U,34870
|
|
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=MewKa3yjnMRJ9jhODPIGu85axuFr1E4dCYrnOvIq82o,100632
|
|
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
|
|
@@ -160,7 +160,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
160
160
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
161
161
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
162
162
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
163
|
-
stigg_api_client_v2-2.
|
|
164
|
-
stigg_api_client_v2-2.
|
|
165
|
-
stigg_api_client_v2-2.
|
|
166
|
-
stigg_api_client_v2-2.
|
|
163
|
+
stigg_api_client_v2-2.329.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.329.0.dist-info/METADATA,sha256=Dq2cMDcDJqNMRGMhgh-hLGTHL-95zhEiB5PXgzK10D0,2258
|
|
165
|
+
stigg_api_client_v2-2.329.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.329.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|