stigg-api-client-v2 2.307.0__py3-none-any.whl → 2.310.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/enums.py +1 -0
- stigg/generated/fragments.py +342 -342
- {stigg_api_client_v2-2.307.0.dist-info → stigg_api_client_v2-2.310.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.307.0.dist-info → stigg_api_client_v2-2.310.0.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-2.307.0.dist-info → stigg_api_client_v2-2.310.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.307.0.dist-info → stigg_api_client_v2-2.310.0.dist-info}/WHEEL +0 -0
stigg/generated/enums.py
CHANGED
|
@@ -409,6 +409,7 @@ class ErrorCode(str, Enum):
|
|
|
409
409
|
CannotAddOverrideEntitlementToPlan = "CannotAddOverrideEntitlementToPlan"
|
|
410
410
|
CannotArchiveFeatureError = "CannotArchiveFeatureError"
|
|
411
411
|
CannotDeleteCustomerError = "CannotDeleteCustomerError"
|
|
412
|
+
CannotDeleteDefaultIntegration = "CannotDeleteDefaultIntegration"
|
|
412
413
|
CannotDeleteFeatureError = "CannotDeleteFeatureError"
|
|
413
414
|
CannotDeleteProductError = "CannotDeleteProductError"
|
|
414
415
|
CannotEditPackageInNonDraftMode = "CannotEditPackageInNonDraftMode"
|
stigg/generated/fragments.py
CHANGED
|
@@ -59,39 +59,6 @@ class AddonDependencyFragment(BaseModel):
|
|
|
59
59
|
description: Optional[str] = Field(default=None)
|
|
60
60
|
|
|
61
61
|
|
|
62
|
-
class PackageEntitlementFragment(BaseModel):
|
|
63
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
64
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
65
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
66
|
-
feature_id: str = Field(alias="featureId")
|
|
67
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
68
|
-
alias="resetPeriod", default=None
|
|
69
|
-
)
|
|
70
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
71
|
-
alias="hiddenFromWidgets", default=None
|
|
72
|
-
)
|
|
73
|
-
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
74
|
-
display_name_override: Optional[str] = Field(
|
|
75
|
-
alias="displayNameOverride", default=None
|
|
76
|
-
)
|
|
77
|
-
feature: "PackageEntitlementFragmentFeature"
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
class PackageEntitlementFragmentFeature(BaseModel):
|
|
81
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
82
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
83
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
84
|
-
feature_units_plural: Optional[str] = Field(
|
|
85
|
-
alias="featureUnitsPlural", default=None
|
|
86
|
-
)
|
|
87
|
-
display_name: str = Field(alias="displayName")
|
|
88
|
-
description: Optional[str] = Field(default=None)
|
|
89
|
-
ref_id: str = Field(alias="refId")
|
|
90
|
-
additional_meta_data: Optional[Any] = Field(
|
|
91
|
-
alias="additionalMetaData", default=None
|
|
92
|
-
)
|
|
93
|
-
|
|
94
|
-
|
|
95
62
|
class PriceTierFragment(BaseModel):
|
|
96
63
|
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
97
64
|
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
@@ -180,286 +147,87 @@ class OveragePriceFragmentFeature(BaseModel):
|
|
|
180
147
|
description: Optional[str] = Field(default=None)
|
|
181
148
|
|
|
182
149
|
|
|
183
|
-
class
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
alias="additionalMetaData", default=None
|
|
150
|
+
class PackageEntitlementFragment(BaseModel):
|
|
151
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
152
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
153
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
154
|
+
feature_id: str = Field(alias="featureId")
|
|
155
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
156
|
+
alias="resetPeriod", default=None
|
|
191
157
|
)
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
overage_prices: Optional[List["AddonFragmentOveragePrices"]] = Field(
|
|
195
|
-
alias="overagePrices", default=None
|
|
158
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
159
|
+
alias="hiddenFromWidgets", default=None
|
|
196
160
|
)
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
class AddonFragmentEntitlements(PackageEntitlementFragment):
|
|
203
|
-
pass
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
class AddonFragmentPrices(PriceFragment):
|
|
207
|
-
pass
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
class AddonFragmentOveragePrices(OveragePriceFragment):
|
|
211
|
-
pass
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
class AddonFragmentDependencies(AddonDependencyFragment):
|
|
215
|
-
pass
|
|
161
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
162
|
+
display_name_override: Optional[str] = Field(
|
|
163
|
+
alias="displayNameOverride", default=None
|
|
164
|
+
)
|
|
165
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
216
166
|
|
|
217
167
|
|
|
218
|
-
class
|
|
219
|
-
typename__: str = Field(alias="__typename")
|
|
168
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
220
169
|
feature_type: FeatureType = Field(alias="featureType")
|
|
221
170
|
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
222
171
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
223
172
|
feature_units_plural: Optional[str] = Field(
|
|
224
173
|
alias="featureUnitsPlural", default=None
|
|
225
174
|
)
|
|
226
|
-
description: Optional[str] = Field(default=None)
|
|
227
175
|
display_name: str = Field(alias="displayName")
|
|
228
|
-
ref_id: str = Field(alias="refId")
|
|
229
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
230
|
-
alias="unitTransformation", default=None
|
|
231
|
-
)
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
class FeatureFragmentUnitTransformation(BaseModel):
|
|
235
|
-
divide: float
|
|
236
|
-
round: UnitTransformationRound
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
class EntitlementFragment(BaseModel):
|
|
240
|
-
typename__: str = Field(alias="__typename")
|
|
241
|
-
is_granted: bool = Field(alias="isGranted")
|
|
242
|
-
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
243
|
-
alias="accessDeniedReason", default=None
|
|
244
|
-
)
|
|
245
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
246
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
247
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
248
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
249
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
250
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
251
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
252
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
253
|
-
alias="entitlementUpdatedAt", default=None
|
|
254
|
-
)
|
|
255
|
-
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
256
|
-
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
257
|
-
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
258
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
259
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
260
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
261
|
-
alias="resetPeriod", default=None
|
|
262
|
-
)
|
|
263
|
-
reset_period_configuration: Optional[
|
|
264
|
-
Annotated[
|
|
265
|
-
Union[
|
|
266
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
267
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
268
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
269
|
-
],
|
|
270
|
-
Field(discriminator="typename__"),
|
|
271
|
-
]
|
|
272
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
273
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
277
|
-
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
278
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
279
|
-
alias="monthlyAccordingTo", default=None
|
|
280
|
-
)
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
284
|
-
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
285
|
-
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
286
|
-
alias="weeklyAccordingTo", default=None
|
|
287
|
-
)
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
291
|
-
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
292
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
293
|
-
alias="yearlyAccordingTo", default=None
|
|
294
|
-
)
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
class EntitlementFragmentFeature(FeatureFragment):
|
|
298
|
-
pass
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
class ProductFragment(BaseModel):
|
|
302
|
-
ref_id: str = Field(alias="refId")
|
|
303
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
304
176
|
description: Optional[str] = Field(default=None)
|
|
177
|
+
ref_id: str = Field(alias="refId")
|
|
305
178
|
additional_meta_data: Optional[Any] = Field(
|
|
306
179
|
alias="additionalMetaData", default=None
|
|
307
180
|
)
|
|
308
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
309
181
|
|
|
310
182
|
|
|
311
|
-
class
|
|
312
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
313
|
-
alias="downgradePlan", default=None
|
|
314
|
-
)
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
318
|
-
ref_id: str = Field(alias="refId")
|
|
319
|
-
display_name: str = Field(alias="displayName")
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
323
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
324
|
-
display_name: str = Field(alias="displayName")
|
|
325
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
326
|
-
default=None
|
|
327
|
-
)
|
|
328
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
332
|
-
pass
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
336
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
337
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
class PlanFragment(BaseModel):
|
|
183
|
+
class AddonFragment(BaseModel):
|
|
341
184
|
id: str
|
|
342
185
|
ref_id: str = Field(alias="refId")
|
|
186
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
343
187
|
display_name: str = Field(alias="displayName")
|
|
344
188
|
description: Optional[str] = Field(default=None)
|
|
345
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
346
|
-
version_number: int = Field(alias="versionNumber")
|
|
347
189
|
additional_meta_data: Optional[Any] = Field(
|
|
348
190
|
alias="additionalMetaData", default=None
|
|
349
191
|
)
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
product: "PlanFragmentProduct"
|
|
354
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
355
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
356
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
357
|
-
alias="inheritedEntitlements", default=None
|
|
358
|
-
)
|
|
359
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
360
|
-
alias="compatibleAddons", default=None
|
|
361
|
-
)
|
|
362
|
-
compatible_package_groups: Optional[
|
|
363
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
364
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
365
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
366
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
192
|
+
entitlements: Optional[List["AddonFragmentEntitlements"]] = Field(default=None)
|
|
193
|
+
prices: Optional[List["AddonFragmentPrices"]] = Field(default=None)
|
|
194
|
+
overage_prices: Optional[List["AddonFragmentOveragePrices"]] = Field(
|
|
367
195
|
alias="overagePrices", default=None
|
|
368
196
|
)
|
|
369
197
|
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
)
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
class PlanFragmentProduct(ProductFragment):
|
|
376
|
-
pass
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
380
|
-
ref_id: str = Field(alias="refId")
|
|
381
|
-
display_name: str = Field(alias="displayName")
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
385
|
-
pass
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
389
|
-
pass
|
|
198
|
+
max_quantity: Optional[float] = Field(alias="maxQuantity", default=None)
|
|
199
|
+
dependencies: Optional[List["AddonFragmentDependencies"]] = Field(default=None)
|
|
390
200
|
|
|
391
201
|
|
|
392
|
-
class
|
|
202
|
+
class AddonFragmentEntitlements(PackageEntitlementFragment):
|
|
393
203
|
pass
|
|
394
204
|
|
|
395
205
|
|
|
396
|
-
class
|
|
206
|
+
class AddonFragmentPrices(PriceFragment):
|
|
397
207
|
pass
|
|
398
208
|
|
|
399
209
|
|
|
400
|
-
class
|
|
210
|
+
class AddonFragmentOveragePrices(OveragePriceFragment):
|
|
401
211
|
pass
|
|
402
212
|
|
|
403
213
|
|
|
404
|
-
class
|
|
214
|
+
class AddonFragmentDependencies(AddonDependencyFragment):
|
|
405
215
|
pass
|
|
406
216
|
|
|
407
217
|
|
|
408
|
-
class
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
412
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
413
|
-
alias="trialEndBehavior", default=None
|
|
414
|
-
)
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
418
|
-
limit: float
|
|
218
|
+
class TotalPriceFragment(BaseModel):
|
|
219
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
220
|
+
total: "TotalPriceFragmentTotal"
|
|
419
221
|
|
|
420
222
|
|
|
421
|
-
class
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
email: Optional[str] = Field(default=None)
|
|
425
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
426
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
427
|
-
ref_id: str = Field(alias="refId")
|
|
428
|
-
customer_id: str = Field(alias="customerId")
|
|
429
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
430
|
-
additional_meta_data: Optional[Any] = Field(
|
|
431
|
-
alias="additionalMetaData", default=None
|
|
432
|
-
)
|
|
433
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
434
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
435
|
-
)
|
|
223
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
224
|
+
amount: float
|
|
225
|
+
currency: Currency
|
|
436
226
|
|
|
437
227
|
|
|
438
|
-
class
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
created_at: Any = Field(alias="createdAt")
|
|
442
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
443
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
444
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
445
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
446
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
447
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
448
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
449
|
-
alias="billingReason", default=None
|
|
450
|
-
)
|
|
451
|
-
currency: Optional[str] = Field(default=None)
|
|
452
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
453
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
454
|
-
alias="subTotalExcludingTax", default=None
|
|
455
|
-
)
|
|
456
|
-
total: Optional[float] = Field(default=None)
|
|
457
|
-
total_excluding_tax: Optional[float] = Field(
|
|
458
|
-
alias="totalExcludingTax", default=None
|
|
459
|
-
)
|
|
460
|
-
tax: Optional[float] = Field(default=None)
|
|
461
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
462
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
228
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
229
|
+
amount: float
|
|
230
|
+
currency: Currency
|
|
463
231
|
|
|
464
232
|
|
|
465
233
|
class CustomerResourceFragment(BaseModel):
|
|
@@ -594,57 +362,206 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseMo
|
|
|
594
362
|
] = Field(alias="priceOverrides", default=None)
|
|
595
363
|
|
|
596
364
|
|
|
597
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
598
|
-
BaseModel
|
|
599
|
-
):
|
|
600
|
-
feature_id: str = Field(alias="featureId")
|
|
601
|
-
quantity: float
|
|
365
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
366
|
+
BaseModel
|
|
367
|
+
):
|
|
368
|
+
feature_id: str = Field(alias="featureId")
|
|
369
|
+
quantity: float
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
373
|
+
BaseModel
|
|
374
|
+
):
|
|
375
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
376
|
+
quantity: float
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
380
|
+
BaseModel
|
|
381
|
+
):
|
|
382
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
383
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
384
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
388
|
+
BaseModel
|
|
389
|
+
):
|
|
390
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
391
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
392
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
396
|
+
BaseModel
|
|
397
|
+
):
|
|
398
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
399
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
400
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
class ProductFragment(BaseModel):
|
|
404
|
+
ref_id: str = Field(alias="refId")
|
|
405
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
406
|
+
description: Optional[str] = Field(default=None)
|
|
407
|
+
additional_meta_data: Optional[Any] = Field(
|
|
408
|
+
alias="additionalMetaData", default=None
|
|
409
|
+
)
|
|
410
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
414
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
415
|
+
alias="downgradePlan", default=None
|
|
416
|
+
)
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
420
|
+
ref_id: str = Field(alias="refId")
|
|
421
|
+
display_name: str = Field(alias="displayName")
|
|
422
|
+
|
|
423
|
+
|
|
424
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
425
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
426
|
+
display_name: str = Field(alias="displayName")
|
|
427
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
428
|
+
default=None
|
|
429
|
+
)
|
|
430
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
434
|
+
pass
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
438
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
439
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
class PlanFragment(BaseModel):
|
|
443
|
+
id: str
|
|
444
|
+
ref_id: str = Field(alias="refId")
|
|
445
|
+
display_name: str = Field(alias="displayName")
|
|
446
|
+
description: Optional[str] = Field(default=None)
|
|
447
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
448
|
+
version_number: int = Field(alias="versionNumber")
|
|
449
|
+
additional_meta_data: Optional[Any] = Field(
|
|
450
|
+
alias="additionalMetaData", default=None
|
|
451
|
+
)
|
|
452
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
453
|
+
alias="hiddenFromWidgets", default=None
|
|
454
|
+
)
|
|
455
|
+
product: "PlanFragmentProduct"
|
|
456
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
457
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
458
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
459
|
+
alias="inheritedEntitlements", default=None
|
|
460
|
+
)
|
|
461
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
462
|
+
alias="compatibleAddons", default=None
|
|
463
|
+
)
|
|
464
|
+
compatible_package_groups: Optional[
|
|
465
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
466
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
467
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
468
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
469
|
+
alias="overagePrices", default=None
|
|
470
|
+
)
|
|
471
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
472
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
473
|
+
alias="defaultTrialConfig", default=None
|
|
474
|
+
)
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
class PlanFragmentProduct(ProductFragment):
|
|
478
|
+
pass
|
|
479
|
+
|
|
480
|
+
|
|
481
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
482
|
+
ref_id: str = Field(alias="refId")
|
|
483
|
+
display_name: str = Field(alias="displayName")
|
|
484
|
+
|
|
485
|
+
|
|
486
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
487
|
+
pass
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
491
|
+
pass
|
|
602
492
|
|
|
603
493
|
|
|
604
|
-
class
|
|
605
|
-
|
|
606
|
-
):
|
|
607
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
608
|
-
quantity: float
|
|
494
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
495
|
+
pass
|
|
609
496
|
|
|
610
497
|
|
|
611
|
-
class
|
|
612
|
-
|
|
613
|
-
):
|
|
614
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
615
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
616
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
498
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
499
|
+
pass
|
|
617
500
|
|
|
618
501
|
|
|
619
|
-
class
|
|
620
|
-
|
|
621
|
-
):
|
|
622
|
-
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
623
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
624
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
502
|
+
class PlanFragmentPrices(PriceFragment):
|
|
503
|
+
pass
|
|
625
504
|
|
|
626
505
|
|
|
627
|
-
class
|
|
628
|
-
|
|
629
|
-
):
|
|
630
|
-
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
631
|
-
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
632
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
506
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
507
|
+
pass
|
|
633
508
|
|
|
634
509
|
|
|
635
|
-
class
|
|
636
|
-
|
|
637
|
-
|
|
510
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
511
|
+
duration: float
|
|
512
|
+
units: TrialPeriodUnits
|
|
513
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
514
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
515
|
+
alias="trialEndBehavior", default=None
|
|
516
|
+
)
|
|
638
517
|
|
|
639
518
|
|
|
640
|
-
class
|
|
641
|
-
|
|
642
|
-
currency: Currency
|
|
519
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
520
|
+
limit: float
|
|
643
521
|
|
|
644
522
|
|
|
645
|
-
class
|
|
646
|
-
|
|
647
|
-
|
|
523
|
+
class SlimCustomerFragment(BaseModel):
|
|
524
|
+
id: str
|
|
525
|
+
name: Optional[str] = Field(default=None)
|
|
526
|
+
email: Optional[str] = Field(default=None)
|
|
527
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
528
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
529
|
+
ref_id: str = Field(alias="refId")
|
|
530
|
+
customer_id: str = Field(alias="customerId")
|
|
531
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
532
|
+
additional_meta_data: Optional[Any] = Field(
|
|
533
|
+
alias="additionalMetaData", default=None
|
|
534
|
+
)
|
|
535
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
536
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
537
|
+
)
|
|
538
|
+
|
|
539
|
+
|
|
540
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
541
|
+
billing_id: str = Field(alias="billingId")
|
|
542
|
+
status: SubscriptionInvoiceStatus
|
|
543
|
+
created_at: Any = Field(alias="createdAt")
|
|
544
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
545
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
546
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
547
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
548
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
549
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
550
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
551
|
+
alias="billingReason", default=None
|
|
552
|
+
)
|
|
553
|
+
currency: Optional[str] = Field(default=None)
|
|
554
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
555
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
556
|
+
alias="subTotalExcludingTax", default=None
|
|
557
|
+
)
|
|
558
|
+
total: Optional[float] = Field(default=None)
|
|
559
|
+
total_excluding_tax: Optional[float] = Field(
|
|
560
|
+
alias="totalExcludingTax", default=None
|
|
561
|
+
)
|
|
562
|
+
tax: Optional[float] = Field(default=None)
|
|
563
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
564
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
648
565
|
|
|
649
566
|
|
|
650
567
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
@@ -910,6 +827,89 @@ class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragm
|
|
|
910
827
|
pass
|
|
911
828
|
|
|
912
829
|
|
|
830
|
+
class FeatureFragment(BaseModel):
|
|
831
|
+
typename__: str = Field(alias="__typename")
|
|
832
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
833
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
834
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
835
|
+
feature_units_plural: Optional[str] = Field(
|
|
836
|
+
alias="featureUnitsPlural", default=None
|
|
837
|
+
)
|
|
838
|
+
description: Optional[str] = Field(default=None)
|
|
839
|
+
display_name: str = Field(alias="displayName")
|
|
840
|
+
ref_id: str = Field(alias="refId")
|
|
841
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
842
|
+
alias="unitTransformation", default=None
|
|
843
|
+
)
|
|
844
|
+
|
|
845
|
+
|
|
846
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
847
|
+
divide: float
|
|
848
|
+
round: UnitTransformationRound
|
|
849
|
+
|
|
850
|
+
|
|
851
|
+
class EntitlementFragment(BaseModel):
|
|
852
|
+
typename__: str = Field(alias="__typename")
|
|
853
|
+
is_granted: bool = Field(alias="isGranted")
|
|
854
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
855
|
+
alias="accessDeniedReason", default=None
|
|
856
|
+
)
|
|
857
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
858
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
859
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
860
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
861
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
862
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
863
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
864
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
865
|
+
alias="entitlementUpdatedAt", default=None
|
|
866
|
+
)
|
|
867
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
868
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
869
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
870
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
871
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
872
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
873
|
+
alias="resetPeriod", default=None
|
|
874
|
+
)
|
|
875
|
+
reset_period_configuration: Optional[
|
|
876
|
+
Annotated[
|
|
877
|
+
Union[
|
|
878
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
879
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
880
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
881
|
+
],
|
|
882
|
+
Field(discriminator="typename__"),
|
|
883
|
+
]
|
|
884
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
885
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
886
|
+
|
|
887
|
+
|
|
888
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
889
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
890
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
891
|
+
alias="monthlyAccordingTo", default=None
|
|
892
|
+
)
|
|
893
|
+
|
|
894
|
+
|
|
895
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
896
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
897
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
898
|
+
alias="weeklyAccordingTo", default=None
|
|
899
|
+
)
|
|
900
|
+
|
|
901
|
+
|
|
902
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
903
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
904
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
905
|
+
alias="yearlyAccordingTo", default=None
|
|
906
|
+
)
|
|
907
|
+
|
|
908
|
+
|
|
909
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
910
|
+
pass
|
|
911
|
+
|
|
912
|
+
|
|
913
913
|
class ApplySubscriptionFragment(BaseModel):
|
|
914
914
|
subscription: Optional["ApplySubscriptionFragmentSubscription"] = Field(
|
|
915
915
|
default=None
|
|
@@ -987,35 +987,6 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
987
987
|
)
|
|
988
988
|
|
|
989
989
|
|
|
990
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
991
|
-
status: PromotionalEntitlementStatus
|
|
992
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
993
|
-
feature_id: str = Field(alias="featureId")
|
|
994
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
995
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
996
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
997
|
-
alias="resetPeriod", default=None
|
|
998
|
-
)
|
|
999
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1000
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1001
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1005
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1006
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1007
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1008
|
-
feature_units_plural: Optional[str] = Field(
|
|
1009
|
-
alias="featureUnitsPlural", default=None
|
|
1010
|
-
)
|
|
1011
|
-
display_name: str = Field(alias="displayName")
|
|
1012
|
-
description: Optional[str] = Field(default=None)
|
|
1013
|
-
ref_id: str = Field(alias="refId")
|
|
1014
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1015
|
-
alias="additionalMetaData", default=None
|
|
1016
|
-
)
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
990
|
class CouponFragment(BaseModel):
|
|
1020
991
|
id: str
|
|
1021
992
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1050,6 +1021,35 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1050
1021
|
status: SyncStatus
|
|
1051
1022
|
|
|
1052
1023
|
|
|
1024
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
1025
|
+
status: PromotionalEntitlementStatus
|
|
1026
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1027
|
+
feature_id: str = Field(alias="featureId")
|
|
1028
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1029
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1030
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1031
|
+
alias="resetPeriod", default=None
|
|
1032
|
+
)
|
|
1033
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1034
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1035
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1036
|
+
|
|
1037
|
+
|
|
1038
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1039
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1040
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1041
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1042
|
+
feature_units_plural: Optional[str] = Field(
|
|
1043
|
+
alias="featureUnitsPlural", default=None
|
|
1044
|
+
)
|
|
1045
|
+
display_name: str = Field(alias="displayName")
|
|
1046
|
+
description: Optional[str] = Field(default=None)
|
|
1047
|
+
ref_id: str = Field(alias="refId")
|
|
1048
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1049
|
+
alias="additionalMetaData", default=None
|
|
1050
|
+
)
|
|
1051
|
+
|
|
1052
|
+
|
|
1053
1053
|
class CustomerFragment(SlimCustomerFragment):
|
|
1054
1054
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1055
1055
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -2763,30 +2763,30 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2763
2763
|
|
|
2764
2764
|
|
|
2765
2765
|
AddonDependencyFragment.model_rebuild()
|
|
2766
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2767
2766
|
PriceTierFragment.model_rebuild()
|
|
2768
2767
|
PriceFragment.model_rebuild()
|
|
2769
2768
|
OveragePriceFragment.model_rebuild()
|
|
2769
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2770
2770
|
AddonFragment.model_rebuild()
|
|
2771
|
-
|
|
2772
|
-
|
|
2771
|
+
TotalPriceFragment.model_rebuild()
|
|
2772
|
+
CustomerResourceFragment.model_rebuild()
|
|
2773
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2774
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2773
2775
|
ProductFragment.model_rebuild()
|
|
2774
2776
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2775
2777
|
PlanFragment.model_rebuild()
|
|
2776
2778
|
SlimCustomerFragment.model_rebuild()
|
|
2777
2779
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2778
|
-
CustomerResourceFragment.model_rebuild()
|
|
2779
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2780
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2781
|
-
TotalPriceFragment.model_rebuild()
|
|
2782
2780
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2783
2781
|
SubscriptionFragment.model_rebuild()
|
|
2782
|
+
FeatureFragment.model_rebuild()
|
|
2783
|
+
EntitlementFragment.model_rebuild()
|
|
2784
2784
|
ApplySubscriptionFragment.model_rebuild()
|
|
2785
2785
|
FontVariantFragment.model_rebuild()
|
|
2786
2786
|
TypographyConfigurationFragment.model_rebuild()
|
|
2787
2787
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2788
|
-
PromotionalEntitlementFragment.model_rebuild()
|
|
2789
2788
|
CouponFragment.model_rebuild()
|
|
2789
|
+
PromotionalEntitlementFragment.model_rebuild()
|
|
2790
2790
|
CustomerFragment.model_rebuild()
|
|
2791
2791
|
CheckoutStateFragment.model_rebuild()
|
|
2792
2792
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
@@ -119,11 +119,11 @@ stigg/generated/client.py,sha256=AHebP8X0jl5noIxkZwMgE-EOE3e5lv-tGrCj2xDt58c,169
|
|
|
119
119
|
stigg/generated/create_subscription.py,sha256=vbpBJ_daXHcQDtvU3vbwSr2E7s4VGRHxqPavyTV3Mtk,457
|
|
120
120
|
stigg/generated/delegate_subscription_to_customer.py,sha256=0TgQDO0Hk-z7X7PGtqhvciqa8IjkToK9cpiX3Kqu_UY,561
|
|
121
121
|
stigg/generated/detach_customer_payment_method.py,sha256=ACXlC2xsGaUP723OrayFZQ9SbXxe8TtVUYdG1gqcYFc,523
|
|
122
|
-
stigg/generated/enums.py,sha256=
|
|
122
|
+
stigg/generated/enums.py,sha256=qWrohdIPTsA0omqBKnEiGAonNwjgF9yViJte1c9f5hM,34406
|
|
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=CzjnVm88Z5Dmm348siNr-KD_3Yakj4DAx6F_su5vIJk,100632
|
|
127
127
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
128
128
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
129
129
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -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.310.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.310.0.dist-info/METADATA,sha256=vo88pwqw-RsDUGKlzYPvrMe4LsceS7vNAZw82DnAh5c,2258
|
|
165
|
+
stigg_api_client_v2-2.310.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.310.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|