stigg-api-client-v2 3.64.0__py3-none-any.whl → 3.65.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/fragments.py +229 -229
- stigg/generated/input_types.py +3 -3
- {stigg_api_client_v2-3.64.0.dist-info → stigg_api_client_v2-3.65.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.64.0.dist-info → stigg_api_client_v2-3.65.0.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-3.64.0.dist-info → stigg_api_client_v2-3.65.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.64.0.dist-info → stigg_api_client_v2-3.65.0.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -61,58 +61,6 @@ class AddonDependencyFragment(BaseModel):
|
|
|
61
61
|
description: Optional[str] = Field(default=None)
|
|
62
62
|
|
|
63
63
|
|
|
64
|
-
class PriceTierFragment(BaseModel):
|
|
65
|
-
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
66
|
-
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
67
|
-
alias="unitPrice", default=None
|
|
68
|
-
)
|
|
69
|
-
flat_price: Optional["PriceTierFragmentFlatPrice"] = Field(
|
|
70
|
-
alias="flatPrice", default=None
|
|
71
|
-
)
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
class PriceTierFragmentUnitPrice(BaseModel):
|
|
75
|
-
amount: float
|
|
76
|
-
currency: Currency
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
class PriceTierFragmentFlatPrice(BaseModel):
|
|
80
|
-
amount: float
|
|
81
|
-
currency: Currency
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
class OveragePriceFragment(BaseModel):
|
|
85
|
-
billing_model: BillingModel = Field(alias="billingModel")
|
|
86
|
-
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
87
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
88
|
-
billing_country_code: Optional[str] = Field(
|
|
89
|
-
alias="billingCountryCode", default=None
|
|
90
|
-
)
|
|
91
|
-
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
92
|
-
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
93
|
-
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
94
|
-
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
class OveragePriceFragmentPrice(BaseModel):
|
|
98
|
-
amount: float
|
|
99
|
-
currency: Currency
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
103
|
-
pass
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
class OveragePriceFragmentFeature(BaseModel):
|
|
107
|
-
ref_id: str = Field(alias="refId")
|
|
108
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
109
|
-
feature_units_plural: Optional[str] = Field(
|
|
110
|
-
alias="featureUnitsPlural", default=None
|
|
111
|
-
)
|
|
112
|
-
display_name: str = Field(alias="displayName")
|
|
113
|
-
description: Optional[str] = Field(default=None)
|
|
114
|
-
|
|
115
|
-
|
|
116
64
|
class PackageEntitlementFragment(BaseModel):
|
|
117
65
|
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
118
66
|
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
@@ -148,6 +96,26 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
148
96
|
)
|
|
149
97
|
|
|
150
98
|
|
|
99
|
+
class PriceTierFragment(BaseModel):
|
|
100
|
+
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
101
|
+
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
102
|
+
alias="unitPrice", default=None
|
|
103
|
+
)
|
|
104
|
+
flat_price: Optional["PriceTierFragmentFlatPrice"] = Field(
|
|
105
|
+
alias="flatPrice", default=None
|
|
106
|
+
)
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
class PriceTierFragmentUnitPrice(BaseModel):
|
|
110
|
+
amount: float
|
|
111
|
+
currency: Currency
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
class PriceTierFragmentFlatPrice(BaseModel):
|
|
115
|
+
amount: float
|
|
116
|
+
currency: Currency
|
|
117
|
+
|
|
118
|
+
|
|
151
119
|
class PriceFragment(BaseModel):
|
|
152
120
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
153
121
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -192,6 +160,38 @@ class PriceFragmentFeature(BaseModel):
|
|
|
192
160
|
description: Optional[str] = Field(default=None)
|
|
193
161
|
|
|
194
162
|
|
|
163
|
+
class OveragePriceFragment(BaseModel):
|
|
164
|
+
billing_model: BillingModel = Field(alias="billingModel")
|
|
165
|
+
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
166
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
167
|
+
billing_country_code: Optional[str] = Field(
|
|
168
|
+
alias="billingCountryCode", default=None
|
|
169
|
+
)
|
|
170
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
171
|
+
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
172
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
173
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
177
|
+
amount: float
|
|
178
|
+
currency: Currency
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
182
|
+
pass
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
186
|
+
ref_id: str = Field(alias="refId")
|
|
187
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
188
|
+
feature_units_plural: Optional[str] = Field(
|
|
189
|
+
alias="featureUnitsPlural", default=None
|
|
190
|
+
)
|
|
191
|
+
display_name: str = Field(alias="displayName")
|
|
192
|
+
description: Optional[str] = Field(default=None)
|
|
193
|
+
|
|
194
|
+
|
|
195
195
|
class AddonFragment(BaseModel):
|
|
196
196
|
id: Any
|
|
197
197
|
ref_id: str = Field(alias="refId")
|
|
@@ -230,124 +230,25 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
230
230
|
pass
|
|
231
231
|
|
|
232
232
|
|
|
233
|
-
class
|
|
234
|
-
ref_id: str = Field(alias="refId")
|
|
235
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
236
|
-
description: Optional[str] = Field(default=None)
|
|
237
|
-
additional_meta_data: Optional[Any] = Field(
|
|
238
|
-
alias="additionalMetaData", default=None
|
|
239
|
-
)
|
|
240
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
244
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
245
|
-
alias="downgradePlan", default=None
|
|
246
|
-
)
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
250
|
-
ref_id: str = Field(alias="refId")
|
|
251
|
-
display_name: str = Field(alias="displayName")
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
255
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
256
|
-
display_name: str = Field(alias="displayName")
|
|
257
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
258
|
-
default=None
|
|
259
|
-
)
|
|
260
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
264
|
-
pass
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
268
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
269
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
class PlanFragment(BaseModel):
|
|
233
|
+
class SlimCustomerFragment(BaseModel):
|
|
273
234
|
id: Any
|
|
235
|
+
name: Optional[str] = Field(default=None)
|
|
236
|
+
email: Optional[str] = Field(default=None)
|
|
237
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
238
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
274
239
|
ref_id: str = Field(alias="refId")
|
|
275
|
-
|
|
276
|
-
description: Optional[str] = Field(default=None)
|
|
240
|
+
customer_id: str = Field(alias="customerId")
|
|
277
241
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
278
|
-
version_number: int = Field(alias="versionNumber")
|
|
279
242
|
additional_meta_data: Optional[Any] = Field(
|
|
280
243
|
alias="additionalMetaData", default=None
|
|
281
244
|
)
|
|
282
|
-
|
|
283
|
-
alias="
|
|
284
|
-
)
|
|
285
|
-
product: "PlanFragmentProduct"
|
|
286
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
287
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
288
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
289
|
-
alias="inheritedEntitlements", default=None
|
|
290
|
-
)
|
|
291
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
292
|
-
alias="compatibleAddons", default=None
|
|
293
|
-
)
|
|
294
|
-
compatible_package_groups: Optional[
|
|
295
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
296
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
297
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
298
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
299
|
-
alias="overagePrices", default=None
|
|
300
|
-
)
|
|
301
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
302
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
303
|
-
alias="defaultTrialConfig", default=None
|
|
304
|
-
)
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
class PlanFragmentProduct(ProductFragment):
|
|
308
|
-
pass
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
312
|
-
ref_id: str = Field(alias="refId")
|
|
313
|
-
display_name: str = Field(alias="displayName")
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
317
|
-
pass
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
321
|
-
pass
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
325
|
-
pass
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
329
|
-
pass
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
class PlanFragmentPrices(PriceFragment):
|
|
333
|
-
pass
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
337
|
-
pass
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
341
|
-
duration: float
|
|
342
|
-
units: TrialPeriodUnits
|
|
343
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
344
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
345
|
-
alias="trialEndBehavior", default=None
|
|
245
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
246
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
346
247
|
)
|
|
347
248
|
|
|
348
249
|
|
|
349
|
-
class
|
|
350
|
-
|
|
250
|
+
class CustomerResourceFragment(BaseModel):
|
|
251
|
+
resource_id: str = Field(alias="resourceId")
|
|
351
252
|
|
|
352
253
|
|
|
353
254
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
@@ -504,14 +405,6 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
504
405
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
505
406
|
|
|
506
407
|
|
|
507
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
508
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
class CustomerResourceFragment(BaseModel):
|
|
512
|
-
resource_id: str = Field(alias="resourceId")
|
|
513
|
-
|
|
514
|
-
|
|
515
408
|
class SubscriptionInvoiceFragment(BaseModel):
|
|
516
409
|
billing_id: str = Field(alias="billingId")
|
|
517
410
|
status: SubscriptionInvoiceStatus
|
|
@@ -540,21 +433,124 @@ class SubscriptionInvoiceFragment(BaseModel):
|
|
|
540
433
|
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
541
434
|
|
|
542
435
|
|
|
543
|
-
class
|
|
436
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
437
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
438
|
+
display_name: str = Field(alias="displayName")
|
|
439
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
440
|
+
default=None
|
|
441
|
+
)
|
|
442
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
446
|
+
pass
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
450
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
451
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
class ProductFragment(BaseModel):
|
|
455
|
+
ref_id: str = Field(alias="refId")
|
|
456
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
457
|
+
description: Optional[str] = Field(default=None)
|
|
458
|
+
additional_meta_data: Optional[Any] = Field(
|
|
459
|
+
alias="additionalMetaData", default=None
|
|
460
|
+
)
|
|
461
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
465
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
466
|
+
alias="downgradePlan", default=None
|
|
467
|
+
)
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
471
|
+
ref_id: str = Field(alias="refId")
|
|
472
|
+
display_name: str = Field(alias="displayName")
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
class PlanFragment(BaseModel):
|
|
544
476
|
id: Any
|
|
545
|
-
name: Optional[str] = Field(default=None)
|
|
546
|
-
email: Optional[str] = Field(default=None)
|
|
547
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
548
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
549
477
|
ref_id: str = Field(alias="refId")
|
|
550
|
-
|
|
478
|
+
display_name: str = Field(alias="displayName")
|
|
479
|
+
description: Optional[str] = Field(default=None)
|
|
551
480
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
481
|
+
version_number: int = Field(alias="versionNumber")
|
|
552
482
|
additional_meta_data: Optional[Any] = Field(
|
|
553
483
|
alias="additionalMetaData", default=None
|
|
554
484
|
)
|
|
555
|
-
|
|
556
|
-
alias="
|
|
485
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
486
|
+
alias="hiddenFromWidgets", default=None
|
|
557
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")
|
|
517
|
+
|
|
518
|
+
|
|
519
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
520
|
+
pass
|
|
521
|
+
|
|
522
|
+
|
|
523
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
524
|
+
pass
|
|
525
|
+
|
|
526
|
+
|
|
527
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
528
|
+
pass
|
|
529
|
+
|
|
530
|
+
|
|
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
|
|
558
554
|
|
|
559
555
|
|
|
560
556
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
@@ -719,6 +715,10 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
719
715
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
720
716
|
|
|
721
717
|
|
|
718
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
719
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
720
|
+
|
|
721
|
+
|
|
722
722
|
class TotalPriceFragment(BaseModel):
|
|
723
723
|
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
724
724
|
total: "TotalPriceFragmentTotal"
|
|
@@ -1326,6 +1326,48 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1326
1326
|
pass
|
|
1327
1327
|
|
|
1328
1328
|
|
|
1329
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1330
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1331
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1332
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1333
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1334
|
+
default=None
|
|
1335
|
+
)
|
|
1336
|
+
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1337
|
+
alias="creditRate", default=None
|
|
1338
|
+
)
|
|
1339
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1340
|
+
default=None
|
|
1341
|
+
)
|
|
1342
|
+
|
|
1343
|
+
|
|
1344
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1345
|
+
amount: float
|
|
1346
|
+
currency: Currency
|
|
1347
|
+
|
|
1348
|
+
|
|
1349
|
+
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1350
|
+
amount: float
|
|
1351
|
+
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
1352
|
+
|
|
1353
|
+
|
|
1354
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1355
|
+
id: Any
|
|
1356
|
+
ref_id: str = Field(alias="refId")
|
|
1357
|
+
display_name: str = Field(alias="displayName")
|
|
1358
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1359
|
+
feature_units_plural: Optional[str] = Field(
|
|
1360
|
+
alias="featureUnitsPlural", default=None
|
|
1361
|
+
)
|
|
1362
|
+
|
|
1363
|
+
|
|
1364
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1365
|
+
addon_id: str = Field(alias="addonId")
|
|
1366
|
+
description: Optional[str] = Field(default=None)
|
|
1367
|
+
display_name: str = Field(alias="displayName")
|
|
1368
|
+
quantity: int
|
|
1369
|
+
|
|
1370
|
+
|
|
1329
1371
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1330
1372
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1331
1373
|
alias="subscriptionScheduleType"
|
|
@@ -1495,48 +1537,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1495
1537
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1496
1538
|
|
|
1497
1539
|
|
|
1498
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1499
|
-
addon_id: str = Field(alias="addonId")
|
|
1500
|
-
description: Optional[str] = Field(default=None)
|
|
1501
|
-
display_name: str = Field(alias="displayName")
|
|
1502
|
-
quantity: int
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1506
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1507
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1508
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1509
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1510
|
-
default=None
|
|
1511
|
-
)
|
|
1512
|
-
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1513
|
-
alias="creditRate", default=None
|
|
1514
|
-
)
|
|
1515
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1516
|
-
default=None
|
|
1517
|
-
)
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1521
|
-
amount: float
|
|
1522
|
-
currency: Currency
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1526
|
-
amount: float
|
|
1527
|
-
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1531
|
-
id: Any
|
|
1532
|
-
ref_id: str = Field(alias="refId")
|
|
1533
|
-
display_name: str = Field(alias="displayName")
|
|
1534
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1535
|
-
feature_units_plural: Optional[str] = Field(
|
|
1536
|
-
alias="featureUnitsPlural", default=None
|
|
1537
|
-
)
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
1540
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1541
1541
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1542
1542
|
plan_id: str = Field(alias="planId")
|
|
@@ -2928,20 +2928,20 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2928
2928
|
|
|
2929
2929
|
|
|
2930
2930
|
AddonDependencyFragment.model_rebuild()
|
|
2931
|
-
PriceTierFragment.model_rebuild()
|
|
2932
|
-
OveragePriceFragment.model_rebuild()
|
|
2933
2931
|
PackageEntitlementFragment.model_rebuild()
|
|
2932
|
+
PriceTierFragment.model_rebuild()
|
|
2934
2933
|
PriceFragment.model_rebuild()
|
|
2934
|
+
OveragePriceFragment.model_rebuild()
|
|
2935
2935
|
AddonFragment.model_rebuild()
|
|
2936
|
-
|
|
2937
|
-
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2938
|
-
PlanFragment.model_rebuild()
|
|
2939
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2940
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2936
|
+
SlimCustomerFragment.model_rebuild()
|
|
2941
2937
|
CustomerResourceFragment.model_rebuild()
|
|
2938
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2942
2939
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2943
|
-
|
|
2940
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2941
|
+
ProductFragment.model_rebuild()
|
|
2942
|
+
PlanFragment.model_rebuild()
|
|
2944
2943
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2944
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2945
2945
|
TotalPriceFragment.model_rebuild()
|
|
2946
2946
|
SubscriptionFragment.model_rebuild()
|
|
2947
2947
|
FeatureFragment.model_rebuild()
|
|
@@ -2959,9 +2959,9 @@ CreditsBalanceSummaryFragment.model_rebuild()
|
|
|
2959
2959
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2960
2960
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2961
2961
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2962
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2963
|
-
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2964
2962
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2963
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2964
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2965
2965
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2966
2966
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2967
2967
|
CustomerPortalFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -2077,7 +2077,7 @@ class GrantPromotionalEntitlementInput(BaseModel):
|
|
|
2077
2077
|
class GrantPromotionalEntitlementsGroupInput(BaseModel):
|
|
2078
2078
|
customer_id: str = Field(alias="customerId")
|
|
2079
2079
|
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
2080
|
-
feature_group_id:
|
|
2080
|
+
feature_group_id: str = Field(alias="featureGroupId")
|
|
2081
2081
|
promotional_entitlements: List["GrantPromotionalEntitlementInput"] = Field(
|
|
2082
2082
|
alias="promotionalEntitlements"
|
|
2083
2083
|
)
|
|
@@ -3646,7 +3646,7 @@ class RevokePromotionalEntitlementInput(BaseModel):
|
|
|
3646
3646
|
class RevokePromotionalEntitlementsGroupInput(BaseModel):
|
|
3647
3647
|
customer_id: str = Field(alias="customerId")
|
|
3648
3648
|
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
3649
|
-
feature_group_id:
|
|
3649
|
+
feature_group_id: str = Field(alias="featureGroupId")
|
|
3650
3650
|
|
|
3651
3651
|
|
|
3652
3652
|
class SalesforceCredentialsInput(BaseModel):
|
|
@@ -4580,7 +4580,7 @@ class UnlinkFeatureGroupFromPackageInput(BaseModel):
|
|
|
4580
4580
|
class UnlinkPromotionalEntitlementsGroupInput(BaseModel):
|
|
4581
4581
|
customer_id: str = Field(alias="customerId")
|
|
4582
4582
|
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
4583
|
-
feature_group_id:
|
|
4583
|
+
feature_group_id: str = Field(alias="featureGroupId")
|
|
4584
4584
|
|
|
4585
4585
|
|
|
4586
4586
|
class UpdateAccountInput(BaseModel):
|
|
@@ -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=kkPeD3cqBgQwbsnbc-_yhidtT3FluNlgWiuwZzE1D2A,107006
|
|
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
|
|
@@ -149,7 +149,7 @@ stigg/generated/grant_promotional_entitlements_group.py,sha256=iQwCd07VFaYbsN_E-
|
|
|
149
149
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
150
150
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
151
151
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
152
|
-
stigg/generated/input_types.py,sha256=
|
|
152
|
+
stigg/generated/input_types.py,sha256=F45-CFe7xiljfMp-HwsBKzvvKtlRVefT1Vrl9Zd6UcI,207384
|
|
153
153
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
154
154
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
155
155
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -167,7 +167,7 @@ stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9e
|
|
|
167
167
|
stigg/generated/unlink_promotional_entitlements_group.py,sha256=8UIRQ0CNvReRfX0LZmDYkRn9mMjZm9n41YG6-p7Z8qU,636
|
|
168
168
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
169
169
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
170
|
-
stigg_api_client_v2-3.
|
|
171
|
-
stigg_api_client_v2-3.
|
|
172
|
-
stigg_api_client_v2-3.
|
|
173
|
-
stigg_api_client_v2-3.
|
|
170
|
+
stigg_api_client_v2-3.65.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
171
|
+
stigg_api_client_v2-3.65.0.dist-info/METADATA,sha256=nfG10x9IBKdq0OziyeXlXFVsBU5KWluDTVZ2xah2i2Q,2257
|
|
172
|
+
stigg_api_client_v2-3.65.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
173
|
+
stigg_api_client_v2-3.65.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|