stigg-api-client-v2 2.462.3__py3-none-any.whl → 2.463.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of stigg-api-client-v2 might be problematic. Click here for more details.
- stigg/generated/__init__.py +2 -0
- stigg/generated/enums.py +2 -0
- stigg/generated/fragments.py +222 -222
- stigg/generated/input_types.py +14 -0
- {stigg_api_client_v2-2.462.3.dist-info → stigg_api_client_v2-2.463.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.462.3.dist-info → stigg_api_client_v2-2.463.0.dist-info}/RECORD +8 -8
- {stigg_api_client_v2-2.462.3.dist-info → stigg_api_client_v2-2.463.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.462.3.dist-info → stigg_api_client_v2-2.463.0.dist-info}/WHEEL +0 -0
stigg/generated/__init__.py
CHANGED
|
@@ -673,6 +673,7 @@ from .input_types import (
|
|
|
673
673
|
EntitlementCheckRequested,
|
|
674
674
|
EntitlementCheckResult,
|
|
675
675
|
EntitlementOptions,
|
|
676
|
+
EnumConfigurationEntityInput,
|
|
676
677
|
EnvironmentFilter,
|
|
677
678
|
EnvironmentInput,
|
|
678
679
|
EnvironmentMergeConfigurationInput,
|
|
@@ -1211,6 +1212,7 @@ __all__ = [
|
|
|
1211
1212
|
"EntitlementsUpdatedPayload",
|
|
1212
1213
|
"EntitlementsUpdatedPayloadEntitlements",
|
|
1213
1214
|
"EntitySelectionMode",
|
|
1215
|
+
"EnumConfigurationEntityInput",
|
|
1214
1216
|
"EnvironmentAccessRole",
|
|
1215
1217
|
"EnvironmentFilter",
|
|
1216
1218
|
"EnvironmentInput",
|
stigg/generated/enums.py
CHANGED
|
@@ -464,6 +464,7 @@ class ErrorCode(str, Enum):
|
|
|
464
464
|
FailedToImportCustomer = "FailedToImportCustomer"
|
|
465
465
|
FailedToImportSubscriptions = "FailedToImportSubscriptions"
|
|
466
466
|
FailedToResolveBillingIntegration = "FailedToResolveBillingIntegration"
|
|
467
|
+
FeatureConfigurationExceededLimitError = "FeatureConfigurationExceededLimitError"
|
|
467
468
|
FeatureNotFound = "FeatureNotFound"
|
|
468
469
|
FetchAllCountriesPricesNotAllowed = "FetchAllCountriesPricesNotAllowed"
|
|
469
470
|
FreePlanCantHaveCompatiblePackageGroupError = (
|
|
@@ -714,6 +715,7 @@ class FeatureStatus(str, Enum):
|
|
|
714
715
|
|
|
715
716
|
class FeatureType(str, Enum):
|
|
716
717
|
BOOLEAN = "BOOLEAN"
|
|
718
|
+
ENUM = "ENUM"
|
|
717
719
|
NUMBER = "NUMBER"
|
|
718
720
|
|
|
719
721
|
|
stigg/generated/fragments.py
CHANGED
|
@@ -80,29 +80,33 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
80
80
|
currency: Currency
|
|
81
81
|
|
|
82
82
|
|
|
83
|
-
class
|
|
83
|
+
class PriceFragment(BaseModel):
|
|
84
84
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
85
85
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
86
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
86
87
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
88
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
89
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
87
90
|
billing_country_code: Optional[str] = Field(
|
|
88
91
|
alias="billingCountryCode", default=None
|
|
89
92
|
)
|
|
90
|
-
price: Optional["
|
|
93
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
91
94
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
92
|
-
tiers: Optional[List["
|
|
93
|
-
feature: Optional["
|
|
95
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
96
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
97
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
94
98
|
|
|
95
99
|
|
|
96
|
-
class
|
|
100
|
+
class PriceFragmentPrice(BaseModel):
|
|
97
101
|
amount: float
|
|
98
102
|
currency: Currency
|
|
99
103
|
|
|
100
104
|
|
|
101
|
-
class
|
|
105
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
102
106
|
pass
|
|
103
107
|
|
|
104
108
|
|
|
105
|
-
class
|
|
109
|
+
class PriceFragmentFeature(BaseModel):
|
|
106
110
|
ref_id: str = Field(alias="refId")
|
|
107
111
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
108
112
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -145,33 +149,29 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
145
149
|
)
|
|
146
150
|
|
|
147
151
|
|
|
148
|
-
class
|
|
152
|
+
class OveragePriceFragment(BaseModel):
|
|
149
153
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
150
154
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
151
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
152
155
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
153
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
154
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
155
156
|
billing_country_code: Optional[str] = Field(
|
|
156
157
|
alias="billingCountryCode", default=None
|
|
157
158
|
)
|
|
158
|
-
price: Optional["
|
|
159
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
159
160
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
160
|
-
tiers: Optional[List["
|
|
161
|
-
feature: Optional["
|
|
162
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
161
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
162
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
163
163
|
|
|
164
164
|
|
|
165
|
-
class
|
|
165
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
166
166
|
amount: float
|
|
167
167
|
currency: Currency
|
|
168
168
|
|
|
169
169
|
|
|
170
|
-
class
|
|
170
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
171
171
|
pass
|
|
172
172
|
|
|
173
173
|
|
|
174
|
-
class
|
|
174
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
175
175
|
ref_id: str = Field(alias="refId")
|
|
176
176
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
177
177
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -223,108 +223,45 @@ class CustomerResourceFragment(BaseModel):
|
|
|
223
223
|
resource_id: str = Field(alias="resourceId")
|
|
224
224
|
|
|
225
225
|
|
|
226
|
-
class
|
|
227
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
228
|
-
total: "TotalPriceFragmentTotal"
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
232
|
-
amount: float
|
|
233
|
-
currency: Currency
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
237
|
-
amount: float
|
|
238
|
-
currency: Currency
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
242
|
-
billing_id: str = Field(alias="billingId")
|
|
243
|
-
status: SubscriptionInvoiceStatus
|
|
244
|
-
created_at: Any = Field(alias="createdAt")
|
|
245
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
246
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
247
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
248
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
249
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
250
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
251
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
252
|
-
alias="billingReason", default=None
|
|
253
|
-
)
|
|
254
|
-
currency: Optional[str] = Field(default=None)
|
|
255
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
256
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
257
|
-
alias="subTotalExcludingTax", default=None
|
|
258
|
-
)
|
|
259
|
-
total: Optional[float] = Field(default=None)
|
|
260
|
-
total_excluding_tax: Optional[float] = Field(
|
|
261
|
-
alias="totalExcludingTax", default=None
|
|
262
|
-
)
|
|
263
|
-
tax: Optional[float] = Field(default=None)
|
|
264
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
265
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
class SlimCustomerFragment(BaseModel):
|
|
269
|
-
id: str
|
|
270
|
-
name: Optional[str] = Field(default=None)
|
|
271
|
-
email: Optional[str] = Field(default=None)
|
|
272
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
273
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
274
|
-
ref_id: str = Field(alias="refId")
|
|
275
|
-
customer_id: str = Field(alias="customerId")
|
|
276
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
277
|
-
additional_meta_data: Optional[Any] = Field(
|
|
278
|
-
alias="additionalMetaData", default=None
|
|
279
|
-
)
|
|
280
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
281
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
282
|
-
)
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
286
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
class SubscriptionFutureUpdateData(BaseModel):
|
|
226
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
290
227
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
291
228
|
alias="subscriptionScheduleType"
|
|
292
229
|
)
|
|
293
230
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
294
231
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
295
|
-
target_package: Optional["
|
|
232
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
296
233
|
alias="targetPackage", default=None
|
|
297
234
|
)
|
|
298
235
|
schedule_variables: Optional[
|
|
299
236
|
Annotated[
|
|
300
237
|
Union[
|
|
301
|
-
"
|
|
302
|
-
"
|
|
303
|
-
"
|
|
304
|
-
"
|
|
305
|
-
"
|
|
306
|
-
"
|
|
307
|
-
"
|
|
308
|
-
"
|
|
238
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
239
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
240
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
241
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
242
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
243
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
244
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
245
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
309
246
|
],
|
|
310
247
|
Field(discriminator="typename__"),
|
|
311
248
|
]
|
|
312
249
|
] = Field(alias="scheduleVariables", default=None)
|
|
313
250
|
|
|
314
251
|
|
|
315
|
-
class
|
|
252
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
316
253
|
id: str
|
|
317
254
|
ref_id: str = Field(alias="refId")
|
|
318
255
|
display_name: str = Field(alias="displayName")
|
|
319
256
|
|
|
320
257
|
|
|
321
|
-
class
|
|
258
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
322
259
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
323
260
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
324
261
|
new_quantity: float = Field(alias="newQuantity")
|
|
325
262
|
|
|
326
263
|
|
|
327
|
-
class
|
|
264
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
328
265
|
BaseModel
|
|
329
266
|
):
|
|
330
267
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -332,53 +269,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
332
269
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
333
270
|
|
|
334
271
|
|
|
335
|
-
class
|
|
272
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
336
273
|
BaseModel
|
|
337
274
|
):
|
|
338
275
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
339
276
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
340
277
|
|
|
341
278
|
|
|
342
|
-
class
|
|
279
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
343
280
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
344
281
|
|
|
345
282
|
|
|
346
|
-
class
|
|
283
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
284
|
+
BaseModel
|
|
285
|
+
):
|
|
347
286
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
348
287
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
349
288
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
350
289
|
billable_features: Optional[
|
|
351
290
|
List[
|
|
352
|
-
"
|
|
291
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
353
292
|
]
|
|
354
293
|
] = Field(alias="billableFeatures", default=None)
|
|
355
294
|
addons: Optional[
|
|
356
295
|
List[
|
|
357
|
-
"
|
|
296
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
358
297
|
]
|
|
359
298
|
] = Field(default=None)
|
|
360
299
|
price_overrides: Optional[
|
|
361
300
|
List[
|
|
362
|
-
"
|
|
301
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
363
302
|
]
|
|
364
303
|
] = Field(alias="priceOverrides", default=None)
|
|
365
304
|
|
|
366
305
|
|
|
367
|
-
class
|
|
306
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
368
307
|
BaseModel
|
|
369
308
|
):
|
|
370
309
|
feature_id: str = Field(alias="featureId")
|
|
371
310
|
quantity: float
|
|
372
311
|
|
|
373
312
|
|
|
374
|
-
class
|
|
313
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
375
314
|
BaseModel
|
|
376
315
|
):
|
|
377
316
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
378
317
|
quantity: float
|
|
379
318
|
|
|
380
319
|
|
|
381
|
-
class
|
|
320
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
382
321
|
BaseModel
|
|
383
322
|
):
|
|
384
323
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -386,39 +325,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
386
325
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
387
326
|
|
|
388
327
|
|
|
389
|
-
class
|
|
328
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
390
329
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
391
330
|
plan_ref_id: str = Field(alias="planRefId")
|
|
392
331
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
393
332
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
394
333
|
billable_features: Optional[
|
|
395
334
|
List[
|
|
396
|
-
"
|
|
335
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
397
336
|
]
|
|
398
337
|
] = Field(alias="billableFeatures", default=None)
|
|
399
338
|
addons: Optional[
|
|
400
|
-
List[
|
|
339
|
+
List[
|
|
340
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
341
|
+
]
|
|
401
342
|
] = Field(default=None)
|
|
402
343
|
price_overrides: Optional[
|
|
403
344
|
List[
|
|
404
|
-
"
|
|
345
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
405
346
|
]
|
|
406
347
|
] = Field(alias="priceOverrides", default=None)
|
|
407
348
|
|
|
408
349
|
|
|
409
|
-
class
|
|
350
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
410
351
|
BaseModel
|
|
411
352
|
):
|
|
412
353
|
feature_id: str = Field(alias="featureId")
|
|
413
354
|
quantity: float
|
|
414
355
|
|
|
415
356
|
|
|
416
|
-
class
|
|
357
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
358
|
+
BaseModel
|
|
359
|
+
):
|
|
417
360
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
418
361
|
quantity: float
|
|
419
362
|
|
|
420
363
|
|
|
421
|
-
class
|
|
364
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
422
365
|
BaseModel
|
|
423
366
|
):
|
|
424
367
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -426,7 +369,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
426
369
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
427
370
|
|
|
428
371
|
|
|
429
|
-
class
|
|
372
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
430
373
|
BaseModel
|
|
431
374
|
):
|
|
432
375
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -434,51 +377,80 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
434
377
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
435
378
|
|
|
436
379
|
|
|
437
|
-
class
|
|
380
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
381
|
+
BaseModel
|
|
382
|
+
):
|
|
438
383
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
439
384
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
440
385
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
441
386
|
|
|
442
387
|
|
|
443
|
-
class
|
|
388
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
389
|
+
billing_id: str = Field(alias="billingId")
|
|
390
|
+
status: SubscriptionInvoiceStatus
|
|
391
|
+
created_at: Any = Field(alias="createdAt")
|
|
392
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
393
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
394
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
395
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
396
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
397
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
398
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
399
|
+
alias="billingReason", default=None
|
|
400
|
+
)
|
|
401
|
+
currency: Optional[str] = Field(default=None)
|
|
402
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
403
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
404
|
+
alias="subTotalExcludingTax", default=None
|
|
405
|
+
)
|
|
406
|
+
total: Optional[float] = Field(default=None)
|
|
407
|
+
total_excluding_tax: Optional[float] = Field(
|
|
408
|
+
alias="totalExcludingTax", default=None
|
|
409
|
+
)
|
|
410
|
+
tax: Optional[float] = Field(default=None)
|
|
411
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
412
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
444
416
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
445
417
|
alias="subscriptionScheduleType"
|
|
446
418
|
)
|
|
447
419
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
448
420
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
449
|
-
target_package: Optional["
|
|
421
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
450
422
|
alias="targetPackage", default=None
|
|
451
423
|
)
|
|
452
424
|
schedule_variables: Optional[
|
|
453
425
|
Annotated[
|
|
454
426
|
Union[
|
|
455
|
-
"
|
|
456
|
-
"
|
|
457
|
-
"
|
|
458
|
-
"
|
|
459
|
-
"
|
|
460
|
-
"
|
|
461
|
-
"
|
|
462
|
-
"
|
|
427
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
428
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
429
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
430
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
431
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
432
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
433
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
434
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
463
435
|
],
|
|
464
436
|
Field(discriminator="typename__"),
|
|
465
437
|
]
|
|
466
438
|
] = Field(alias="scheduleVariables", default=None)
|
|
467
439
|
|
|
468
440
|
|
|
469
|
-
class
|
|
441
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
470
442
|
id: str
|
|
471
443
|
ref_id: str = Field(alias="refId")
|
|
472
444
|
display_name: str = Field(alias="displayName")
|
|
473
445
|
|
|
474
446
|
|
|
475
|
-
class
|
|
447
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
476
448
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
477
449
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
478
450
|
new_quantity: float = Field(alias="newQuantity")
|
|
479
451
|
|
|
480
452
|
|
|
481
|
-
class
|
|
453
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
482
454
|
BaseModel
|
|
483
455
|
):
|
|
484
456
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -486,55 +458,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
486
458
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
487
459
|
|
|
488
460
|
|
|
489
|
-
class
|
|
461
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
490
462
|
BaseModel
|
|
491
463
|
):
|
|
492
464
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
493
465
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
494
466
|
|
|
495
467
|
|
|
496
|
-
class
|
|
468
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
497
469
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
498
470
|
|
|
499
471
|
|
|
500
|
-
class
|
|
501
|
-
BaseModel
|
|
502
|
-
):
|
|
472
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
503
473
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
504
474
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
505
475
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
506
476
|
billable_features: Optional[
|
|
507
477
|
List[
|
|
508
|
-
"
|
|
478
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
509
479
|
]
|
|
510
480
|
] = Field(alias="billableFeatures", default=None)
|
|
511
481
|
addons: Optional[
|
|
512
482
|
List[
|
|
513
|
-
"
|
|
483
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
514
484
|
]
|
|
515
485
|
] = Field(default=None)
|
|
516
486
|
price_overrides: Optional[
|
|
517
487
|
List[
|
|
518
|
-
"
|
|
488
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
519
489
|
]
|
|
520
490
|
] = Field(alias="priceOverrides", default=None)
|
|
521
491
|
|
|
522
492
|
|
|
523
|
-
class
|
|
493
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
524
494
|
BaseModel
|
|
525
495
|
):
|
|
526
496
|
feature_id: str = Field(alias="featureId")
|
|
527
497
|
quantity: float
|
|
528
498
|
|
|
529
499
|
|
|
530
|
-
class
|
|
500
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
531
501
|
BaseModel
|
|
532
502
|
):
|
|
533
503
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
534
504
|
quantity: float
|
|
535
505
|
|
|
536
506
|
|
|
537
|
-
class
|
|
507
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
538
508
|
BaseModel
|
|
539
509
|
):
|
|
540
510
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -542,43 +512,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
542
512
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
543
513
|
|
|
544
514
|
|
|
545
|
-
class
|
|
515
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
546
516
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
547
517
|
plan_ref_id: str = Field(alias="planRefId")
|
|
548
518
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
549
519
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
550
520
|
billable_features: Optional[
|
|
551
521
|
List[
|
|
552
|
-
"
|
|
522
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
553
523
|
]
|
|
554
524
|
] = Field(alias="billableFeatures", default=None)
|
|
555
525
|
addons: Optional[
|
|
556
|
-
List[
|
|
557
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
558
|
-
]
|
|
526
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
559
527
|
] = Field(default=None)
|
|
560
528
|
price_overrides: Optional[
|
|
561
529
|
List[
|
|
562
|
-
"
|
|
530
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
563
531
|
]
|
|
564
532
|
] = Field(alias="priceOverrides", default=None)
|
|
565
533
|
|
|
566
534
|
|
|
567
|
-
class
|
|
535
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
568
536
|
BaseModel
|
|
569
537
|
):
|
|
570
538
|
feature_id: str = Field(alias="featureId")
|
|
571
539
|
quantity: float
|
|
572
540
|
|
|
573
541
|
|
|
574
|
-
class
|
|
575
|
-
BaseModel
|
|
576
|
-
):
|
|
542
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
577
543
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
578
544
|
quantity: float
|
|
579
545
|
|
|
580
546
|
|
|
581
|
-
class
|
|
547
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
582
548
|
BaseModel
|
|
583
549
|
):
|
|
584
550
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -586,7 +552,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
586
552
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
587
553
|
|
|
588
554
|
|
|
589
|
-
class
|
|
555
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
590
556
|
BaseModel
|
|
591
557
|
):
|
|
592
558
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -594,14 +560,31 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
594
560
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
595
561
|
|
|
596
562
|
|
|
597
|
-
class
|
|
598
|
-
BaseModel
|
|
599
|
-
):
|
|
563
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
600
564
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
601
565
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
602
566
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
603
567
|
|
|
604
568
|
|
|
569
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
570
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
571
|
+
|
|
572
|
+
|
|
573
|
+
class TotalPriceFragment(BaseModel):
|
|
574
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
575
|
+
total: "TotalPriceFragmentTotal"
|
|
576
|
+
|
|
577
|
+
|
|
578
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
579
|
+
amount: float
|
|
580
|
+
currency: Currency
|
|
581
|
+
|
|
582
|
+
|
|
583
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
584
|
+
amount: float
|
|
585
|
+
currency: Currency
|
|
586
|
+
|
|
587
|
+
|
|
605
588
|
class ProductFragment(BaseModel):
|
|
606
589
|
ref_id: str = Field(alias="refId")
|
|
607
590
|
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
@@ -722,6 +705,23 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
722
705
|
limit: float
|
|
723
706
|
|
|
724
707
|
|
|
708
|
+
class SlimCustomerFragment(BaseModel):
|
|
709
|
+
id: str
|
|
710
|
+
name: Optional[str] = Field(default=None)
|
|
711
|
+
email: Optional[str] = Field(default=None)
|
|
712
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
713
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
714
|
+
ref_id: str = Field(alias="refId")
|
|
715
|
+
customer_id: str = Field(alias="customerId")
|
|
716
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
717
|
+
additional_meta_data: Optional[Any] = Field(
|
|
718
|
+
alias="additionalMetaData", default=None
|
|
719
|
+
)
|
|
720
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
721
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
722
|
+
)
|
|
723
|
+
|
|
724
|
+
|
|
725
725
|
class SubscriptionFragment(BaseModel):
|
|
726
726
|
id: Any
|
|
727
727
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -991,6 +991,35 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
991
991
|
)
|
|
992
992
|
|
|
993
993
|
|
|
994
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
995
|
+
status: PromotionalEntitlementStatus
|
|
996
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
997
|
+
feature_id: str = Field(alias="featureId")
|
|
998
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
999
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1000
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1001
|
+
alias="resetPeriod", default=None
|
|
1002
|
+
)
|
|
1003
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1004
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1005
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1006
|
+
|
|
1007
|
+
|
|
1008
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1009
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1010
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1011
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1012
|
+
feature_units_plural: Optional[str] = Field(
|
|
1013
|
+
alias="featureUnitsPlural", default=None
|
|
1014
|
+
)
|
|
1015
|
+
display_name: str = Field(alias="displayName")
|
|
1016
|
+
description: Optional[str] = Field(default=None)
|
|
1017
|
+
ref_id: str = Field(alias="refId")
|
|
1018
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1019
|
+
alias="additionalMetaData", default=None
|
|
1020
|
+
)
|
|
1021
|
+
|
|
1022
|
+
|
|
994
1023
|
class CouponFragment(BaseModel):
|
|
995
1024
|
id: str
|
|
996
1025
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1025,35 +1054,6 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1025
1054
|
status: SyncStatus
|
|
1026
1055
|
|
|
1027
1056
|
|
|
1028
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
1029
|
-
status: PromotionalEntitlementStatus
|
|
1030
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1031
|
-
feature_id: str = Field(alias="featureId")
|
|
1032
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1033
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1034
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1035
|
-
alias="resetPeriod", default=None
|
|
1036
|
-
)
|
|
1037
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1038
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1039
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1043
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1044
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1045
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1046
|
-
feature_units_plural: Optional[str] = Field(
|
|
1047
|
-
alias="featureUnitsPlural", default=None
|
|
1048
|
-
)
|
|
1049
|
-
display_name: str = Field(alias="displayName")
|
|
1050
|
-
description: Optional[str] = Field(default=None)
|
|
1051
|
-
ref_id: str = Field(alias="refId")
|
|
1052
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1053
|
-
alias="additionalMetaData", default=None
|
|
1054
|
-
)
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
1057
|
class CustomerFragment(SlimCustomerFragment):
|
|
1058
1058
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1059
1059
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1270,40 +1270,6 @@ class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
|
1270
1270
|
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1271
1271
|
|
|
1272
1272
|
|
|
1273
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1274
|
-
addon_id: str = Field(alias="addonId")
|
|
1275
|
-
description: Optional[str] = Field(default=None)
|
|
1276
|
-
display_name: str = Field(alias="displayName")
|
|
1277
|
-
quantity: int
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1281
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1282
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1283
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1284
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1285
|
-
default=None
|
|
1286
|
-
)
|
|
1287
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1288
|
-
default=None
|
|
1289
|
-
)
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1293
|
-
amount: float
|
|
1294
|
-
currency: Currency
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1298
|
-
id: str
|
|
1299
|
-
ref_id: str = Field(alias="refId")
|
|
1300
|
-
display_name: str = Field(alias="displayName")
|
|
1301
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1302
|
-
feature_units_plural: Optional[str] = Field(
|
|
1303
|
-
alias="featureUnitsPlural", default=None
|
|
1304
|
-
)
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
1273
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1308
1274
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1309
1275
|
alias="subscriptionScheduleType"
|
|
@@ -1473,6 +1439,40 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1473
1439
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1474
1440
|
|
|
1475
1441
|
|
|
1442
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1443
|
+
addon_id: str = Field(alias="addonId")
|
|
1444
|
+
description: Optional[str] = Field(default=None)
|
|
1445
|
+
display_name: str = Field(alias="displayName")
|
|
1446
|
+
quantity: int
|
|
1447
|
+
|
|
1448
|
+
|
|
1449
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1450
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1451
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1452
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1453
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1454
|
+
default=None
|
|
1455
|
+
)
|
|
1456
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1457
|
+
default=None
|
|
1458
|
+
)
|
|
1459
|
+
|
|
1460
|
+
|
|
1461
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1462
|
+
amount: float
|
|
1463
|
+
currency: Currency
|
|
1464
|
+
|
|
1465
|
+
|
|
1466
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1467
|
+
id: str
|
|
1468
|
+
ref_id: str = Field(alias="refId")
|
|
1469
|
+
display_name: str = Field(alias="displayName")
|
|
1470
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1471
|
+
feature_units_plural: Optional[str] = Field(
|
|
1472
|
+
alias="featureUnitsPlural", default=None
|
|
1473
|
+
)
|
|
1474
|
+
|
|
1475
|
+
|
|
1476
1476
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1477
1477
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1478
1478
|
plan_id: str = Field(alias="planId")
|
|
@@ -2835,20 +2835,20 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2835
2835
|
|
|
2836
2836
|
AddonDependencyFragment.model_rebuild()
|
|
2837
2837
|
PriceTierFragment.model_rebuild()
|
|
2838
|
-
OveragePriceFragment.model_rebuild()
|
|
2839
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2840
2838
|
PriceFragment.model_rebuild()
|
|
2839
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2840
|
+
OveragePriceFragment.model_rebuild()
|
|
2841
2841
|
AddonFragment.model_rebuild()
|
|
2842
2842
|
CustomerResourceFragment.model_rebuild()
|
|
2843
|
-
|
|
2843
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2844
2844
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2845
|
-
SlimCustomerFragment.model_rebuild()
|
|
2846
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2847
2845
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2848
|
-
|
|
2846
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2847
|
+
TotalPriceFragment.model_rebuild()
|
|
2849
2848
|
ProductFragment.model_rebuild()
|
|
2850
2849
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2851
2850
|
PlanFragment.model_rebuild()
|
|
2851
|
+
SlimCustomerFragment.model_rebuild()
|
|
2852
2852
|
SubscriptionFragment.model_rebuild()
|
|
2853
2853
|
FeatureFragment.model_rebuild()
|
|
2854
2854
|
EntitlementFragment.model_rebuild()
|
|
@@ -2856,17 +2856,17 @@ ApplySubscriptionFragment.model_rebuild()
|
|
|
2856
2856
|
FontVariantFragment.model_rebuild()
|
|
2857
2857
|
TypographyConfigurationFragment.model_rebuild()
|
|
2858
2858
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2859
|
-
CouponFragment.model_rebuild()
|
|
2860
2859
|
PromotionalEntitlementFragment.model_rebuild()
|
|
2860
|
+
CouponFragment.model_rebuild()
|
|
2861
2861
|
CustomerFragment.model_rebuild()
|
|
2862
2862
|
CheckoutStateFragment.model_rebuild()
|
|
2863
2863
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2864
2864
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2865
2865
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2866
2866
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2867
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2867
2868
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2868
2869
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2869
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2870
2870
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2871
2871
|
CustomerPortalFragment.model_rebuild()
|
|
2872
2872
|
CustomerStatisticsFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -1509,6 +1509,11 @@ class EntitlementOptions(BaseModel):
|
|
|
1509
1509
|
should_track: Optional[bool] = Field(alias="shouldTrack", default=False)
|
|
1510
1510
|
|
|
1511
1511
|
|
|
1512
|
+
class EnumConfigurationEntityInput(BaseModel):
|
|
1513
|
+
display_name: str = Field(alias="displayName")
|
|
1514
|
+
value: str
|
|
1515
|
+
|
|
1516
|
+
|
|
1512
1517
|
class EnvironmentFilter(BaseModel):
|
|
1513
1518
|
and_: Optional[List["EnvironmentFilter"]] = Field(alias="and", default=None)
|
|
1514
1519
|
created_at: Optional["DateFieldComparison"] = Field(alias="createdAt", default=None)
|
|
@@ -1777,6 +1782,9 @@ class FeatureInput(BaseModel):
|
|
|
1777
1782
|
)
|
|
1778
1783
|
description: Optional[str] = None
|
|
1779
1784
|
display_name: str = Field(alias="displayName")
|
|
1785
|
+
enum_configuration: Optional[List["EnumConfigurationEntityInput"]] = Field(
|
|
1786
|
+
alias="enumConfiguration", default=None
|
|
1787
|
+
)
|
|
1780
1788
|
environment_id: str = Field(alias="environmentId")
|
|
1781
1789
|
feature_status: Optional[FeatureStatus] = Field(alias="featureStatus", default=None)
|
|
1782
1790
|
feature_type: FeatureType = Field(alias="featureType")
|
|
@@ -2297,6 +2305,7 @@ class OverageEntitlementCreateInput(BaseModel):
|
|
|
2297
2305
|
display_name_override: Optional[str] = Field(
|
|
2298
2306
|
alias="displayNameOverride", default=None
|
|
2299
2307
|
)
|
|
2308
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
2300
2309
|
feature_id: str = Field(alias="featureId")
|
|
2301
2310
|
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
2302
2311
|
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
@@ -2455,6 +2464,7 @@ class PackageEntitlementInput(BaseModel):
|
|
|
2455
2464
|
display_name_override: Optional[str] = Field(
|
|
2456
2465
|
alias="displayNameOverride", default=None
|
|
2457
2466
|
)
|
|
2467
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
2458
2468
|
environment_id: str = Field(alias="environmentId")
|
|
2459
2469
|
feature_id: str = Field(alias="featureId")
|
|
2460
2470
|
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
@@ -2492,6 +2502,7 @@ class PackageEntitlementUpdateInput(BaseModel):
|
|
|
2492
2502
|
display_name_override: Optional[str] = Field(
|
|
2493
2503
|
alias="displayNameOverride", default=None
|
|
2494
2504
|
)
|
|
2505
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
2495
2506
|
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
2496
2507
|
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
2497
2508
|
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
@@ -4441,6 +4452,9 @@ class UpdateFeatureInput(BaseModel):
|
|
|
4441
4452
|
)
|
|
4442
4453
|
description: Optional[str] = None
|
|
4443
4454
|
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
4455
|
+
enum_configuration: Optional[List["EnumConfigurationEntityInput"]] = Field(
|
|
4456
|
+
alias="enumConfiguration", default=None
|
|
4457
|
+
)
|
|
4444
4458
|
environment_id: str = Field(alias="environmentId")
|
|
4445
4459
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
4446
4460
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -106,7 +106,7 @@ stigg/_vendors/pydantic-2.6.4.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCe
|
|
|
106
106
|
stigg/_vendors/pydantic-2.6.4.dist-info/WHEEL,sha256=TJPnKdtrSue7xZ_AVGkp9YXcvDrobsjBds1du3Nx6dc,87
|
|
107
107
|
stigg/_vendors/pydantic-2.6.4.dist-info/licenses/LICENSE,sha256=qeGG88oWte74QxjnpwFyE1GgDLe4rjpDlLZ7SeNSnvM,1129
|
|
108
108
|
stigg/client.py,sha256=RWrVnxo9zHFXka8KJVE4sMgyek70ispQk0vqOINCvM0,8335
|
|
109
|
-
stigg/generated/__init__.py,sha256=
|
|
109
|
+
stigg/generated/__init__.py,sha256=jHxup_dLa_sJSRqXcKb_zMe8NJ_rn_AwwxjDsIRjWGs,71049
|
|
110
110
|
stigg/generated/apply_subscription.py,sha256=Vbs-QZZxN16pUpt3Hp7Jvvcc5o_8xwJK9oTLQQjH0ZA,451
|
|
111
111
|
stigg/generated/archive_customer.py,sha256=3N3iBiT2Vvzfb0ckV3o57A6lmJ_ef7JNPaMX_Jtcg6c,396
|
|
112
112
|
stigg/generated/async_base_client.py,sha256=zqd6IhYxpalyA6KQkeGhXgSurC0vXSwSWmSlM2zZ0VM,12593
|
|
@@ -119,11 +119,11 @@ stigg/generated/client.py,sha256=OXPEsN3pWBsiqUcTkLsmFEW4p23uiAXrWtgjs0CHcN4,172
|
|
|
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=_tv9tgkrjb2u252THHLwaUwGYKF_nUDWAi1d0GGceOk,35622
|
|
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=kygtgoCmDPzxki4kjYdpzyjKHtjAroQ42XLt6xb6aX8,103354
|
|
127
127
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
128
128
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
129
129
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -145,7 +145,7 @@ stigg/generated/grant_promotional_entitlements.py,sha256=72PRYuqecL-0SkWb7deygkh
|
|
|
145
145
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
146
146
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
147
147
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
148
|
-
stigg/generated/input_types.py,sha256=
|
|
148
|
+
stigg/generated/input_types.py,sha256=D5q0UrygAmJgsR7UXddqVxiy7SQ3wcrldOyOVuprtAI,197666
|
|
149
149
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
150
150
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
151
151
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -161,7 +161,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
161
161
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
162
162
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
163
163
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
164
|
-
stigg_api_client_v2-2.
|
|
165
|
-
stigg_api_client_v2-2.
|
|
166
|
-
stigg_api_client_v2-2.
|
|
167
|
-
stigg_api_client_v2-2.
|
|
164
|
+
stigg_api_client_v2-2.463.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
165
|
+
stigg_api_client_v2-2.463.0.dist-info/METADATA,sha256=sWUG4Pcik_lOBnZHZ0qvSpZpOJcS5P8X57vrg8JSJ_M,2258
|
|
166
|
+
stigg_api_client_v2-2.463.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
167
|
+
stigg_api_client_v2-2.463.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|