stigg-api-client-v2 2.418.0__py3-none-any.whl → 2.419.2__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 +500 -500
- {stigg_api_client_v2-2.418.0.dist-info → stigg_api_client_v2-2.419.2.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.418.0.dist-info → stigg_api_client_v2-2.419.2.dist-info}/RECORD +5 -5
- {stigg_api_client_v2-2.418.0.dist-info → stigg_api_client_v2-2.419.2.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.418.0.dist-info → stigg_api_client_v2-2.419.2.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -113,29 +113,33 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
113
113
|
currency: Currency
|
|
114
114
|
|
|
115
115
|
|
|
116
|
-
class
|
|
116
|
+
class PriceFragment(BaseModel):
|
|
117
117
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
118
118
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
119
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
119
120
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
121
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
122
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
120
123
|
billing_country_code: Optional[str] = Field(
|
|
121
124
|
alias="billingCountryCode", default=None
|
|
122
125
|
)
|
|
123
|
-
price: Optional["
|
|
126
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
124
127
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
125
|
-
tiers: Optional[List["
|
|
126
|
-
feature: Optional["
|
|
128
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
129
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
130
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
127
131
|
|
|
128
132
|
|
|
129
|
-
class
|
|
133
|
+
class PriceFragmentPrice(BaseModel):
|
|
130
134
|
amount: float
|
|
131
135
|
currency: Currency
|
|
132
136
|
|
|
133
137
|
|
|
134
|
-
class
|
|
138
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
135
139
|
pass
|
|
136
140
|
|
|
137
141
|
|
|
138
|
-
class
|
|
142
|
+
class PriceFragmentFeature(BaseModel):
|
|
139
143
|
ref_id: str = Field(alias="refId")
|
|
140
144
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
141
145
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -145,33 +149,29 @@ class OveragePriceFragmentFeature(BaseModel):
|
|
|
145
149
|
description: Optional[str] = Field(default=None)
|
|
146
150
|
|
|
147
151
|
|
|
148
|
-
class
|
|
152
|
+
class OveragePriceFragment(BaseModel):
|
|
149
153
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
150
154
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
151
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
152
155
|
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
156
|
billing_country_code: Optional[str] = Field(
|
|
156
157
|
alias="billingCountryCode", default=None
|
|
157
158
|
)
|
|
158
|
-
price: Optional["
|
|
159
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
159
160
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
160
|
-
tiers: Optional[List["
|
|
161
|
-
feature: Optional["
|
|
162
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
161
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
162
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
163
163
|
|
|
164
164
|
|
|
165
|
-
class
|
|
165
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
166
166
|
amount: float
|
|
167
167
|
currency: Currency
|
|
168
168
|
|
|
169
169
|
|
|
170
|
-
class
|
|
170
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
171
171
|
pass
|
|
172
172
|
|
|
173
173
|
|
|
174
|
-
class
|
|
174
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
175
175
|
ref_id: str = Field(alias="refId")
|
|
176
176
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
177
177
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -216,229 +216,215 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
216
216
|
pass
|
|
217
217
|
|
|
218
218
|
|
|
219
|
-
class
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
email: Optional[str] = Field(default=None)
|
|
227
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
228
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
229
|
-
ref_id: str = Field(alias="refId")
|
|
230
|
-
customer_id: str = Field(alias="customerId")
|
|
231
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
232
|
-
additional_meta_data: Optional[Any] = Field(
|
|
233
|
-
alias="additionalMetaData", default=None
|
|
219
|
+
class FeatureFragment(BaseModel):
|
|
220
|
+
typename__: str = Field(alias="__typename")
|
|
221
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
222
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
223
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
224
|
+
feature_units_plural: Optional[str] = Field(
|
|
225
|
+
alias="featureUnitsPlural", default=None
|
|
234
226
|
)
|
|
235
|
-
|
|
236
|
-
|
|
227
|
+
description: Optional[str] = Field(default=None)
|
|
228
|
+
display_name: str = Field(alias="displayName")
|
|
229
|
+
ref_id: str = Field(alias="refId")
|
|
230
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
231
|
+
alias="unitTransformation", default=None
|
|
237
232
|
)
|
|
238
233
|
|
|
239
234
|
|
|
240
|
-
class
|
|
241
|
-
|
|
242
|
-
|
|
235
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
236
|
+
divide: float
|
|
237
|
+
round: UnitTransformationRound
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
class EntitlementFragment(BaseModel):
|
|
241
|
+
typename__: str = Field(alias="__typename")
|
|
242
|
+
is_granted: bool = Field(alias="isGranted")
|
|
243
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
244
|
+
alias="accessDeniedReason", default=None
|
|
243
245
|
)
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
246
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
247
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
248
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
249
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
250
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
251
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
252
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
253
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
254
|
+
alias="entitlementUpdatedAt", default=None
|
|
248
255
|
)
|
|
249
|
-
|
|
256
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
257
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
258
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
259
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
260
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
261
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
262
|
+
alias="resetPeriod", default=None
|
|
263
|
+
)
|
|
264
|
+
reset_period_configuration: Optional[
|
|
250
265
|
Annotated[
|
|
251
266
|
Union[
|
|
252
|
-
"
|
|
253
|
-
"
|
|
254
|
-
"
|
|
255
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
256
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
257
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
258
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
259
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
267
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
268
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
269
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
260
270
|
],
|
|
261
271
|
Field(discriminator="typename__"),
|
|
262
272
|
]
|
|
263
|
-
] = Field(alias="
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
267
|
-
id: str
|
|
268
|
-
ref_id: str = Field(alias="refId")
|
|
269
|
-
display_name: str = Field(alias="displayName")
|
|
273
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
274
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
270
275
|
|
|
271
276
|
|
|
272
|
-
class
|
|
273
|
-
typename__: Literal["
|
|
274
|
-
|
|
275
|
-
|
|
277
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
278
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
279
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
280
|
+
alias="monthlyAccordingTo", default=None
|
|
281
|
+
)
|
|
276
282
|
|
|
277
283
|
|
|
278
|
-
class
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
284
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
285
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
286
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
287
|
+
alias="weeklyAccordingTo", default=None
|
|
288
|
+
)
|
|
284
289
|
|
|
285
290
|
|
|
286
|
-
class
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
292
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
293
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
294
|
+
alias="yearlyAccordingTo", default=None
|
|
295
|
+
)
|
|
291
296
|
|
|
292
297
|
|
|
293
|
-
class
|
|
294
|
-
|
|
298
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
299
|
+
pass
|
|
295
300
|
|
|
296
301
|
|
|
297
|
-
class
|
|
298
|
-
|
|
299
|
-
):
|
|
300
|
-
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
301
|
-
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
302
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
303
|
-
billable_features: Optional[
|
|
304
|
-
List[
|
|
305
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
306
|
-
]
|
|
307
|
-
] = Field(alias="billableFeatures", default=None)
|
|
308
|
-
addons: Optional[
|
|
309
|
-
List[
|
|
310
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
311
|
-
]
|
|
312
|
-
] = Field(default=None)
|
|
313
|
-
price_overrides: Optional[
|
|
314
|
-
List[
|
|
315
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
316
|
-
]
|
|
317
|
-
] = Field(alias="priceOverrides", default=None)
|
|
302
|
+
class CustomerResourceFragment(BaseModel):
|
|
303
|
+
resource_id: str = Field(alias="resourceId")
|
|
318
304
|
|
|
319
305
|
|
|
320
|
-
class
|
|
321
|
-
|
|
322
|
-
)
|
|
323
|
-
|
|
324
|
-
|
|
306
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
307
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
308
|
+
display_name: str = Field(alias="displayName")
|
|
309
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
310
|
+
default=None
|
|
311
|
+
)
|
|
312
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
325
313
|
|
|
326
314
|
|
|
327
|
-
class
|
|
328
|
-
|
|
329
|
-
):
|
|
330
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
331
|
-
quantity: float
|
|
315
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
316
|
+
pass
|
|
332
317
|
|
|
333
318
|
|
|
334
|
-
class
|
|
335
|
-
|
|
336
|
-
)
|
|
337
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
338
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
339
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
319
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
320
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
321
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
340
322
|
|
|
341
323
|
|
|
342
|
-
class
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
]
|
|
351
|
-
] = Field(alias="billableFeatures", default=None)
|
|
352
|
-
addons: Optional[
|
|
353
|
-
List[
|
|
354
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
355
|
-
]
|
|
356
|
-
] = Field(default=None)
|
|
357
|
-
price_overrides: Optional[
|
|
358
|
-
List[
|
|
359
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
360
|
-
]
|
|
361
|
-
] = Field(alias="priceOverrides", default=None)
|
|
324
|
+
class ProductFragment(BaseModel):
|
|
325
|
+
ref_id: str = Field(alias="refId")
|
|
326
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
327
|
+
description: Optional[str] = Field(default=None)
|
|
328
|
+
additional_meta_data: Optional[Any] = Field(
|
|
329
|
+
alias="additionalMetaData", default=None
|
|
330
|
+
)
|
|
331
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
362
332
|
|
|
363
333
|
|
|
364
|
-
class
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
quantity: float
|
|
334
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
335
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
336
|
+
alias="downgradePlan", default=None
|
|
337
|
+
)
|
|
369
338
|
|
|
370
339
|
|
|
371
|
-
class
|
|
372
|
-
|
|
373
|
-
)
|
|
374
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
375
|
-
quantity: float
|
|
340
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
341
|
+
ref_id: str = Field(alias="refId")
|
|
342
|
+
display_name: str = Field(alias="displayName")
|
|
376
343
|
|
|
377
344
|
|
|
378
|
-
class
|
|
379
|
-
|
|
380
|
-
)
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
345
|
+
class PlanFragment(BaseModel):
|
|
346
|
+
id: str
|
|
347
|
+
ref_id: str = Field(alias="refId")
|
|
348
|
+
display_name: str = Field(alias="displayName")
|
|
349
|
+
description: Optional[str] = Field(default=None)
|
|
350
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
351
|
+
version_number: int = Field(alias="versionNumber")
|
|
352
|
+
additional_meta_data: Optional[Any] = Field(
|
|
353
|
+
alias="additionalMetaData", default=None
|
|
354
|
+
)
|
|
355
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
356
|
+
alias="hiddenFromWidgets", default=None
|
|
357
|
+
)
|
|
358
|
+
product: "PlanFragmentProduct"
|
|
359
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
360
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
361
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
362
|
+
alias="inheritedEntitlements", default=None
|
|
363
|
+
)
|
|
364
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
365
|
+
alias="compatibleAddons", default=None
|
|
366
|
+
)
|
|
367
|
+
compatible_package_groups: Optional[
|
|
368
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
369
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
370
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
371
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
372
|
+
alias="overagePrices", default=None
|
|
373
|
+
)
|
|
374
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
375
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
376
|
+
alias="defaultTrialConfig", default=None
|
|
377
|
+
)
|
|
384
378
|
|
|
385
379
|
|
|
386
|
-
class
|
|
387
|
-
|
|
388
|
-
):
|
|
389
|
-
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
390
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
391
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
380
|
+
class PlanFragmentProduct(ProductFragment):
|
|
381
|
+
pass
|
|
392
382
|
|
|
393
383
|
|
|
394
|
-
class
|
|
395
|
-
|
|
396
|
-
)
|
|
397
|
-
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
398
|
-
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
399
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
384
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
385
|
+
ref_id: str = Field(alias="refId")
|
|
386
|
+
display_name: str = Field(alias="displayName")
|
|
400
387
|
|
|
401
388
|
|
|
402
|
-
class
|
|
403
|
-
|
|
404
|
-
status: SubscriptionInvoiceStatus
|
|
405
|
-
created_at: Any = Field(alias="createdAt")
|
|
406
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
407
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
408
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
409
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
410
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
411
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
412
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
413
|
-
alias="billingReason", default=None
|
|
414
|
-
)
|
|
415
|
-
currency: Optional[str] = Field(default=None)
|
|
416
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
417
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
418
|
-
alias="subTotalExcludingTax", default=None
|
|
419
|
-
)
|
|
420
|
-
total: Optional[float] = Field(default=None)
|
|
421
|
-
total_excluding_tax: Optional[float] = Field(
|
|
422
|
-
alias="totalExcludingTax", default=None
|
|
423
|
-
)
|
|
424
|
-
tax: Optional[float] = Field(default=None)
|
|
425
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
426
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
389
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
390
|
+
pass
|
|
427
391
|
|
|
428
392
|
|
|
429
|
-
class
|
|
430
|
-
|
|
431
|
-
total: "TotalPriceFragmentTotal"
|
|
393
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
394
|
+
pass
|
|
432
395
|
|
|
433
396
|
|
|
434
|
-
class
|
|
435
|
-
|
|
436
|
-
currency: Currency
|
|
397
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
398
|
+
pass
|
|
437
399
|
|
|
438
400
|
|
|
439
|
-
class
|
|
440
|
-
|
|
441
|
-
|
|
401
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
402
|
+
pass
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
class PlanFragmentPrices(PriceFragment):
|
|
406
|
+
pass
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
410
|
+
pass
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
414
|
+
duration: float
|
|
415
|
+
units: TrialPeriodUnits
|
|
416
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
417
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
418
|
+
alias="trialEndBehavior", default=None
|
|
419
|
+
)
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
423
|
+
limit: float
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
427
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
442
428
|
|
|
443
429
|
|
|
444
430
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
@@ -595,128 +581,225 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
595
581
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
596
582
|
|
|
597
583
|
|
|
598
|
-
class
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
602
|
-
default=None
|
|
584
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
585
|
+
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
586
|
+
alias="subscriptionScheduleType"
|
|
603
587
|
)
|
|
604
|
-
|
|
588
|
+
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
589
|
+
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
590
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
591
|
+
alias="targetPackage", default=None
|
|
592
|
+
)
|
|
593
|
+
schedule_variables: Optional[
|
|
594
|
+
Annotated[
|
|
595
|
+
Union[
|
|
596
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
597
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
598
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
599
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
600
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
601
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
602
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
603
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
604
|
+
],
|
|
605
|
+
Field(discriminator="typename__"),
|
|
606
|
+
]
|
|
607
|
+
] = Field(alias="scheduleVariables", default=None)
|
|
605
608
|
|
|
606
609
|
|
|
607
|
-
class
|
|
608
|
-
|
|
610
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
611
|
+
id: str
|
|
612
|
+
ref_id: str = Field(alias="refId")
|
|
613
|
+
display_name: str = Field(alias="displayName")
|
|
609
614
|
|
|
610
615
|
|
|
611
|
-
class
|
|
612
|
-
|
|
613
|
-
|
|
616
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
617
|
+
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
618
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
619
|
+
new_quantity: float = Field(alias="newQuantity")
|
|
614
620
|
|
|
615
621
|
|
|
616
|
-
class
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
)
|
|
623
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
622
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
623
|
+
BaseModel
|
|
624
|
+
):
|
|
625
|
+
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
626
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
627
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
624
628
|
|
|
625
629
|
|
|
626
|
-
class
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
)
|
|
630
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
631
|
+
BaseModel
|
|
632
|
+
):
|
|
633
|
+
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
634
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
630
635
|
|
|
631
636
|
|
|
632
|
-
class
|
|
633
|
-
|
|
634
|
-
display_name: str = Field(alias="displayName")
|
|
637
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
638
|
+
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
635
639
|
|
|
636
640
|
|
|
637
|
-
class
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
)
|
|
659
|
-
compatible_package_groups: Optional[
|
|
660
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
661
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
662
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
663
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
664
|
-
alias="overagePrices", default=None
|
|
665
|
-
)
|
|
666
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
667
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
668
|
-
alias="defaultTrialConfig", default=None
|
|
669
|
-
)
|
|
641
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
642
|
+
BaseModel
|
|
643
|
+
):
|
|
644
|
+
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
645
|
+
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
646
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
647
|
+
billable_features: Optional[
|
|
648
|
+
List[
|
|
649
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
650
|
+
]
|
|
651
|
+
] = Field(alias="billableFeatures", default=None)
|
|
652
|
+
addons: Optional[
|
|
653
|
+
List[
|
|
654
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
655
|
+
]
|
|
656
|
+
] = Field(default=None)
|
|
657
|
+
price_overrides: Optional[
|
|
658
|
+
List[
|
|
659
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
660
|
+
]
|
|
661
|
+
] = Field(alias="priceOverrides", default=None)
|
|
670
662
|
|
|
671
663
|
|
|
672
|
-
class
|
|
673
|
-
|
|
664
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
665
|
+
BaseModel
|
|
666
|
+
):
|
|
667
|
+
feature_id: str = Field(alias="featureId")
|
|
668
|
+
quantity: float
|
|
674
669
|
|
|
675
670
|
|
|
676
|
-
class
|
|
677
|
-
|
|
678
|
-
|
|
671
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
672
|
+
BaseModel
|
|
673
|
+
):
|
|
674
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
675
|
+
quantity: float
|
|
679
676
|
|
|
680
677
|
|
|
681
|
-
class
|
|
682
|
-
|
|
678
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
679
|
+
BaseModel
|
|
680
|
+
):
|
|
681
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
682
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
683
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
683
684
|
|
|
684
685
|
|
|
685
|
-
class
|
|
686
|
-
|
|
686
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
687
|
+
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
688
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
689
|
+
change_type: PlanChangeType = Field(alias="changeType")
|
|
690
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
691
|
+
billable_features: Optional[
|
|
692
|
+
List[
|
|
693
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
694
|
+
]
|
|
695
|
+
] = Field(alias="billableFeatures", default=None)
|
|
696
|
+
addons: Optional[
|
|
697
|
+
List[
|
|
698
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
699
|
+
]
|
|
700
|
+
] = Field(default=None)
|
|
701
|
+
price_overrides: Optional[
|
|
702
|
+
List[
|
|
703
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
704
|
+
]
|
|
705
|
+
] = Field(alias="priceOverrides", default=None)
|
|
687
706
|
|
|
688
707
|
|
|
689
|
-
class
|
|
690
|
-
|
|
708
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
709
|
+
BaseModel
|
|
710
|
+
):
|
|
711
|
+
feature_id: str = Field(alias="featureId")
|
|
712
|
+
quantity: float
|
|
691
713
|
|
|
692
714
|
|
|
693
|
-
class
|
|
694
|
-
|
|
715
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
716
|
+
BaseModel
|
|
717
|
+
):
|
|
718
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
719
|
+
quantity: float
|
|
695
720
|
|
|
696
721
|
|
|
697
|
-
class
|
|
698
|
-
|
|
722
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
723
|
+
BaseModel
|
|
724
|
+
):
|
|
725
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
726
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
727
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
699
728
|
|
|
700
729
|
|
|
701
|
-
class
|
|
702
|
-
|
|
730
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
731
|
+
BaseModel
|
|
732
|
+
):
|
|
733
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
734
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
735
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
703
736
|
|
|
704
737
|
|
|
705
|
-
class
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
738
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
739
|
+
BaseModel
|
|
740
|
+
):
|
|
741
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
742
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
743
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
744
|
+
|
|
745
|
+
|
|
746
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
747
|
+
billing_id: str = Field(alias="billingId")
|
|
748
|
+
status: SubscriptionInvoiceStatus
|
|
749
|
+
created_at: Any = Field(alias="createdAt")
|
|
750
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
751
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
752
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
753
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
754
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
755
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
756
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
757
|
+
alias="billingReason", default=None
|
|
758
|
+
)
|
|
759
|
+
currency: Optional[str] = Field(default=None)
|
|
760
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
761
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
762
|
+
alias="subTotalExcludingTax", default=None
|
|
763
|
+
)
|
|
764
|
+
total: Optional[float] = Field(default=None)
|
|
765
|
+
total_excluding_tax: Optional[float] = Field(
|
|
766
|
+
alias="totalExcludingTax", default=None
|
|
711
767
|
)
|
|
768
|
+
tax: Optional[float] = Field(default=None)
|
|
769
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
770
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
712
771
|
|
|
713
772
|
|
|
714
|
-
class
|
|
715
|
-
|
|
773
|
+
class TotalPriceFragment(BaseModel):
|
|
774
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
775
|
+
total: "TotalPriceFragmentTotal"
|
|
716
776
|
|
|
717
777
|
|
|
718
|
-
class
|
|
719
|
-
|
|
778
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
779
|
+
amount: float
|
|
780
|
+
currency: Currency
|
|
781
|
+
|
|
782
|
+
|
|
783
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
784
|
+
amount: float
|
|
785
|
+
currency: Currency
|
|
786
|
+
|
|
787
|
+
|
|
788
|
+
class SlimCustomerFragment(BaseModel):
|
|
789
|
+
id: str
|
|
790
|
+
name: Optional[str] = Field(default=None)
|
|
791
|
+
email: Optional[str] = Field(default=None)
|
|
792
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
793
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
794
|
+
ref_id: str = Field(alias="refId")
|
|
795
|
+
customer_id: str = Field(alias="customerId")
|
|
796
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
797
|
+
additional_meta_data: Optional[Any] = Field(
|
|
798
|
+
alias="additionalMetaData", default=None
|
|
799
|
+
)
|
|
800
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
801
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
802
|
+
)
|
|
720
803
|
|
|
721
804
|
|
|
722
805
|
class SubscriptionFragment(BaseModel):
|
|
@@ -783,131 +866,48 @@ class SubscriptionFragmentResource(CustomerResourceFragment):
|
|
|
783
866
|
|
|
784
867
|
|
|
785
868
|
class SubscriptionFragmentExperimentInfo(BaseModel):
|
|
786
|
-
name: str
|
|
787
|
-
group_type: experimentGroupType = Field(alias="groupType")
|
|
788
|
-
group_name: str = Field(alias="groupName")
|
|
789
|
-
id: str
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
class SubscriptionFragmentPrices(BaseModel):
|
|
793
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
794
|
-
price: Optional["SubscriptionFragmentPricesPrice"] = Field(default=None)
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
class SubscriptionFragmentPricesPrice(PriceFragment):
|
|
798
|
-
pass
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
class SubscriptionFragmentTotalPrice(TotalPriceFragment):
|
|
802
|
-
pass
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
class SubscriptionFragmentPlan(PlanFragment):
|
|
806
|
-
pass
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
class SubscriptionFragmentAddons(BaseModel):
|
|
810
|
-
id: str
|
|
811
|
-
quantity: float
|
|
812
|
-
addon: "SubscriptionFragmentAddonsAddon"
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
class SubscriptionFragmentAddonsAddon(AddonFragment):
|
|
816
|
-
pass
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
class SubscriptionFragmentScheduledUpdates(SubscriptionScheduledUpdateData):
|
|
820
|
-
pass
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
class SubscriptionFragmentFutureUpdates(SubscriptionFutureUpdateData):
|
|
824
|
-
pass
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragment):
|
|
828
|
-
pass
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
class FeatureFragment(BaseModel):
|
|
832
|
-
typename__: str = Field(alias="__typename")
|
|
833
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
834
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
835
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
836
|
-
feature_units_plural: Optional[str] = Field(
|
|
837
|
-
alias="featureUnitsPlural", default=None
|
|
838
|
-
)
|
|
839
|
-
description: Optional[str] = Field(default=None)
|
|
840
|
-
display_name: str = Field(alias="displayName")
|
|
841
|
-
ref_id: str = Field(alias="refId")
|
|
842
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
843
|
-
alias="unitTransformation", default=None
|
|
844
|
-
)
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
class FeatureFragmentUnitTransformation(BaseModel):
|
|
848
|
-
divide: float
|
|
849
|
-
round: UnitTransformationRound
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
class EntitlementFragment(BaseModel):
|
|
853
|
-
typename__: str = Field(alias="__typename")
|
|
854
|
-
is_granted: bool = Field(alias="isGranted")
|
|
855
|
-
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
856
|
-
alias="accessDeniedReason", default=None
|
|
857
|
-
)
|
|
858
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
859
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
860
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
861
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
862
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
863
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
864
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
865
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
866
|
-
alias="entitlementUpdatedAt", default=None
|
|
867
|
-
)
|
|
868
|
-
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
869
|
-
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
870
|
-
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
871
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
872
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
873
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
874
|
-
alias="resetPeriod", default=None
|
|
875
|
-
)
|
|
876
|
-
reset_period_configuration: Optional[
|
|
877
|
-
Annotated[
|
|
878
|
-
Union[
|
|
879
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
880
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
881
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
882
|
-
],
|
|
883
|
-
Field(discriminator="typename__"),
|
|
884
|
-
]
|
|
885
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
886
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
869
|
+
name: str
|
|
870
|
+
group_type: experimentGroupType = Field(alias="groupType")
|
|
871
|
+
group_name: str = Field(alias="groupName")
|
|
872
|
+
id: str
|
|
887
873
|
|
|
888
874
|
|
|
889
|
-
class
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
alias="monthlyAccordingTo", default=None
|
|
893
|
-
)
|
|
875
|
+
class SubscriptionFragmentPrices(BaseModel):
|
|
876
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
877
|
+
price: Optional["SubscriptionFragmentPricesPrice"] = Field(default=None)
|
|
894
878
|
|
|
895
879
|
|
|
896
|
-
class
|
|
897
|
-
|
|
898
|
-
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
899
|
-
alias="weeklyAccordingTo", default=None
|
|
900
|
-
)
|
|
880
|
+
class SubscriptionFragmentPricesPrice(PriceFragment):
|
|
881
|
+
pass
|
|
901
882
|
|
|
902
883
|
|
|
903
|
-
class
|
|
904
|
-
|
|
905
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
906
|
-
alias="yearlyAccordingTo", default=None
|
|
907
|
-
)
|
|
884
|
+
class SubscriptionFragmentTotalPrice(TotalPriceFragment):
|
|
885
|
+
pass
|
|
908
886
|
|
|
909
887
|
|
|
910
|
-
class
|
|
888
|
+
class SubscriptionFragmentPlan(PlanFragment):
|
|
889
|
+
pass
|
|
890
|
+
|
|
891
|
+
|
|
892
|
+
class SubscriptionFragmentAddons(BaseModel):
|
|
893
|
+
id: str
|
|
894
|
+
quantity: float
|
|
895
|
+
addon: "SubscriptionFragmentAddonsAddon"
|
|
896
|
+
|
|
897
|
+
|
|
898
|
+
class SubscriptionFragmentAddonsAddon(AddonFragment):
|
|
899
|
+
pass
|
|
900
|
+
|
|
901
|
+
|
|
902
|
+
class SubscriptionFragmentScheduledUpdates(SubscriptionScheduledUpdateData):
|
|
903
|
+
pass
|
|
904
|
+
|
|
905
|
+
|
|
906
|
+
class SubscriptionFragmentFutureUpdates(SubscriptionFutureUpdateData):
|
|
907
|
+
pass
|
|
908
|
+
|
|
909
|
+
|
|
910
|
+
class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragment):
|
|
911
911
|
pass
|
|
912
912
|
|
|
913
913
|
|
|
@@ -988,6 +988,35 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
988
988
|
)
|
|
989
989
|
|
|
990
990
|
|
|
991
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
992
|
+
status: PromotionalEntitlementStatus
|
|
993
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
994
|
+
feature_id: str = Field(alias="featureId")
|
|
995
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
996
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
997
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
998
|
+
alias="resetPeriod", default=None
|
|
999
|
+
)
|
|
1000
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1001
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1002
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1003
|
+
|
|
1004
|
+
|
|
1005
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1006
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1007
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1008
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1009
|
+
feature_units_plural: Optional[str] = Field(
|
|
1010
|
+
alias="featureUnitsPlural", default=None
|
|
1011
|
+
)
|
|
1012
|
+
display_name: str = Field(alias="displayName")
|
|
1013
|
+
description: Optional[str] = Field(default=None)
|
|
1014
|
+
ref_id: str = Field(alias="refId")
|
|
1015
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1016
|
+
alias="additionalMetaData", default=None
|
|
1017
|
+
)
|
|
1018
|
+
|
|
1019
|
+
|
|
991
1020
|
class CouponFragment(BaseModel):
|
|
992
1021
|
id: str
|
|
993
1022
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1022,35 +1051,6 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1022
1051
|
status: SyncStatus
|
|
1023
1052
|
|
|
1024
1053
|
|
|
1025
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
1026
|
-
status: PromotionalEntitlementStatus
|
|
1027
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1028
|
-
feature_id: str = Field(alias="featureId")
|
|
1029
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1030
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1031
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1032
|
-
alias="resetPeriod", default=None
|
|
1033
|
-
)
|
|
1034
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1035
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1036
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1040
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1041
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1042
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1043
|
-
feature_units_plural: Optional[str] = Field(
|
|
1044
|
-
alias="featureUnitsPlural", default=None
|
|
1045
|
-
)
|
|
1046
|
-
display_name: str = Field(alias="displayName")
|
|
1047
|
-
description: Optional[str] = Field(default=None)
|
|
1048
|
-
ref_id: str = Field(alias="refId")
|
|
1049
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1050
|
-
alias="additionalMetaData", default=None
|
|
1051
|
-
)
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
1054
|
class CustomerFragment(SlimCustomerFragment):
|
|
1055
1055
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1056
1056
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1257,31 +1257,11 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1257
1257
|
pass
|
|
1258
1258
|
|
|
1259
1259
|
|
|
1260
|
-
class
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1264
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1265
|
-
default=None
|
|
1266
|
-
)
|
|
1267
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1268
|
-
default=None
|
|
1269
|
-
)
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1273
|
-
amount: float
|
|
1274
|
-
currency: Currency
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1278
|
-
id: str
|
|
1279
|
-
ref_id: str = Field(alias="refId")
|
|
1260
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1261
|
+
addon_id: str = Field(alias="addonId")
|
|
1262
|
+
description: Optional[str] = Field(default=None)
|
|
1280
1263
|
display_name: str = Field(alias="displayName")
|
|
1281
|
-
|
|
1282
|
-
feature_units_plural: Optional[str] = Field(
|
|
1283
|
-
alias="featureUnitsPlural", default=None
|
|
1284
|
-
)
|
|
1264
|
+
quantity: int
|
|
1285
1265
|
|
|
1286
1266
|
|
|
1287
1267
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
@@ -1453,11 +1433,31 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1453
1433
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1454
1434
|
|
|
1455
1435
|
|
|
1456
|
-
class
|
|
1457
|
-
|
|
1458
|
-
|
|
1436
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1437
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1438
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1439
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1440
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1441
|
+
default=None
|
|
1442
|
+
)
|
|
1443
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1444
|
+
default=None
|
|
1445
|
+
)
|
|
1446
|
+
|
|
1447
|
+
|
|
1448
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1449
|
+
amount: float
|
|
1450
|
+
currency: Currency
|
|
1451
|
+
|
|
1452
|
+
|
|
1453
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1454
|
+
id: str
|
|
1455
|
+
ref_id: str = Field(alias="refId")
|
|
1459
1456
|
display_name: str = Field(alias="displayName")
|
|
1460
|
-
|
|
1457
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1458
|
+
feature_units_plural: Optional[str] = Field(
|
|
1459
|
+
alias="featureUnitsPlural", default=None
|
|
1460
|
+
)
|
|
1461
1461
|
|
|
1462
1462
|
|
|
1463
1463
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
@@ -1793,6 +1793,39 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1793
1793
|
description: Optional[str] = Field(default=None)
|
|
1794
1794
|
|
|
1795
1795
|
|
|
1796
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1797
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1798
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1799
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1800
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1801
|
+
alias="resetPeriod", default=None
|
|
1802
|
+
)
|
|
1803
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1804
|
+
alias="hiddenFromWidgets", default=None
|
|
1805
|
+
)
|
|
1806
|
+
display_name_override: Optional[str] = Field(
|
|
1807
|
+
alias="displayNameOverride", default=None
|
|
1808
|
+
)
|
|
1809
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1810
|
+
default=None
|
|
1811
|
+
)
|
|
1812
|
+
|
|
1813
|
+
|
|
1814
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1815
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1816
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1817
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1818
|
+
feature_units_plural: Optional[str] = Field(
|
|
1819
|
+
alias="featureUnitsPlural", default=None
|
|
1820
|
+
)
|
|
1821
|
+
display_name: str = Field(alias="displayName")
|
|
1822
|
+
description: Optional[str] = Field(default=None)
|
|
1823
|
+
ref_id: str = Field(alias="refId")
|
|
1824
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1825
|
+
alias="additionalMetaData", default=None
|
|
1826
|
+
)
|
|
1827
|
+
|
|
1828
|
+
|
|
1796
1829
|
class MockPaywallPriceFragment(BaseModel):
|
|
1797
1830
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1798
1831
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1827,39 +1860,6 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1827
1860
|
display_name: str = Field(alias="displayName")
|
|
1828
1861
|
|
|
1829
1862
|
|
|
1830
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1831
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1832
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1833
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1834
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1835
|
-
alias="resetPeriod", default=None
|
|
1836
|
-
)
|
|
1837
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1838
|
-
alias="hiddenFromWidgets", default=None
|
|
1839
|
-
)
|
|
1840
|
-
display_name_override: Optional[str] = Field(
|
|
1841
|
-
alias="displayNameOverride", default=None
|
|
1842
|
-
)
|
|
1843
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1844
|
-
default=None
|
|
1845
|
-
)
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1849
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1850
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1851
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1852
|
-
feature_units_plural: Optional[str] = Field(
|
|
1853
|
-
alias="featureUnitsPlural", default=None
|
|
1854
|
-
)
|
|
1855
|
-
display_name: str = Field(alias="displayName")
|
|
1856
|
-
description: Optional[str] = Field(default=None)
|
|
1857
|
-
ref_id: str = Field(alias="refId")
|
|
1858
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1859
|
-
alias="additionalMetaData", default=None
|
|
1860
|
-
)
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
1863
|
class MockPaywallAddonFragment(BaseModel):
|
|
1864
1864
|
ref_id: str = Field(alias="refId")
|
|
1865
1865
|
display_name: str = Field(alias="displayName")
|
|
@@ -2772,36 +2772,36 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2772
2772
|
AddonDependencyFragment.model_rebuild()
|
|
2773
2773
|
PackageEntitlementFragment.model_rebuild()
|
|
2774
2774
|
PriceTierFragment.model_rebuild()
|
|
2775
|
-
OveragePriceFragment.model_rebuild()
|
|
2776
2775
|
PriceFragment.model_rebuild()
|
|
2776
|
+
OveragePriceFragment.model_rebuild()
|
|
2777
2777
|
AddonFragment.model_rebuild()
|
|
2778
|
+
FeatureFragment.model_rebuild()
|
|
2779
|
+
EntitlementFragment.model_rebuild()
|
|
2780
|
+
CustomerResourceFragment.model_rebuild()
|
|
2781
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2782
|
+
ProductFragment.model_rebuild()
|
|
2783
|
+
PlanFragment.model_rebuild()
|
|
2778
2784
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2779
|
-
|
|
2785
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2780
2786
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2781
2787
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2782
2788
|
TotalPriceFragment.model_rebuild()
|
|
2783
|
-
|
|
2784
|
-
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2785
|
-
ProductFragment.model_rebuild()
|
|
2786
|
-
PlanFragment.model_rebuild()
|
|
2787
|
-
CustomerResourceFragment.model_rebuild()
|
|
2789
|
+
SlimCustomerFragment.model_rebuild()
|
|
2788
2790
|
SubscriptionFragment.model_rebuild()
|
|
2789
|
-
FeatureFragment.model_rebuild()
|
|
2790
|
-
EntitlementFragment.model_rebuild()
|
|
2791
2791
|
ApplySubscriptionFragment.model_rebuild()
|
|
2792
2792
|
FontVariantFragment.model_rebuild()
|
|
2793
2793
|
TypographyConfigurationFragment.model_rebuild()
|
|
2794
2794
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2795
|
-
CouponFragment.model_rebuild()
|
|
2796
2795
|
PromotionalEntitlementFragment.model_rebuild()
|
|
2796
|
+
CouponFragment.model_rebuild()
|
|
2797
2797
|
CustomerFragment.model_rebuild()
|
|
2798
2798
|
CheckoutStateFragment.model_rebuild()
|
|
2799
2799
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2800
2800
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2801
2801
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2802
|
-
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2803
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2804
2802
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2803
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2804
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2805
2805
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2806
2806
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2807
2807
|
CustomerPortalFragment.model_rebuild()
|
|
@@ -2813,8 +2813,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2813
2813
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2814
2814
|
LayoutConfigurationFragment.model_rebuild()
|
|
2815
2815
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2816
|
-
MockPaywallPriceFragment.model_rebuild()
|
|
2817
2816
|
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2817
|
+
MockPaywallPriceFragment.model_rebuild()
|
|
2818
2818
|
MockPaywallAddonFragment.model_rebuild()
|
|
2819
2819
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2820
2820
|
MockPaywallPlanFragment.model_rebuild()
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=BnCwbHSipcepnaDJ7ZOwNfdLtRW_p67ObbANkWR2xhY,3528
|
|
|
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=WB3nFDx-12rfv6rvORKmGRHhXioCnCwDj4JZDLLu2nE,100917
|
|
127
127
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
128
128
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
129
129
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -160,7 +160,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
160
160
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
161
161
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
162
162
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
163
|
-
stigg_api_client_v2-2.
|
|
164
|
-
stigg_api_client_v2-2.
|
|
165
|
-
stigg_api_client_v2-2.
|
|
166
|
-
stigg_api_client_v2-2.
|
|
163
|
+
stigg_api_client_v2-2.419.2.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.419.2.dist-info/METADATA,sha256=thCgKutYRO8ryp7XA6mjjBtwU60MHdAkfPUUr9nvHQY,2258
|
|
165
|
+
stigg_api_client_v2-2.419.2.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.419.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|