stigg-api-client-v2 2.481.0__py3-none-any.whl → 2.482.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of stigg-api-client-v2 might be problematic. Click here for more details.
- stigg/generated/enums.py +1 -0
- stigg/generated/fragments.py +329 -329
- {stigg_api_client_v2-2.481.0.dist-info → stigg_api_client_v2-2.482.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.481.0.dist-info → stigg_api_client_v2-2.482.0.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-2.481.0.dist-info → stigg_api_client_v2-2.482.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.481.0.dist-info → stigg_api_client_v2-2.482.0.dist-info}/WHEEL +0 -0
stigg/generated/enums.py
CHANGED
|
@@ -563,6 +563,7 @@ class ErrorCode(str, Enum):
|
|
|
563
563
|
Unauthenticated = "Unauthenticated"
|
|
564
564
|
UnexpectedError = "UnexpectedError"
|
|
565
565
|
UnsupportedFeatureType = "UnsupportedFeatureType"
|
|
566
|
+
UnsupportedParameter = "UnsupportedParameter"
|
|
566
567
|
UnsupportedSubscriptionScheduleType = "UnsupportedSubscriptionScheduleType"
|
|
567
568
|
UnsupportedVendorIdentifier = "UnsupportedVendorIdentifier"
|
|
568
569
|
UsageMeasurementDiffOutOfRangeError = "UsageMeasurementDiffOutOfRangeError"
|
stigg/generated/fragments.py
CHANGED
|
@@ -219,89 +219,173 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
219
219
|
pass
|
|
220
220
|
|
|
221
221
|
|
|
222
|
-
class
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
226
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
227
|
-
feature_units_plural: Optional[str] = Field(
|
|
228
|
-
alias="featureUnitsPlural", default=None
|
|
229
|
-
)
|
|
230
|
-
description: Optional[str] = Field(default=None)
|
|
231
|
-
display_name: str = Field(alias="displayName")
|
|
232
|
-
ref_id: str = Field(alias="refId")
|
|
233
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
234
|
-
alias="unitTransformation", default=None
|
|
235
|
-
)
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
class FeatureFragmentUnitTransformation(BaseModel):
|
|
239
|
-
divide: float
|
|
240
|
-
round: UnitTransformationRound
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
class EntitlementFragment(BaseModel):
|
|
244
|
-
typename__: str = Field(alias="__typename")
|
|
245
|
-
is_granted: bool = Field(alias="isGranted")
|
|
246
|
-
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
247
|
-
alias="accessDeniedReason", default=None
|
|
248
|
-
)
|
|
249
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
250
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
251
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
252
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
253
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
254
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
255
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
256
|
-
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
257
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
258
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
259
|
-
alias="entitlementUpdatedAt", default=None
|
|
222
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
223
|
+
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
224
|
+
alias="subscriptionScheduleType"
|
|
260
225
|
)
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
266
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
267
|
-
alias="resetPeriod", default=None
|
|
226
|
+
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
227
|
+
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
228
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
229
|
+
alias="targetPackage", default=None
|
|
268
230
|
)
|
|
269
|
-
|
|
231
|
+
schedule_variables: Optional[
|
|
270
232
|
Annotated[
|
|
271
233
|
Union[
|
|
272
|
-
"
|
|
273
|
-
"
|
|
274
|
-
"
|
|
234
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
235
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
236
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
237
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
238
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
239
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
240
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
241
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
275
242
|
],
|
|
276
243
|
Field(discriminator="typename__"),
|
|
277
244
|
]
|
|
278
|
-
] = Field(alias="
|
|
279
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
245
|
+
] = Field(alias="scheduleVariables", default=None)
|
|
280
246
|
|
|
281
247
|
|
|
282
|
-
class
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
)
|
|
248
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
249
|
+
id: Any
|
|
250
|
+
ref_id: str = Field(alias="refId")
|
|
251
|
+
display_name: str = Field(alias="displayName")
|
|
287
252
|
|
|
288
253
|
|
|
289
|
-
class
|
|
290
|
-
typename__: Literal["
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
)
|
|
254
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
255
|
+
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
256
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
257
|
+
new_quantity: float = Field(alias="newQuantity")
|
|
294
258
|
|
|
295
259
|
|
|
296
|
-
class
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
)
|
|
260
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
261
|
+
BaseModel
|
|
262
|
+
):
|
|
263
|
+
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
264
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
265
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
301
266
|
|
|
302
267
|
|
|
303
|
-
class
|
|
304
|
-
|
|
268
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
269
|
+
BaseModel
|
|
270
|
+
):
|
|
271
|
+
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
272
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
276
|
+
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
280
|
+
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
281
|
+
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
282
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
283
|
+
billable_features: Optional[
|
|
284
|
+
List[
|
|
285
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
286
|
+
]
|
|
287
|
+
] = Field(alias="billableFeatures", default=None)
|
|
288
|
+
addons: Optional[
|
|
289
|
+
List[
|
|
290
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
291
|
+
]
|
|
292
|
+
] = Field(default=None)
|
|
293
|
+
price_overrides: Optional[
|
|
294
|
+
List[
|
|
295
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
296
|
+
]
|
|
297
|
+
] = Field(alias="priceOverrides", default=None)
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
301
|
+
BaseModel
|
|
302
|
+
):
|
|
303
|
+
feature_id: str = Field(alias="featureId")
|
|
304
|
+
quantity: float
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
308
|
+
BaseModel
|
|
309
|
+
):
|
|
310
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
311
|
+
quantity: float
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
315
|
+
BaseModel
|
|
316
|
+
):
|
|
317
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
318
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
319
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
323
|
+
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
324
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
325
|
+
change_type: PlanChangeType = Field(alias="changeType")
|
|
326
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
327
|
+
billable_features: Optional[
|
|
328
|
+
List[
|
|
329
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
330
|
+
]
|
|
331
|
+
] = Field(alias="billableFeatures", default=None)
|
|
332
|
+
addons: Optional[
|
|
333
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
334
|
+
] = Field(default=None)
|
|
335
|
+
price_overrides: Optional[
|
|
336
|
+
List[
|
|
337
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
338
|
+
]
|
|
339
|
+
] = Field(alias="priceOverrides", default=None)
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
343
|
+
BaseModel
|
|
344
|
+
):
|
|
345
|
+
feature_id: str = Field(alias="featureId")
|
|
346
|
+
quantity: float
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
350
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
351
|
+
quantity: float
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
355
|
+
BaseModel
|
|
356
|
+
):
|
|
357
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
358
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
359
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
363
|
+
BaseModel
|
|
364
|
+
):
|
|
365
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
366
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
367
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
371
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
372
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
373
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
374
|
+
|
|
375
|
+
|
|
376
|
+
class TotalPriceFragment(BaseModel):
|
|
377
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
378
|
+
total: "TotalPriceFragmentTotal"
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
382
|
+
amount: float
|
|
383
|
+
currency: Currency
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
387
|
+
amount: float
|
|
388
|
+
currency: Currency
|
|
305
389
|
|
|
306
390
|
|
|
307
391
|
class SubscriptionInvoiceFragment(BaseModel):
|
|
@@ -331,8 +415,25 @@ class SubscriptionInvoiceFragment(BaseModel):
|
|
|
331
415
|
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
332
416
|
|
|
333
417
|
|
|
334
|
-
class
|
|
335
|
-
|
|
418
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
419
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
class SlimCustomerFragment(BaseModel):
|
|
423
|
+
id: Any
|
|
424
|
+
name: Optional[str] = Field(default=None)
|
|
425
|
+
email: Optional[str] = Field(default=None)
|
|
426
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
427
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
428
|
+
ref_id: str = Field(alias="refId")
|
|
429
|
+
customer_id: str = Field(alias="customerId")
|
|
430
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
431
|
+
additional_meta_data: Optional[Any] = Field(
|
|
432
|
+
alias="additionalMetaData", default=None
|
|
433
|
+
)
|
|
434
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
435
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
436
|
+
)
|
|
336
437
|
|
|
337
438
|
|
|
338
439
|
class ProductFragment(BaseModel):
|
|
@@ -422,227 +523,37 @@ class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
|
422
523
|
pass
|
|
423
524
|
|
|
424
525
|
|
|
425
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
426
|
-
pass
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
430
|
-
pass
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
434
|
-
pass
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
class PlanFragmentPrices(PriceFragment):
|
|
438
|
-
pass
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
442
|
-
pass
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
446
|
-
duration: float
|
|
447
|
-
units: TrialPeriodUnits
|
|
448
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
449
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
450
|
-
alias="trialEndBehavior", default=None
|
|
451
|
-
)
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
455
|
-
limit: float
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
459
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
class TotalPriceFragment(BaseModel):
|
|
463
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
464
|
-
total: "TotalPriceFragmentTotal"
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
468
|
-
amount: float
|
|
469
|
-
currency: Currency
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
473
|
-
amount: float
|
|
474
|
-
currency: Currency
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
class SlimCustomerFragment(BaseModel):
|
|
478
|
-
id: Any
|
|
479
|
-
name: Optional[str] = Field(default=None)
|
|
480
|
-
email: Optional[str] = Field(default=None)
|
|
481
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
482
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
483
|
-
ref_id: str = Field(alias="refId")
|
|
484
|
-
customer_id: str = Field(alias="customerId")
|
|
485
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
486
|
-
additional_meta_data: Optional[Any] = Field(
|
|
487
|
-
alias="additionalMetaData", default=None
|
|
488
|
-
)
|
|
489
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
490
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
491
|
-
)
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
class SubscriptionFutureUpdateData(BaseModel):
|
|
495
|
-
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
496
|
-
alias="subscriptionScheduleType"
|
|
497
|
-
)
|
|
498
|
-
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
499
|
-
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
500
|
-
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
501
|
-
alias="targetPackage", default=None
|
|
502
|
-
)
|
|
503
|
-
schedule_variables: Optional[
|
|
504
|
-
Annotated[
|
|
505
|
-
Union[
|
|
506
|
-
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
507
|
-
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
508
|
-
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
509
|
-
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
510
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
511
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
512
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
513
|
-
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
514
|
-
],
|
|
515
|
-
Field(discriminator="typename__"),
|
|
516
|
-
]
|
|
517
|
-
] = Field(alias="scheduleVariables", default=None)
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
521
|
-
id: Any
|
|
522
|
-
ref_id: str = Field(alias="refId")
|
|
523
|
-
display_name: str = Field(alias="displayName")
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
527
|
-
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
528
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
529
|
-
new_quantity: float = Field(alias="newQuantity")
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
533
|
-
BaseModel
|
|
534
|
-
):
|
|
535
|
-
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
536
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
537
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
541
|
-
BaseModel
|
|
542
|
-
):
|
|
543
|
-
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
544
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
548
|
-
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
552
|
-
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
553
|
-
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
554
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
555
|
-
billable_features: Optional[
|
|
556
|
-
List[
|
|
557
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
558
|
-
]
|
|
559
|
-
] = Field(alias="billableFeatures", default=None)
|
|
560
|
-
addons: Optional[
|
|
561
|
-
List[
|
|
562
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
563
|
-
]
|
|
564
|
-
] = Field(default=None)
|
|
565
|
-
price_overrides: Optional[
|
|
566
|
-
List[
|
|
567
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
568
|
-
]
|
|
569
|
-
] = Field(alias="priceOverrides", default=None)
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
573
|
-
BaseModel
|
|
574
|
-
):
|
|
575
|
-
feature_id: str = Field(alias="featureId")
|
|
576
|
-
quantity: float
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
580
|
-
BaseModel
|
|
581
|
-
):
|
|
582
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
583
|
-
quantity: float
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
587
|
-
BaseModel
|
|
588
|
-
):
|
|
589
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
590
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
591
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
526
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
527
|
+
pass
|
|
592
528
|
|
|
593
529
|
|
|
594
|
-
class
|
|
595
|
-
|
|
596
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
597
|
-
change_type: PlanChangeType = Field(alias="changeType")
|
|
598
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
599
|
-
billable_features: Optional[
|
|
600
|
-
List[
|
|
601
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
602
|
-
]
|
|
603
|
-
] = Field(alias="billableFeatures", default=None)
|
|
604
|
-
addons: Optional[
|
|
605
|
-
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
606
|
-
] = Field(default=None)
|
|
607
|
-
price_overrides: Optional[
|
|
608
|
-
List[
|
|
609
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
610
|
-
]
|
|
611
|
-
] = Field(alias="priceOverrides", default=None)
|
|
530
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
531
|
+
pass
|
|
612
532
|
|
|
613
533
|
|
|
614
|
-
class
|
|
615
|
-
|
|
616
|
-
):
|
|
617
|
-
feature_id: str = Field(alias="featureId")
|
|
618
|
-
quantity: float
|
|
534
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
535
|
+
pass
|
|
619
536
|
|
|
620
537
|
|
|
621
|
-
class
|
|
622
|
-
|
|
623
|
-
quantity: float
|
|
538
|
+
class PlanFragmentPrices(PriceFragment):
|
|
539
|
+
pass
|
|
624
540
|
|
|
625
541
|
|
|
626
|
-
class
|
|
627
|
-
|
|
628
|
-
):
|
|
629
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
630
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
631
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
542
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
543
|
+
pass
|
|
632
544
|
|
|
633
545
|
|
|
634
|
-
class
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
546
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
547
|
+
duration: float
|
|
548
|
+
units: TrialPeriodUnits
|
|
549
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
550
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
551
|
+
alias="trialEndBehavior", default=None
|
|
552
|
+
)
|
|
640
553
|
|
|
641
554
|
|
|
642
|
-
class
|
|
643
|
-
|
|
644
|
-
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
645
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
555
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
556
|
+
limit: float
|
|
646
557
|
|
|
647
558
|
|
|
648
559
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
@@ -807,6 +718,10 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
807
718
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
808
719
|
|
|
809
720
|
|
|
721
|
+
class CustomerResourceFragment(BaseModel):
|
|
722
|
+
resource_id: str = Field(alias="resourceId")
|
|
723
|
+
|
|
724
|
+
|
|
810
725
|
class SubscriptionFragment(BaseModel):
|
|
811
726
|
id: Any
|
|
812
727
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -916,6 +831,91 @@ class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragm
|
|
|
916
831
|
pass
|
|
917
832
|
|
|
918
833
|
|
|
834
|
+
class FeatureFragment(BaseModel):
|
|
835
|
+
typename__: str = Field(alias="__typename")
|
|
836
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
837
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
838
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
839
|
+
feature_units_plural: Optional[str] = Field(
|
|
840
|
+
alias="featureUnitsPlural", default=None
|
|
841
|
+
)
|
|
842
|
+
description: Optional[str] = Field(default=None)
|
|
843
|
+
display_name: str = Field(alias="displayName")
|
|
844
|
+
ref_id: str = Field(alias="refId")
|
|
845
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
846
|
+
alias="unitTransformation", default=None
|
|
847
|
+
)
|
|
848
|
+
|
|
849
|
+
|
|
850
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
851
|
+
divide: float
|
|
852
|
+
round: UnitTransformationRound
|
|
853
|
+
|
|
854
|
+
|
|
855
|
+
class EntitlementFragment(BaseModel):
|
|
856
|
+
typename__: str = Field(alias="__typename")
|
|
857
|
+
is_granted: bool = Field(alias="isGranted")
|
|
858
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
859
|
+
alias="accessDeniedReason", default=None
|
|
860
|
+
)
|
|
861
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
862
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
863
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
864
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
865
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
866
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
867
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
868
|
+
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
869
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
870
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
871
|
+
alias="entitlementUpdatedAt", default=None
|
|
872
|
+
)
|
|
873
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
874
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
875
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
876
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
877
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
878
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
879
|
+
alias="resetPeriod", default=None
|
|
880
|
+
)
|
|
881
|
+
reset_period_configuration: Optional[
|
|
882
|
+
Annotated[
|
|
883
|
+
Union[
|
|
884
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
885
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
886
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
887
|
+
],
|
|
888
|
+
Field(discriminator="typename__"),
|
|
889
|
+
]
|
|
890
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
891
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
892
|
+
|
|
893
|
+
|
|
894
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
895
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
896
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
897
|
+
alias="monthlyAccordingTo", default=None
|
|
898
|
+
)
|
|
899
|
+
|
|
900
|
+
|
|
901
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
902
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
903
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
904
|
+
alias="weeklyAccordingTo", default=None
|
|
905
|
+
)
|
|
906
|
+
|
|
907
|
+
|
|
908
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
909
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
910
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
911
|
+
alias="yearlyAccordingTo", default=None
|
|
912
|
+
)
|
|
913
|
+
|
|
914
|
+
|
|
915
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
916
|
+
pass
|
|
917
|
+
|
|
918
|
+
|
|
919
919
|
class ApplySubscriptionFragment(BaseModel):
|
|
920
920
|
subscription: Optional["ApplySubscriptionFragmentSubscription"] = Field(
|
|
921
921
|
default=None
|
|
@@ -1262,38 +1262,14 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1262
1262
|
pass
|
|
1263
1263
|
|
|
1264
1264
|
|
|
1265
|
-
class
|
|
1266
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1267
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1268
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1269
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1270
|
-
default=None
|
|
1271
|
-
)
|
|
1272
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1273
|
-
default=None
|
|
1274
|
-
)
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1278
|
-
amount: float
|
|
1279
|
-
currency: Currency
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1283
|
-
id: Any
|
|
1284
|
-
ref_id: str = Field(alias="refId")
|
|
1285
|
-
display_name: str = Field(alias="displayName")
|
|
1286
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1287
|
-
feature_units_plural: Optional[str] = Field(
|
|
1288
|
-
alias="featureUnitsPlural", default=None
|
|
1289
|
-
)
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1293
|
-
addon_id: str = Field(alias="addonId")
|
|
1294
|
-
description: Optional[str] = Field(default=None)
|
|
1265
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1295
1266
|
display_name: str = Field(alias="displayName")
|
|
1296
|
-
|
|
1267
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1268
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1269
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1270
|
+
period: PromotionalEntitlementPeriod
|
|
1271
|
+
start_date: Any = Field(alias="startDate")
|
|
1272
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1297
1273
|
|
|
1298
1274
|
|
|
1299
1275
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
@@ -1465,6 +1441,40 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1465
1441
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1466
1442
|
|
|
1467
1443
|
|
|
1444
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1445
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1446
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1447
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1448
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1449
|
+
default=None
|
|
1450
|
+
)
|
|
1451
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1452
|
+
default=None
|
|
1453
|
+
)
|
|
1454
|
+
|
|
1455
|
+
|
|
1456
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1457
|
+
amount: float
|
|
1458
|
+
currency: Currency
|
|
1459
|
+
|
|
1460
|
+
|
|
1461
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1462
|
+
id: Any
|
|
1463
|
+
ref_id: str = Field(alias="refId")
|
|
1464
|
+
display_name: str = Field(alias="displayName")
|
|
1465
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1466
|
+
feature_units_plural: Optional[str] = Field(
|
|
1467
|
+
alias="featureUnitsPlural", default=None
|
|
1468
|
+
)
|
|
1469
|
+
|
|
1470
|
+
|
|
1471
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1472
|
+
addon_id: str = Field(alias="addonId")
|
|
1473
|
+
description: Optional[str] = Field(default=None)
|
|
1474
|
+
display_name: str = Field(alias="displayName")
|
|
1475
|
+
quantity: int
|
|
1476
|
+
|
|
1477
|
+
|
|
1468
1478
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1469
1479
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1470
1480
|
plan_id: str = Field(alias="planId")
|
|
@@ -1561,16 +1571,6 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1561
1571
|
pass
|
|
1562
1572
|
|
|
1563
1573
|
|
|
1564
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1565
|
-
display_name: str = Field(alias="displayName")
|
|
1566
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1567
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1568
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1569
|
-
period: PromotionalEntitlementPeriod
|
|
1570
|
-
start_date: Any = Field(alias="startDate")
|
|
1571
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
1574
|
class CustomerPortalFragment(BaseModel):
|
|
1575
1575
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1576
1576
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -2843,19 +2843,19 @@ OveragePriceFragment.model_rebuild()
|
|
|
2843
2843
|
PackageEntitlementFragment.model_rebuild()
|
|
2844
2844
|
PriceFragment.model_rebuild()
|
|
2845
2845
|
AddonFragment.model_rebuild()
|
|
2846
|
-
|
|
2847
|
-
|
|
2846
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2847
|
+
TotalPriceFragment.model_rebuild()
|
|
2848
2848
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2849
|
-
|
|
2849
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2850
|
+
SlimCustomerFragment.model_rebuild()
|
|
2850
2851
|
ProductFragment.model_rebuild()
|
|
2851
2852
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2852
2853
|
PlanFragment.model_rebuild()
|
|
2853
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2854
|
-
TotalPriceFragment.model_rebuild()
|
|
2855
|
-
SlimCustomerFragment.model_rebuild()
|
|
2856
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2857
2854
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2855
|
+
CustomerResourceFragment.model_rebuild()
|
|
2858
2856
|
SubscriptionFragment.model_rebuild()
|
|
2857
|
+
FeatureFragment.model_rebuild()
|
|
2858
|
+
EntitlementFragment.model_rebuild()
|
|
2859
2859
|
ApplySubscriptionFragment.model_rebuild()
|
|
2860
2860
|
FontVariantFragment.model_rebuild()
|
|
2861
2861
|
TypographyConfigurationFragment.model_rebuild()
|
|
@@ -2867,11 +2867,11 @@ CheckoutStateFragment.model_rebuild()
|
|
|
2867
2867
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2868
2868
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2869
2869
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2870
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2871
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2870
2872
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2871
2873
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2872
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2873
2874
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2874
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2875
2875
|
CustomerPortalFragment.model_rebuild()
|
|
2876
2876
|
CustomerStatisticsFragment.model_rebuild()
|
|
2877
2877
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -119,11 +119,11 @@ stigg/generated/client.py,sha256=FIRvvpLkBu44ce1V4CJtQ1XFIsWX_tqk2Qh46MPpWIM,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=KTgzOS_WB86OMovgzudYX1xb40b_-Z_kT96fNwG3TaM,36446
|
|
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=V__KilpjDZt2_ICXfumj5m3JwRrRcHYfWO3hmxlNkBA,103692
|
|
127
127
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
128
128
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
129
129
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -161,7 +161,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
161
161
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
162
162
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
163
163
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
164
|
-
stigg_api_client_v2-2.
|
|
165
|
-
stigg_api_client_v2-2.
|
|
166
|
-
stigg_api_client_v2-2.
|
|
167
|
-
stigg_api_client_v2-2.
|
|
164
|
+
stigg_api_client_v2-2.482.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
165
|
+
stigg_api_client_v2-2.482.0.dist-info/METADATA,sha256=ZofhZf01zXLgjqcs3vwoVNdcktVoGXT1rNRJifAi5h4,2258
|
|
166
|
+
stigg_api_client_v2-2.482.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
167
|
+
stigg_api_client_v2-2.482.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|