stigg-api-client-v2 2.464.0__py3-none-any.whl → 2.467.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 +331 -331
- {stigg_api_client_v2-2.464.0.dist-info → stigg_api_client_v2-2.467.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.464.0.dist-info → stigg_api_client_v2-2.467.0.dist-info}/RECORD +5 -5
- {stigg_api_client_v2-2.464.0.dist-info → stigg_api_client_v2-2.467.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.464.0.dist-info → stigg_api_client_v2-2.467.0.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -80,6 +80,42 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
80
80
|
currency: Currency
|
|
81
81
|
|
|
82
82
|
|
|
83
|
+
class PriceFragment(BaseModel):
|
|
84
|
+
billing_model: BillingModel = Field(alias="billingModel")
|
|
85
|
+
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
86
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
87
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
88
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
89
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
90
|
+
billing_country_code: Optional[str] = Field(
|
|
91
|
+
alias="billingCountryCode", default=None
|
|
92
|
+
)
|
|
93
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
94
|
+
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
95
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
96
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
97
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
class PriceFragmentPrice(BaseModel):
|
|
101
|
+
amount: float
|
|
102
|
+
currency: Currency
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
106
|
+
pass
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
class PriceFragmentFeature(BaseModel):
|
|
110
|
+
ref_id: str = Field(alias="refId")
|
|
111
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
112
|
+
feature_units_plural: Optional[str] = Field(
|
|
113
|
+
alias="featureUnitsPlural", default=None
|
|
114
|
+
)
|
|
115
|
+
display_name: str = Field(alias="displayName")
|
|
116
|
+
description: Optional[str] = Field(default=None)
|
|
117
|
+
|
|
118
|
+
|
|
83
119
|
class OveragePriceFragment(BaseModel):
|
|
84
120
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
85
121
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -145,42 +181,6 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
145
181
|
)
|
|
146
182
|
|
|
147
183
|
|
|
148
|
-
class PriceFragment(BaseModel):
|
|
149
|
-
billing_model: BillingModel = Field(alias="billingModel")
|
|
150
|
-
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
151
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
152
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
153
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
154
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
155
|
-
billing_country_code: Optional[str] = Field(
|
|
156
|
-
alias="billingCountryCode", default=None
|
|
157
|
-
)
|
|
158
|
-
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
159
|
-
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
160
|
-
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
161
|
-
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
162
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
class PriceFragmentPrice(BaseModel):
|
|
166
|
-
amount: float
|
|
167
|
-
currency: Currency
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
class PriceFragmentTiers(PriceTierFragment):
|
|
171
|
-
pass
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
class PriceFragmentFeature(BaseModel):
|
|
175
|
-
ref_id: str = Field(alias="refId")
|
|
176
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
177
|
-
feature_units_plural: Optional[str] = Field(
|
|
178
|
-
alias="featureUnitsPlural", default=None
|
|
179
|
-
)
|
|
180
|
-
display_name: str = Field(alias="displayName")
|
|
181
|
-
description: Optional[str] = Field(default=None)
|
|
182
|
-
|
|
183
|
-
|
|
184
184
|
class AddonFragment(BaseModel):
|
|
185
185
|
id: str
|
|
186
186
|
ref_id: str = Field(alias="refId")
|
|
@@ -219,139 +219,145 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
219
219
|
pass
|
|
220
220
|
|
|
221
221
|
|
|
222
|
-
class
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
alias="featureUnitsPlural", default=None
|
|
229
|
-
)
|
|
230
|
-
description: Optional[str] = Field(default=None)
|
|
231
|
-
display_name: str = Field(alias="displayName")
|
|
222
|
+
class SlimCustomerFragment(BaseModel):
|
|
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")
|
|
232
228
|
ref_id: str = Field(alias="refId")
|
|
233
|
-
|
|
234
|
-
|
|
229
|
+
customer_id: str = Field(alias="customerId")
|
|
230
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
231
|
+
additional_meta_data: Optional[Any] = Field(
|
|
232
|
+
alias="additionalMetaData", default=None
|
|
233
|
+
)
|
|
234
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
235
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
235
236
|
)
|
|
236
237
|
|
|
237
238
|
|
|
238
|
-
class
|
|
239
|
-
|
|
240
|
-
round: UnitTransformationRound
|
|
239
|
+
class CustomerResourceFragment(BaseModel):
|
|
240
|
+
resource_id: str = Field(alias="resourceId")
|
|
241
241
|
|
|
242
242
|
|
|
243
|
-
class
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
)
|
|
249
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
250
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
251
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
252
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
253
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
254
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
255
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
256
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
257
|
-
alias="entitlementUpdatedAt", default=None
|
|
258
|
-
)
|
|
259
|
-
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
260
|
-
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
261
|
-
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
262
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
263
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
264
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
265
|
-
alias="resetPeriod", default=None
|
|
243
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
244
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
245
|
+
display_name: str = Field(alias="displayName")
|
|
246
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
247
|
+
default=None
|
|
266
248
|
)
|
|
267
|
-
|
|
268
|
-
Annotated[
|
|
269
|
-
Union[
|
|
270
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
271
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
272
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
273
|
-
],
|
|
274
|
-
Field(discriminator="typename__"),
|
|
275
|
-
]
|
|
276
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
277
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
249
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
278
250
|
|
|
279
251
|
|
|
280
|
-
class
|
|
281
|
-
|
|
282
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
283
|
-
alias="monthlyAccordingTo", default=None
|
|
284
|
-
)
|
|
252
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
253
|
+
pass
|
|
285
254
|
|
|
286
255
|
|
|
287
|
-
class
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
alias="weeklyAccordingTo", default=None
|
|
291
|
-
)
|
|
256
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
257
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
258
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
292
259
|
|
|
293
260
|
|
|
294
|
-
class
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
261
|
+
class ProductFragment(BaseModel):
|
|
262
|
+
ref_id: str = Field(alias="refId")
|
|
263
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
264
|
+
description: Optional[str] = Field(default=None)
|
|
265
|
+
additional_meta_data: Optional[Any] = Field(
|
|
266
|
+
alias="additionalMetaData", default=None
|
|
298
267
|
)
|
|
268
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
299
269
|
|
|
300
270
|
|
|
301
|
-
class
|
|
302
|
-
|
|
271
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
272
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
273
|
+
alias="downgradePlan", default=None
|
|
274
|
+
)
|
|
303
275
|
|
|
304
276
|
|
|
305
|
-
class
|
|
306
|
-
|
|
277
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
278
|
+
ref_id: str = Field(alias="refId")
|
|
279
|
+
display_name: str = Field(alias="displayName")
|
|
307
280
|
|
|
308
281
|
|
|
309
|
-
class
|
|
282
|
+
class PlanFragment(BaseModel):
|
|
310
283
|
id: str
|
|
311
|
-
name: Optional[str] = Field(default=None)
|
|
312
|
-
email: Optional[str] = Field(default=None)
|
|
313
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
314
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
315
284
|
ref_id: str = Field(alias="refId")
|
|
316
|
-
|
|
285
|
+
display_name: str = Field(alias="displayName")
|
|
286
|
+
description: Optional[str] = Field(default=None)
|
|
317
287
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
288
|
+
version_number: int = Field(alias="versionNumber")
|
|
318
289
|
additional_meta_data: Optional[Any] = Field(
|
|
319
290
|
alias="additionalMetaData", default=None
|
|
320
291
|
)
|
|
321
|
-
|
|
322
|
-
alias="
|
|
292
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
293
|
+
alias="hiddenFromWidgets", default=None
|
|
294
|
+
)
|
|
295
|
+
product: "PlanFragmentProduct"
|
|
296
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
297
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
298
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
299
|
+
alias="inheritedEntitlements", default=None
|
|
300
|
+
)
|
|
301
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
302
|
+
alias="compatibleAddons", default=None
|
|
303
|
+
)
|
|
304
|
+
compatible_package_groups: Optional[
|
|
305
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
306
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
307
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
308
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
309
|
+
alias="overagePrices", default=None
|
|
310
|
+
)
|
|
311
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
312
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
313
|
+
alias="defaultTrialConfig", default=None
|
|
323
314
|
)
|
|
324
315
|
|
|
325
316
|
|
|
326
|
-
class
|
|
327
|
-
|
|
317
|
+
class PlanFragmentProduct(ProductFragment):
|
|
318
|
+
pass
|
|
328
319
|
|
|
329
320
|
|
|
330
|
-
class
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
321
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
322
|
+
ref_id: str = Field(alias="refId")
|
|
323
|
+
display_name: str = Field(alias="displayName")
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
327
|
+
pass
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
331
|
+
pass
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
335
|
+
pass
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
339
|
+
pass
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
class PlanFragmentPrices(PriceFragment):
|
|
343
|
+
pass
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
347
|
+
pass
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
351
|
+
duration: float
|
|
352
|
+
units: TrialPeriodUnits
|
|
353
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
354
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
355
|
+
alias="trialEndBehavior", default=None
|
|
351
356
|
)
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
360
|
+
limit: float
|
|
355
361
|
|
|
356
362
|
|
|
357
363
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
@@ -636,173 +642,84 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel
|
|
|
636
642
|
] = Field(alias="priceOverrides", default=None)
|
|
637
643
|
|
|
638
644
|
|
|
639
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
640
|
-
BaseModel
|
|
641
|
-
):
|
|
642
|
-
feature_id: str = Field(alias="featureId")
|
|
643
|
-
quantity: float
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
647
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
648
|
-
quantity: float
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
652
|
-
BaseModel
|
|
653
|
-
):
|
|
654
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
655
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
656
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
660
|
-
BaseModel
|
|
661
|
-
):
|
|
662
|
-
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
663
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
664
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
668
|
-
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
669
|
-
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
670
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
class TotalPriceFragment(BaseModel):
|
|
674
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
675
|
-
total: "TotalPriceFragmentTotal"
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
679
|
-
amount: float
|
|
680
|
-
currency: Currency
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
684
|
-
amount: float
|
|
685
|
-
currency: Currency
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
689
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
690
|
-
display_name: str = Field(alias="displayName")
|
|
691
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
692
|
-
default=None
|
|
693
|
-
)
|
|
694
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
698
|
-
pass
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
702
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
703
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
class ProductFragment(BaseModel):
|
|
707
|
-
ref_id: str = Field(alias="refId")
|
|
708
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
709
|
-
description: Optional[str] = Field(default=None)
|
|
710
|
-
additional_meta_data: Optional[Any] = Field(
|
|
711
|
-
alias="additionalMetaData", default=None
|
|
712
|
-
)
|
|
713
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
717
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
718
|
-
alias="downgradePlan", default=None
|
|
719
|
-
)
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
723
|
-
ref_id: str = Field(alias="refId")
|
|
724
|
-
display_name: str = Field(alias="displayName")
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
class PlanFragment(BaseModel):
|
|
728
|
-
id: str
|
|
729
|
-
ref_id: str = Field(alias="refId")
|
|
730
|
-
display_name: str = Field(alias="displayName")
|
|
731
|
-
description: Optional[str] = Field(default=None)
|
|
732
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
733
|
-
version_number: int = Field(alias="versionNumber")
|
|
734
|
-
additional_meta_data: Optional[Any] = Field(
|
|
735
|
-
alias="additionalMetaData", default=None
|
|
736
|
-
)
|
|
737
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
738
|
-
alias="hiddenFromWidgets", default=None
|
|
739
|
-
)
|
|
740
|
-
product: "PlanFragmentProduct"
|
|
741
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
742
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
743
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
744
|
-
alias="inheritedEntitlements", default=None
|
|
745
|
-
)
|
|
746
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
747
|
-
alias="compatibleAddons", default=None
|
|
748
|
-
)
|
|
749
|
-
compatible_package_groups: Optional[
|
|
750
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
751
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
752
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
753
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
754
|
-
alias="overagePrices", default=None
|
|
755
|
-
)
|
|
756
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
757
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
758
|
-
alias="defaultTrialConfig", default=None
|
|
759
|
-
)
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
class PlanFragmentProduct(ProductFragment):
|
|
763
|
-
pass
|
|
764
|
-
|
|
645
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
646
|
+
BaseModel
|
|
647
|
+
):
|
|
648
|
+
feature_id: str = Field(alias="featureId")
|
|
649
|
+
quantity: float
|
|
765
650
|
|
|
766
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
767
|
-
ref_id: str = Field(alias="refId")
|
|
768
|
-
display_name: str = Field(alias="displayName")
|
|
769
651
|
|
|
652
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
653
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
654
|
+
quantity: float
|
|
770
655
|
|
|
771
|
-
|
|
772
|
-
|
|
656
|
+
|
|
657
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
658
|
+
BaseModel
|
|
659
|
+
):
|
|
660
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
661
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
662
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
773
663
|
|
|
774
664
|
|
|
775
|
-
class
|
|
776
|
-
|
|
665
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
666
|
+
BaseModel
|
|
667
|
+
):
|
|
668
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
669
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
670
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
777
671
|
|
|
778
672
|
|
|
779
|
-
class
|
|
780
|
-
|
|
673
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
674
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
675
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
676
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
781
677
|
|
|
782
678
|
|
|
783
|
-
class
|
|
784
|
-
|
|
679
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
680
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
785
681
|
|
|
786
682
|
|
|
787
|
-
class
|
|
788
|
-
|
|
683
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
684
|
+
billing_id: str = Field(alias="billingId")
|
|
685
|
+
status: SubscriptionInvoiceStatus
|
|
686
|
+
created_at: Any = Field(alias="createdAt")
|
|
687
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
688
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
689
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
690
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
691
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
692
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
693
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
694
|
+
alias="billingReason", default=None
|
|
695
|
+
)
|
|
696
|
+
currency: Optional[str] = Field(default=None)
|
|
697
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
698
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
699
|
+
alias="subTotalExcludingTax", default=None
|
|
700
|
+
)
|
|
701
|
+
total: Optional[float] = Field(default=None)
|
|
702
|
+
total_excluding_tax: Optional[float] = Field(
|
|
703
|
+
alias="totalExcludingTax", default=None
|
|
704
|
+
)
|
|
705
|
+
tax: Optional[float] = Field(default=None)
|
|
706
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
707
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
789
708
|
|
|
790
709
|
|
|
791
|
-
class
|
|
792
|
-
|
|
710
|
+
class TotalPriceFragment(BaseModel):
|
|
711
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
712
|
+
total: "TotalPriceFragmentTotal"
|
|
793
713
|
|
|
794
714
|
|
|
795
|
-
class
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
799
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
800
|
-
alias="trialEndBehavior", default=None
|
|
801
|
-
)
|
|
715
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
716
|
+
amount: float
|
|
717
|
+
currency: Currency
|
|
802
718
|
|
|
803
719
|
|
|
804
|
-
class
|
|
805
|
-
|
|
720
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
721
|
+
amount: float
|
|
722
|
+
currency: Currency
|
|
806
723
|
|
|
807
724
|
|
|
808
725
|
class SubscriptionFragment(BaseModel):
|
|
@@ -914,6 +831,89 @@ class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragm
|
|
|
914
831
|
pass
|
|
915
832
|
|
|
916
833
|
|
|
834
|
+
class FeatureFragment(BaseModel):
|
|
835
|
+
typename__: str = Field(alias="__typename")
|
|
836
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
837
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
838
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
839
|
+
feature_units_plural: Optional[str] = Field(
|
|
840
|
+
alias="featureUnitsPlural", default=None
|
|
841
|
+
)
|
|
842
|
+
description: Optional[str] = Field(default=None)
|
|
843
|
+
display_name: str = Field(alias="displayName")
|
|
844
|
+
ref_id: str = Field(alias="refId")
|
|
845
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
846
|
+
alias="unitTransformation", default=None
|
|
847
|
+
)
|
|
848
|
+
|
|
849
|
+
|
|
850
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
851
|
+
divide: float
|
|
852
|
+
round: UnitTransformationRound
|
|
853
|
+
|
|
854
|
+
|
|
855
|
+
class EntitlementFragment(BaseModel):
|
|
856
|
+
typename__: str = Field(alias="__typename")
|
|
857
|
+
is_granted: bool = Field(alias="isGranted")
|
|
858
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
859
|
+
alias="accessDeniedReason", default=None
|
|
860
|
+
)
|
|
861
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
862
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
863
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
864
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
865
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
866
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
867
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
868
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
869
|
+
alias="entitlementUpdatedAt", default=None
|
|
870
|
+
)
|
|
871
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
872
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
873
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
874
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
875
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
876
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
877
|
+
alias="resetPeriod", default=None
|
|
878
|
+
)
|
|
879
|
+
reset_period_configuration: Optional[
|
|
880
|
+
Annotated[
|
|
881
|
+
Union[
|
|
882
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
883
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
884
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
885
|
+
],
|
|
886
|
+
Field(discriminator="typename__"),
|
|
887
|
+
]
|
|
888
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
889
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
890
|
+
|
|
891
|
+
|
|
892
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
893
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
894
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
895
|
+
alias="monthlyAccordingTo", default=None
|
|
896
|
+
)
|
|
897
|
+
|
|
898
|
+
|
|
899
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
900
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
901
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
902
|
+
alias="weeklyAccordingTo", default=None
|
|
903
|
+
)
|
|
904
|
+
|
|
905
|
+
|
|
906
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
907
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
908
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
909
|
+
alias="yearlyAccordingTo", default=None
|
|
910
|
+
)
|
|
911
|
+
|
|
912
|
+
|
|
913
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
914
|
+
pass
|
|
915
|
+
|
|
916
|
+
|
|
917
917
|
class ApplySubscriptionFragment(BaseModel):
|
|
918
918
|
subscription: Optional["ApplySubscriptionFragmentSubscription"] = Field(
|
|
919
919
|
default=None
|
|
@@ -1260,6 +1260,40 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1260
1260
|
pass
|
|
1261
1261
|
|
|
1262
1262
|
|
|
1263
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1264
|
+
addon_id: str = Field(alias="addonId")
|
|
1265
|
+
description: Optional[str] = Field(default=None)
|
|
1266
|
+
display_name: str = Field(alias="displayName")
|
|
1267
|
+
quantity: int
|
|
1268
|
+
|
|
1269
|
+
|
|
1270
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1271
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1272
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1273
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1274
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1275
|
+
default=None
|
|
1276
|
+
)
|
|
1277
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1278
|
+
default=None
|
|
1279
|
+
)
|
|
1280
|
+
|
|
1281
|
+
|
|
1282
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1283
|
+
amount: float
|
|
1284
|
+
currency: Currency
|
|
1285
|
+
|
|
1286
|
+
|
|
1287
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1288
|
+
id: str
|
|
1289
|
+
ref_id: str = Field(alias="refId")
|
|
1290
|
+
display_name: str = Field(alias="displayName")
|
|
1291
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1292
|
+
feature_units_plural: Optional[str] = Field(
|
|
1293
|
+
alias="featureUnitsPlural", default=None
|
|
1294
|
+
)
|
|
1295
|
+
|
|
1296
|
+
|
|
1263
1297
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1264
1298
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1265
1299
|
alias="subscriptionScheduleType"
|
|
@@ -1429,40 +1463,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1429
1463
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1430
1464
|
|
|
1431
1465
|
|
|
1432
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1433
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1434
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1435
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1436
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1437
|
-
default=None
|
|
1438
|
-
)
|
|
1439
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1440
|
-
default=None
|
|
1441
|
-
)
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1445
|
-
amount: float
|
|
1446
|
-
currency: Currency
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1450
|
-
id: str
|
|
1451
|
-
ref_id: str = Field(alias="refId")
|
|
1452
|
-
display_name: str = Field(alias="displayName")
|
|
1453
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1454
|
-
feature_units_plural: Optional[str] = Field(
|
|
1455
|
-
alias="featureUnitsPlural", default=None
|
|
1456
|
-
)
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1460
|
-
addon_id: str = Field(alias="addonId")
|
|
1461
|
-
description: Optional[str] = Field(default=None)
|
|
1462
|
-
display_name: str = Field(alias="displayName")
|
|
1463
|
-
quantity: int
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
1466
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1467
1467
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1468
1468
|
plan_id: str = Field(alias="planId")
|
|
@@ -2835,23 +2835,23 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2835
2835
|
|
|
2836
2836
|
AddonDependencyFragment.model_rebuild()
|
|
2837
2837
|
PriceTierFragment.model_rebuild()
|
|
2838
|
+
PriceFragment.model_rebuild()
|
|
2838
2839
|
OveragePriceFragment.model_rebuild()
|
|
2839
2840
|
PackageEntitlementFragment.model_rebuild()
|
|
2840
|
-
PriceFragment.model_rebuild()
|
|
2841
2841
|
AddonFragment.model_rebuild()
|
|
2842
|
-
FeatureFragment.model_rebuild()
|
|
2843
|
-
EntitlementFragment.model_rebuild()
|
|
2844
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2845
2842
|
SlimCustomerFragment.model_rebuild()
|
|
2846
2843
|
CustomerResourceFragment.model_rebuild()
|
|
2847
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2848
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2849
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2850
|
-
TotalPriceFragment.model_rebuild()
|
|
2851
2844
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2852
2845
|
ProductFragment.model_rebuild()
|
|
2853
2846
|
PlanFragment.model_rebuild()
|
|
2847
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2848
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2849
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2850
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2851
|
+
TotalPriceFragment.model_rebuild()
|
|
2854
2852
|
SubscriptionFragment.model_rebuild()
|
|
2853
|
+
FeatureFragment.model_rebuild()
|
|
2854
|
+
EntitlementFragment.model_rebuild()
|
|
2855
2855
|
ApplySubscriptionFragment.model_rebuild()
|
|
2856
2856
|
FontVariantFragment.model_rebuild()
|
|
2857
2857
|
TypographyConfigurationFragment.model_rebuild()
|
|
@@ -2863,9 +2863,9 @@ CheckoutStateFragment.model_rebuild()
|
|
|
2863
2863
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2864
2864
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2865
2865
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2866
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2867
|
-
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2868
2866
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2867
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2868
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2869
2869
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2870
2870
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2871
2871
|
CustomerPortalFragment.model_rebuild()
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=nBGL2rg4hAGdRjsjvjDlJjPGgBxOCVJnMgM9DfyPrgE,3621
|
|
|
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=Tlx8wXY1OvwsHo1OcTPPN4m2QEkulP-PQceu8p_1khM,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.
|
|
165
|
-
stigg_api_client_v2-2.
|
|
166
|
-
stigg_api_client_v2-2.
|
|
167
|
-
stigg_api_client_v2-2.
|
|
164
|
+
stigg_api_client_v2-2.467.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
165
|
+
stigg_api_client_v2-2.467.0.dist-info/METADATA,sha256=ZbovO2L-qPN00v9wFUofTmQVB3DRrTTLJcIaBjwac8k,2258
|
|
166
|
+
stigg_api_client_v2-2.467.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
167
|
+
stigg_api_client_v2-2.467.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|