stigg-api-client-v2 2.462.2__py3-none-any.whl → 2.462.3__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 +241 -241
- {stigg_api_client_v2-2.462.2.dist-info → stigg_api_client_v2-2.462.3.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.462.2.dist-info → stigg_api_client_v2-2.462.3.dist-info}/RECORD +5 -5
- {stigg_api_client_v2-2.462.2.dist-info → stigg_api_client_v2-2.462.3.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.462.2.dist-info → stigg_api_client_v2-2.462.3.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -219,10 +219,6 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
219
219
|
pass
|
|
220
220
|
|
|
221
221
|
|
|
222
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
223
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
224
|
-
|
|
225
|
-
|
|
226
222
|
class CustomerResourceFragment(BaseModel):
|
|
227
223
|
resource_id: str = Field(alias="resourceId")
|
|
228
224
|
|
|
@@ -269,165 +265,66 @@ class SubscriptionInvoiceFragment(BaseModel):
|
|
|
269
265
|
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
270
266
|
|
|
271
267
|
|
|
272
|
-
class
|
|
273
|
-
ref_id: str = Field(alias="refId")
|
|
274
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
275
|
-
description: Optional[str] = Field(default=None)
|
|
276
|
-
additional_meta_data: Optional[Any] = Field(
|
|
277
|
-
alias="additionalMetaData", default=None
|
|
278
|
-
)
|
|
279
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
283
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
284
|
-
alias="downgradePlan", default=None
|
|
285
|
-
)
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
289
|
-
ref_id: str = Field(alias="refId")
|
|
290
|
-
display_name: str = Field(alias="displayName")
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
294
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
295
|
-
display_name: str = Field(alias="displayName")
|
|
296
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
297
|
-
default=None
|
|
298
|
-
)
|
|
299
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
303
|
-
pass
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
307
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
308
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
class PlanFragment(BaseModel):
|
|
268
|
+
class SlimCustomerFragment(BaseModel):
|
|
312
269
|
id: str
|
|
270
|
+
name: Optional[str] = Field(default=None)
|
|
271
|
+
email: Optional[str] = Field(default=None)
|
|
272
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
273
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
313
274
|
ref_id: str = Field(alias="refId")
|
|
314
|
-
|
|
315
|
-
description: Optional[str] = Field(default=None)
|
|
275
|
+
customer_id: str = Field(alias="customerId")
|
|
316
276
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
317
|
-
version_number: int = Field(alias="versionNumber")
|
|
318
277
|
additional_meta_data: Optional[Any] = Field(
|
|
319
278
|
alias="additionalMetaData", default=None
|
|
320
279
|
)
|
|
321
|
-
|
|
322
|
-
alias="
|
|
323
|
-
)
|
|
324
|
-
product: "PlanFragmentProduct"
|
|
325
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
326
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
327
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
328
|
-
alias="inheritedEntitlements", default=None
|
|
329
|
-
)
|
|
330
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
331
|
-
alias="compatibleAddons", default=None
|
|
332
|
-
)
|
|
333
|
-
compatible_package_groups: Optional[
|
|
334
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
335
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
336
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
337
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
338
|
-
alias="overagePrices", default=None
|
|
339
|
-
)
|
|
340
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
341
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
342
|
-
alias="defaultTrialConfig", default=None
|
|
343
|
-
)
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
class PlanFragmentProduct(ProductFragment):
|
|
347
|
-
pass
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
351
|
-
ref_id: str = Field(alias="refId")
|
|
352
|
-
display_name: str = Field(alias="displayName")
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
356
|
-
pass
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
360
|
-
pass
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
364
|
-
pass
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
368
|
-
pass
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
class PlanFragmentPrices(PriceFragment):
|
|
372
|
-
pass
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
376
|
-
pass
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
380
|
-
duration: float
|
|
381
|
-
units: TrialPeriodUnits
|
|
382
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
383
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
384
|
-
alias="trialEndBehavior", default=None
|
|
280
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
281
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
385
282
|
)
|
|
386
283
|
|
|
387
284
|
|
|
388
|
-
class
|
|
389
|
-
|
|
285
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
286
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
390
287
|
|
|
391
288
|
|
|
392
|
-
class
|
|
289
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
393
290
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
394
291
|
alias="subscriptionScheduleType"
|
|
395
292
|
)
|
|
396
293
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
397
294
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
398
|
-
target_package: Optional["
|
|
295
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
399
296
|
alias="targetPackage", default=None
|
|
400
297
|
)
|
|
401
298
|
schedule_variables: Optional[
|
|
402
299
|
Annotated[
|
|
403
300
|
Union[
|
|
404
|
-
"
|
|
405
|
-
"
|
|
406
|
-
"
|
|
407
|
-
"
|
|
408
|
-
"
|
|
409
|
-
"
|
|
410
|
-
"
|
|
411
|
-
"
|
|
301
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
302
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
303
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
304
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
305
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
306
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
307
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
308
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
412
309
|
],
|
|
413
310
|
Field(discriminator="typename__"),
|
|
414
311
|
]
|
|
415
312
|
] = Field(alias="scheduleVariables", default=None)
|
|
416
313
|
|
|
417
314
|
|
|
418
|
-
class
|
|
315
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
419
316
|
id: str
|
|
420
317
|
ref_id: str = Field(alias="refId")
|
|
421
318
|
display_name: str = Field(alias="displayName")
|
|
422
319
|
|
|
423
320
|
|
|
424
|
-
class
|
|
321
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
425
322
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
426
323
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
427
324
|
new_quantity: float = Field(alias="newQuantity")
|
|
428
325
|
|
|
429
326
|
|
|
430
|
-
class
|
|
327
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
431
328
|
BaseModel
|
|
432
329
|
):
|
|
433
330
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -435,55 +332,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
435
332
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
436
333
|
|
|
437
334
|
|
|
438
|
-
class
|
|
335
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
439
336
|
BaseModel
|
|
440
337
|
):
|
|
441
338
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
442
339
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
443
340
|
|
|
444
341
|
|
|
445
|
-
class
|
|
342
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
446
343
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
447
344
|
|
|
448
345
|
|
|
449
|
-
class
|
|
450
|
-
BaseModel
|
|
451
|
-
):
|
|
346
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
452
347
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
453
348
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
454
349
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
455
350
|
billable_features: Optional[
|
|
456
351
|
List[
|
|
457
|
-
"
|
|
352
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
458
353
|
]
|
|
459
354
|
] = Field(alias="billableFeatures", default=None)
|
|
460
355
|
addons: Optional[
|
|
461
356
|
List[
|
|
462
|
-
"
|
|
357
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
463
358
|
]
|
|
464
359
|
] = Field(default=None)
|
|
465
360
|
price_overrides: Optional[
|
|
466
361
|
List[
|
|
467
|
-
"
|
|
362
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
468
363
|
]
|
|
469
364
|
] = Field(alias="priceOverrides", default=None)
|
|
470
365
|
|
|
471
366
|
|
|
472
|
-
class
|
|
367
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
473
368
|
BaseModel
|
|
474
369
|
):
|
|
475
370
|
feature_id: str = Field(alias="featureId")
|
|
476
371
|
quantity: float
|
|
477
372
|
|
|
478
373
|
|
|
479
|
-
class
|
|
374
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
480
375
|
BaseModel
|
|
481
376
|
):
|
|
482
377
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
483
378
|
quantity: float
|
|
484
379
|
|
|
485
380
|
|
|
486
|
-
class
|
|
381
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
487
382
|
BaseModel
|
|
488
383
|
):
|
|
489
384
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -491,43 +386,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
491
386
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
492
387
|
|
|
493
388
|
|
|
494
|
-
class
|
|
389
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
495
390
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
496
391
|
plan_ref_id: str = Field(alias="planRefId")
|
|
497
392
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
498
393
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
499
394
|
billable_features: Optional[
|
|
500
395
|
List[
|
|
501
|
-
"
|
|
396
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
502
397
|
]
|
|
503
398
|
] = Field(alias="billableFeatures", default=None)
|
|
504
399
|
addons: Optional[
|
|
505
|
-
List[
|
|
506
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
507
|
-
]
|
|
400
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
508
401
|
] = Field(default=None)
|
|
509
402
|
price_overrides: Optional[
|
|
510
403
|
List[
|
|
511
|
-
"
|
|
404
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
512
405
|
]
|
|
513
406
|
] = Field(alias="priceOverrides", default=None)
|
|
514
407
|
|
|
515
408
|
|
|
516
|
-
class
|
|
409
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
517
410
|
BaseModel
|
|
518
411
|
):
|
|
519
412
|
feature_id: str = Field(alias="featureId")
|
|
520
413
|
quantity: float
|
|
521
414
|
|
|
522
415
|
|
|
523
|
-
class
|
|
524
|
-
BaseModel
|
|
525
|
-
):
|
|
416
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
526
417
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
527
418
|
quantity: float
|
|
528
419
|
|
|
529
420
|
|
|
530
|
-
class
|
|
421
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
531
422
|
BaseModel
|
|
532
423
|
):
|
|
533
424
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -535,7 +426,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
535
426
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
536
427
|
|
|
537
428
|
|
|
538
|
-
class
|
|
429
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
539
430
|
BaseModel
|
|
540
431
|
):
|
|
541
432
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -543,53 +434,51 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
543
434
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
544
435
|
|
|
545
436
|
|
|
546
|
-
class
|
|
547
|
-
BaseModel
|
|
548
|
-
):
|
|
437
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
549
438
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
550
439
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
551
440
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
552
441
|
|
|
553
442
|
|
|
554
|
-
class
|
|
443
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
555
444
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
556
445
|
alias="subscriptionScheduleType"
|
|
557
446
|
)
|
|
558
447
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
559
448
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
560
|
-
target_package: Optional["
|
|
449
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
561
450
|
alias="targetPackage", default=None
|
|
562
451
|
)
|
|
563
452
|
schedule_variables: Optional[
|
|
564
453
|
Annotated[
|
|
565
454
|
Union[
|
|
566
|
-
"
|
|
567
|
-
"
|
|
568
|
-
"
|
|
569
|
-
"
|
|
570
|
-
"
|
|
571
|
-
"
|
|
572
|
-
"
|
|
573
|
-
"
|
|
455
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
456
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
457
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
458
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
459
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
460
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
461
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
462
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
574
463
|
],
|
|
575
464
|
Field(discriminator="typename__"),
|
|
576
465
|
]
|
|
577
466
|
] = Field(alias="scheduleVariables", default=None)
|
|
578
467
|
|
|
579
468
|
|
|
580
|
-
class
|
|
469
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
581
470
|
id: str
|
|
582
471
|
ref_id: str = Field(alias="refId")
|
|
583
472
|
display_name: str = Field(alias="displayName")
|
|
584
473
|
|
|
585
474
|
|
|
586
|
-
class
|
|
475
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
587
476
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
588
477
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
589
478
|
new_quantity: float = Field(alias="newQuantity")
|
|
590
479
|
|
|
591
480
|
|
|
592
|
-
class
|
|
481
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
593
482
|
BaseModel
|
|
594
483
|
):
|
|
595
484
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -597,53 +486,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
597
486
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
598
487
|
|
|
599
488
|
|
|
600
|
-
class
|
|
489
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
601
490
|
BaseModel
|
|
602
491
|
):
|
|
603
492
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
604
493
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
605
494
|
|
|
606
495
|
|
|
607
|
-
class
|
|
496
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
608
497
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
609
498
|
|
|
610
499
|
|
|
611
|
-
class
|
|
500
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
501
|
+
BaseModel
|
|
502
|
+
):
|
|
612
503
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
613
504
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
614
505
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
615
506
|
billable_features: Optional[
|
|
616
507
|
List[
|
|
617
|
-
"
|
|
508
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
618
509
|
]
|
|
619
510
|
] = Field(alias="billableFeatures", default=None)
|
|
620
511
|
addons: Optional[
|
|
621
512
|
List[
|
|
622
|
-
"
|
|
513
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
623
514
|
]
|
|
624
515
|
] = Field(default=None)
|
|
625
516
|
price_overrides: Optional[
|
|
626
517
|
List[
|
|
627
|
-
"
|
|
518
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
628
519
|
]
|
|
629
520
|
] = Field(alias="priceOverrides", default=None)
|
|
630
521
|
|
|
631
522
|
|
|
632
|
-
class
|
|
523
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
633
524
|
BaseModel
|
|
634
525
|
):
|
|
635
526
|
feature_id: str = Field(alias="featureId")
|
|
636
527
|
quantity: float
|
|
637
528
|
|
|
638
529
|
|
|
639
|
-
class
|
|
530
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
640
531
|
BaseModel
|
|
641
532
|
):
|
|
642
533
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
643
534
|
quantity: float
|
|
644
535
|
|
|
645
536
|
|
|
646
|
-
class
|
|
537
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
647
538
|
BaseModel
|
|
648
539
|
):
|
|
649
540
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -651,39 +542,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
651
542
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
652
543
|
|
|
653
544
|
|
|
654
|
-
class
|
|
545
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
655
546
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
656
547
|
plan_ref_id: str = Field(alias="planRefId")
|
|
657
548
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
658
549
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
659
550
|
billable_features: Optional[
|
|
660
551
|
List[
|
|
661
|
-
"
|
|
552
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
662
553
|
]
|
|
663
554
|
] = Field(alias="billableFeatures", default=None)
|
|
664
555
|
addons: Optional[
|
|
665
|
-
List[
|
|
556
|
+
List[
|
|
557
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
558
|
+
]
|
|
666
559
|
] = Field(default=None)
|
|
667
560
|
price_overrides: Optional[
|
|
668
561
|
List[
|
|
669
|
-
"
|
|
562
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
670
563
|
]
|
|
671
564
|
] = Field(alias="priceOverrides", default=None)
|
|
672
565
|
|
|
673
566
|
|
|
674
|
-
class
|
|
567
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
675
568
|
BaseModel
|
|
676
569
|
):
|
|
677
570
|
feature_id: str = Field(alias="featureId")
|
|
678
571
|
quantity: float
|
|
679
572
|
|
|
680
573
|
|
|
681
|
-
class
|
|
574
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
575
|
+
BaseModel
|
|
576
|
+
):
|
|
682
577
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
683
578
|
quantity: float
|
|
684
579
|
|
|
685
580
|
|
|
686
|
-
class
|
|
581
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
687
582
|
BaseModel
|
|
688
583
|
):
|
|
689
584
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -691,7 +586,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
691
586
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
692
587
|
|
|
693
588
|
|
|
694
|
-
class
|
|
589
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
695
590
|
BaseModel
|
|
696
591
|
):
|
|
697
592
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -699,27 +594,132 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
699
594
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
700
595
|
|
|
701
596
|
|
|
702
|
-
class
|
|
597
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
598
|
+
BaseModel
|
|
599
|
+
):
|
|
703
600
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
704
601
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
705
602
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
706
603
|
|
|
707
604
|
|
|
708
|
-
class
|
|
605
|
+
class ProductFragment(BaseModel):
|
|
606
|
+
ref_id: str = Field(alias="refId")
|
|
607
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
608
|
+
description: Optional[str] = Field(default=None)
|
|
609
|
+
additional_meta_data: Optional[Any] = Field(
|
|
610
|
+
alias="additionalMetaData", default=None
|
|
611
|
+
)
|
|
612
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
613
|
+
|
|
614
|
+
|
|
615
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
616
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
617
|
+
alias="downgradePlan", default=None
|
|
618
|
+
)
|
|
619
|
+
|
|
620
|
+
|
|
621
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
622
|
+
ref_id: str = Field(alias="refId")
|
|
623
|
+
display_name: str = Field(alias="displayName")
|
|
624
|
+
|
|
625
|
+
|
|
626
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
627
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
628
|
+
display_name: str = Field(alias="displayName")
|
|
629
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
630
|
+
default=None
|
|
631
|
+
)
|
|
632
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
633
|
+
|
|
634
|
+
|
|
635
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
636
|
+
pass
|
|
637
|
+
|
|
638
|
+
|
|
639
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
640
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
641
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
642
|
+
|
|
643
|
+
|
|
644
|
+
class PlanFragment(BaseModel):
|
|
709
645
|
id: str
|
|
710
|
-
name: Optional[str] = Field(default=None)
|
|
711
|
-
email: Optional[str] = Field(default=None)
|
|
712
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
713
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
714
646
|
ref_id: str = Field(alias="refId")
|
|
715
|
-
|
|
647
|
+
display_name: str = Field(alias="displayName")
|
|
648
|
+
description: Optional[str] = Field(default=None)
|
|
716
649
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
650
|
+
version_number: int = Field(alias="versionNumber")
|
|
717
651
|
additional_meta_data: Optional[Any] = Field(
|
|
718
652
|
alias="additionalMetaData", default=None
|
|
719
653
|
)
|
|
720
|
-
|
|
721
|
-
alias="
|
|
654
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
655
|
+
alias="hiddenFromWidgets", default=None
|
|
656
|
+
)
|
|
657
|
+
product: "PlanFragmentProduct"
|
|
658
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
659
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
660
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
661
|
+
alias="inheritedEntitlements", default=None
|
|
662
|
+
)
|
|
663
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
664
|
+
alias="compatibleAddons", default=None
|
|
665
|
+
)
|
|
666
|
+
compatible_package_groups: Optional[
|
|
667
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
668
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
669
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
670
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
671
|
+
alias="overagePrices", default=None
|
|
722
672
|
)
|
|
673
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
674
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
675
|
+
alias="defaultTrialConfig", default=None
|
|
676
|
+
)
|
|
677
|
+
|
|
678
|
+
|
|
679
|
+
class PlanFragmentProduct(ProductFragment):
|
|
680
|
+
pass
|
|
681
|
+
|
|
682
|
+
|
|
683
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
684
|
+
ref_id: str = Field(alias="refId")
|
|
685
|
+
display_name: str = Field(alias="displayName")
|
|
686
|
+
|
|
687
|
+
|
|
688
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
689
|
+
pass
|
|
690
|
+
|
|
691
|
+
|
|
692
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
693
|
+
pass
|
|
694
|
+
|
|
695
|
+
|
|
696
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
697
|
+
pass
|
|
698
|
+
|
|
699
|
+
|
|
700
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
701
|
+
pass
|
|
702
|
+
|
|
703
|
+
|
|
704
|
+
class PlanFragmentPrices(PriceFragment):
|
|
705
|
+
pass
|
|
706
|
+
|
|
707
|
+
|
|
708
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
709
|
+
pass
|
|
710
|
+
|
|
711
|
+
|
|
712
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
713
|
+
duration: float
|
|
714
|
+
units: TrialPeriodUnits
|
|
715
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
716
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
717
|
+
alias="trialEndBehavior", default=None
|
|
718
|
+
)
|
|
719
|
+
|
|
720
|
+
|
|
721
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
722
|
+
limit: float
|
|
723
723
|
|
|
724
724
|
|
|
725
725
|
class SubscriptionFragment(BaseModel):
|
|
@@ -1260,6 +1260,50 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1260
1260
|
pass
|
|
1261
1261
|
|
|
1262
1262
|
|
|
1263
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1264
|
+
display_name: str = Field(alias="displayName")
|
|
1265
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1266
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1267
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1268
|
+
period: PromotionalEntitlementPeriod
|
|
1269
|
+
start_date: Any = Field(alias="startDate")
|
|
1270
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1271
|
+
|
|
1272
|
+
|
|
1273
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1274
|
+
addon_id: str = Field(alias="addonId")
|
|
1275
|
+
description: Optional[str] = Field(default=None)
|
|
1276
|
+
display_name: str = Field(alias="displayName")
|
|
1277
|
+
quantity: int
|
|
1278
|
+
|
|
1279
|
+
|
|
1280
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1281
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1282
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1283
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1284
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1285
|
+
default=None
|
|
1286
|
+
)
|
|
1287
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1288
|
+
default=None
|
|
1289
|
+
)
|
|
1290
|
+
|
|
1291
|
+
|
|
1292
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1293
|
+
amount: float
|
|
1294
|
+
currency: Currency
|
|
1295
|
+
|
|
1296
|
+
|
|
1297
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1298
|
+
id: str
|
|
1299
|
+
ref_id: str = Field(alias="refId")
|
|
1300
|
+
display_name: str = Field(alias="displayName")
|
|
1301
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1302
|
+
feature_units_plural: Optional[str] = Field(
|
|
1303
|
+
alias="featureUnitsPlural", default=None
|
|
1304
|
+
)
|
|
1305
|
+
|
|
1306
|
+
|
|
1263
1307
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1264
1308
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1265
1309
|
alias="subscriptionScheduleType"
|
|
@@ -1429,40 +1473,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1429
1473
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1430
1474
|
|
|
1431
1475
|
|
|
1432
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1433
|
-
addon_id: str = Field(alias="addonId")
|
|
1434
|
-
description: Optional[str] = Field(default=None)
|
|
1435
|
-
display_name: str = Field(alias="displayName")
|
|
1436
|
-
quantity: int
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1440
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1441
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1442
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1443
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1444
|
-
default=None
|
|
1445
|
-
)
|
|
1446
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1447
|
-
default=None
|
|
1448
|
-
)
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1452
|
-
amount: float
|
|
1453
|
-
currency: Currency
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1457
|
-
id: str
|
|
1458
|
-
ref_id: str = Field(alias="refId")
|
|
1459
|
-
display_name: str = Field(alias="displayName")
|
|
1460
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1461
|
-
feature_units_plural: Optional[str] = Field(
|
|
1462
|
-
alias="featureUnitsPlural", default=None
|
|
1463
|
-
)
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
1476
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1467
1477
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1468
1478
|
plan_id: str = Field(alias="planId")
|
|
@@ -1559,16 +1569,6 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1559
1569
|
pass
|
|
1560
1570
|
|
|
1561
1571
|
|
|
1562
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1563
|
-
display_name: str = Field(alias="displayName")
|
|
1564
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1565
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1566
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1567
|
-
period: PromotionalEntitlementPeriod
|
|
1568
|
-
start_date: Any = Field(alias="startDate")
|
|
1569
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
1572
|
class CustomerPortalFragment(BaseModel):
|
|
1573
1573
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1574
1574
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -2839,16 +2839,16 @@ OveragePriceFragment.model_rebuild()
|
|
|
2839
2839
|
PackageEntitlementFragment.model_rebuild()
|
|
2840
2840
|
PriceFragment.model_rebuild()
|
|
2841
2841
|
AddonFragment.model_rebuild()
|
|
2842
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2843
2842
|
CustomerResourceFragment.model_rebuild()
|
|
2844
2843
|
TotalPriceFragment.model_rebuild()
|
|
2845
2844
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2845
|
+
SlimCustomerFragment.model_rebuild()
|
|
2846
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2847
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2848
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2846
2849
|
ProductFragment.model_rebuild()
|
|
2847
2850
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2848
2851
|
PlanFragment.model_rebuild()
|
|
2849
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2850
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2851
|
-
SlimCustomerFragment.model_rebuild()
|
|
2852
2852
|
SubscriptionFragment.model_rebuild()
|
|
2853
2853
|
FeatureFragment.model_rebuild()
|
|
2854
2854
|
EntitlementFragment.model_rebuild()
|
|
@@ -2863,11 +2863,11 @@ CheckoutStateFragment.model_rebuild()
|
|
|
2863
2863
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2864
2864
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2865
2865
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2866
|
-
|
|
2866
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2867
2867
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2868
2868
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2869
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2869
2870
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2870
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2871
2871
|
CustomerPortalFragment.model_rebuild()
|
|
2872
2872
|
CustomerStatisticsFragment.model_rebuild()
|
|
2873
2873
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=Ax7idhOxqqwhmzBPImea0R-KRcq7j5EQNVAqUFbMl_8,3551
|
|
|
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=20ArKDtcaUdXh8XpzFA84vE0_y7lasmcvM3rskigtY4,103354
|
|
127
127
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
128
128
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
129
129
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -161,7 +161,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
161
161
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
162
162
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
163
163
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
164
|
-
stigg_api_client_v2-2.462.
|
|
165
|
-
stigg_api_client_v2-2.462.
|
|
166
|
-
stigg_api_client_v2-2.462.
|
|
167
|
-
stigg_api_client_v2-2.462.
|
|
164
|
+
stigg_api_client_v2-2.462.3.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
165
|
+
stigg_api_client_v2-2.462.3.dist-info/METADATA,sha256=TZqYQOqvb9oYS1ZrUBns08Y0i3ubqRwSM8dRCBL4rzM,2258
|
|
166
|
+
stigg_api_client_v2-2.462.3.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
167
|
+
stigg_api_client_v2-2.462.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|