stigg-api-client-v2 2.323.4__py3-none-any.whl → 2.324.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of stigg-api-client-v2 might be problematic. Click here for more details.
- stigg/generated/__init__.py +6 -0
- stigg/generated/enums.py +1 -0
- stigg/generated/fragments.py +253 -253
- stigg/generated/input_types.py +19 -0
- {stigg_api_client_v2-2.323.4.dist-info → stigg_api_client_v2-2.324.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.323.4.dist-info → stigg_api_client_v2-2.324.0.dist-info}/RECORD +8 -8
- {stigg_api_client_v2-2.323.4.dist-info → stigg_api_client_v2-2.324.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.323.4.dist-info → stigg_api_client_v2-2.324.0.dist-info}/WHEEL +0 -0
stigg/generated/__init__.py
CHANGED
|
@@ -554,6 +554,7 @@ from .input_types import (
|
|
|
554
554
|
AddonCreateInput,
|
|
555
555
|
AddonFilter,
|
|
556
556
|
AddonSort,
|
|
557
|
+
AddonUnArchiveInput,
|
|
557
558
|
AddonUpdateInput,
|
|
558
559
|
Address,
|
|
559
560
|
AggregatedEventsByCustomerInput,
|
|
@@ -854,6 +855,8 @@ from .input_types import (
|
|
|
854
855
|
TypographyConfigurationInput,
|
|
855
856
|
UnarchiveCustomerInput,
|
|
856
857
|
UnarchiveEnvironmentInput,
|
|
858
|
+
UnArchiveFeatureInput,
|
|
859
|
+
UnArchivePlanInput,
|
|
857
860
|
UnitTransformationInput,
|
|
858
861
|
UpdateAccountInput,
|
|
859
862
|
UpdateCouponInput,
|
|
@@ -948,6 +951,7 @@ __all__ = [
|
|
|
948
951
|
"AddonFragmentPrices",
|
|
949
952
|
"AddonSort",
|
|
950
953
|
"AddonSortFields",
|
|
954
|
+
"AddonUnArchiveInput",
|
|
951
955
|
"AddonUpdateInput",
|
|
952
956
|
"Address",
|
|
953
957
|
"AggregatedEventsByCustomerInput",
|
|
@@ -1758,6 +1762,8 @@ __all__ = [
|
|
|
1758
1762
|
"TypographyConfigurationFragmentH2",
|
|
1759
1763
|
"TypographyConfigurationFragmentH3",
|
|
1760
1764
|
"TypographyConfigurationInput",
|
|
1765
|
+
"UnArchiveFeatureInput",
|
|
1766
|
+
"UnArchivePlanInput",
|
|
1761
1767
|
"UnarchiveCustomer",
|
|
1762
1768
|
"UnarchiveCustomerInput",
|
|
1763
1769
|
"UnarchiveCustomerUnarchiveCustomer",
|
stigg/generated/enums.py
CHANGED
|
@@ -408,6 +408,7 @@ class ErrorCode(str, Enum):
|
|
|
408
408
|
BillingPeriodMissingError = "BillingPeriodMissingError"
|
|
409
409
|
CannotAddOverrideEntitlementToPlan = "CannotAddOverrideEntitlementToPlan"
|
|
410
410
|
CannotArchiveFeatureError = "CannotArchiveFeatureError"
|
|
411
|
+
CannotChangeBillingIntegration = "CannotChangeBillingIntegration"
|
|
411
412
|
CannotDeleteCustomerError = "CannotDeleteCustomerError"
|
|
412
413
|
CannotDeleteDefaultIntegration = "CannotDeleteDefaultIntegration"
|
|
413
414
|
CannotDeleteFeatureError = "CannotDeleteFeatureError"
|
stigg/generated/fragments.py
CHANGED
|
@@ -59,6 +59,39 @@ 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
|
+
|
|
62
95
|
class PriceTierFragment(BaseModel):
|
|
63
96
|
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
64
97
|
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
@@ -79,33 +112,29 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
79
112
|
currency: Currency
|
|
80
113
|
|
|
81
114
|
|
|
82
|
-
class
|
|
115
|
+
class OveragePriceFragment(BaseModel):
|
|
83
116
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
84
117
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
85
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
86
118
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
87
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
88
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
89
119
|
billing_country_code: Optional[str] = Field(
|
|
90
120
|
alias="billingCountryCode", default=None
|
|
91
121
|
)
|
|
92
|
-
price: Optional["
|
|
122
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
93
123
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
94
|
-
tiers: Optional[List["
|
|
95
|
-
feature: Optional["
|
|
96
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
124
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
125
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
97
126
|
|
|
98
127
|
|
|
99
|
-
class
|
|
128
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
100
129
|
amount: float
|
|
101
130
|
currency: Currency
|
|
102
131
|
|
|
103
132
|
|
|
104
|
-
class
|
|
133
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
105
134
|
pass
|
|
106
135
|
|
|
107
136
|
|
|
108
|
-
class
|
|
137
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
109
138
|
ref_id: str = Field(alias="refId")
|
|
110
139
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
111
140
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -115,29 +144,33 @@ class PriceFragmentFeature(BaseModel):
|
|
|
115
144
|
description: Optional[str] = Field(default=None)
|
|
116
145
|
|
|
117
146
|
|
|
118
|
-
class
|
|
147
|
+
class PriceFragment(BaseModel):
|
|
119
148
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
120
149
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
150
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
121
151
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
152
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
153
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
122
154
|
billing_country_code: Optional[str] = Field(
|
|
123
155
|
alias="billingCountryCode", default=None
|
|
124
156
|
)
|
|
125
|
-
price: Optional["
|
|
157
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
126
158
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
127
|
-
tiers: Optional[List["
|
|
128
|
-
feature: Optional["
|
|
159
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
160
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
161
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
129
162
|
|
|
130
163
|
|
|
131
|
-
class
|
|
164
|
+
class PriceFragmentPrice(BaseModel):
|
|
132
165
|
amount: float
|
|
133
166
|
currency: Currency
|
|
134
167
|
|
|
135
168
|
|
|
136
|
-
class
|
|
169
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
137
170
|
pass
|
|
138
171
|
|
|
139
172
|
|
|
140
|
-
class
|
|
173
|
+
class PriceFragmentFeature(BaseModel):
|
|
141
174
|
ref_id: str = Field(alias="refId")
|
|
142
175
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
143
176
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -147,39 +180,6 @@ class OveragePriceFragmentFeature(BaseModel):
|
|
|
147
180
|
description: Optional[str] = Field(default=None)
|
|
148
181
|
|
|
149
182
|
|
|
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")
|
|
@@ -369,6 +369,162 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
369
369
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
370
370
|
|
|
371
371
|
|
|
372
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
373
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
374
|
+
display_name: str = Field(alias="displayName")
|
|
375
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
376
|
+
default=None
|
|
377
|
+
)
|
|
378
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
382
|
+
pass
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
386
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
387
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
class ProductFragment(BaseModel):
|
|
391
|
+
ref_id: str = Field(alias="refId")
|
|
392
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
393
|
+
description: Optional[str] = Field(default=None)
|
|
394
|
+
additional_meta_data: Optional[Any] = Field(
|
|
395
|
+
alias="additionalMetaData", default=None
|
|
396
|
+
)
|
|
397
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
401
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
402
|
+
alias="downgradePlan", default=None
|
|
403
|
+
)
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
407
|
+
ref_id: str = Field(alias="refId")
|
|
408
|
+
display_name: str = Field(alias="displayName")
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
class PlanFragment(BaseModel):
|
|
412
|
+
id: str
|
|
413
|
+
ref_id: str = Field(alias="refId")
|
|
414
|
+
display_name: str = Field(alias="displayName")
|
|
415
|
+
description: Optional[str] = Field(default=None)
|
|
416
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
417
|
+
version_number: int = Field(alias="versionNumber")
|
|
418
|
+
additional_meta_data: Optional[Any] = Field(
|
|
419
|
+
alias="additionalMetaData", default=None
|
|
420
|
+
)
|
|
421
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
422
|
+
alias="hiddenFromWidgets", default=None
|
|
423
|
+
)
|
|
424
|
+
product: "PlanFragmentProduct"
|
|
425
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
426
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
427
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
428
|
+
alias="inheritedEntitlements", default=None
|
|
429
|
+
)
|
|
430
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
431
|
+
alias="compatibleAddons", default=None
|
|
432
|
+
)
|
|
433
|
+
compatible_package_groups: Optional[
|
|
434
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
435
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
436
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
437
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
438
|
+
alias="overagePrices", default=None
|
|
439
|
+
)
|
|
440
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
441
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
442
|
+
alias="defaultTrialConfig", default=None
|
|
443
|
+
)
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
class PlanFragmentProduct(ProductFragment):
|
|
447
|
+
pass
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
451
|
+
ref_id: str = Field(alias="refId")
|
|
452
|
+
display_name: str = Field(alias="displayName")
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
456
|
+
pass
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
460
|
+
pass
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
464
|
+
pass
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
468
|
+
pass
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
class PlanFragmentPrices(PriceFragment):
|
|
472
|
+
pass
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
476
|
+
pass
|
|
477
|
+
|
|
478
|
+
|
|
479
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
480
|
+
duration: float
|
|
481
|
+
units: TrialPeriodUnits
|
|
482
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
483
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
484
|
+
alias="trialEndBehavior", default=None
|
|
485
|
+
)
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
489
|
+
limit: float
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
class SlimCustomerFragment(BaseModel):
|
|
493
|
+
id: str
|
|
494
|
+
name: Optional[str] = Field(default=None)
|
|
495
|
+
email: Optional[str] = Field(default=None)
|
|
496
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
497
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
498
|
+
ref_id: str = Field(alias="refId")
|
|
499
|
+
customer_id: str = Field(alias="customerId")
|
|
500
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
501
|
+
additional_meta_data: Optional[Any] = Field(
|
|
502
|
+
alias="additionalMetaData", default=None
|
|
503
|
+
)
|
|
504
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
505
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
506
|
+
)
|
|
507
|
+
|
|
508
|
+
|
|
509
|
+
class CustomerResourceFragment(BaseModel):
|
|
510
|
+
resource_id: str = Field(alias="resourceId")
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
class TotalPriceFragment(BaseModel):
|
|
514
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
515
|
+
total: "TotalPriceFragmentTotal"
|
|
516
|
+
|
|
517
|
+
|
|
518
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
519
|
+
amount: float
|
|
520
|
+
currency: Currency
|
|
521
|
+
|
|
522
|
+
|
|
523
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
524
|
+
amount: float
|
|
525
|
+
currency: Currency
|
|
526
|
+
|
|
527
|
+
|
|
372
528
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
373
529
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
374
530
|
alias="subscriptionScheduleType"
|
|
@@ -562,162 +718,6 @@ class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
|
562
718
|
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
563
719
|
|
|
564
720
|
|
|
565
|
-
class TotalPriceFragment(BaseModel):
|
|
566
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
567
|
-
total: "TotalPriceFragmentTotal"
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
571
|
-
amount: float
|
|
572
|
-
currency: Currency
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
576
|
-
amount: float
|
|
577
|
-
currency: Currency
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
class CustomerResourceFragment(BaseModel):
|
|
581
|
-
resource_id: str = Field(alias="resourceId")
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
class SlimCustomerFragment(BaseModel):
|
|
585
|
-
id: str
|
|
586
|
-
name: Optional[str] = Field(default=None)
|
|
587
|
-
email: Optional[str] = Field(default=None)
|
|
588
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
589
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
590
|
-
ref_id: str = Field(alias="refId")
|
|
591
|
-
customer_id: str = Field(alias="customerId")
|
|
592
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
593
|
-
additional_meta_data: Optional[Any] = Field(
|
|
594
|
-
alias="additionalMetaData", default=None
|
|
595
|
-
)
|
|
596
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
597
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
598
|
-
)
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
class ProductFragment(BaseModel):
|
|
602
|
-
ref_id: str = Field(alias="refId")
|
|
603
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
604
|
-
description: Optional[str] = Field(default=None)
|
|
605
|
-
additional_meta_data: Optional[Any] = Field(
|
|
606
|
-
alias="additionalMetaData", default=None
|
|
607
|
-
)
|
|
608
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
612
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
613
|
-
alias="downgradePlan", default=None
|
|
614
|
-
)
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
618
|
-
ref_id: str = Field(alias="refId")
|
|
619
|
-
display_name: str = Field(alias="displayName")
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
623
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
624
|
-
display_name: str = Field(alias="displayName")
|
|
625
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
626
|
-
default=None
|
|
627
|
-
)
|
|
628
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
632
|
-
pass
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
636
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
637
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
class PlanFragment(BaseModel):
|
|
641
|
-
id: str
|
|
642
|
-
ref_id: str = Field(alias="refId")
|
|
643
|
-
display_name: str = Field(alias="displayName")
|
|
644
|
-
description: Optional[str] = Field(default=None)
|
|
645
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
646
|
-
version_number: int = Field(alias="versionNumber")
|
|
647
|
-
additional_meta_data: Optional[Any] = Field(
|
|
648
|
-
alias="additionalMetaData", default=None
|
|
649
|
-
)
|
|
650
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
651
|
-
alias="hiddenFromWidgets", default=None
|
|
652
|
-
)
|
|
653
|
-
product: "PlanFragmentProduct"
|
|
654
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
655
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
656
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
657
|
-
alias="inheritedEntitlements", default=None
|
|
658
|
-
)
|
|
659
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
660
|
-
alias="compatibleAddons", default=None
|
|
661
|
-
)
|
|
662
|
-
compatible_package_groups: Optional[
|
|
663
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
664
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
665
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
666
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
667
|
-
alias="overagePrices", default=None
|
|
668
|
-
)
|
|
669
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
670
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
671
|
-
alias="defaultTrialConfig", default=None
|
|
672
|
-
)
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
class PlanFragmentProduct(ProductFragment):
|
|
676
|
-
pass
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
680
|
-
ref_id: str = Field(alias="refId")
|
|
681
|
-
display_name: str = Field(alias="displayName")
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
685
|
-
pass
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
689
|
-
pass
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
693
|
-
pass
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
697
|
-
pass
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
class PlanFragmentPrices(PriceFragment):
|
|
701
|
-
pass
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
705
|
-
pass
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
709
|
-
duration: float
|
|
710
|
-
units: TrialPeriodUnits
|
|
711
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
712
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
713
|
-
alias="trialEndBehavior", default=None
|
|
714
|
-
)
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
718
|
-
limit: float
|
|
719
|
-
|
|
720
|
-
|
|
721
721
|
class SubscriptionFragment(BaseModel):
|
|
722
722
|
id: str
|
|
723
723
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -987,35 +987,6 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
987
987
|
)
|
|
988
988
|
|
|
989
989
|
|
|
990
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
991
|
-
status: PromotionalEntitlementStatus
|
|
992
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
993
|
-
feature_id: str = Field(alias="featureId")
|
|
994
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
995
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
996
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
997
|
-
alias="resetPeriod", default=None
|
|
998
|
-
)
|
|
999
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1000
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1001
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1005
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1006
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1007
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1008
|
-
feature_units_plural: Optional[str] = Field(
|
|
1009
|
-
alias="featureUnitsPlural", default=None
|
|
1010
|
-
)
|
|
1011
|
-
display_name: str = Field(alias="displayName")
|
|
1012
|
-
description: Optional[str] = Field(default=None)
|
|
1013
|
-
ref_id: str = Field(alias="refId")
|
|
1014
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1015
|
-
alias="additionalMetaData", default=None
|
|
1016
|
-
)
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
990
|
class CouponFragment(BaseModel):
|
|
1020
991
|
id: str
|
|
1021
992
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1050,6 +1021,35 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1050
1021
|
status: SyncStatus
|
|
1051
1022
|
|
|
1052
1023
|
|
|
1024
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
1025
|
+
status: PromotionalEntitlementStatus
|
|
1026
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1027
|
+
feature_id: str = Field(alias="featureId")
|
|
1028
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1029
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1030
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1031
|
+
alias="resetPeriod", default=None
|
|
1032
|
+
)
|
|
1033
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1034
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1035
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1036
|
+
|
|
1037
|
+
|
|
1038
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1039
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1040
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1041
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1042
|
+
feature_units_plural: Optional[str] = Field(
|
|
1043
|
+
alias="featureUnitsPlural", default=None
|
|
1044
|
+
)
|
|
1045
|
+
display_name: str = Field(alias="displayName")
|
|
1046
|
+
description: Optional[str] = Field(default=None)
|
|
1047
|
+
ref_id: str = Field(alias="refId")
|
|
1048
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1049
|
+
alias="additionalMetaData", default=None
|
|
1050
|
+
)
|
|
1051
|
+
|
|
1052
|
+
|
|
1053
1053
|
class CustomerFragment(SlimCustomerFragment):
|
|
1054
1054
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1055
1055
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1419,13 +1419,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1419
1419
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1420
1420
|
|
|
1421
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
1422
|
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1430
1423
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1431
1424
|
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
@@ -1453,6 +1446,13 @@ class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
|
1453
1446
|
)
|
|
1454
1447
|
|
|
1455
1448
|
|
|
1449
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1450
|
+
addon_id: str = Field(alias="addonId")
|
|
1451
|
+
description: Optional[str] = Field(default=None)
|
|
1452
|
+
display_name: str = Field(alias="displayName")
|
|
1453
|
+
quantity: int
|
|
1454
|
+
|
|
1455
|
+
|
|
1456
1456
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1457
1457
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1458
1458
|
plan_id: str = Field(alias="planId")
|
|
@@ -2763,21 +2763,21 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2763
2763
|
|
|
2764
2764
|
|
|
2765
2765
|
AddonDependencyFragment.model_rebuild()
|
|
2766
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2766
2767
|
PriceTierFragment.model_rebuild()
|
|
2767
|
-
PriceFragment.model_rebuild()
|
|
2768
2768
|
OveragePriceFragment.model_rebuild()
|
|
2769
|
-
|
|
2769
|
+
PriceFragment.model_rebuild()
|
|
2770
2770
|
AddonFragment.model_rebuild()
|
|
2771
2771
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2772
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2773
|
+
ProductFragment.model_rebuild()
|
|
2774
|
+
PlanFragment.model_rebuild()
|
|
2775
|
+
SlimCustomerFragment.model_rebuild()
|
|
2776
|
+
CustomerResourceFragment.model_rebuild()
|
|
2777
|
+
TotalPriceFragment.model_rebuild()
|
|
2772
2778
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2773
2779
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2774
2780
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2775
|
-
TotalPriceFragment.model_rebuild()
|
|
2776
|
-
CustomerResourceFragment.model_rebuild()
|
|
2777
|
-
SlimCustomerFragment.model_rebuild()
|
|
2778
|
-
ProductFragment.model_rebuild()
|
|
2779
|
-
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2780
|
-
PlanFragment.model_rebuild()
|
|
2781
2781
|
SubscriptionFragment.model_rebuild()
|
|
2782
2782
|
FeatureFragment.model_rebuild()
|
|
2783
2783
|
EntitlementFragment.model_rebuild()
|
|
@@ -2785,16 +2785,16 @@ ApplySubscriptionFragment.model_rebuild()
|
|
|
2785
2785
|
FontVariantFragment.model_rebuild()
|
|
2786
2786
|
TypographyConfigurationFragment.model_rebuild()
|
|
2787
2787
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2788
|
-
PromotionalEntitlementFragment.model_rebuild()
|
|
2789
2788
|
CouponFragment.model_rebuild()
|
|
2789
|
+
PromotionalEntitlementFragment.model_rebuild()
|
|
2790
2790
|
CustomerFragment.model_rebuild()
|
|
2791
2791
|
CheckoutStateFragment.model_rebuild()
|
|
2792
2792
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2793
2793
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2794
2794
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2795
2795
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2796
|
-
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2797
2796
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2797
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2798
2798
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2799
2799
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2800
2800
|
CustomerPortalFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -174,6 +174,11 @@ class AddonSort(BaseModel):
|
|
|
174
174
|
nulls: Optional[SortNulls] = None
|
|
175
175
|
|
|
176
176
|
|
|
177
|
+
class AddonUnArchiveInput(BaseModel):
|
|
178
|
+
environment_id: Optional[str] = Field(alias="environmentId", default=None)
|
|
179
|
+
id: str
|
|
180
|
+
|
|
181
|
+
|
|
177
182
|
class AddonUpdateInput(BaseModel):
|
|
178
183
|
additional_meta_data: Optional[Any] = Field(
|
|
179
184
|
alias="additionalMetaData", default=None
|
|
@@ -305,6 +310,7 @@ class ArchivePlanInput(BaseModel):
|
|
|
305
310
|
class AttachCustomerPaymentMethodInput(BaseModel):
|
|
306
311
|
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
307
312
|
environment_id: Optional[str] = Field(alias="environmentId", default=None)
|
|
313
|
+
integration_id: Optional[str] = Field(alias="integrationId", default=None)
|
|
308
314
|
payment_method_id: str = Field(alias="paymentMethodId")
|
|
309
315
|
ref_id: Optional[str] = Field(alias="refId", default=None)
|
|
310
316
|
vendor_identifier: VendorIdentifier = Field(alias="vendorIdentifier")
|
|
@@ -766,6 +772,7 @@ class CustomerBillingInfo(BaseModel):
|
|
|
766
772
|
billing_address: Optional["Address"] = Field(alias="billingAddress", default=None)
|
|
767
773
|
currency: Optional[Currency] = None
|
|
768
774
|
customer_name: Optional[str] = Field(alias="customerName", default=None)
|
|
775
|
+
integration_id: Optional[str] = Field(alias="integrationId", default=None)
|
|
769
776
|
invoice_custom_fields: Optional[Any] = Field(
|
|
770
777
|
alias="invoiceCustomFields", default=None
|
|
771
778
|
)
|
|
@@ -2037,6 +2044,7 @@ class ImportSubscriptionsBulkInput(BaseModel):
|
|
|
2037
2044
|
class InitAddStripeCustomerPaymentMethodInput(BaseModel):
|
|
2038
2045
|
customer_ref_id: str = Field(alias="customerRefId")
|
|
2039
2046
|
environment_id: Optional[str] = Field(alias="environmentId", default=None)
|
|
2047
|
+
integration_id: Optional[str] = Field(alias="integrationId", default=None)
|
|
2040
2048
|
|
|
2041
2049
|
|
|
2042
2050
|
class IntFieldComparison(BaseModel):
|
|
@@ -2773,6 +2781,7 @@ class PlanUpdateInput(BaseModel):
|
|
|
2773
2781
|
class PreparePaymentMethodFormInput(BaseModel):
|
|
2774
2782
|
customer_id: str = Field(alias="customerId")
|
|
2775
2783
|
environment_id: Optional[str] = Field(alias="environmentId", default=None)
|
|
2784
|
+
integration_id: Optional[str] = Field(alias="integrationId", default=None)
|
|
2776
2785
|
|
|
2777
2786
|
|
|
2778
2787
|
class PreviewNextInvoiceInput(BaseModel):
|
|
@@ -4221,6 +4230,16 @@ class TypographyConfigurationInput(BaseModel):
|
|
|
4221
4230
|
h_3: Optional["FontVariantInput"] = Field(alias="h3", default=None)
|
|
4222
4231
|
|
|
4223
4232
|
|
|
4233
|
+
class UnArchiveFeatureInput(BaseModel):
|
|
4234
|
+
environment_id: Optional[str] = Field(alias="environmentId", default=None)
|
|
4235
|
+
id: str
|
|
4236
|
+
|
|
4237
|
+
|
|
4238
|
+
class UnArchivePlanInput(BaseModel):
|
|
4239
|
+
environment_id: Optional[str] = Field(alias="environmentId", default=None)
|
|
4240
|
+
id: str
|
|
4241
|
+
|
|
4242
|
+
|
|
4224
4243
|
class UnarchiveCustomerInput(BaseModel):
|
|
4225
4244
|
customer_id: str = Field(alias="customerId")
|
|
4226
4245
|
environment_id: Optional[str] = Field(alias="environmentId", default=None)
|
|
@@ -106,7 +106,7 @@ stigg/_vendors/pydantic-2.6.4.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCe
|
|
|
106
106
|
stigg/_vendors/pydantic-2.6.4.dist-info/WHEEL,sha256=TJPnKdtrSue7xZ_AVGkp9YXcvDrobsjBds1du3Nx6dc,87
|
|
107
107
|
stigg/_vendors/pydantic-2.6.4.dist-info/licenses/LICENSE,sha256=qeGG88oWte74QxjnpwFyE1GgDLe4rjpDlLZ7SeNSnvM,1129
|
|
108
108
|
stigg/client.py,sha256=RWrVnxo9zHFXka8KJVE4sMgyek70ispQk0vqOINCvM0,8335
|
|
109
|
-
stigg/generated/__init__.py,sha256=
|
|
109
|
+
stigg/generated/__init__.py,sha256=b51t6c7Q-cJDVvDByMLaRsDXEkokvItn4MpH2mVx93Y,69232
|
|
110
110
|
stigg/generated/apply_subscription.py,sha256=Vbs-QZZxN16pUpt3Hp7Jvvcc5o_8xwJK9oTLQQjH0ZA,451
|
|
111
111
|
stigg/generated/archive_customer.py,sha256=3N3iBiT2Vvzfb0ckV3o57A6lmJ_ef7JNPaMX_Jtcg6c,396
|
|
112
112
|
stigg/generated/async_base_client.py,sha256=zqd6IhYxpalyA6KQkeGhXgSurC0vXSwSWmSlM2zZ0VM,12593
|
|
@@ -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=VM4Z02Kt1Ze6ViqGGxFWUMtThUiSnIfrg9hG9Y4_hoU,34610
|
|
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=LSWNPYGxN_vY0ZgSsro_wM1d88NY35qEGhs4g9ffRRE,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
|
|
@@ -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=aEjkX2dGtdW4x4zlwsEX_suIRT2uUsiiXkAs9RawvPM,192213
|
|
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.324.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.324.0.dist-info/METADATA,sha256=fxVnWt522pRRS5t5cQNOVXWBI24EKYbsMqXGiFMl-BA,2258
|
|
165
|
+
stigg_api_client_v2-2.324.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.324.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|