stigg-api-client-v2 2.296.1__py3-none-any.whl → 2.300.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of stigg-api-client-v2 might be problematic. Click here for more details.
- stigg/generated/fragments.py +251 -251
- stigg/generated/input_types.py +1 -0
- {stigg_api_client_v2-2.296.1.dist-info → stigg_api_client_v2-2.300.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.296.1.dist-info → stigg_api_client_v2-2.300.0.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-2.296.1.dist-info → stigg_api_client_v2-2.300.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.296.1.dist-info → stigg_api_client_v2-2.300.0.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -215,126 +215,27 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
215
215
|
pass
|
|
216
216
|
|
|
217
217
|
|
|
218
|
-
class
|
|
219
|
-
|
|
220
|
-
display_name: str = Field(alias="displayName")
|
|
221
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
222
|
-
default=None
|
|
223
|
-
)
|
|
224
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
228
|
-
pass
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
232
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
233
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
class ProductFragment(BaseModel):
|
|
237
|
-
ref_id: str = Field(alias="refId")
|
|
238
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
239
|
-
description: Optional[str] = Field(default=None)
|
|
240
|
-
additional_meta_data: Optional[Any] = Field(
|
|
241
|
-
alias="additionalMetaData", default=None
|
|
242
|
-
)
|
|
243
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
247
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
248
|
-
alias="downgradePlan", default=None
|
|
249
|
-
)
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
253
|
-
ref_id: str = Field(alias="refId")
|
|
254
|
-
display_name: str = Field(alias="displayName")
|
|
218
|
+
class CustomerResourceFragment(BaseModel):
|
|
219
|
+
resource_id: str = Field(alias="resourceId")
|
|
255
220
|
|
|
256
221
|
|
|
257
|
-
class
|
|
222
|
+
class SlimCustomerFragment(BaseModel):
|
|
258
223
|
id: str
|
|
224
|
+
name: Optional[str] = Field(default=None)
|
|
225
|
+
email: Optional[str] = Field(default=None)
|
|
226
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
227
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
259
228
|
ref_id: str = Field(alias="refId")
|
|
260
|
-
|
|
261
|
-
description: Optional[str] = Field(default=None)
|
|
229
|
+
customer_id: str = Field(alias="customerId")
|
|
262
230
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
263
|
-
version_number: int = Field(alias="versionNumber")
|
|
264
231
|
additional_meta_data: Optional[Any] = Field(
|
|
265
232
|
alias="additionalMetaData", default=None
|
|
266
233
|
)
|
|
267
|
-
|
|
268
|
-
alias="
|
|
269
|
-
)
|
|
270
|
-
product: "PlanFragmentProduct"
|
|
271
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
272
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
273
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
274
|
-
alias="inheritedEntitlements", default=None
|
|
275
|
-
)
|
|
276
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
277
|
-
alias="compatibleAddons", default=None
|
|
278
|
-
)
|
|
279
|
-
compatible_package_groups: Optional[
|
|
280
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
281
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
282
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
283
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
284
|
-
alias="overagePrices", default=None
|
|
285
|
-
)
|
|
286
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
287
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
288
|
-
alias="defaultTrialConfig", default=None
|
|
289
|
-
)
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
class PlanFragmentProduct(ProductFragment):
|
|
293
|
-
pass
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
297
|
-
ref_id: str = Field(alias="refId")
|
|
298
|
-
display_name: str = Field(alias="displayName")
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
302
|
-
pass
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
306
|
-
pass
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
310
|
-
pass
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
314
|
-
pass
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
class PlanFragmentPrices(PriceFragment):
|
|
318
|
-
pass
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
322
|
-
pass
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
326
|
-
duration: float
|
|
327
|
-
units: TrialPeriodUnits
|
|
328
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
329
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
330
|
-
alias="trialEndBehavior", default=None
|
|
234
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
235
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
331
236
|
)
|
|
332
237
|
|
|
333
238
|
|
|
334
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
335
|
-
limit: float
|
|
336
|
-
|
|
337
|
-
|
|
338
239
|
class TotalPriceFragment(BaseModel):
|
|
339
240
|
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
340
241
|
total: "TotalPriceFragmentTotal"
|
|
@@ -350,45 +251,71 @@ class TotalPriceFragmentTotal(BaseModel):
|
|
|
350
251
|
currency: Currency
|
|
351
252
|
|
|
352
253
|
|
|
353
|
-
class
|
|
254
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
255
|
+
billing_id: str = Field(alias="billingId")
|
|
256
|
+
status: SubscriptionInvoiceStatus
|
|
257
|
+
created_at: Any = Field(alias="createdAt")
|
|
258
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
259
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
260
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
261
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
262
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
263
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
264
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
265
|
+
alias="billingReason", default=None
|
|
266
|
+
)
|
|
267
|
+
currency: Optional[str] = Field(default=None)
|
|
268
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
269
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
270
|
+
alias="subTotalExcludingTax", default=None
|
|
271
|
+
)
|
|
272
|
+
total: Optional[float] = Field(default=None)
|
|
273
|
+
total_excluding_tax: Optional[float] = Field(
|
|
274
|
+
alias="totalExcludingTax", default=None
|
|
275
|
+
)
|
|
276
|
+
tax: Optional[float] = Field(default=None)
|
|
277
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
354
281
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
355
282
|
alias="subscriptionScheduleType"
|
|
356
283
|
)
|
|
357
284
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
358
285
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
359
|
-
target_package: Optional["
|
|
286
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
360
287
|
alias="targetPackage", default=None
|
|
361
288
|
)
|
|
362
289
|
schedule_variables: Optional[
|
|
363
290
|
Annotated[
|
|
364
291
|
Union[
|
|
365
|
-
"
|
|
366
|
-
"
|
|
367
|
-
"
|
|
368
|
-
"
|
|
369
|
-
"
|
|
370
|
-
"
|
|
371
|
-
"
|
|
372
|
-
"
|
|
292
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
293
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
294
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
295
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
296
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
297
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
298
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
299
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
373
300
|
],
|
|
374
301
|
Field(discriminator="typename__"),
|
|
375
302
|
]
|
|
376
303
|
] = Field(alias="scheduleVariables", default=None)
|
|
377
304
|
|
|
378
305
|
|
|
379
|
-
class
|
|
306
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
380
307
|
id: str
|
|
381
308
|
ref_id: str = Field(alias="refId")
|
|
382
309
|
display_name: str = Field(alias="displayName")
|
|
383
310
|
|
|
384
311
|
|
|
385
|
-
class
|
|
312
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
386
313
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
387
314
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
388
315
|
new_quantity: float = Field(alias="newQuantity")
|
|
389
316
|
|
|
390
317
|
|
|
391
|
-
class
|
|
318
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
392
319
|
BaseModel
|
|
393
320
|
):
|
|
394
321
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -396,55 +323,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
396
323
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
397
324
|
|
|
398
325
|
|
|
399
|
-
class
|
|
326
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
400
327
|
BaseModel
|
|
401
328
|
):
|
|
402
329
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
403
330
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
404
331
|
|
|
405
332
|
|
|
406
|
-
class
|
|
333
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
407
334
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
408
335
|
|
|
409
336
|
|
|
410
|
-
class
|
|
411
|
-
BaseModel
|
|
412
|
-
):
|
|
337
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
413
338
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
414
339
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
415
340
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
416
341
|
billable_features: Optional[
|
|
417
342
|
List[
|
|
418
|
-
"
|
|
343
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
419
344
|
]
|
|
420
345
|
] = Field(alias="billableFeatures", default=None)
|
|
421
346
|
addons: Optional[
|
|
422
347
|
List[
|
|
423
|
-
"
|
|
348
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
424
349
|
]
|
|
425
350
|
] = Field(default=None)
|
|
426
351
|
price_overrides: Optional[
|
|
427
352
|
List[
|
|
428
|
-
"
|
|
353
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
429
354
|
]
|
|
430
355
|
] = Field(alias="priceOverrides", default=None)
|
|
431
356
|
|
|
432
357
|
|
|
433
|
-
class
|
|
358
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
434
359
|
BaseModel
|
|
435
360
|
):
|
|
436
361
|
feature_id: str = Field(alias="featureId")
|
|
437
362
|
quantity: float
|
|
438
363
|
|
|
439
364
|
|
|
440
|
-
class
|
|
365
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
441
366
|
BaseModel
|
|
442
367
|
):
|
|
443
368
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
444
369
|
quantity: float
|
|
445
370
|
|
|
446
371
|
|
|
447
|
-
class
|
|
372
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
448
373
|
BaseModel
|
|
449
374
|
):
|
|
450
375
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -452,43 +377,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
452
377
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
453
378
|
|
|
454
379
|
|
|
455
|
-
class
|
|
380
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
456
381
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
457
382
|
plan_ref_id: str = Field(alias="planRefId")
|
|
458
383
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
459
384
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
460
385
|
billable_features: Optional[
|
|
461
386
|
List[
|
|
462
|
-
"
|
|
387
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
463
388
|
]
|
|
464
389
|
] = Field(alias="billableFeatures", default=None)
|
|
465
390
|
addons: Optional[
|
|
466
|
-
List[
|
|
467
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
468
|
-
]
|
|
391
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
469
392
|
] = Field(default=None)
|
|
470
393
|
price_overrides: Optional[
|
|
471
394
|
List[
|
|
472
|
-
"
|
|
395
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
473
396
|
]
|
|
474
397
|
] = Field(alias="priceOverrides", default=None)
|
|
475
398
|
|
|
476
399
|
|
|
477
|
-
class
|
|
400
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
478
401
|
BaseModel
|
|
479
402
|
):
|
|
480
403
|
feature_id: str = Field(alias="featureId")
|
|
481
404
|
quantity: float
|
|
482
405
|
|
|
483
406
|
|
|
484
|
-
class
|
|
485
|
-
BaseModel
|
|
486
|
-
):
|
|
407
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
487
408
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
488
409
|
quantity: float
|
|
489
410
|
|
|
490
411
|
|
|
491
|
-
class
|
|
412
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
492
413
|
BaseModel
|
|
493
414
|
):
|
|
494
415
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -496,7 +417,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
496
417
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
497
418
|
|
|
498
419
|
|
|
499
|
-
class
|
|
420
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
500
421
|
BaseModel
|
|
501
422
|
):
|
|
502
423
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -504,74 +425,171 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
504
425
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
505
426
|
|
|
506
427
|
|
|
507
|
-
class
|
|
508
|
-
BaseModel
|
|
509
|
-
):
|
|
428
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
510
429
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
511
430
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
512
431
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
513
432
|
|
|
514
433
|
|
|
515
|
-
class
|
|
434
|
+
class ProductFragment(BaseModel):
|
|
435
|
+
ref_id: str = Field(alias="refId")
|
|
436
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
437
|
+
description: Optional[str] = Field(default=None)
|
|
438
|
+
additional_meta_data: Optional[Any] = Field(
|
|
439
|
+
alias="additionalMetaData", default=None
|
|
440
|
+
)
|
|
441
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
445
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
446
|
+
alias="downgradePlan", default=None
|
|
447
|
+
)
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
451
|
+
ref_id: str = Field(alias="refId")
|
|
452
|
+
display_name: str = Field(alias="displayName")
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
456
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
457
|
+
display_name: str = Field(alias="displayName")
|
|
458
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
459
|
+
default=None
|
|
460
|
+
)
|
|
461
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
465
|
+
pass
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
469
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
470
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
471
|
+
|
|
472
|
+
|
|
473
|
+
class PlanFragment(BaseModel):
|
|
516
474
|
id: str
|
|
517
|
-
name: Optional[str] = Field(default=None)
|
|
518
|
-
email: Optional[str] = Field(default=None)
|
|
519
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
520
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
521
475
|
ref_id: str = Field(alias="refId")
|
|
522
|
-
|
|
476
|
+
display_name: str = Field(alias="displayName")
|
|
477
|
+
description: Optional[str] = Field(default=None)
|
|
523
478
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
479
|
+
version_number: int = Field(alias="versionNumber")
|
|
524
480
|
additional_meta_data: Optional[Any] = Field(
|
|
525
481
|
alias="additionalMetaData", default=None
|
|
526
482
|
)
|
|
527
|
-
|
|
528
|
-
alias="
|
|
483
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
484
|
+
alias="hiddenFromWidgets", default=None
|
|
485
|
+
)
|
|
486
|
+
product: "PlanFragmentProduct"
|
|
487
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
488
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
489
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
490
|
+
alias="inheritedEntitlements", default=None
|
|
491
|
+
)
|
|
492
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
493
|
+
alias="compatibleAddons", default=None
|
|
494
|
+
)
|
|
495
|
+
compatible_package_groups: Optional[
|
|
496
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
497
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
498
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
499
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
500
|
+
alias="overagePrices", default=None
|
|
501
|
+
)
|
|
502
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
503
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
504
|
+
alias="defaultTrialConfig", default=None
|
|
529
505
|
)
|
|
530
506
|
|
|
531
507
|
|
|
532
|
-
class
|
|
533
|
-
|
|
508
|
+
class PlanFragmentProduct(ProductFragment):
|
|
509
|
+
pass
|
|
534
510
|
|
|
535
511
|
|
|
536
|
-
class
|
|
512
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
513
|
+
ref_id: str = Field(alias="refId")
|
|
514
|
+
display_name: str = Field(alias="displayName")
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
518
|
+
pass
|
|
519
|
+
|
|
520
|
+
|
|
521
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
522
|
+
pass
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
526
|
+
pass
|
|
527
|
+
|
|
528
|
+
|
|
529
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
530
|
+
pass
|
|
531
|
+
|
|
532
|
+
|
|
533
|
+
class PlanFragmentPrices(PriceFragment):
|
|
534
|
+
pass
|
|
535
|
+
|
|
536
|
+
|
|
537
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
538
|
+
pass
|
|
539
|
+
|
|
540
|
+
|
|
541
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
542
|
+
duration: float
|
|
543
|
+
units: TrialPeriodUnits
|
|
544
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
545
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
546
|
+
alias="trialEndBehavior", default=None
|
|
547
|
+
)
|
|
548
|
+
|
|
549
|
+
|
|
550
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
551
|
+
limit: float
|
|
552
|
+
|
|
553
|
+
|
|
554
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
537
555
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
538
556
|
alias="subscriptionScheduleType"
|
|
539
557
|
)
|
|
540
558
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
541
559
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
542
|
-
target_package: Optional["
|
|
560
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
543
561
|
alias="targetPackage", default=None
|
|
544
562
|
)
|
|
545
563
|
schedule_variables: Optional[
|
|
546
564
|
Annotated[
|
|
547
565
|
Union[
|
|
548
|
-
"
|
|
549
|
-
"
|
|
550
|
-
"
|
|
551
|
-
"
|
|
552
|
-
"
|
|
553
|
-
"
|
|
554
|
-
"
|
|
555
|
-
"
|
|
566
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
567
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
568
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
569
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
570
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
571
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
572
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
573
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
556
574
|
],
|
|
557
575
|
Field(discriminator="typename__"),
|
|
558
576
|
]
|
|
559
577
|
] = Field(alias="scheduleVariables", default=None)
|
|
560
578
|
|
|
561
579
|
|
|
562
|
-
class
|
|
580
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
563
581
|
id: str
|
|
564
582
|
ref_id: str = Field(alias="refId")
|
|
565
583
|
display_name: str = Field(alias="displayName")
|
|
566
584
|
|
|
567
585
|
|
|
568
|
-
class
|
|
586
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
569
587
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
570
588
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
571
589
|
new_quantity: float = Field(alias="newQuantity")
|
|
572
590
|
|
|
573
591
|
|
|
574
|
-
class
|
|
592
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
575
593
|
BaseModel
|
|
576
594
|
):
|
|
577
595
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -579,53 +597,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
579
597
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
580
598
|
|
|
581
599
|
|
|
582
|
-
class
|
|
600
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
583
601
|
BaseModel
|
|
584
602
|
):
|
|
585
603
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
586
604
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
587
605
|
|
|
588
606
|
|
|
589
|
-
class
|
|
607
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
590
608
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
591
609
|
|
|
592
610
|
|
|
593
|
-
class
|
|
611
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
612
|
+
BaseModel
|
|
613
|
+
):
|
|
594
614
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
595
615
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
596
616
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
597
617
|
billable_features: Optional[
|
|
598
618
|
List[
|
|
599
|
-
"
|
|
619
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
600
620
|
]
|
|
601
621
|
] = Field(alias="billableFeatures", default=None)
|
|
602
622
|
addons: Optional[
|
|
603
623
|
List[
|
|
604
|
-
"
|
|
624
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
605
625
|
]
|
|
606
626
|
] = Field(default=None)
|
|
607
627
|
price_overrides: Optional[
|
|
608
628
|
List[
|
|
609
|
-
"
|
|
629
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
610
630
|
]
|
|
611
631
|
] = Field(alias="priceOverrides", default=None)
|
|
612
632
|
|
|
613
633
|
|
|
614
|
-
class
|
|
634
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
615
635
|
BaseModel
|
|
616
636
|
):
|
|
617
637
|
feature_id: str = Field(alias="featureId")
|
|
618
638
|
quantity: float
|
|
619
639
|
|
|
620
640
|
|
|
621
|
-
class
|
|
641
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
622
642
|
BaseModel
|
|
623
643
|
):
|
|
624
644
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
625
645
|
quantity: float
|
|
626
646
|
|
|
627
647
|
|
|
628
|
-
class
|
|
648
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
629
649
|
BaseModel
|
|
630
650
|
):
|
|
631
651
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -633,39 +653,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
633
653
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
634
654
|
|
|
635
655
|
|
|
636
|
-
class
|
|
656
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
637
657
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
638
658
|
plan_ref_id: str = Field(alias="planRefId")
|
|
639
659
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
640
660
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
641
661
|
billable_features: Optional[
|
|
642
662
|
List[
|
|
643
|
-
"
|
|
663
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
644
664
|
]
|
|
645
665
|
] = Field(alias="billableFeatures", default=None)
|
|
646
666
|
addons: Optional[
|
|
647
|
-
List[
|
|
667
|
+
List[
|
|
668
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
669
|
+
]
|
|
648
670
|
] = Field(default=None)
|
|
649
671
|
price_overrides: Optional[
|
|
650
672
|
List[
|
|
651
|
-
"
|
|
673
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
652
674
|
]
|
|
653
675
|
] = Field(alias="priceOverrides", default=None)
|
|
654
676
|
|
|
655
677
|
|
|
656
|
-
class
|
|
678
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
657
679
|
BaseModel
|
|
658
680
|
):
|
|
659
681
|
feature_id: str = Field(alias="featureId")
|
|
660
682
|
quantity: float
|
|
661
683
|
|
|
662
684
|
|
|
663
|
-
class
|
|
685
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
686
|
+
BaseModel
|
|
687
|
+
):
|
|
664
688
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
665
689
|
quantity: float
|
|
666
690
|
|
|
667
691
|
|
|
668
|
-
class
|
|
692
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
669
693
|
BaseModel
|
|
670
694
|
):
|
|
671
695
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -673,7 +697,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
673
697
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
674
698
|
|
|
675
699
|
|
|
676
|
-
class
|
|
700
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
677
701
|
BaseModel
|
|
678
702
|
):
|
|
679
703
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -681,40 +705,16 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
681
705
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
682
706
|
|
|
683
707
|
|
|
684
|
-
class
|
|
708
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
709
|
+
BaseModel
|
|
710
|
+
):
|
|
685
711
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
686
712
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
687
713
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
688
714
|
|
|
689
715
|
|
|
690
|
-
class
|
|
691
|
-
|
|
692
|
-
status: SubscriptionInvoiceStatus
|
|
693
|
-
created_at: Any = Field(alias="createdAt")
|
|
694
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
695
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
696
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
697
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
698
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
699
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
700
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
701
|
-
alias="billingReason", default=None
|
|
702
|
-
)
|
|
703
|
-
currency: Optional[str] = Field(default=None)
|
|
704
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
705
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
706
|
-
alias="subTotalExcludingTax", default=None
|
|
707
|
-
)
|
|
708
|
-
total: Optional[float] = Field(default=None)
|
|
709
|
-
total_excluding_tax: Optional[float] = Field(
|
|
710
|
-
alias="totalExcludingTax", default=None
|
|
711
|
-
)
|
|
712
|
-
tax: Optional[float] = Field(default=None)
|
|
713
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
class CustomerResourceFragment(BaseModel):
|
|
717
|
-
resource_id: str = Field(alias="resourceId")
|
|
716
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
717
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
718
718
|
|
|
719
719
|
|
|
720
720
|
class SubscriptionFragment(BaseModel):
|
|
@@ -1249,6 +1249,33 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1249
1249
|
pass
|
|
1250
1250
|
|
|
1251
1251
|
|
|
1252
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1253
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1254
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1255
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1256
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1257
|
+
default=None
|
|
1258
|
+
)
|
|
1259
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1260
|
+
default=None
|
|
1261
|
+
)
|
|
1262
|
+
|
|
1263
|
+
|
|
1264
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1265
|
+
amount: float
|
|
1266
|
+
currency: Currency
|
|
1267
|
+
|
|
1268
|
+
|
|
1269
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1270
|
+
id: str
|
|
1271
|
+
ref_id: str = Field(alias="refId")
|
|
1272
|
+
display_name: str = Field(alias="displayName")
|
|
1273
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1274
|
+
feature_units_plural: Optional[str] = Field(
|
|
1275
|
+
alias="featureUnitsPlural", default=None
|
|
1276
|
+
)
|
|
1277
|
+
|
|
1278
|
+
|
|
1252
1279
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1253
1280
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1254
1281
|
alias="subscriptionScheduleType"
|
|
@@ -1425,33 +1452,6 @@ class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
|
1425
1452
|
quantity: int
|
|
1426
1453
|
|
|
1427
1454
|
|
|
1428
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1429
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1430
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1431
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1432
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1433
|
-
default=None
|
|
1434
|
-
)
|
|
1435
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1436
|
-
default=None
|
|
1437
|
-
)
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1441
|
-
amount: float
|
|
1442
|
-
currency: Currency
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1446
|
-
id: str
|
|
1447
|
-
ref_id: str = Field(alias="refId")
|
|
1448
|
-
display_name: str = Field(alias="displayName")
|
|
1449
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1450
|
-
feature_units_plural: Optional[str] = Field(
|
|
1451
|
-
alias="featureUnitsPlural", default=None
|
|
1452
|
-
)
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
1455
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1456
1456
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1457
1457
|
plan_id: str = Field(alias="planId")
|
|
@@ -2767,16 +2767,16 @@ PriceTierFragment.model_rebuild()
|
|
|
2767
2767
|
OveragePriceFragment.model_rebuild()
|
|
2768
2768
|
PriceFragment.model_rebuild()
|
|
2769
2769
|
AddonFragment.model_rebuild()
|
|
2770
|
-
|
|
2770
|
+
CustomerResourceFragment.model_rebuild()
|
|
2771
|
+
SlimCustomerFragment.model_rebuild()
|
|
2772
|
+
TotalPriceFragment.model_rebuild()
|
|
2773
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2774
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2771
2775
|
ProductFragment.model_rebuild()
|
|
2776
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2772
2777
|
PlanFragment.model_rebuild()
|
|
2773
|
-
TotalPriceFragment.model_rebuild()
|
|
2774
2778
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2775
|
-
SlimCustomerFragment.model_rebuild()
|
|
2776
2779
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2777
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2778
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2779
|
-
CustomerResourceFragment.model_rebuild()
|
|
2780
2780
|
SubscriptionFragment.model_rebuild()
|
|
2781
2781
|
FeatureFragment.model_rebuild()
|
|
2782
2782
|
EntitlementFragment.model_rebuild()
|
|
@@ -2791,9 +2791,9 @@ CheckoutStateFragment.model_rebuild()
|
|
|
2791
2791
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2792
2792
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2793
2793
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2794
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2794
2795
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2795
2796
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2796
|
-
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2797
2797
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2798
2798
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2799
2799
|
CustomerPortalFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -3380,6 +3380,7 @@ class ReportUsageInput(BaseModel):
|
|
|
3380
3380
|
|
|
3381
3381
|
class ResyncIntegrationInput(BaseModel):
|
|
3382
3382
|
environment_id: str = Field(alias="environmentId")
|
|
3383
|
+
integration_id: Optional[str] = Field(alias="integrationId", default=None)
|
|
3383
3384
|
recalculate_entitlements: Optional[bool] = Field(
|
|
3384
3385
|
alias="recalculateEntitlements", default=None
|
|
3385
3386
|
)
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=sAWkIRKUluDgemnIRIPpRnCf49mbnaTUKOc_OxDO3NY,3415
|
|
|
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=WL6RuTIdttPfwaOsqg5n9XJyEGHXG52c_XcS56p9rjk,100553
|
|
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
|
|
@@ -144,7 +144,7 @@ stigg/generated/grant_promotional_entitlements.py,sha256=72PRYuqecL-0SkWb7deygkh
|
|
|
144
144
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
145
145
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
146
146
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
147
|
-
stigg/generated/input_types.py,sha256=
|
|
147
|
+
stigg/generated/input_types.py,sha256=rGjz6PNeYJaJbKsJ9SrlP46pmYAkFXObMHeCOeaFhos,190406
|
|
148
148
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
149
149
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
150
150
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -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.300.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.300.0.dist-info/METADATA,sha256=GIDIrDuc7e4qA6EWhXUz4WlHANsqgYkayvuzjDsKV8Y,2258
|
|
165
|
+
stigg_api_client_v2-2.300.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.300.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|