stigg-api-client-v2 2.503.0__py3-none-any.whl → 3.6.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.

@@ -631,6 +631,7 @@ from .input_types import (
631
631
  CreateOrUpdateAwsMarketplaceProductInput,
632
632
  CreatePackageGroup,
633
633
  CreateWorkflowTriggerInput,
634
+ CreditBalanceSummaryInput,
634
635
  CreditGrantInput,
635
636
  CursorPaging,
636
637
  CustomCurrencyInput,
@@ -703,6 +704,7 @@ from .input_types import (
703
704
  ExperimentStatusFilterComparison,
704
705
  FeatureAssociatedLatestPackages,
705
706
  FeatureFilter,
707
+ FeatureGroupAssociatedLatestPackagesInput,
706
708
  FeatureGroupFilter,
707
709
  FeatureGroupSort,
708
710
  FeatureGroupStatusFilterComparison,
@@ -1098,6 +1100,7 @@ __all__ = [
1098
1100
  "CreateSubscription",
1099
1101
  "CreateSubscriptionCreateSubscription",
1100
1102
  "CreateWorkflowTriggerInput",
1103
+ "CreditBalanceSummaryInput",
1101
1104
  "CreditGrantInput",
1102
1105
  "CreditGrantType",
1103
1106
  "Currency",
@@ -1273,6 +1276,7 @@ __all__ = [
1273
1276
  "FeatureFilter",
1274
1277
  "FeatureFragment",
1275
1278
  "FeatureFragmentUnitTransformation",
1279
+ "FeatureGroupAssociatedLatestPackagesInput",
1276
1280
  "FeatureGroupFilter",
1277
1281
  "FeatureGroupSort",
1278
1282
  "FeatureGroupSortFields",
@@ -60,40 +60,6 @@ class AddonDependencyFragment(BaseModel):
60
60
  description: Optional[str] = Field(default=None)
61
61
 
62
62
 
63
- class PackageEntitlementFragment(BaseModel):
64
- usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
65
- has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
66
- has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
67
- feature_id: str = Field(alias="featureId")
68
- reset_period: Optional[EntitlementResetPeriod] = Field(
69
- alias="resetPeriod", default=None
70
- )
71
- hidden_from_widgets: Optional[List[WidgetType]] = Field(
72
- alias="hiddenFromWidgets", default=None
73
- )
74
- is_custom: Optional[bool] = Field(alias="isCustom", default=None)
75
- display_name_override: Optional[str] = Field(
76
- alias="displayNameOverride", default=None
77
- )
78
- enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
79
- feature: "PackageEntitlementFragmentFeature"
80
-
81
-
82
- class PackageEntitlementFragmentFeature(BaseModel):
83
- feature_type: FeatureType = Field(alias="featureType")
84
- meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
85
- feature_units: Optional[str] = Field(alias="featureUnits", default=None)
86
- feature_units_plural: Optional[str] = Field(
87
- alias="featureUnitsPlural", default=None
88
- )
89
- display_name: str = Field(alias="displayName")
90
- description: Optional[str] = Field(default=None)
91
- ref_id: str = Field(alias="refId")
92
- additional_meta_data: Optional[Any] = Field(
93
- alias="additionalMetaData", default=None
94
- )
95
-
96
-
97
63
  class PriceTierFragment(BaseModel):
98
64
  up_to: Optional[float] = Field(alias="upTo", default=None)
99
65
  unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
@@ -114,33 +80,29 @@ class PriceTierFragmentFlatPrice(BaseModel):
114
80
  currency: Currency
115
81
 
116
82
 
117
- class PriceFragment(BaseModel):
83
+ class OveragePriceFragment(BaseModel):
118
84
  billing_model: BillingModel = Field(alias="billingModel")
119
85
  billing_period: BillingPeriod = Field(alias="billingPeriod")
120
- billing_cadence: BillingCadence = Field(alias="billingCadence")
121
86
  billing_id: Optional[str] = Field(alias="billingId", default=None)
122
- min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
123
- max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
124
87
  billing_country_code: Optional[str] = Field(
125
88
  alias="billingCountryCode", default=None
126
89
  )
127
- price: Optional["PriceFragmentPrice"] = Field(default=None)
90
+ price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
128
91
  tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
129
- tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
130
- feature: Optional["PriceFragmentFeature"] = Field(default=None)
131
- block_size: Optional[float] = Field(alias="blockSize", default=None)
92
+ tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
93
+ feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
132
94
 
133
95
 
134
- class PriceFragmentPrice(BaseModel):
96
+ class OveragePriceFragmentPrice(BaseModel):
135
97
  amount: float
136
98
  currency: Currency
137
99
 
138
100
 
139
- class PriceFragmentTiers(PriceTierFragment):
101
+ class OveragePriceFragmentTiers(PriceTierFragment):
140
102
  pass
141
103
 
142
104
 
143
- class PriceFragmentFeature(BaseModel):
105
+ class OveragePriceFragmentFeature(BaseModel):
144
106
  ref_id: str = Field(alias="refId")
145
107
  feature_units: Optional[str] = Field(alias="featureUnits", default=None)
146
108
  feature_units_plural: Optional[str] = Field(
@@ -150,29 +112,33 @@ class PriceFragmentFeature(BaseModel):
150
112
  description: Optional[str] = Field(default=None)
151
113
 
152
114
 
153
- class OveragePriceFragment(BaseModel):
115
+ class PriceFragment(BaseModel):
154
116
  billing_model: BillingModel = Field(alias="billingModel")
155
117
  billing_period: BillingPeriod = Field(alias="billingPeriod")
118
+ billing_cadence: BillingCadence = Field(alias="billingCadence")
156
119
  billing_id: Optional[str] = Field(alias="billingId", default=None)
120
+ min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
121
+ max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
157
122
  billing_country_code: Optional[str] = Field(
158
123
  alias="billingCountryCode", default=None
159
124
  )
160
- price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
125
+ price: Optional["PriceFragmentPrice"] = Field(default=None)
161
126
  tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
162
- tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
163
- feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
127
+ tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
128
+ feature: Optional["PriceFragmentFeature"] = Field(default=None)
129
+ block_size: Optional[float] = Field(alias="blockSize", default=None)
164
130
 
165
131
 
166
- class OveragePriceFragmentPrice(BaseModel):
132
+ class PriceFragmentPrice(BaseModel):
167
133
  amount: float
168
134
  currency: Currency
169
135
 
170
136
 
171
- class OveragePriceFragmentTiers(PriceTierFragment):
137
+ class PriceFragmentTiers(PriceTierFragment):
172
138
  pass
173
139
 
174
140
 
175
- class OveragePriceFragmentFeature(BaseModel):
141
+ class PriceFragmentFeature(BaseModel):
176
142
  ref_id: str = Field(alias="refId")
177
143
  feature_units: Optional[str] = Field(alias="featureUnits", default=None)
178
144
  feature_units_plural: Optional[str] = Field(
@@ -182,6 +148,40 @@ class OveragePriceFragmentFeature(BaseModel):
182
148
  description: Optional[str] = Field(default=None)
183
149
 
184
150
 
151
+ class PackageEntitlementFragment(BaseModel):
152
+ usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
153
+ has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
154
+ has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
155
+ feature_id: str = Field(alias="featureId")
156
+ reset_period: Optional[EntitlementResetPeriod] = Field(
157
+ alias="resetPeriod", default=None
158
+ )
159
+ hidden_from_widgets: Optional[List[WidgetType]] = Field(
160
+ alias="hiddenFromWidgets", default=None
161
+ )
162
+ is_custom: Optional[bool] = Field(alias="isCustom", default=None)
163
+ display_name_override: Optional[str] = Field(
164
+ alias="displayNameOverride", default=None
165
+ )
166
+ enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
167
+ feature: "PackageEntitlementFragmentFeature"
168
+
169
+
170
+ class PackageEntitlementFragmentFeature(BaseModel):
171
+ feature_type: FeatureType = Field(alias="featureType")
172
+ meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
173
+ feature_units: Optional[str] = Field(alias="featureUnits", default=None)
174
+ feature_units_plural: Optional[str] = Field(
175
+ alias="featureUnitsPlural", default=None
176
+ )
177
+ display_name: str = Field(alias="displayName")
178
+ description: Optional[str] = Field(default=None)
179
+ ref_id: str = Field(alias="refId")
180
+ additional_meta_data: Optional[Any] = Field(
181
+ alias="additionalMetaData", default=None
182
+ )
183
+
184
+
185
185
  class AddonFragment(BaseModel):
186
186
  id: Any
187
187
  ref_id: str = Field(alias="refId")
@@ -220,49 +220,49 @@ class AddonFragmentDependencies(AddonDependencyFragment):
220
220
  pass
221
221
 
222
222
 
223
- class CustomerResourceFragment(BaseModel):
224
- resource_id: str = Field(alias="resourceId")
223
+ class SubscriptionTrialConfigurationFragment(BaseModel):
224
+ trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
225
225
 
226
226
 
227
- class SubscriptionFutureUpdateData(BaseModel):
227
+ class SubscriptionScheduledUpdateData(BaseModel):
228
228
  subscription_schedule_type: SubscriptionScheduleType = Field(
229
229
  alias="subscriptionScheduleType"
230
230
  )
231
231
  schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
232
232
  scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
233
- target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
233
+ target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
234
234
  alias="targetPackage", default=None
235
235
  )
236
236
  schedule_variables: Optional[
237
237
  Annotated[
238
238
  Union[
239
- "SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
240
- "SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
241
- "SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
242
- "SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
243
- "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
244
- "SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
245
- "SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
246
- "SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
239
+ "SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
240
+ "SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
241
+ "SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
242
+ "SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
243
+ "SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
244
+ "SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
245
+ "SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
246
+ "SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
247
247
  ],
248
248
  Field(discriminator="typename__"),
249
249
  ]
250
250
  ] = Field(alias="scheduleVariables", default=None)
251
251
 
252
252
 
253
- class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
253
+ class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
254
254
  id: Any
255
255
  ref_id: str = Field(alias="refId")
256
256
  display_name: str = Field(alias="displayName")
257
257
 
258
258
 
259
- class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
259
+ class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
260
260
  typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
261
261
  addon_ref_id: str = Field(alias="addonRefId")
262
262
  new_quantity: float = Field(alias="newQuantity")
263
263
 
264
264
 
265
- class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
265
+ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
266
266
  BaseModel
267
267
  ):
268
268
  typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
@@ -270,53 +270,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
270
270
  feature_id: Optional[str] = Field(alias="featureId", default=None)
271
271
 
272
272
 
273
- class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
273
+ class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
274
274
  BaseModel
275
275
  ):
276
276
  typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
277
277
  billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
278
278
 
279
279
 
280
- class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
280
+ class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
281
281
  typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
282
282
 
283
283
 
284
- class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
284
+ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
285
+ BaseModel
286
+ ):
285
287
  typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
286
288
  downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
287
289
  billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
288
290
  billable_features: Optional[
289
291
  List[
290
- "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
292
+ "SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
291
293
  ]
292
294
  ] = Field(alias="billableFeatures", default=None)
293
295
  addons: Optional[
294
296
  List[
295
- "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
297
+ "SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
296
298
  ]
297
299
  ] = Field(default=None)
298
300
  price_overrides: Optional[
299
301
  List[
300
- "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
302
+ "SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
301
303
  ]
302
304
  ] = Field(alias="priceOverrides", default=None)
303
305
 
304
306
 
305
- class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
307
+ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
306
308
  BaseModel
307
309
  ):
308
310
  feature_id: str = Field(alias="featureId")
309
311
  quantity: float
310
312
 
311
313
 
312
- class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
314
+ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
313
315
  BaseModel
314
316
  ):
315
317
  addon_ref_id: str = Field(alias="addonRefId")
316
318
  quantity: float
317
319
 
318
320
 
319
- class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
321
+ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
320
322
  BaseModel
321
323
  ):
322
324
  plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
@@ -324,39 +326,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
324
326
  feature_id: Optional[str] = Field(alias="featureId", default=None)
325
327
 
326
328
 
327
- class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
329
+ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
328
330
  typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
329
331
  plan_ref_id: str = Field(alias="planRefId")
330
332
  change_type: PlanChangeType = Field(alias="changeType")
331
333
  billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
332
334
  billable_features: Optional[
333
335
  List[
334
- "SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
336
+ "SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
335
337
  ]
336
338
  ] = Field(alias="billableFeatures", default=None)
337
339
  addons: Optional[
338
- List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
340
+ List[
341
+ "SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
342
+ ]
339
343
  ] = Field(default=None)
340
344
  price_overrides: Optional[
341
345
  List[
342
- "SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
346
+ "SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
343
347
  ]
344
348
  ] = Field(alias="priceOverrides", default=None)
345
349
 
346
350
 
347
- class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
351
+ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
348
352
  BaseModel
349
353
  ):
350
354
  feature_id: str = Field(alias="featureId")
351
355
  quantity: float
352
356
 
353
357
 
354
- class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
358
+ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
359
+ BaseModel
360
+ ):
355
361
  addon_ref_id: str = Field(alias="addonRefId")
356
362
  quantity: float
357
363
 
358
364
 
359
- class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
365
+ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
360
366
  BaseModel
361
367
  ):
362
368
  plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
@@ -364,7 +370,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
364
370
  feature_id: Optional[str] = Field(alias="featureId", default=None)
365
371
 
366
372
 
367
- class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
373
+ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
368
374
  BaseModel
369
375
  ):
370
376
  typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
@@ -372,51 +378,53 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
372
378
  feature_id: Optional[str] = Field(alias="featureId", default=None)
373
379
 
374
380
 
375
- class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
381
+ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
382
+ BaseModel
383
+ ):
376
384
  typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
377
385
  new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
378
386
  feature_id: Optional[str] = Field(alias="featureId", default=None)
379
387
 
380
388
 
381
- class SubscriptionScheduledUpdateData(BaseModel):
389
+ class SubscriptionFutureUpdateData(BaseModel):
382
390
  subscription_schedule_type: SubscriptionScheduleType = Field(
383
391
  alias="subscriptionScheduleType"
384
392
  )
385
393
  schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
386
394
  scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
387
- target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
395
+ target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
388
396
  alias="targetPackage", default=None
389
397
  )
390
398
  schedule_variables: Optional[
391
399
  Annotated[
392
400
  Union[
393
- "SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
394
- "SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
395
- "SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
396
- "SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
397
- "SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
398
- "SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
399
- "SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
400
- "SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
401
+ "SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
402
+ "SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
403
+ "SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
404
+ "SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
405
+ "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
406
+ "SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
407
+ "SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
408
+ "SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
401
409
  ],
402
410
  Field(discriminator="typename__"),
403
411
  ]
404
412
  ] = Field(alias="scheduleVariables", default=None)
405
413
 
406
414
 
407
- class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
415
+ class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
408
416
  id: Any
409
417
  ref_id: str = Field(alias="refId")
410
418
  display_name: str = Field(alias="displayName")
411
419
 
412
420
 
413
- class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
421
+ class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
414
422
  typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
415
423
  addon_ref_id: str = Field(alias="addonRefId")
416
424
  new_quantity: float = Field(alias="newQuantity")
417
425
 
418
426
 
419
- class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
427
+ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
420
428
  BaseModel
421
429
  ):
422
430
  typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
@@ -424,55 +432,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
424
432
  feature_id: Optional[str] = Field(alias="featureId", default=None)
425
433
 
426
434
 
427
- class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
435
+ class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
428
436
  BaseModel
429
437
  ):
430
438
  typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
431
439
  billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
432
440
 
433
441
 
434
- class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
442
+ class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
435
443
  typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
436
444
 
437
445
 
438
- class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
439
- BaseModel
440
- ):
446
+ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
441
447
  typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
442
448
  downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
443
449
  billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
444
450
  billable_features: Optional[
445
451
  List[
446
- "SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
452
+ "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
447
453
  ]
448
454
  ] = Field(alias="billableFeatures", default=None)
449
455
  addons: Optional[
450
456
  List[
451
- "SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
457
+ "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
452
458
  ]
453
459
  ] = Field(default=None)
454
460
  price_overrides: Optional[
455
461
  List[
456
- "SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
462
+ "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
457
463
  ]
458
464
  ] = Field(alias="priceOverrides", default=None)
459
465
 
460
466
 
461
- class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
467
+ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
462
468
  BaseModel
463
469
  ):
464
470
  feature_id: str = Field(alias="featureId")
465
471
  quantity: float
466
472
 
467
473
 
468
- class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
474
+ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
469
475
  BaseModel
470
476
  ):
471
477
  addon_ref_id: str = Field(alias="addonRefId")
472
478
  quantity: float
473
479
 
474
480
 
475
- class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
481
+ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
476
482
  BaseModel
477
483
  ):
478
484
  plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
@@ -480,43 +486,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
480
486
  feature_id: Optional[str] = Field(alias="featureId", default=None)
481
487
 
482
488
 
483
- class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
489
+ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
484
490
  typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
485
491
  plan_ref_id: str = Field(alias="planRefId")
486
492
  change_type: PlanChangeType = Field(alias="changeType")
487
493
  billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
488
494
  billable_features: Optional[
489
495
  List[
490
- "SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
496
+ "SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
491
497
  ]
492
498
  ] = Field(alias="billableFeatures", default=None)
493
499
  addons: Optional[
494
- List[
495
- "SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
496
- ]
500
+ List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
497
501
  ] = Field(default=None)
498
502
  price_overrides: Optional[
499
503
  List[
500
- "SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
504
+ "SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
501
505
  ]
502
506
  ] = Field(alias="priceOverrides", default=None)
503
507
 
504
508
 
505
- class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
509
+ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
506
510
  BaseModel
507
511
  ):
508
512
  feature_id: str = Field(alias="featureId")
509
513
  quantity: float
510
514
 
511
515
 
512
- class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
513
- BaseModel
514
- ):
516
+ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
515
517
  addon_ref_id: str = Field(alias="addonRefId")
516
518
  quantity: float
517
519
 
518
520
 
519
- class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
521
+ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
520
522
  BaseModel
521
523
  ):
522
524
  plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
@@ -524,7 +526,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
524
526
  feature_id: Optional[str] = Field(alias="featureId", default=None)
525
527
 
526
528
 
527
- class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
529
+ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
528
530
  BaseModel
529
531
  ):
530
532
  typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
@@ -532,33 +534,37 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
532
534
  feature_id: Optional[str] = Field(alias="featureId", default=None)
533
535
 
534
536
 
535
- class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
536
- BaseModel
537
- ):
537
+ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
538
538
  typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
539
539
  new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
540
540
  feature_id: Optional[str] = Field(alias="featureId", default=None)
541
541
 
542
542
 
543
- class ProductFragment(BaseModel):
544
- ref_id: str = Field(alias="refId")
545
- display_name: Optional[str] = Field(alias="displayName", default=None)
546
- description: Optional[str] = Field(default=None)
547
- additional_meta_data: Optional[Any] = Field(
548
- alias="additionalMetaData", default=None
543
+ class SubscriptionInvoiceFragment(BaseModel):
544
+ billing_id: str = Field(alias="billingId")
545
+ status: SubscriptionInvoiceStatus
546
+ created_at: Any = Field(alias="createdAt")
547
+ updated_at: Any = Field(alias="updatedAt")
548
+ error_message: Optional[str] = Field(alias="errorMessage", default=None)
549
+ requires_action: bool = Field(alias="requiresAction")
550
+ payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
551
+ payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
552
+ pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
553
+ billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
554
+ alias="billingReason", default=None
549
555
  )
550
- product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
551
-
552
-
553
- class ProductFragmentProductSettings(BaseModel):
554
- downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
555
- alias="downgradePlan", default=None
556
+ currency: Optional[str] = Field(default=None)
557
+ sub_total: Optional[float] = Field(alias="subTotal", default=None)
558
+ sub_total_excluding_tax: Optional[float] = Field(
559
+ alias="subTotalExcludingTax", default=None
556
560
  )
557
-
558
-
559
- class ProductFragmentProductSettingsDowngradePlan(BaseModel):
560
- ref_id: str = Field(alias="refId")
561
- display_name: str = Field(alias="displayName")
561
+ total: Optional[float] = Field(default=None)
562
+ total_excluding_tax: Optional[float] = Field(
563
+ alias="totalExcludingTax", default=None
564
+ )
565
+ tax: Optional[float] = Field(default=None)
566
+ amount_due: Optional[float] = Field(alias="amountDue", default=None)
567
+ attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
562
568
 
563
569
 
564
570
  class PlanCompatiblePackageGroupsFragment(BaseModel):
@@ -579,6 +585,27 @@ class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
579
585
  free_items: Optional[float] = Field(alias="freeItems", default=None)
580
586
 
581
587
 
588
+ class ProductFragment(BaseModel):
589
+ ref_id: str = Field(alias="refId")
590
+ display_name: Optional[str] = Field(alias="displayName", default=None)
591
+ description: Optional[str] = Field(default=None)
592
+ additional_meta_data: Optional[Any] = Field(
593
+ alias="additionalMetaData", default=None
594
+ )
595
+ product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
596
+
597
+
598
+ class ProductFragmentProductSettings(BaseModel):
599
+ downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
600
+ alias="downgradePlan", default=None
601
+ )
602
+
603
+
604
+ class ProductFragmentProductSettingsDowngradePlan(BaseModel):
605
+ ref_id: str = Field(alias="refId")
606
+ display_name: str = Field(alias="displayName")
607
+
608
+
582
609
  class PlanFragment(BaseModel):
583
610
  id: Any
584
611
  ref_id: str = Field(alias="refId")
@@ -660,35 +687,25 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
660
687
  limit: float
661
688
 
662
689
 
663
- class SubscriptionTrialConfigurationFragment(BaseModel):
664
- trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
690
+ class CustomerResourceFragment(BaseModel):
691
+ resource_id: str = Field(alias="resourceId")
665
692
 
666
693
 
667
- class SubscriptionInvoiceFragment(BaseModel):
668
- billing_id: str = Field(alias="billingId")
669
- status: SubscriptionInvoiceStatus
670
- created_at: Any = Field(alias="createdAt")
694
+ class SlimCustomerFragment(BaseModel):
695
+ id: Any
696
+ name: Optional[str] = Field(default=None)
697
+ email: Optional[str] = Field(default=None)
698
+ created_at: Optional[Any] = Field(alias="createdAt", default=None)
671
699
  updated_at: Any = Field(alias="updatedAt")
672
- error_message: Optional[str] = Field(alias="errorMessage", default=None)
673
- requires_action: bool = Field(alias="requiresAction")
674
- payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
675
- payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
676
- pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
677
- billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
678
- alias="billingReason", default=None
679
- )
680
- currency: Optional[str] = Field(default=None)
681
- sub_total: Optional[float] = Field(alias="subTotal", default=None)
682
- sub_total_excluding_tax: Optional[float] = Field(
683
- alias="subTotalExcludingTax", default=None
700
+ ref_id: str = Field(alias="refId")
701
+ customer_id: str = Field(alias="customerId")
702
+ billing_id: Optional[str] = Field(alias="billingId", default=None)
703
+ additional_meta_data: Optional[Any] = Field(
704
+ alias="additionalMetaData", default=None
684
705
  )
685
- total: Optional[float] = Field(default=None)
686
- total_excluding_tax: Optional[float] = Field(
687
- alias="totalExcludingTax", default=None
706
+ aws_marketplace_customer_id: Optional[str] = Field(
707
+ alias="awsMarketplaceCustomerId", default=None
688
708
  )
689
- tax: Optional[float] = Field(default=None)
690
- amount_due: Optional[float] = Field(alias="amountDue", default=None)
691
- attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
692
709
 
693
710
 
694
711
  class TotalPriceFragment(BaseModel):
@@ -706,23 +723,6 @@ class TotalPriceFragmentTotal(BaseModel):
706
723
  currency: Currency
707
724
 
708
725
 
709
- class SlimCustomerFragment(BaseModel):
710
- id: Any
711
- name: Optional[str] = Field(default=None)
712
- email: Optional[str] = Field(default=None)
713
- created_at: Optional[Any] = Field(alias="createdAt", default=None)
714
- updated_at: Any = Field(alias="updatedAt")
715
- ref_id: str = Field(alias="refId")
716
- customer_id: str = Field(alias="customerId")
717
- billing_id: Optional[str] = Field(alias="billingId", default=None)
718
- additional_meta_data: Optional[Any] = Field(
719
- alias="additionalMetaData", default=None
720
- )
721
- aws_marketplace_customer_id: Optional[str] = Field(
722
- alias="awsMarketplaceCustomerId", default=None
723
- )
724
-
725
-
726
726
  class SubscriptionFragment(BaseModel):
727
727
  id: Any
728
728
  subscription_id: str = Field(alias="subscriptionId")
@@ -994,6 +994,35 @@ class CheckoutConfigurationFragmentContent(BaseModel):
994
994
  )
995
995
 
996
996
 
997
+ class PromotionalEntitlementFragment(BaseModel):
998
+ status: PromotionalEntitlementStatus
999
+ usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
1000
+ feature_id: Any = Field(alias="featureId")
1001
+ has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
1002
+ has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
1003
+ reset_period: Optional[EntitlementResetPeriod] = Field(
1004
+ alias="resetPeriod", default=None
1005
+ )
1006
+ end_date: Optional[Any] = Field(alias="endDate", default=None)
1007
+ is_visible: bool = Field(alias="isVisible")
1008
+ feature: "PromotionalEntitlementFragmentFeature"
1009
+
1010
+
1011
+ class PromotionalEntitlementFragmentFeature(BaseModel):
1012
+ feature_type: FeatureType = Field(alias="featureType")
1013
+ meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
1014
+ feature_units: Optional[str] = Field(alias="featureUnits", default=None)
1015
+ feature_units_plural: Optional[str] = Field(
1016
+ alias="featureUnitsPlural", default=None
1017
+ )
1018
+ display_name: str = Field(alias="displayName")
1019
+ description: Optional[str] = Field(default=None)
1020
+ ref_id: str = Field(alias="refId")
1021
+ additional_meta_data: Optional[Any] = Field(
1022
+ alias="additionalMetaData", default=None
1023
+ )
1024
+
1025
+
997
1026
  class CouponFragment(BaseModel):
998
1027
  id: Any
999
1028
  discount_value: float = Field(alias="discountValue")
@@ -1028,35 +1057,6 @@ class CouponFragmentSyncStates(BaseModel):
1028
1057
  status: SyncStatus
1029
1058
 
1030
1059
 
1031
- class PromotionalEntitlementFragment(BaseModel):
1032
- status: PromotionalEntitlementStatus
1033
- usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
1034
- feature_id: Any = Field(alias="featureId")
1035
- has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
1036
- has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
1037
- reset_period: Optional[EntitlementResetPeriod] = Field(
1038
- alias="resetPeriod", default=None
1039
- )
1040
- end_date: Optional[Any] = Field(alias="endDate", default=None)
1041
- is_visible: bool = Field(alias="isVisible")
1042
- feature: "PromotionalEntitlementFragmentFeature"
1043
-
1044
-
1045
- class PromotionalEntitlementFragmentFeature(BaseModel):
1046
- feature_type: FeatureType = Field(alias="featureType")
1047
- meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
1048
- feature_units: Optional[str] = Field(alias="featureUnits", default=None)
1049
- feature_units_plural: Optional[str] = Field(
1050
- alias="featureUnitsPlural", default=None
1051
- )
1052
- display_name: str = Field(alias="displayName")
1053
- description: Optional[str] = Field(default=None)
1054
- ref_id: str = Field(alias="refId")
1055
- additional_meta_data: Optional[Any] = Field(
1056
- alias="additionalMetaData", default=None
1057
- )
1058
-
1059
-
1060
1060
  class CustomerFragment(SlimCustomerFragment):
1061
1061
  has_payment_method: bool = Field(alias="hasPaymentMethod")
1062
1062
  has_active_subscription: bool = Field(alias="hasActiveSubscription")
@@ -1263,11 +1263,14 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
1263
1263
  pass
1264
1264
 
1265
1265
 
1266
- class CustomerPortalSubscriptionAddonFragment(BaseModel):
1267
- addon_id: str = Field(alias="addonId")
1268
- description: Optional[str] = Field(default=None)
1266
+ class CustomerPortalPromotionalEntitlementFragment(BaseModel):
1269
1267
  display_name: str = Field(alias="displayName")
1270
- quantity: int
1268
+ has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
1269
+ has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
1270
+ usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
1271
+ period: PromotionalEntitlementPeriod
1272
+ start_date: Any = Field(alias="startDate")
1273
+ end_date: Optional[Any] = Field(alias="endDate", default=None)
1271
1274
 
1272
1275
 
1273
1276
  class CustomerPortalSubscriptionPriceFragment(BaseModel):
@@ -1466,6 +1469,13 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
1466
1469
  feature_id: Optional[str] = Field(alias="featureId", default=None)
1467
1470
 
1468
1471
 
1472
+ class CustomerPortalSubscriptionAddonFragment(BaseModel):
1473
+ addon_id: str = Field(alias="addonId")
1474
+ description: Optional[str] = Field(default=None)
1475
+ display_name: str = Field(alias="displayName")
1476
+ quantity: int
1477
+
1478
+
1469
1479
  class CustomerPortalSubscriptionFragment(BaseModel):
1470
1480
  subscription_id: str = Field(alias="subscriptionId")
1471
1481
  plan_id: str = Field(alias="planId")
@@ -1562,16 +1572,6 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
1562
1572
  pass
1563
1573
 
1564
1574
 
1565
- class CustomerPortalPromotionalEntitlementFragment(BaseModel):
1566
- display_name: str = Field(alias="displayName")
1567
- has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
1568
- has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
1569
- usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
1570
- period: PromotionalEntitlementPeriod
1571
- start_date: Any = Field(alias="startDate")
1572
- end_date: Optional[Any] = Field(alias="endDate", default=None)
1573
-
1574
-
1575
1575
  class CustomerPortalFragment(BaseModel):
1576
1576
  subscriptions: List["CustomerPortalFragmentSubscriptions"]
1577
1577
  entitlements: List["CustomerPortalFragmentEntitlements"]
@@ -2840,21 +2840,21 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
2840
2840
 
2841
2841
 
2842
2842
  AddonDependencyFragment.model_rebuild()
2843
- PackageEntitlementFragment.model_rebuild()
2844
2843
  PriceTierFragment.model_rebuild()
2845
- PriceFragment.model_rebuild()
2846
2844
  OveragePriceFragment.model_rebuild()
2845
+ PriceFragment.model_rebuild()
2846
+ PackageEntitlementFragment.model_rebuild()
2847
2847
  AddonFragment.model_rebuild()
2848
- CustomerResourceFragment.model_rebuild()
2849
- SubscriptionFutureUpdateData.model_rebuild()
2848
+ SubscriptionTrialConfigurationFragment.model_rebuild()
2850
2849
  SubscriptionScheduledUpdateData.model_rebuild()
2851
- ProductFragment.model_rebuild()
2850
+ SubscriptionFutureUpdateData.model_rebuild()
2851
+ SubscriptionInvoiceFragment.model_rebuild()
2852
2852
  PlanCompatiblePackageGroupsFragment.model_rebuild()
2853
+ ProductFragment.model_rebuild()
2853
2854
  PlanFragment.model_rebuild()
2854
- SubscriptionTrialConfigurationFragment.model_rebuild()
2855
- SubscriptionInvoiceFragment.model_rebuild()
2856
- TotalPriceFragment.model_rebuild()
2855
+ CustomerResourceFragment.model_rebuild()
2857
2856
  SlimCustomerFragment.model_rebuild()
2857
+ TotalPriceFragment.model_rebuild()
2858
2858
  SubscriptionFragment.model_rebuild()
2859
2859
  FeatureFragment.model_rebuild()
2860
2860
  EntitlementFragment.model_rebuild()
@@ -2862,18 +2862,18 @@ ApplySubscriptionFragment.model_rebuild()
2862
2862
  FontVariantFragment.model_rebuild()
2863
2863
  TypographyConfigurationFragment.model_rebuild()
2864
2864
  CheckoutConfigurationFragment.model_rebuild()
2865
- CouponFragment.model_rebuild()
2866
2865
  PromotionalEntitlementFragment.model_rebuild()
2866
+ CouponFragment.model_rebuild()
2867
2867
  CustomerFragment.model_rebuild()
2868
2868
  CheckoutStateFragment.model_rebuild()
2869
2869
  CustomerPortalBillingInformationFragment.model_rebuild()
2870
2870
  CustomerPortalConfigurationFragment.model_rebuild()
2871
2871
  CustomerPortalEntitlementFragment.model_rebuild()
2872
- CustomerPortalSubscriptionAddonFragment.model_rebuild()
2872
+ CustomerPortalPromotionalEntitlementFragment.model_rebuild()
2873
2873
  CustomerPortalSubscriptionPriceFragment.model_rebuild()
2874
2874
  CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
2875
+ CustomerPortalSubscriptionAddonFragment.model_rebuild()
2875
2876
  CustomerPortalSubscriptionFragment.model_rebuild()
2876
- CustomerPortalPromotionalEntitlementFragment.model_rebuild()
2877
2877
  CustomerPortalFragment.model_rebuild()
2878
2878
  CustomerStatisticsFragment.model_rebuild()
2879
2879
  CustomerWithSubscriptionsFragment.model_rebuild()
@@ -791,6 +791,13 @@ class CreateWorkflowTriggerInput(BaseModel):
791
791
  trigger_id: Optional[str] = Field(alias="triggerId", default=None)
792
792
 
793
793
 
794
+ class CreditBalanceSummaryInput(BaseModel):
795
+ currency_id: Optional[str] = Field(alias="currencyId", default=None)
796
+ customer_id: str = Field(alias="customerId")
797
+ environment_id: Optional[Any] = Field(alias="environmentId", default=None)
798
+ resource_id: Optional[str] = Field(alias="resourceId", default=None)
799
+
800
+
794
801
  class CreditGrantInput(BaseModel):
795
802
  additional_meta_data: Optional[Any] = Field(
796
803
  alias="additionalMetaData", default=None
@@ -1824,6 +1831,11 @@ class FeatureFilter(BaseModel):
1824
1831
  updated_at: Optional["DateFieldComparison"] = Field(alias="updatedAt", default=None)
1825
1832
 
1826
1833
 
1834
+ class FeatureGroupAssociatedLatestPackagesInput(BaseModel):
1835
+ environment_id: Any = Field(alias="environmentId")
1836
+ feature_group_id: str = Field(alias="featureGroupId")
1837
+
1838
+
1827
1839
  class FeatureGroupFilter(BaseModel):
1828
1840
  and_: Optional[List["FeatureGroupFilter"]] = Field(alias="and", default=None)
1829
1841
  created_at: Optional["DateFieldComparison"] = Field(alias="createdAt", default=None)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stigg-api-client-v2
3
- Version: 2.503.0
3
+ Version: 3.6.0
4
4
  Summary:
5
5
  License: STIGG SDK LICENSE
6
6
  Author: Stigg
@@ -106,7 +106,7 @@ stigg/_vendors/pydantic-2.6.4.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCe
106
106
  stigg/_vendors/pydantic-2.6.4.dist-info/WHEEL,sha256=TJPnKdtrSue7xZ_AVGkp9YXcvDrobsjBds1du3Nx6dc,87
107
107
  stigg/_vendors/pydantic-2.6.4.dist-info/licenses/LICENSE,sha256=qeGG88oWte74QxjnpwFyE1GgDLe4rjpDlLZ7SeNSnvM,1129
108
108
  stigg/client.py,sha256=RWrVnxo9zHFXka8KJVE4sMgyek70ispQk0vqOINCvM0,8335
109
- stigg/generated/__init__.py,sha256=fDQ9VzudH8JL72sOeBvEmbG4blpGBVeAFQlduCCSW8I,72005
109
+ stigg/generated/__init__.py,sha256=kqiuKnYevouWwGTwmWB3gmfV6x2CJiCcK7z4xu8nknw,72165
110
110
  stigg/generated/apply_subscription.py,sha256=Vbs-QZZxN16pUpt3Hp7Jvvcc5o_8xwJK9oTLQQjH0ZA,451
111
111
  stigg/generated/archive_customer.py,sha256=3N3iBiT2Vvzfb0ckV3o57A6lmJ_ef7JNPaMX_Jtcg6c,396
112
112
  stigg/generated/async_base_client.py,sha256=zqd6IhYxpalyA6KQkeGhXgSurC0vXSwSWmSlM2zZ0VM,12593
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=Q8Po8_Wmdxjpc5xevWh2mBx2SoemvHwq5jGyLn8QwUg,3729
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=wRGpQ_1WQWofoFqm4G_MvEcXncosLRuzVVGoMAMZB-g,103850
126
+ stigg/generated/fragments.py,sha256=1FDtzU1sKbkNZYnLDQ8DavEMa1bU-kDvxGSYbCxfAgo,103850
127
127
  stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
128
128
  stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
129
129
  stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
@@ -145,7 +145,7 @@ stigg/generated/grant_promotional_entitlements.py,sha256=72PRYuqecL-0SkWb7deygkh
145
145
  stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
146
146
  stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
147
147
  stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
148
- stigg/generated/input_types.py,sha256=c37o276EMmfPjlg9brzcJa7M_syE9KMUQzldBa__QgE,203900
148
+ stigg/generated/input_types.py,sha256=uVZu548C5FqTX8dcR47qy4o09HtaDRIyWW23jpGdHXY,204395
149
149
  stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
150
150
  stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
151
151
  stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
@@ -161,7 +161,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
161
161
  stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
162
162
  stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
163
163
  stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
164
- stigg_api_client_v2-2.503.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
165
- stigg_api_client_v2-2.503.0.dist-info/METADATA,sha256=w5xNBVVtYDtqCQi0wvnSsP2deweJQhPr4cdt_WsrB3s,2258
166
- stigg_api_client_v2-2.503.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
167
- stigg_api_client_v2-2.503.0.dist-info/RECORD,,
164
+ stigg_api_client_v2-3.6.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
165
+ stigg_api_client_v2-3.6.0.dist-info/METADATA,sha256=-LImCdy3irHZ0M0-F2s126bZOZ3bBhLChANY7Qkyt6k,2256
166
+ stigg_api_client_v2-3.6.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
167
+ stigg_api_client_v2-3.6.0.dist-info/RECORD,,