stigg-api-client-v2 2.327.0__py3-none-any.whl → 2.331.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 +2 -0
- stigg/generated/fragments.py +454 -454
- stigg/generated/input_types.py +1 -0
- {stigg_api_client_v2-2.327.0.dist-info → stigg_api_client_v2-2.331.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.327.0.dist-info → stigg_api_client_v2-2.331.0.dist-info}/RECORD +7 -7
- {stigg_api_client_v2-2.327.0.dist-info → stigg_api_client_v2-2.331.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.327.0.dist-info → stigg_api_client_v2-2.331.0.dist-info}/WHEEL +0 -0
stigg/generated/enums.py
CHANGED
|
@@ -453,6 +453,7 @@ class ErrorCode(str, Enum):
|
|
|
453
453
|
FailedToCreateCheckoutSessionError = "FailedToCreateCheckoutSessionError"
|
|
454
454
|
FailedToImportCustomer = "FailedToImportCustomer"
|
|
455
455
|
FailedToImportSubscriptions = "FailedToImportSubscriptions"
|
|
456
|
+
FailedToResolveBillingIntegration = "FailedToResolveBillingIntegration"
|
|
456
457
|
FeatureNotFound = "FeatureNotFound"
|
|
457
458
|
FetchAllCountriesPricesNotAllowed = "FetchAllCountriesPricesNotAllowed"
|
|
458
459
|
FreePlanCantHaveCompatiblePackageGroupError = (
|
|
@@ -1063,6 +1064,7 @@ class SubscriptionScheduleStatus(str, Enum):
|
|
|
1063
1064
|
class SubscriptionScheduleType(str, Enum):
|
|
1064
1065
|
AdditionalMetaData = "AdditionalMetaData"
|
|
1065
1066
|
Addon = "Addon"
|
|
1067
|
+
BillingInfoMetadata = "BillingInfoMetadata"
|
|
1066
1068
|
BillingPeriod = "BillingPeriod"
|
|
1067
1069
|
Coupon = "Coupon"
|
|
1068
1070
|
Downgrade = "Downgrade"
|
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(
|
|
@@ -144,6 +111,39 @@ class OveragePriceFragmentFeature(BaseModel):
|
|
|
144
111
|
description: Optional[str] = Field(default=None)
|
|
145
112
|
|
|
146
113
|
|
|
114
|
+
class PackageEntitlementFragment(BaseModel):
|
|
115
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
116
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
117
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
118
|
+
feature_id: str = Field(alias="featureId")
|
|
119
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
120
|
+
alias="resetPeriod", default=None
|
|
121
|
+
)
|
|
122
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
123
|
+
alias="hiddenFromWidgets", default=None
|
|
124
|
+
)
|
|
125
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
126
|
+
display_name_override: Optional[str] = Field(
|
|
127
|
+
alias="displayNameOverride", default=None
|
|
128
|
+
)
|
|
129
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
133
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
134
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
135
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
136
|
+
feature_units_plural: Optional[str] = Field(
|
|
137
|
+
alias="featureUnitsPlural", default=None
|
|
138
|
+
)
|
|
139
|
+
display_name: str = Field(alias="displayName")
|
|
140
|
+
description: Optional[str] = Field(default=None)
|
|
141
|
+
ref_id: str = Field(alias="refId")
|
|
142
|
+
additional_meta_data: Optional[Any] = Field(
|
|
143
|
+
alias="additionalMetaData", default=None
|
|
144
|
+
)
|
|
145
|
+
|
|
146
|
+
|
|
147
147
|
class PriceFragment(BaseModel):
|
|
148
148
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
149
149
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -215,316 +215,151 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
215
215
|
pass
|
|
216
216
|
|
|
217
217
|
|
|
218
|
-
class
|
|
219
|
-
|
|
220
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
221
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
222
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
223
|
-
feature_units_plural: Optional[str] = Field(
|
|
224
|
-
alias="featureUnitsPlural", default=None
|
|
225
|
-
)
|
|
226
|
-
description: Optional[str] = Field(default=None)
|
|
218
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
219
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
227
220
|
display_name: str = Field(alias="displayName")
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
alias="unitTransformation", default=None
|
|
221
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
222
|
+
default=None
|
|
231
223
|
)
|
|
224
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
232
225
|
|
|
233
226
|
|
|
234
|
-
class
|
|
235
|
-
|
|
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)
|
|
227
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
228
|
+
pass
|
|
274
229
|
|
|
275
230
|
|
|
276
|
-
class
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
alias="monthlyAccordingTo", default=None
|
|
280
|
-
)
|
|
231
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
232
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
233
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
281
234
|
|
|
282
235
|
|
|
283
|
-
class
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
236
|
+
class ProductFragment(BaseModel):
|
|
237
|
+
ref_id: str = Field(alias="refId")
|
|
238
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
239
|
+
description: Optional[str] = Field(default=None)
|
|
240
|
+
additional_meta_data: Optional[Any] = Field(
|
|
241
|
+
alias="additionalMetaData", default=None
|
|
287
242
|
)
|
|
243
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
288
244
|
|
|
289
245
|
|
|
290
|
-
class
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
alias="yearlyAccordingTo", default=None
|
|
246
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
247
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
248
|
+
alias="downgradePlan", default=None
|
|
294
249
|
)
|
|
295
250
|
|
|
296
251
|
|
|
297
|
-
class
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
class CustomerResourceFragment(BaseModel):
|
|
302
|
-
resource_id: str = Field(alias="resourceId")
|
|
252
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
253
|
+
ref_id: str = Field(alias="refId")
|
|
254
|
+
display_name: str = Field(alias="displayName")
|
|
303
255
|
|
|
304
256
|
|
|
305
|
-
class
|
|
257
|
+
class PlanFragment(BaseModel):
|
|
306
258
|
id: str
|
|
307
|
-
name: Optional[str] = Field(default=None)
|
|
308
|
-
email: Optional[str] = Field(default=None)
|
|
309
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
310
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
311
259
|
ref_id: str = Field(alias="refId")
|
|
312
|
-
|
|
260
|
+
display_name: str = Field(alias="displayName")
|
|
261
|
+
description: Optional[str] = Field(default=None)
|
|
313
262
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
263
|
+
version_number: int = Field(alias="versionNumber")
|
|
314
264
|
additional_meta_data: Optional[Any] = Field(
|
|
315
265
|
alias="additionalMetaData", default=None
|
|
316
266
|
)
|
|
317
|
-
|
|
318
|
-
alias="
|
|
267
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
268
|
+
alias="hiddenFromWidgets", default=None
|
|
319
269
|
)
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
327
|
-
billing_id: str = Field(alias="billingId")
|
|
328
|
-
status: SubscriptionInvoiceStatus
|
|
329
|
-
created_at: Any = Field(alias="createdAt")
|
|
330
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
331
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
332
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
333
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
334
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
335
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
336
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
337
|
-
alias="billingReason", default=None
|
|
270
|
+
product: "PlanFragmentProduct"
|
|
271
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
272
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
273
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
274
|
+
alias="inheritedEntitlements", default=None
|
|
338
275
|
)
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
342
|
-
alias="subTotalExcludingTax", default=None
|
|
276
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
277
|
+
alias="compatibleAddons", default=None
|
|
343
278
|
)
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
279
|
+
compatible_package_groups: Optional[
|
|
280
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
281
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
282
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
283
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
284
|
+
alias="overagePrices", default=None
|
|
285
|
+
)
|
|
286
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
287
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
288
|
+
alias="defaultTrialConfig", default=None
|
|
347
289
|
)
|
|
348
|
-
tax: Optional[float] = Field(default=None)
|
|
349
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
350
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
class TotalPriceFragment(BaseModel):
|
|
354
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
355
|
-
total: "TotalPriceFragmentTotal"
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
359
|
-
amount: float
|
|
360
|
-
currency: Currency
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
364
|
-
amount: float
|
|
365
|
-
currency: Currency
|
|
366
290
|
|
|
367
291
|
|
|
368
|
-
class
|
|
369
|
-
|
|
370
|
-
alias="subscriptionScheduleType"
|
|
371
|
-
)
|
|
372
|
-
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
373
|
-
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
374
|
-
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
375
|
-
alias="targetPackage", default=None
|
|
376
|
-
)
|
|
377
|
-
schedule_variables: Optional[
|
|
378
|
-
Annotated[
|
|
379
|
-
Union[
|
|
380
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
381
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
382
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
383
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
384
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
385
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
386
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
387
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
388
|
-
],
|
|
389
|
-
Field(discriminator="typename__"),
|
|
390
|
-
]
|
|
391
|
-
] = Field(alias="scheduleVariables", default=None)
|
|
292
|
+
class PlanFragmentProduct(ProductFragment):
|
|
293
|
+
pass
|
|
392
294
|
|
|
393
295
|
|
|
394
|
-
class
|
|
395
|
-
id: str
|
|
296
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
396
297
|
ref_id: str = Field(alias="refId")
|
|
397
298
|
display_name: str = Field(alias="displayName")
|
|
398
299
|
|
|
399
300
|
|
|
400
|
-
class
|
|
401
|
-
|
|
402
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
403
|
-
new_quantity: float = Field(alias="newQuantity")
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
407
|
-
BaseModel
|
|
408
|
-
):
|
|
409
|
-
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
410
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
411
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
415
|
-
BaseModel
|
|
416
|
-
):
|
|
417
|
-
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
418
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
422
|
-
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
426
|
-
BaseModel
|
|
427
|
-
):
|
|
428
|
-
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
429
|
-
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
430
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
431
|
-
billable_features: Optional[
|
|
432
|
-
List[
|
|
433
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
434
|
-
]
|
|
435
|
-
] = Field(alias="billableFeatures", default=None)
|
|
436
|
-
addons: Optional[
|
|
437
|
-
List[
|
|
438
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
439
|
-
]
|
|
440
|
-
] = Field(default=None)
|
|
441
|
-
price_overrides: Optional[
|
|
442
|
-
List[
|
|
443
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
444
|
-
]
|
|
445
|
-
] = Field(alias="priceOverrides", default=None)
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
449
|
-
BaseModel
|
|
450
|
-
):
|
|
451
|
-
feature_id: str = Field(alias="featureId")
|
|
452
|
-
quantity: float
|
|
301
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
302
|
+
pass
|
|
453
303
|
|
|
454
304
|
|
|
455
|
-
class
|
|
456
|
-
|
|
457
|
-
):
|
|
458
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
459
|
-
quantity: float
|
|
305
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
306
|
+
pass
|
|
460
307
|
|
|
461
308
|
|
|
462
|
-
class
|
|
463
|
-
|
|
464
|
-
):
|
|
465
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
466
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
467
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
309
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
310
|
+
pass
|
|
468
311
|
|
|
469
312
|
|
|
470
|
-
class
|
|
471
|
-
|
|
472
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
473
|
-
change_type: PlanChangeType = Field(alias="changeType")
|
|
474
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
475
|
-
billable_features: Optional[
|
|
476
|
-
List[
|
|
477
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
478
|
-
]
|
|
479
|
-
] = Field(alias="billableFeatures", default=None)
|
|
480
|
-
addons: Optional[
|
|
481
|
-
List[
|
|
482
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
483
|
-
]
|
|
484
|
-
] = Field(default=None)
|
|
485
|
-
price_overrides: Optional[
|
|
486
|
-
List[
|
|
487
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
488
|
-
]
|
|
489
|
-
] = Field(alias="priceOverrides", default=None)
|
|
313
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
314
|
+
pass
|
|
490
315
|
|
|
491
316
|
|
|
492
|
-
class
|
|
493
|
-
|
|
494
|
-
):
|
|
495
|
-
feature_id: str = Field(alias="featureId")
|
|
496
|
-
quantity: float
|
|
317
|
+
class PlanFragmentPrices(PriceFragment):
|
|
318
|
+
pass
|
|
497
319
|
|
|
498
320
|
|
|
499
|
-
class
|
|
500
|
-
|
|
501
|
-
):
|
|
502
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
503
|
-
quantity: float
|
|
321
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
322
|
+
pass
|
|
504
323
|
|
|
505
324
|
|
|
506
|
-
class
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
325
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
326
|
+
duration: float
|
|
327
|
+
units: TrialPeriodUnits
|
|
328
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
329
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
330
|
+
alias="trialEndBehavior", default=None
|
|
331
|
+
)
|
|
512
332
|
|
|
513
333
|
|
|
514
|
-
class
|
|
515
|
-
|
|
516
|
-
):
|
|
517
|
-
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
518
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
519
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
334
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
335
|
+
limit: float
|
|
520
336
|
|
|
521
337
|
|
|
522
|
-
class
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
338
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
339
|
+
billing_id: str = Field(alias="billingId")
|
|
340
|
+
status: SubscriptionInvoiceStatus
|
|
341
|
+
created_at: Any = Field(alias="createdAt")
|
|
342
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
343
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
344
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
345
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
346
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
347
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
348
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
349
|
+
alias="billingReason", default=None
|
|
350
|
+
)
|
|
351
|
+
currency: Optional[str] = Field(default=None)
|
|
352
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
353
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
354
|
+
alias="subTotalExcludingTax", default=None
|
|
355
|
+
)
|
|
356
|
+
total: Optional[float] = Field(default=None)
|
|
357
|
+
total_excluding_tax: Optional[float] = Field(
|
|
358
|
+
alias="totalExcludingTax", default=None
|
|
359
|
+
)
|
|
360
|
+
tax: Optional[float] = Field(default=None)
|
|
361
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
362
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
528
363
|
|
|
529
364
|
|
|
530
365
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
@@ -681,124 +516,206 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
681
516
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
682
517
|
|
|
683
518
|
|
|
684
|
-
class
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
519
|
+
class SlimCustomerFragment(BaseModel):
|
|
520
|
+
id: str
|
|
521
|
+
name: Optional[str] = Field(default=None)
|
|
522
|
+
email: Optional[str] = Field(default=None)
|
|
523
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
524
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
525
|
+
ref_id: str = Field(alias="refId")
|
|
526
|
+
customer_id: str = Field(alias="customerId")
|
|
527
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
528
|
+
additional_meta_data: Optional[Any] = Field(
|
|
529
|
+
alias="additionalMetaData", default=None
|
|
530
|
+
)
|
|
531
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
532
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
689
533
|
)
|
|
690
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
691
534
|
|
|
692
535
|
|
|
693
|
-
class
|
|
694
|
-
|
|
536
|
+
class TotalPriceFragment(BaseModel):
|
|
537
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
538
|
+
total: "TotalPriceFragmentTotal"
|
|
695
539
|
|
|
696
540
|
|
|
697
|
-
class
|
|
698
|
-
|
|
699
|
-
|
|
541
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
542
|
+
amount: float
|
|
543
|
+
currency: Currency
|
|
700
544
|
|
|
701
545
|
|
|
702
|
-
class
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
description: Optional[str] = Field(default=None)
|
|
706
|
-
additional_meta_data: Optional[Any] = Field(
|
|
707
|
-
alias="additionalMetaData", default=None
|
|
708
|
-
)
|
|
709
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
546
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
547
|
+
amount: float
|
|
548
|
+
currency: Currency
|
|
710
549
|
|
|
711
550
|
|
|
712
|
-
class
|
|
713
|
-
|
|
714
|
-
alias="downgradePlan", default=None
|
|
715
|
-
)
|
|
551
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
552
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
716
553
|
|
|
717
554
|
|
|
718
|
-
class
|
|
719
|
-
|
|
720
|
-
|
|
555
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
556
|
+
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
557
|
+
alias="subscriptionScheduleType"
|
|
558
|
+
)
|
|
559
|
+
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
560
|
+
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
561
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
562
|
+
alias="targetPackage", default=None
|
|
563
|
+
)
|
|
564
|
+
schedule_variables: Optional[
|
|
565
|
+
Annotated[
|
|
566
|
+
Union[
|
|
567
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
568
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
569
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
570
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
571
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
572
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
573
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
574
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
575
|
+
],
|
|
576
|
+
Field(discriminator="typename__"),
|
|
577
|
+
]
|
|
578
|
+
] = Field(alias="scheduleVariables", default=None)
|
|
721
579
|
|
|
722
580
|
|
|
723
|
-
class
|
|
581
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
724
582
|
id: str
|
|
725
583
|
ref_id: str = Field(alias="refId")
|
|
726
584
|
display_name: str = Field(alias="displayName")
|
|
727
|
-
description: Optional[str] = Field(default=None)
|
|
728
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
729
|
-
version_number: int = Field(alias="versionNumber")
|
|
730
|
-
additional_meta_data: Optional[Any] = Field(
|
|
731
|
-
alias="additionalMetaData", default=None
|
|
732
|
-
)
|
|
733
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
734
|
-
alias="hiddenFromWidgets", default=None
|
|
735
|
-
)
|
|
736
|
-
product: "PlanFragmentProduct"
|
|
737
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
738
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
739
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
740
|
-
alias="inheritedEntitlements", default=None
|
|
741
|
-
)
|
|
742
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
743
|
-
alias="compatibleAddons", default=None
|
|
744
|
-
)
|
|
745
|
-
compatible_package_groups: Optional[
|
|
746
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
747
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
748
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
749
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
750
|
-
alias="overagePrices", default=None
|
|
751
|
-
)
|
|
752
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
753
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
754
|
-
alias="defaultTrialConfig", default=None
|
|
755
|
-
)
|
|
756
585
|
|
|
757
586
|
|
|
758
|
-
class
|
|
759
|
-
|
|
587
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
588
|
+
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
589
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
590
|
+
new_quantity: float = Field(alias="newQuantity")
|
|
760
591
|
|
|
761
592
|
|
|
762
|
-
class
|
|
763
|
-
|
|
764
|
-
|
|
593
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
594
|
+
BaseModel
|
|
595
|
+
):
|
|
596
|
+
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
597
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
598
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
765
599
|
|
|
766
600
|
|
|
767
|
-
class
|
|
768
|
-
|
|
601
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
602
|
+
BaseModel
|
|
603
|
+
):
|
|
604
|
+
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
605
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
769
606
|
|
|
770
607
|
|
|
771
|
-
class
|
|
772
|
-
|
|
608
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
609
|
+
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
773
610
|
|
|
774
611
|
|
|
775
|
-
class
|
|
776
|
-
|
|
612
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
613
|
+
BaseModel
|
|
614
|
+
):
|
|
615
|
+
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
616
|
+
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
617
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
618
|
+
billable_features: Optional[
|
|
619
|
+
List[
|
|
620
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
621
|
+
]
|
|
622
|
+
] = Field(alias="billableFeatures", default=None)
|
|
623
|
+
addons: Optional[
|
|
624
|
+
List[
|
|
625
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
626
|
+
]
|
|
627
|
+
] = Field(default=None)
|
|
628
|
+
price_overrides: Optional[
|
|
629
|
+
List[
|
|
630
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
631
|
+
]
|
|
632
|
+
] = Field(alias="priceOverrides", default=None)
|
|
777
633
|
|
|
778
634
|
|
|
779
|
-
class
|
|
780
|
-
|
|
635
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
636
|
+
BaseModel
|
|
637
|
+
):
|
|
638
|
+
feature_id: str = Field(alias="featureId")
|
|
639
|
+
quantity: float
|
|
781
640
|
|
|
782
641
|
|
|
783
|
-
class
|
|
784
|
-
|
|
642
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
643
|
+
BaseModel
|
|
644
|
+
):
|
|
645
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
646
|
+
quantity: float
|
|
785
647
|
|
|
786
648
|
|
|
787
|
-
class
|
|
788
|
-
|
|
649
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
650
|
+
BaseModel
|
|
651
|
+
):
|
|
652
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
653
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
654
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
789
655
|
|
|
790
656
|
|
|
791
|
-
class
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
657
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
658
|
+
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
659
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
660
|
+
change_type: PlanChangeType = Field(alias="changeType")
|
|
661
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
662
|
+
billable_features: Optional[
|
|
663
|
+
List[
|
|
664
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
665
|
+
]
|
|
666
|
+
] = Field(alias="billableFeatures", default=None)
|
|
667
|
+
addons: Optional[
|
|
668
|
+
List[
|
|
669
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
670
|
+
]
|
|
671
|
+
] = Field(default=None)
|
|
672
|
+
price_overrides: Optional[
|
|
673
|
+
List[
|
|
674
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
675
|
+
]
|
|
676
|
+
] = Field(alias="priceOverrides", default=None)
|
|
677
|
+
|
|
678
|
+
|
|
679
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
680
|
+
BaseModel
|
|
681
|
+
):
|
|
682
|
+
feature_id: str = Field(alias="featureId")
|
|
683
|
+
quantity: float
|
|
684
|
+
|
|
685
|
+
|
|
686
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
687
|
+
BaseModel
|
|
688
|
+
):
|
|
689
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
690
|
+
quantity: float
|
|
691
|
+
|
|
692
|
+
|
|
693
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
694
|
+
BaseModel
|
|
695
|
+
):
|
|
696
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
697
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
698
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
699
|
+
|
|
700
|
+
|
|
701
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
702
|
+
BaseModel
|
|
703
|
+
):
|
|
704
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
705
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
706
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
798
707
|
|
|
799
708
|
|
|
800
|
-
class
|
|
801
|
-
|
|
709
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
710
|
+
BaseModel
|
|
711
|
+
):
|
|
712
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
713
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
714
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
715
|
+
|
|
716
|
+
|
|
717
|
+
class CustomerResourceFragment(BaseModel):
|
|
718
|
+
resource_id: str = Field(alias="resourceId")
|
|
802
719
|
|
|
803
720
|
|
|
804
721
|
class SubscriptionFragment(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")
|
|
@@ -1250,16 +1250,6 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1250
1250
|
pass
|
|
1251
1251
|
|
|
1252
1252
|
|
|
1253
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1254
|
-
display_name: str = Field(alias="displayName")
|
|
1255
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1256
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1257
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1258
|
-
period: PromotionalEntitlementPeriod
|
|
1259
|
-
start_date: Any = Field(alias="startDate")
|
|
1260
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
1253
|
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1264
1254
|
addon_id: str = Field(alias="addonId")
|
|
1265
1255
|
description: Optional[str] = Field(default=None)
|
|
@@ -1267,33 +1257,6 @@ class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
|
1267
1257
|
quantity: int
|
|
1268
1258
|
|
|
1269
1259
|
|
|
1270
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1271
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1272
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1273
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1274
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1275
|
-
default=None
|
|
1276
|
-
)
|
|
1277
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1278
|
-
default=None
|
|
1279
|
-
)
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1283
|
-
amount: float
|
|
1284
|
-
currency: Currency
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1288
|
-
id: str
|
|
1289
|
-
ref_id: str = Field(alias="refId")
|
|
1290
|
-
display_name: str = Field(alias="displayName")
|
|
1291
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1292
|
-
feature_units_plural: Optional[str] = Field(
|
|
1293
|
-
alias="featureUnitsPlural", default=None
|
|
1294
|
-
)
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
1260
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1298
1261
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1299
1262
|
alias="subscriptionScheduleType"
|
|
@@ -1463,6 +1426,33 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1463
1426
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1464
1427
|
|
|
1465
1428
|
|
|
1429
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1430
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1431
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1432
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1433
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1434
|
+
default=None
|
|
1435
|
+
)
|
|
1436
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1437
|
+
default=None
|
|
1438
|
+
)
|
|
1439
|
+
|
|
1440
|
+
|
|
1441
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1442
|
+
amount: float
|
|
1443
|
+
currency: Currency
|
|
1444
|
+
|
|
1445
|
+
|
|
1446
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1447
|
+
id: str
|
|
1448
|
+
ref_id: str = Field(alias="refId")
|
|
1449
|
+
display_name: str = Field(alias="displayName")
|
|
1450
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1451
|
+
feature_units_plural: Optional[str] = Field(
|
|
1452
|
+
alias="featureUnitsPlural", default=None
|
|
1453
|
+
)
|
|
1454
|
+
|
|
1455
|
+
|
|
1466
1456
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1467
1457
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1468
1458
|
plan_id: str = Field(alias="planId")
|
|
@@ -1559,6 +1549,16 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1559
1549
|
pass
|
|
1560
1550
|
|
|
1561
1551
|
|
|
1552
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1553
|
+
display_name: str = Field(alias="displayName")
|
|
1554
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1555
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1556
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1557
|
+
period: PromotionalEntitlementPeriod
|
|
1558
|
+
start_date: Any = Field(alias="startDate")
|
|
1559
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1560
|
+
|
|
1561
|
+
|
|
1562
1562
|
class CustomerPortalFragment(BaseModel):
|
|
1563
1563
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1564
1564
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -2763,40 +2763,40 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2763
2763
|
|
|
2764
2764
|
|
|
2765
2765
|
AddonDependencyFragment.model_rebuild()
|
|
2766
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2767
2766
|
PriceTierFragment.model_rebuild()
|
|
2768
2767
|
OveragePriceFragment.model_rebuild()
|
|
2768
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2769
2769
|
PriceFragment.model_rebuild()
|
|
2770
2770
|
AddonFragment.model_rebuild()
|
|
2771
|
-
FeatureFragment.model_rebuild()
|
|
2772
|
-
EntitlementFragment.model_rebuild()
|
|
2773
|
-
CustomerResourceFragment.model_rebuild()
|
|
2774
|
-
SlimCustomerFragment.model_rebuild()
|
|
2775
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2776
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2777
|
-
TotalPriceFragment.model_rebuild()
|
|
2778
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2779
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2780
2771
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2781
2772
|
ProductFragment.model_rebuild()
|
|
2782
2773
|
PlanFragment.model_rebuild()
|
|
2774
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2775
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2776
|
+
SlimCustomerFragment.model_rebuild()
|
|
2777
|
+
TotalPriceFragment.model_rebuild()
|
|
2778
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2779
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2780
|
+
CustomerResourceFragment.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()
|
|
2793
2793
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2794
2794
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2795
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2796
2795
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2797
|
-
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2798
2796
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2797
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2799
2798
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2799
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2800
2800
|
CustomerPortalFragment.model_rebuild()
|
|
2801
2801
|
CustomerStatisticsFragment.model_rebuild()
|
|
2802
2802
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -3660,6 +3660,7 @@ class SubscriptionBillingInfo(BaseModel):
|
|
|
3660
3660
|
alias="chargeOnBehalfOfAccount", default=None
|
|
3661
3661
|
)
|
|
3662
3662
|
coupon_id: Optional[str] = Field(alias="couponId", default=None)
|
|
3663
|
+
integration_id: Optional[str] = Field(alias="integrationId", default=None)
|
|
3663
3664
|
invoice_days_until_due: Optional[float] = Field(
|
|
3664
3665
|
alias="invoiceDaysUntilDue", default=None
|
|
3665
3666
|
)
|
|
@@ -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=GSE5V0OioageZfpl_XDszdROY03BerofExrP5kWa9Rg,34946
|
|
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=YPSznOSO2LXT_DESMPbfS3jIlDN9K-ML1x2k3-CWExw,100632
|
|
127
127
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
128
128
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
129
129
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -144,7 +144,7 @@ stigg/generated/grant_promotional_entitlements.py,sha256=72PRYuqecL-0SkWb7deygkh
|
|
|
144
144
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
145
145
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
146
146
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
147
|
-
stigg/generated/input_types.py,sha256=
|
|
147
|
+
stigg/generated/input_types.py,sha256=_wts0gXKpc1TEesBuODk_IWg0N3ceBUr4_LX5jwFzwI,192292
|
|
148
148
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
149
149
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
150
150
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -160,7 +160,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
160
160
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
161
161
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
162
162
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
163
|
-
stigg_api_client_v2-2.
|
|
164
|
-
stigg_api_client_v2-2.
|
|
165
|
-
stigg_api_client_v2-2.
|
|
166
|
-
stigg_api_client_v2-2.
|
|
163
|
+
stigg_api_client_v2-2.331.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.331.0.dist-info/METADATA,sha256=2taQvy1wY93aYH8BHvAuE3PyrqS7DWQmohAfQya_oig,2258
|
|
165
|
+
stigg_api_client_v2-2.331.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.331.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|