stigg-api-client-v2 2.438.1__py3-none-any.whl → 2.438.2__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 +235 -235
- {stigg_api_client_v2-2.438.1.dist-info → stigg_api_client_v2-2.438.2.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.438.1.dist-info → stigg_api_client_v2-2.438.2.dist-info}/RECORD +5 -5
- {stigg_api_client_v2-2.438.1.dist-info → stigg_api_client_v2-2.438.2.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.438.1.dist-info → stigg_api_client_v2-2.438.2.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -116,6 +116,38 @@ class PriceFragmentFeature(BaseModel):
|
|
|
116
116
|
description: Optional[str] = Field(default=None)
|
|
117
117
|
|
|
118
118
|
|
|
119
|
+
class OveragePriceFragment(BaseModel):
|
|
120
|
+
billing_model: BillingModel = Field(alias="billingModel")
|
|
121
|
+
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
122
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
123
|
+
billing_country_code: Optional[str] = Field(
|
|
124
|
+
alias="billingCountryCode", default=None
|
|
125
|
+
)
|
|
126
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
127
|
+
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
128
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
129
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
133
|
+
amount: float
|
|
134
|
+
currency: Currency
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
138
|
+
pass
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
142
|
+
ref_id: str = Field(alias="refId")
|
|
143
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
144
|
+
feature_units_plural: Optional[str] = Field(
|
|
145
|
+
alias="featureUnitsPlural", default=None
|
|
146
|
+
)
|
|
147
|
+
display_name: str = Field(alias="displayName")
|
|
148
|
+
description: Optional[str] = Field(default=None)
|
|
149
|
+
|
|
150
|
+
|
|
119
151
|
class PackageEntitlementFragment(BaseModel):
|
|
120
152
|
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
121
153
|
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
@@ -149,73 +181,228 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
149
181
|
)
|
|
150
182
|
|
|
151
183
|
|
|
152
|
-
class
|
|
153
|
-
|
|
154
|
-
|
|
184
|
+
class AddonFragment(BaseModel):
|
|
185
|
+
id: str
|
|
186
|
+
ref_id: str = Field(alias="refId")
|
|
155
187
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
156
|
-
|
|
157
|
-
|
|
188
|
+
display_name: str = Field(alias="displayName")
|
|
189
|
+
description: Optional[str] = Field(default=None)
|
|
190
|
+
additional_meta_data: Optional[Any] = Field(
|
|
191
|
+
alias="additionalMetaData", default=None
|
|
158
192
|
)
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
193
|
+
entitlements: Optional[List["AddonFragmentEntitlements"]] = Field(default=None)
|
|
194
|
+
prices: Optional[List["AddonFragmentPrices"]] = Field(default=None)
|
|
195
|
+
overage_prices: Optional[List["AddonFragmentOveragePrices"]] = Field(
|
|
196
|
+
alias="overagePrices", default=None
|
|
197
|
+
)
|
|
198
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
199
|
+
max_quantity: Optional[float] = Field(alias="maxQuantity", default=None)
|
|
200
|
+
dependencies: Optional[List["AddonFragmentDependencies"]] = Field(default=None)
|
|
163
201
|
|
|
164
202
|
|
|
165
|
-
class
|
|
166
|
-
|
|
167
|
-
currency: Currency
|
|
203
|
+
class AddonFragmentEntitlements(PackageEntitlementFragment):
|
|
204
|
+
pass
|
|
168
205
|
|
|
169
206
|
|
|
170
|
-
class
|
|
207
|
+
class AddonFragmentPrices(PriceFragment):
|
|
171
208
|
pass
|
|
172
209
|
|
|
173
210
|
|
|
174
|
-
class
|
|
211
|
+
class AddonFragmentOveragePrices(OveragePriceFragment):
|
|
212
|
+
pass
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
class AddonFragmentDependencies(AddonDependencyFragment):
|
|
216
|
+
pass
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
class ProductFragment(BaseModel):
|
|
175
220
|
ref_id: str = Field(alias="refId")
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
221
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
222
|
+
description: Optional[str] = Field(default=None)
|
|
223
|
+
additional_meta_data: Optional[Any] = Field(
|
|
224
|
+
alias="additionalMetaData", default=None
|
|
179
225
|
)
|
|
226
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
230
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
231
|
+
alias="downgradePlan", default=None
|
|
232
|
+
)
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
236
|
+
ref_id: str = Field(alias="refId")
|
|
180
237
|
display_name: str = Field(alias="displayName")
|
|
181
|
-
description: Optional[str] = Field(default=None)
|
|
182
238
|
|
|
183
239
|
|
|
184
|
-
class
|
|
240
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
241
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
242
|
+
display_name: str = Field(alias="displayName")
|
|
243
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
244
|
+
default=None
|
|
245
|
+
)
|
|
246
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
250
|
+
pass
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
254
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
255
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
class PlanFragment(BaseModel):
|
|
185
259
|
id: str
|
|
186
260
|
ref_id: str = Field(alias="refId")
|
|
187
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
188
261
|
display_name: str = Field(alias="displayName")
|
|
189
262
|
description: Optional[str] = Field(default=None)
|
|
263
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
264
|
+
version_number: int = Field(alias="versionNumber")
|
|
190
265
|
additional_meta_data: Optional[Any] = Field(
|
|
191
266
|
alias="additionalMetaData", default=None
|
|
192
267
|
)
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
268
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
269
|
+
alias="hiddenFromWidgets", default=None
|
|
270
|
+
)
|
|
271
|
+
product: "PlanFragmentProduct"
|
|
272
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
273
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
274
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
275
|
+
alias="inheritedEntitlements", default=None
|
|
276
|
+
)
|
|
277
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
278
|
+
alias="compatibleAddons", default=None
|
|
279
|
+
)
|
|
280
|
+
compatible_package_groups: Optional[
|
|
281
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
282
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
283
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
284
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
196
285
|
alias="overagePrices", default=None
|
|
197
286
|
)
|
|
198
287
|
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
199
|
-
|
|
200
|
-
|
|
288
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
289
|
+
alias="defaultTrialConfig", default=None
|
|
290
|
+
)
|
|
201
291
|
|
|
202
292
|
|
|
203
|
-
class
|
|
293
|
+
class PlanFragmentProduct(ProductFragment):
|
|
204
294
|
pass
|
|
205
295
|
|
|
206
296
|
|
|
207
|
-
class
|
|
297
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
298
|
+
ref_id: str = Field(alias="refId")
|
|
299
|
+
display_name: str = Field(alias="displayName")
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
208
303
|
pass
|
|
209
304
|
|
|
210
305
|
|
|
211
|
-
class
|
|
306
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
212
307
|
pass
|
|
213
308
|
|
|
214
309
|
|
|
215
|
-
class
|
|
310
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
216
311
|
pass
|
|
217
312
|
|
|
218
313
|
|
|
314
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
315
|
+
pass
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
class PlanFragmentPrices(PriceFragment):
|
|
319
|
+
pass
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
323
|
+
pass
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
327
|
+
duration: float
|
|
328
|
+
units: TrialPeriodUnits
|
|
329
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
330
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
331
|
+
alias="trialEndBehavior", default=None
|
|
332
|
+
)
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
336
|
+
limit: float
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
class TotalPriceFragment(BaseModel):
|
|
340
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
341
|
+
total: "TotalPriceFragmentTotal"
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
345
|
+
amount: float
|
|
346
|
+
currency: Currency
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
350
|
+
amount: float
|
|
351
|
+
currency: Currency
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
355
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
359
|
+
billing_id: str = Field(alias="billingId")
|
|
360
|
+
status: SubscriptionInvoiceStatus
|
|
361
|
+
created_at: Any = Field(alias="createdAt")
|
|
362
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
363
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
364
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
365
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
366
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
367
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
368
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
369
|
+
alias="billingReason", default=None
|
|
370
|
+
)
|
|
371
|
+
currency: Optional[str] = Field(default=None)
|
|
372
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
373
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
374
|
+
alias="subTotalExcludingTax", default=None
|
|
375
|
+
)
|
|
376
|
+
total: Optional[float] = Field(default=None)
|
|
377
|
+
total_excluding_tax: Optional[float] = Field(
|
|
378
|
+
alias="totalExcludingTax", default=None
|
|
379
|
+
)
|
|
380
|
+
tax: Optional[float] = Field(default=None)
|
|
381
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
382
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
class CustomerResourceFragment(BaseModel):
|
|
386
|
+
resource_id: str = Field(alias="resourceId")
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
class SlimCustomerFragment(BaseModel):
|
|
390
|
+
id: str
|
|
391
|
+
name: Optional[str] = Field(default=None)
|
|
392
|
+
email: Optional[str] = Field(default=None)
|
|
393
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
394
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
395
|
+
ref_id: str = Field(alias="refId")
|
|
396
|
+
customer_id: str = Field(alias="customerId")
|
|
397
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
398
|
+
additional_meta_data: Optional[Any] = Field(
|
|
399
|
+
alias="additionalMetaData", default=None
|
|
400
|
+
)
|
|
401
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
402
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
403
|
+
)
|
|
404
|
+
|
|
405
|
+
|
|
219
406
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
220
407
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
221
408
|
alias="subscriptionScheduleType"
|
|
@@ -532,193 +719,6 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
532
719
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
533
720
|
|
|
534
721
|
|
|
535
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
536
|
-
billing_id: str = Field(alias="billingId")
|
|
537
|
-
status: SubscriptionInvoiceStatus
|
|
538
|
-
created_at: Any = Field(alias="createdAt")
|
|
539
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
540
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
541
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
542
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
543
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
544
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
545
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
546
|
-
alias="billingReason", default=None
|
|
547
|
-
)
|
|
548
|
-
currency: Optional[str] = Field(default=None)
|
|
549
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
550
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
551
|
-
alias="subTotalExcludingTax", default=None
|
|
552
|
-
)
|
|
553
|
-
total: Optional[float] = Field(default=None)
|
|
554
|
-
total_excluding_tax: Optional[float] = Field(
|
|
555
|
-
alias="totalExcludingTax", default=None
|
|
556
|
-
)
|
|
557
|
-
tax: Optional[float] = Field(default=None)
|
|
558
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
559
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
class TotalPriceFragment(BaseModel):
|
|
563
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
564
|
-
total: "TotalPriceFragmentTotal"
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
568
|
-
amount: float
|
|
569
|
-
currency: Currency
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
573
|
-
amount: float
|
|
574
|
-
currency: Currency
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
class SlimCustomerFragment(BaseModel):
|
|
578
|
-
id: str
|
|
579
|
-
name: Optional[str] = Field(default=None)
|
|
580
|
-
email: Optional[str] = Field(default=None)
|
|
581
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
582
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
583
|
-
ref_id: str = Field(alias="refId")
|
|
584
|
-
customer_id: str = Field(alias="customerId")
|
|
585
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
586
|
-
additional_meta_data: Optional[Any] = Field(
|
|
587
|
-
alias="additionalMetaData", default=None
|
|
588
|
-
)
|
|
589
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
590
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
591
|
-
)
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
595
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
class CustomerResourceFragment(BaseModel):
|
|
599
|
-
resource_id: str = Field(alias="resourceId")
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
603
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
604
|
-
display_name: str = Field(alias="displayName")
|
|
605
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
606
|
-
default=None
|
|
607
|
-
)
|
|
608
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
612
|
-
pass
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
616
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
617
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
class ProductFragment(BaseModel):
|
|
621
|
-
ref_id: str = Field(alias="refId")
|
|
622
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
623
|
-
description: Optional[str] = Field(default=None)
|
|
624
|
-
additional_meta_data: Optional[Any] = Field(
|
|
625
|
-
alias="additionalMetaData", default=None
|
|
626
|
-
)
|
|
627
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
631
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
632
|
-
alias="downgradePlan", default=None
|
|
633
|
-
)
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
637
|
-
ref_id: str = Field(alias="refId")
|
|
638
|
-
display_name: str = Field(alias="displayName")
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
class PlanFragment(BaseModel):
|
|
642
|
-
id: str
|
|
643
|
-
ref_id: str = Field(alias="refId")
|
|
644
|
-
display_name: str = Field(alias="displayName")
|
|
645
|
-
description: Optional[str] = Field(default=None)
|
|
646
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
647
|
-
version_number: int = Field(alias="versionNumber")
|
|
648
|
-
additional_meta_data: Optional[Any] = Field(
|
|
649
|
-
alias="additionalMetaData", default=None
|
|
650
|
-
)
|
|
651
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
652
|
-
alias="hiddenFromWidgets", default=None
|
|
653
|
-
)
|
|
654
|
-
product: "PlanFragmentProduct"
|
|
655
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
656
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
657
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
658
|
-
alias="inheritedEntitlements", default=None
|
|
659
|
-
)
|
|
660
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
661
|
-
alias="compatibleAddons", default=None
|
|
662
|
-
)
|
|
663
|
-
compatible_package_groups: Optional[
|
|
664
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
665
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
666
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
667
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
668
|
-
alias="overagePrices", default=None
|
|
669
|
-
)
|
|
670
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
671
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
672
|
-
alias="defaultTrialConfig", default=None
|
|
673
|
-
)
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
class PlanFragmentProduct(ProductFragment):
|
|
677
|
-
pass
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
681
|
-
ref_id: str = Field(alias="refId")
|
|
682
|
-
display_name: str = Field(alias="displayName")
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
686
|
-
pass
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
690
|
-
pass
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
694
|
-
pass
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
698
|
-
pass
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
class PlanFragmentPrices(PriceFragment):
|
|
702
|
-
pass
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
706
|
-
pass
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
710
|
-
duration: float
|
|
711
|
-
units: TrialPeriodUnits
|
|
712
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
713
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
714
|
-
alias="trialEndBehavior", default=None
|
|
715
|
-
)
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
719
|
-
limit: float
|
|
720
|
-
|
|
721
|
-
|
|
722
722
|
class SubscriptionFragment(BaseModel):
|
|
723
723
|
id: str
|
|
724
724
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -1257,16 +1257,6 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1257
1257
|
pass
|
|
1258
1258
|
|
|
1259
1259
|
|
|
1260
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1261
|
-
display_name: str = Field(alias="displayName")
|
|
1262
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1263
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1264
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1265
|
-
period: PromotionalEntitlementPeriod
|
|
1266
|
-
start_date: Any = Field(alias="startDate")
|
|
1267
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
1260
|
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1271
1261
|
addon_id: str = Field(alias="addonId")
|
|
1272
1262
|
description: Optional[str] = Field(default=None)
|
|
@@ -1566,6 +1556,16 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1566
1556
|
pass
|
|
1567
1557
|
|
|
1568
1558
|
|
|
1559
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1560
|
+
display_name: str = Field(alias="displayName")
|
|
1561
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1562
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1563
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1564
|
+
period: PromotionalEntitlementPeriod
|
|
1565
|
+
start_date: Any = Field(alias="startDate")
|
|
1566
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1567
|
+
|
|
1568
|
+
|
|
1569
1569
|
class CustomerPortalFragment(BaseModel):
|
|
1570
1570
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1571
1571
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -2772,19 +2772,19 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2772
2772
|
AddonDependencyFragment.model_rebuild()
|
|
2773
2773
|
PriceTierFragment.model_rebuild()
|
|
2774
2774
|
PriceFragment.model_rebuild()
|
|
2775
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2776
2775
|
OveragePriceFragment.model_rebuild()
|
|
2776
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2777
2777
|
AddonFragment.model_rebuild()
|
|
2778
|
-
|
|
2779
|
-
|
|
2780
|
-
|
|
2778
|
+
ProductFragment.model_rebuild()
|
|
2779
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2780
|
+
PlanFragment.model_rebuild()
|
|
2781
2781
|
TotalPriceFragment.model_rebuild()
|
|
2782
|
-
SlimCustomerFragment.model_rebuild()
|
|
2783
2782
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2783
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2784
2784
|
CustomerResourceFragment.model_rebuild()
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
|
-
|
|
2785
|
+
SlimCustomerFragment.model_rebuild()
|
|
2786
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2787
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2788
2788
|
SubscriptionFragment.model_rebuild()
|
|
2789
2789
|
FeatureFragment.model_rebuild()
|
|
2790
2790
|
EntitlementFragment.model_rebuild()
|
|
@@ -2799,11 +2799,11 @@ CheckoutStateFragment.model_rebuild()
|
|
|
2799
2799
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2800
2800
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2801
2801
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2802
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2803
2802
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2804
2803
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2805
2804
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2806
2805
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2806
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2807
2807
|
CustomerPortalFragment.model_rebuild()
|
|
2808
2808
|
CustomerStatisticsFragment.model_rebuild()
|
|
2809
2809
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=9ioQN2tFCIyy3cENl_nhueILHgK6xJ4_XHFFmGztc0A,3529
|
|
|
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=FiBUvSOYtf_YiFBrdcMZajDjznB2Y45UCvcNwLGRDC0,100917
|
|
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
|
|
@@ -160,7 +160,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
160
160
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
161
161
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
162
162
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
163
|
-
stigg_api_client_v2-2.438.
|
|
164
|
-
stigg_api_client_v2-2.438.
|
|
165
|
-
stigg_api_client_v2-2.438.
|
|
166
|
-
stigg_api_client_v2-2.438.
|
|
163
|
+
stigg_api_client_v2-2.438.2.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.438.2.dist-info/METADATA,sha256=pSZDTuSSp2tsiJ5TSp_jJqOD1U80r8ke2TZEOAV1jrM,2258
|
|
165
|
+
stigg_api_client_v2-2.438.2.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.438.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|