stigg-api-client-v2 3.48.0__py3-none-any.whl → 3.53.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of stigg-api-client-v2 might be problematic. Click here for more details.
- stigg/generated/fragments.py +305 -305
- {stigg_api_client_v2-3.48.0.dist-info → stigg_api_client_v2-3.53.4.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.48.0.dist-info → stigg_api_client_v2-3.53.4.dist-info}/RECORD +5 -5
- {stigg_api_client_v2-3.48.0.dist-info → stigg_api_client_v2-3.53.4.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.48.0.dist-info → stigg_api_client_v2-3.53.4.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -61,41 +61,6 @@ class AddonDependencyFragment(BaseModel):
|
|
|
61
61
|
description: Optional[str] = Field(default=None)
|
|
62
62
|
|
|
63
63
|
|
|
64
|
-
class PackageEntitlementFragment(BaseModel):
|
|
65
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
66
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
67
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
68
|
-
feature_id: str = Field(alias="featureId")
|
|
69
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
70
|
-
alias="resetPeriod", default=None
|
|
71
|
-
)
|
|
72
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
73
|
-
alias="hiddenFromWidgets", default=None
|
|
74
|
-
)
|
|
75
|
-
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
76
|
-
display_name_override: Optional[str] = Field(
|
|
77
|
-
alias="displayNameOverride", default=None
|
|
78
|
-
)
|
|
79
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
80
|
-
is_granted: bool = Field(alias="isGranted")
|
|
81
|
-
feature: "PackageEntitlementFragmentFeature"
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
class PackageEntitlementFragmentFeature(BaseModel):
|
|
85
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
86
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
87
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
88
|
-
feature_units_plural: Optional[str] = Field(
|
|
89
|
-
alias="featureUnitsPlural", default=None
|
|
90
|
-
)
|
|
91
|
-
display_name: str = Field(alias="displayName")
|
|
92
|
-
description: Optional[str] = Field(default=None)
|
|
93
|
-
ref_id: str = Field(alias="refId")
|
|
94
|
-
additional_meta_data: Optional[Any] = Field(
|
|
95
|
-
alias="additionalMetaData", default=None
|
|
96
|
-
)
|
|
97
|
-
|
|
98
|
-
|
|
99
64
|
class PriceTierFragment(BaseModel):
|
|
100
65
|
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
101
66
|
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
@@ -148,6 +113,41 @@ class OveragePriceFragmentFeature(BaseModel):
|
|
|
148
113
|
description: Optional[str] = Field(default=None)
|
|
149
114
|
|
|
150
115
|
|
|
116
|
+
class PackageEntitlementFragment(BaseModel):
|
|
117
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
118
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
119
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
120
|
+
feature_id: str = Field(alias="featureId")
|
|
121
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
122
|
+
alias="resetPeriod", default=None
|
|
123
|
+
)
|
|
124
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
125
|
+
alias="hiddenFromWidgets", default=None
|
|
126
|
+
)
|
|
127
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
128
|
+
display_name_override: Optional[str] = Field(
|
|
129
|
+
alias="displayNameOverride", default=None
|
|
130
|
+
)
|
|
131
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
132
|
+
is_granted: bool = Field(alias="isGranted")
|
|
133
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
137
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
138
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
139
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
140
|
+
feature_units_plural: Optional[str] = Field(
|
|
141
|
+
alias="featureUnitsPlural", default=None
|
|
142
|
+
)
|
|
143
|
+
display_name: str = Field(alias="displayName")
|
|
144
|
+
description: Optional[str] = Field(default=None)
|
|
145
|
+
ref_id: str = Field(alias="refId")
|
|
146
|
+
additional_meta_data: Optional[Any] = Field(
|
|
147
|
+
alias="additionalMetaData", default=None
|
|
148
|
+
)
|
|
149
|
+
|
|
150
|
+
|
|
151
151
|
class PriceFragment(BaseModel):
|
|
152
152
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
153
153
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -230,21 +230,6 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
230
230
|
pass
|
|
231
231
|
|
|
232
232
|
|
|
233
|
-
class TotalPriceFragment(BaseModel):
|
|
234
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
235
|
-
total: "TotalPriceFragmentTotal"
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
239
|
-
amount: float
|
|
240
|
-
currency: Currency
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
244
|
-
amount: float
|
|
245
|
-
currency: Currency
|
|
246
|
-
|
|
247
|
-
|
|
248
233
|
class CustomerResourceFragment(BaseModel):
|
|
249
234
|
resource_id: str = Field(alias="resourceId")
|
|
250
235
|
|
|
@@ -277,147 +262,6 @@ class SubscriptionInvoiceFragment(BaseModel):
|
|
|
277
262
|
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
278
263
|
|
|
279
264
|
|
|
280
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
281
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
class ProductFragment(BaseModel):
|
|
285
|
-
ref_id: str = Field(alias="refId")
|
|
286
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
287
|
-
description: Optional[str] = Field(default=None)
|
|
288
|
-
additional_meta_data: Optional[Any] = Field(
|
|
289
|
-
alias="additionalMetaData", default=None
|
|
290
|
-
)
|
|
291
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
295
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
296
|
-
alias="downgradePlan", default=None
|
|
297
|
-
)
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
301
|
-
ref_id: str = Field(alias="refId")
|
|
302
|
-
display_name: str = Field(alias="displayName")
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
306
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
307
|
-
display_name: str = Field(alias="displayName")
|
|
308
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
309
|
-
default=None
|
|
310
|
-
)
|
|
311
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
315
|
-
pass
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
319
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
320
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
class PlanFragment(BaseModel):
|
|
324
|
-
id: Any
|
|
325
|
-
ref_id: str = Field(alias="refId")
|
|
326
|
-
display_name: str = Field(alias="displayName")
|
|
327
|
-
description: Optional[str] = Field(default=None)
|
|
328
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
329
|
-
version_number: int = Field(alias="versionNumber")
|
|
330
|
-
additional_meta_data: Optional[Any] = Field(
|
|
331
|
-
alias="additionalMetaData", default=None
|
|
332
|
-
)
|
|
333
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
334
|
-
alias="hiddenFromWidgets", default=None
|
|
335
|
-
)
|
|
336
|
-
product: "PlanFragmentProduct"
|
|
337
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
338
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
339
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
340
|
-
alias="inheritedEntitlements", default=None
|
|
341
|
-
)
|
|
342
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
343
|
-
alias="compatibleAddons", default=None
|
|
344
|
-
)
|
|
345
|
-
compatible_package_groups: Optional[
|
|
346
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
347
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
348
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
349
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
350
|
-
alias="overagePrices", default=None
|
|
351
|
-
)
|
|
352
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
353
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
354
|
-
alias="defaultTrialConfig", default=None
|
|
355
|
-
)
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
class PlanFragmentProduct(ProductFragment):
|
|
359
|
-
pass
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
363
|
-
ref_id: str = Field(alias="refId")
|
|
364
|
-
display_name: str = Field(alias="displayName")
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
368
|
-
pass
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
372
|
-
pass
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
376
|
-
pass
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
380
|
-
pass
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
class PlanFragmentPrices(PriceFragment):
|
|
384
|
-
pass
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
388
|
-
pass
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
392
|
-
duration: float
|
|
393
|
-
units: TrialPeriodUnits
|
|
394
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
395
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
396
|
-
alias="trialEndBehavior", default=None
|
|
397
|
-
)
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
401
|
-
limit: float
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
class SlimCustomerFragment(BaseModel):
|
|
405
|
-
id: Any
|
|
406
|
-
name: Optional[str] = Field(default=None)
|
|
407
|
-
email: Optional[str] = Field(default=None)
|
|
408
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
409
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
410
|
-
ref_id: str = Field(alias="refId")
|
|
411
|
-
customer_id: str = Field(alias="customerId")
|
|
412
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
413
|
-
additional_meta_data: Optional[Any] = Field(
|
|
414
|
-
alias="additionalMetaData", default=None
|
|
415
|
-
)
|
|
416
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
417
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
418
|
-
)
|
|
419
|
-
|
|
420
|
-
|
|
421
265
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
422
266
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
423
267
|
alias="subscriptionScheduleType"
|
|
@@ -538,38 +382,175 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel
|
|
|
538
382
|
] = Field(alias="priceOverrides", default=None)
|
|
539
383
|
|
|
540
384
|
|
|
541
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
542
|
-
BaseModel
|
|
543
|
-
):
|
|
544
|
-
feature_id: str = Field(alias="featureId")
|
|
545
|
-
quantity: float
|
|
385
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
386
|
+
BaseModel
|
|
387
|
+
):
|
|
388
|
+
feature_id: str = Field(alias="featureId")
|
|
389
|
+
quantity: float
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
393
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
394
|
+
quantity: float
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
398
|
+
BaseModel
|
|
399
|
+
):
|
|
400
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
401
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
402
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
406
|
+
BaseModel
|
|
407
|
+
):
|
|
408
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
409
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
410
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
414
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
415
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
416
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
class SlimCustomerFragment(BaseModel):
|
|
420
|
+
id: Any
|
|
421
|
+
name: Optional[str] = Field(default=None)
|
|
422
|
+
email: Optional[str] = Field(default=None)
|
|
423
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
424
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
425
|
+
ref_id: str = Field(alias="refId")
|
|
426
|
+
customer_id: str = Field(alias="customerId")
|
|
427
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
428
|
+
additional_meta_data: Optional[Any] = Field(
|
|
429
|
+
alias="additionalMetaData", default=None
|
|
430
|
+
)
|
|
431
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
432
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
433
|
+
)
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
class ProductFragment(BaseModel):
|
|
437
|
+
ref_id: str = Field(alias="refId")
|
|
438
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
439
|
+
description: Optional[str] = Field(default=None)
|
|
440
|
+
additional_meta_data: Optional[Any] = Field(
|
|
441
|
+
alias="additionalMetaData", default=None
|
|
442
|
+
)
|
|
443
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
447
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
448
|
+
alias="downgradePlan", default=None
|
|
449
|
+
)
|
|
450
|
+
|
|
451
|
+
|
|
452
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
453
|
+
ref_id: str = Field(alias="refId")
|
|
454
|
+
display_name: str = Field(alias="displayName")
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
458
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
459
|
+
display_name: str = Field(alias="displayName")
|
|
460
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
461
|
+
default=None
|
|
462
|
+
)
|
|
463
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
467
|
+
pass
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
471
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
472
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
class PlanFragment(BaseModel):
|
|
476
|
+
id: Any
|
|
477
|
+
ref_id: str = Field(alias="refId")
|
|
478
|
+
display_name: str = Field(alias="displayName")
|
|
479
|
+
description: Optional[str] = Field(default=None)
|
|
480
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
481
|
+
version_number: int = Field(alias="versionNumber")
|
|
482
|
+
additional_meta_data: Optional[Any] = Field(
|
|
483
|
+
alias="additionalMetaData", default=None
|
|
484
|
+
)
|
|
485
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
486
|
+
alias="hiddenFromWidgets", default=None
|
|
487
|
+
)
|
|
488
|
+
product: "PlanFragmentProduct"
|
|
489
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
490
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
491
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
492
|
+
alias="inheritedEntitlements", default=None
|
|
493
|
+
)
|
|
494
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
495
|
+
alias="compatibleAddons", default=None
|
|
496
|
+
)
|
|
497
|
+
compatible_package_groups: Optional[
|
|
498
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
499
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
500
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
501
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
502
|
+
alias="overagePrices", default=None
|
|
503
|
+
)
|
|
504
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
505
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
506
|
+
alias="defaultTrialConfig", default=None
|
|
507
|
+
)
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
class PlanFragmentProduct(ProductFragment):
|
|
511
|
+
pass
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
515
|
+
ref_id: str = Field(alias="refId")
|
|
516
|
+
display_name: str = Field(alias="displayName")
|
|
546
517
|
|
|
547
518
|
|
|
548
|
-
class
|
|
549
|
-
|
|
550
|
-
quantity: float
|
|
519
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
520
|
+
pass
|
|
551
521
|
|
|
552
522
|
|
|
553
|
-
class
|
|
554
|
-
|
|
555
|
-
):
|
|
556
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
557
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
558
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
523
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
524
|
+
pass
|
|
559
525
|
|
|
560
526
|
|
|
561
|
-
class
|
|
562
|
-
|
|
563
|
-
):
|
|
564
|
-
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
565
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
566
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
527
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
528
|
+
pass
|
|
567
529
|
|
|
568
530
|
|
|
569
|
-
class
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
531
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
532
|
+
pass
|
|
533
|
+
|
|
534
|
+
|
|
535
|
+
class PlanFragmentPrices(PriceFragment):
|
|
536
|
+
pass
|
|
537
|
+
|
|
538
|
+
|
|
539
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
540
|
+
pass
|
|
541
|
+
|
|
542
|
+
|
|
543
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
544
|
+
duration: float
|
|
545
|
+
units: TrialPeriodUnits
|
|
546
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
547
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
548
|
+
alias="trialEndBehavior", default=None
|
|
549
|
+
)
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
553
|
+
limit: float
|
|
573
554
|
|
|
574
555
|
|
|
575
556
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
@@ -734,6 +715,25 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
734
715
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
735
716
|
|
|
736
717
|
|
|
718
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
719
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
720
|
+
|
|
721
|
+
|
|
722
|
+
class TotalPriceFragment(BaseModel):
|
|
723
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
724
|
+
total: "TotalPriceFragmentTotal"
|
|
725
|
+
|
|
726
|
+
|
|
727
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
728
|
+
amount: float
|
|
729
|
+
currency: Currency
|
|
730
|
+
|
|
731
|
+
|
|
732
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
733
|
+
amount: float
|
|
734
|
+
currency: Currency
|
|
735
|
+
|
|
736
|
+
|
|
737
737
|
class SubscriptionFragment(BaseModel):
|
|
738
738
|
id: Any
|
|
739
739
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -1005,35 +1005,6 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
1005
1005
|
)
|
|
1006
1006
|
|
|
1007
1007
|
|
|
1008
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
1009
|
-
status: PromotionalEntitlementStatus
|
|
1010
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1011
|
-
feature_id: Any = Field(alias="featureId")
|
|
1012
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1013
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1014
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1015
|
-
alias="resetPeriod", default=None
|
|
1016
|
-
)
|
|
1017
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1018
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1019
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1023
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1024
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1025
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1026
|
-
feature_units_plural: Optional[str] = Field(
|
|
1027
|
-
alias="featureUnitsPlural", default=None
|
|
1028
|
-
)
|
|
1029
|
-
display_name: str = Field(alias="displayName")
|
|
1030
|
-
description: Optional[str] = Field(default=None)
|
|
1031
|
-
ref_id: str = Field(alias="refId")
|
|
1032
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1033
|
-
alias="additionalMetaData", default=None
|
|
1034
|
-
)
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
1008
|
class CouponFragment(BaseModel):
|
|
1038
1009
|
id: Any
|
|
1039
1010
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1068,6 +1039,35 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1068
1039
|
status: SyncStatus
|
|
1069
1040
|
|
|
1070
1041
|
|
|
1042
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
1043
|
+
status: PromotionalEntitlementStatus
|
|
1044
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1045
|
+
feature_id: Any = Field(alias="featureId")
|
|
1046
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1047
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1048
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1049
|
+
alias="resetPeriod", default=None
|
|
1050
|
+
)
|
|
1051
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1052
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1053
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1054
|
+
|
|
1055
|
+
|
|
1056
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1057
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1058
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1059
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1060
|
+
feature_units_plural: Optional[str] = Field(
|
|
1061
|
+
alias="featureUnitsPlural", default=None
|
|
1062
|
+
)
|
|
1063
|
+
display_name: str = Field(alias="displayName")
|
|
1064
|
+
description: Optional[str] = Field(default=None)
|
|
1065
|
+
ref_id: str = Field(alias="refId")
|
|
1066
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1067
|
+
alias="additionalMetaData", default=None
|
|
1068
|
+
)
|
|
1069
|
+
|
|
1070
|
+
|
|
1071
1071
|
class CustomerFragment(SlimCustomerFragment):
|
|
1072
1072
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1073
1073
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1318,23 +1318,6 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1318
1318
|
pass
|
|
1319
1319
|
|
|
1320
1320
|
|
|
1321
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1322
|
-
display_name: str = Field(alias="displayName")
|
|
1323
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1324
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1325
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1326
|
-
period: PromotionalEntitlementPeriod
|
|
1327
|
-
start_date: Any = Field(alias="startDate")
|
|
1328
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1332
|
-
addon_id: str = Field(alias="addonId")
|
|
1333
|
-
description: Optional[str] = Field(default=None)
|
|
1334
|
-
display_name: str = Field(alias="displayName")
|
|
1335
|
-
quantity: int
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
1321
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1339
1322
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1340
1323
|
alias="subscriptionScheduleType"
|
|
@@ -1539,6 +1522,13 @@ class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
|
1539
1522
|
)
|
|
1540
1523
|
|
|
1541
1524
|
|
|
1525
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1526
|
+
addon_id: str = Field(alias="addonId")
|
|
1527
|
+
description: Optional[str] = Field(default=None)
|
|
1528
|
+
display_name: str = Field(alias="displayName")
|
|
1529
|
+
quantity: int
|
|
1530
|
+
|
|
1531
|
+
|
|
1542
1532
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1543
1533
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1544
1534
|
plan_id: str = Field(alias="planId")
|
|
@@ -1643,6 +1633,16 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1643
1633
|
pass
|
|
1644
1634
|
|
|
1645
1635
|
|
|
1636
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1637
|
+
display_name: str = Field(alias="displayName")
|
|
1638
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1639
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1640
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1641
|
+
period: PromotionalEntitlementPeriod
|
|
1642
|
+
start_date: Any = Field(alias="startDate")
|
|
1643
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1644
|
+
|
|
1645
|
+
|
|
1646
1646
|
class CustomerPortalFragment(BaseModel):
|
|
1647
1647
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1648
1648
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -1870,6 +1870,41 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1870
1870
|
description: Optional[str] = Field(default=None)
|
|
1871
1871
|
|
|
1872
1872
|
|
|
1873
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1874
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1875
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1876
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1877
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1878
|
+
alias="resetPeriod", default=None
|
|
1879
|
+
)
|
|
1880
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1881
|
+
alias="hiddenFromWidgets", default=None
|
|
1882
|
+
)
|
|
1883
|
+
display_name_override: Optional[str] = Field(
|
|
1884
|
+
alias="displayNameOverride", default=None
|
|
1885
|
+
)
|
|
1886
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
1887
|
+
is_granted: bool = Field(alias="isGranted")
|
|
1888
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1889
|
+
default=None
|
|
1890
|
+
)
|
|
1891
|
+
|
|
1892
|
+
|
|
1893
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1894
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1895
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1896
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1897
|
+
feature_units_plural: Optional[str] = Field(
|
|
1898
|
+
alias="featureUnitsPlural", default=None
|
|
1899
|
+
)
|
|
1900
|
+
display_name: str = Field(alias="displayName")
|
|
1901
|
+
description: Optional[str] = Field(default=None)
|
|
1902
|
+
ref_id: str = Field(alias="refId")
|
|
1903
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1904
|
+
alias="additionalMetaData", default=None
|
|
1905
|
+
)
|
|
1906
|
+
|
|
1907
|
+
|
|
1873
1908
|
class MockPaywallPriceFragment(BaseModel):
|
|
1874
1909
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1875
1910
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1912,41 +1947,6 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1912
1947
|
display_name: str = Field(alias="displayName")
|
|
1913
1948
|
|
|
1914
1949
|
|
|
1915
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1916
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1917
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1918
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1919
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1920
|
-
alias="resetPeriod", default=None
|
|
1921
|
-
)
|
|
1922
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1923
|
-
alias="hiddenFromWidgets", default=None
|
|
1924
|
-
)
|
|
1925
|
-
display_name_override: Optional[str] = Field(
|
|
1926
|
-
alias="displayNameOverride", default=None
|
|
1927
|
-
)
|
|
1928
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
1929
|
-
is_granted: bool = Field(alias="isGranted")
|
|
1930
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1931
|
-
default=None
|
|
1932
|
-
)
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1936
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1937
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1938
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1939
|
-
feature_units_plural: Optional[str] = Field(
|
|
1940
|
-
alias="featureUnitsPlural", default=None
|
|
1941
|
-
)
|
|
1942
|
-
display_name: str = Field(alias="displayName")
|
|
1943
|
-
description: Optional[str] = Field(default=None)
|
|
1944
|
-
ref_id: str = Field(alias="refId")
|
|
1945
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1946
|
-
alias="additionalMetaData", default=None
|
|
1947
|
-
)
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
1950
|
class MockPaywallAddonFragment(BaseModel):
|
|
1951
1951
|
ref_id: str = Field(alias="refId")
|
|
1952
1952
|
display_name: str = Field(alias="displayName")
|
|
@@ -2920,21 +2920,21 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2920
2920
|
|
|
2921
2921
|
|
|
2922
2922
|
AddonDependencyFragment.model_rebuild()
|
|
2923
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2924
2923
|
PriceTierFragment.model_rebuild()
|
|
2925
2924
|
OveragePriceFragment.model_rebuild()
|
|
2925
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2926
2926
|
PriceFragment.model_rebuild()
|
|
2927
2927
|
AddonFragment.model_rebuild()
|
|
2928
|
-
TotalPriceFragment.model_rebuild()
|
|
2929
2928
|
CustomerResourceFragment.model_rebuild()
|
|
2930
2929
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2931
|
-
|
|
2930
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2931
|
+
SlimCustomerFragment.model_rebuild()
|
|
2932
2932
|
ProductFragment.model_rebuild()
|
|
2933
2933
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2934
2934
|
PlanFragment.model_rebuild()
|
|
2935
|
-
SlimCustomerFragment.model_rebuild()
|
|
2936
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2937
2935
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2936
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2937
|
+
TotalPriceFragment.model_rebuild()
|
|
2938
2938
|
SubscriptionFragment.model_rebuild()
|
|
2939
2939
|
FeatureFragment.model_rebuild()
|
|
2940
2940
|
EntitlementFragment.model_rebuild()
|
|
@@ -2942,8 +2942,8 @@ ApplySubscriptionFragment.model_rebuild()
|
|
|
2942
2942
|
FontVariantFragment.model_rebuild()
|
|
2943
2943
|
TypographyConfigurationFragment.model_rebuild()
|
|
2944
2944
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2945
|
-
PromotionalEntitlementFragment.model_rebuild()
|
|
2946
2945
|
CouponFragment.model_rebuild()
|
|
2946
|
+
PromotionalEntitlementFragment.model_rebuild()
|
|
2947
2947
|
CustomerFragment.model_rebuild()
|
|
2948
2948
|
CheckoutStateFragment.model_rebuild()
|
|
2949
2949
|
CreditGrantFragment.model_rebuild()
|
|
@@ -2951,11 +2951,11 @@ CreditsBalanceSummaryFragment.model_rebuild()
|
|
|
2951
2951
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2952
2952
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2953
2953
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2954
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2955
|
-
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2956
2954
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2957
2955
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2956
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2958
2957
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2958
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2959
2959
|
CustomerPortalFragment.model_rebuild()
|
|
2960
2960
|
CustomerStatisticsFragment.model_rebuild()
|
|
2961
2961
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -2965,8 +2965,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2965
2965
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2966
2966
|
LayoutConfigurationFragment.model_rebuild()
|
|
2967
2967
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2968
|
-
MockPaywallPriceFragment.model_rebuild()
|
|
2969
2968
|
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2969
|
+
MockPaywallPriceFragment.model_rebuild()
|
|
2970
2970
|
MockPaywallAddonFragment.model_rebuild()
|
|
2971
2971
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2972
2972
|
MockPaywallPlanFragment.model_rebuild()
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=4wSfEXeZZqMSjsCsSG8baVg3Si8sjzV3bp_unHWHBtQ,3800
|
|
|
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=-iTbjeg_GARq04OvKcNq6TyIj3swTSTs-Q0gISaEgr8,106791
|
|
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
|
|
@@ -164,7 +164,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
164
164
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
165
165
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
166
166
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
167
|
-
stigg_api_client_v2-3.
|
|
168
|
-
stigg_api_client_v2-3.
|
|
169
|
-
stigg_api_client_v2-3.
|
|
170
|
-
stigg_api_client_v2-3.
|
|
167
|
+
stigg_api_client_v2-3.53.4.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
168
|
+
stigg_api_client_v2-3.53.4.dist-info/METADATA,sha256=zattHsFePPLJ4f7_y66a64jJ_U1hV0cgZ51Th_t3Pog,2257
|
|
169
|
+
stigg_api_client_v2-3.53.4.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
170
|
+
stigg_api_client_v2-3.53.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|