stigg-api-client-v2 2.323.0__py3-none-any.whl → 2.324.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/__init__.py +6 -0
- stigg/generated/enums.py +1 -2
- stigg/generated/fragments.py +301 -301
- stigg/generated/input_types.py +19 -0
- {stigg_api_client_v2-2.323.0.dist-info → stigg_api_client_v2-2.324.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.323.0.dist-info → stigg_api_client_v2-2.324.0.dist-info}/RECORD +8 -8
- {stigg_api_client_v2-2.323.0.dist-info → stigg_api_client_v2-2.324.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.323.0.dist-info → stigg_api_client_v2-2.324.0.dist-info}/WHEEL +0 -0
stigg/generated/__init__.py
CHANGED
|
@@ -554,6 +554,7 @@ from .input_types import (
|
|
|
554
554
|
AddonCreateInput,
|
|
555
555
|
AddonFilter,
|
|
556
556
|
AddonSort,
|
|
557
|
+
AddonUnArchiveInput,
|
|
557
558
|
AddonUpdateInput,
|
|
558
559
|
Address,
|
|
559
560
|
AggregatedEventsByCustomerInput,
|
|
@@ -854,6 +855,8 @@ from .input_types import (
|
|
|
854
855
|
TypographyConfigurationInput,
|
|
855
856
|
UnarchiveCustomerInput,
|
|
856
857
|
UnarchiveEnvironmentInput,
|
|
858
|
+
UnArchiveFeatureInput,
|
|
859
|
+
UnArchivePlanInput,
|
|
857
860
|
UnitTransformationInput,
|
|
858
861
|
UpdateAccountInput,
|
|
859
862
|
UpdateCouponInput,
|
|
@@ -948,6 +951,7 @@ __all__ = [
|
|
|
948
951
|
"AddonFragmentPrices",
|
|
949
952
|
"AddonSort",
|
|
950
953
|
"AddonSortFields",
|
|
954
|
+
"AddonUnArchiveInput",
|
|
951
955
|
"AddonUpdateInput",
|
|
952
956
|
"Address",
|
|
953
957
|
"AggregatedEventsByCustomerInput",
|
|
@@ -1758,6 +1762,8 @@ __all__ = [
|
|
|
1758
1762
|
"TypographyConfigurationFragmentH2",
|
|
1759
1763
|
"TypographyConfigurationFragmentH3",
|
|
1760
1764
|
"TypographyConfigurationInput",
|
|
1765
|
+
"UnArchiveFeatureInput",
|
|
1766
|
+
"UnArchivePlanInput",
|
|
1761
1767
|
"UnarchiveCustomer",
|
|
1762
1768
|
"UnarchiveCustomerInput",
|
|
1763
1769
|
"UnarchiveCustomerUnarchiveCustomer",
|
stigg/generated/enums.py
CHANGED
|
@@ -408,6 +408,7 @@ class ErrorCode(str, Enum):
|
|
|
408
408
|
BillingPeriodMissingError = "BillingPeriodMissingError"
|
|
409
409
|
CannotAddOverrideEntitlementToPlan = "CannotAddOverrideEntitlementToPlan"
|
|
410
410
|
CannotArchiveFeatureError = "CannotArchiveFeatureError"
|
|
411
|
+
CannotChangeBillingIntegration = "CannotChangeBillingIntegration"
|
|
411
412
|
CannotDeleteCustomerError = "CannotDeleteCustomerError"
|
|
412
413
|
CannotDeleteDefaultIntegration = "CannotDeleteDefaultIntegration"
|
|
413
414
|
CannotDeleteFeatureError = "CannotDeleteFeatureError"
|
|
@@ -457,8 +458,6 @@ class ErrorCode(str, Enum):
|
|
|
457
458
|
"FreePlanCantHaveCompatiblePackageGroupError"
|
|
458
459
|
)
|
|
459
460
|
GraphQLAliasesLimitExceeded = "GraphQLAliasesLimitExceeded"
|
|
460
|
-
GraphQLBatchedOperationsLimitExceeded = "GraphQLBatchedOperationsLimitExceeded"
|
|
461
|
-
GraphQLUnsupportedDirective = "GraphQLUnsupportedDirective"
|
|
462
461
|
HubspotIntegrationError = "HubspotIntegrationError"
|
|
463
462
|
IdentityForbidden = "IdentityForbidden"
|
|
464
463
|
ImportAlreadyInProgress = "ImportAlreadyInProgress"
|
stigg/generated/fragments.py
CHANGED
|
@@ -215,228 +215,6 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
215
215
|
pass
|
|
216
216
|
|
|
217
217
|
|
|
218
|
-
class FeatureFragment(BaseModel):
|
|
219
|
-
typename__: str = Field(alias="__typename")
|
|
220
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
221
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
222
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
223
|
-
feature_units_plural: Optional[str] = Field(
|
|
224
|
-
alias="featureUnitsPlural", default=None
|
|
225
|
-
)
|
|
226
|
-
description: Optional[str] = Field(default=None)
|
|
227
|
-
display_name: str = Field(alias="displayName")
|
|
228
|
-
ref_id: str = Field(alias="refId")
|
|
229
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
230
|
-
alias="unitTransformation", default=None
|
|
231
|
-
)
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
class FeatureFragmentUnitTransformation(BaseModel):
|
|
235
|
-
divide: float
|
|
236
|
-
round: UnitTransformationRound
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
class EntitlementFragment(BaseModel):
|
|
240
|
-
typename__: str = Field(alias="__typename")
|
|
241
|
-
is_granted: bool = Field(alias="isGranted")
|
|
242
|
-
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
243
|
-
alias="accessDeniedReason", default=None
|
|
244
|
-
)
|
|
245
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
246
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
247
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
248
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
249
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
250
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
251
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
252
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
253
|
-
alias="entitlementUpdatedAt", default=None
|
|
254
|
-
)
|
|
255
|
-
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
256
|
-
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
257
|
-
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
258
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
259
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
260
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
261
|
-
alias="resetPeriod", default=None
|
|
262
|
-
)
|
|
263
|
-
reset_period_configuration: Optional[
|
|
264
|
-
Annotated[
|
|
265
|
-
Union[
|
|
266
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
267
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
268
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
269
|
-
],
|
|
270
|
-
Field(discriminator="typename__"),
|
|
271
|
-
]
|
|
272
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
273
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
277
|
-
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
278
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
279
|
-
alias="monthlyAccordingTo", default=None
|
|
280
|
-
)
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
284
|
-
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
285
|
-
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
286
|
-
alias="weeklyAccordingTo", default=None
|
|
287
|
-
)
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
291
|
-
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
292
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
293
|
-
alias="yearlyAccordingTo", default=None
|
|
294
|
-
)
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
class EntitlementFragmentFeature(FeatureFragment):
|
|
298
|
-
pass
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
class ProductFragment(BaseModel):
|
|
302
|
-
ref_id: str = Field(alias="refId")
|
|
303
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
304
|
-
description: Optional[str] = Field(default=None)
|
|
305
|
-
additional_meta_data: Optional[Any] = Field(
|
|
306
|
-
alias="additionalMetaData", default=None
|
|
307
|
-
)
|
|
308
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
312
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
313
|
-
alias="downgradePlan", default=None
|
|
314
|
-
)
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
318
|
-
ref_id: str = Field(alias="refId")
|
|
319
|
-
display_name: str = Field(alias="displayName")
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
323
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
324
|
-
display_name: str = Field(alias="displayName")
|
|
325
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
326
|
-
default=None
|
|
327
|
-
)
|
|
328
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
332
|
-
pass
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
336
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
337
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
class PlanFragment(BaseModel):
|
|
341
|
-
id: str
|
|
342
|
-
ref_id: str = Field(alias="refId")
|
|
343
|
-
display_name: str = Field(alias="displayName")
|
|
344
|
-
description: Optional[str] = Field(default=None)
|
|
345
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
346
|
-
version_number: int = Field(alias="versionNumber")
|
|
347
|
-
additional_meta_data: Optional[Any] = Field(
|
|
348
|
-
alias="additionalMetaData", default=None
|
|
349
|
-
)
|
|
350
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
351
|
-
alias="hiddenFromWidgets", default=None
|
|
352
|
-
)
|
|
353
|
-
product: "PlanFragmentProduct"
|
|
354
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
355
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
356
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
357
|
-
alias="inheritedEntitlements", default=None
|
|
358
|
-
)
|
|
359
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
360
|
-
alias="compatibleAddons", default=None
|
|
361
|
-
)
|
|
362
|
-
compatible_package_groups: Optional[
|
|
363
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
364
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
365
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
366
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
367
|
-
alias="overagePrices", default=None
|
|
368
|
-
)
|
|
369
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
370
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
371
|
-
alias="defaultTrialConfig", default=None
|
|
372
|
-
)
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
class PlanFragmentProduct(ProductFragment):
|
|
376
|
-
pass
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
380
|
-
ref_id: str = Field(alias="refId")
|
|
381
|
-
display_name: str = Field(alias="displayName")
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
385
|
-
pass
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
389
|
-
pass
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
393
|
-
pass
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
397
|
-
pass
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
class PlanFragmentPrices(PriceFragment):
|
|
401
|
-
pass
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
405
|
-
pass
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
409
|
-
duration: float
|
|
410
|
-
units: TrialPeriodUnits
|
|
411
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
412
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
413
|
-
alias="trialEndBehavior", default=None
|
|
414
|
-
)
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
418
|
-
limit: float
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
class TotalPriceFragment(BaseModel):
|
|
422
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
423
|
-
total: "TotalPriceFragmentTotal"
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
427
|
-
amount: float
|
|
428
|
-
currency: Currency
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
432
|
-
amount: float
|
|
433
|
-
currency: Currency
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
class CustomerResourceFragment(BaseModel):
|
|
437
|
-
resource_id: str = Field(alias="resourceId")
|
|
438
|
-
|
|
439
|
-
|
|
440
218
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
441
219
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
442
220
|
alias="subscriptionScheduleType"
|
|
@@ -564,31 +342,151 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFe
|
|
|
564
342
|
quantity: float
|
|
565
343
|
|
|
566
344
|
|
|
567
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
568
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
569
|
-
quantity: float
|
|
345
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
346
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
347
|
+
quantity: float
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
351
|
+
BaseModel
|
|
352
|
+
):
|
|
353
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
354
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
355
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
359
|
+
BaseModel
|
|
360
|
+
):
|
|
361
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
362
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
363
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
367
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
368
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
369
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
373
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
374
|
+
display_name: str = Field(alias="displayName")
|
|
375
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
376
|
+
default=None
|
|
377
|
+
)
|
|
378
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
382
|
+
pass
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
386
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
387
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
class ProductFragment(BaseModel):
|
|
391
|
+
ref_id: str = Field(alias="refId")
|
|
392
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
393
|
+
description: Optional[str] = Field(default=None)
|
|
394
|
+
additional_meta_data: Optional[Any] = Field(
|
|
395
|
+
alias="additionalMetaData", default=None
|
|
396
|
+
)
|
|
397
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
401
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
402
|
+
alias="downgradePlan", default=None
|
|
403
|
+
)
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
407
|
+
ref_id: str = Field(alias="refId")
|
|
408
|
+
display_name: str = Field(alias="displayName")
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
class PlanFragment(BaseModel):
|
|
412
|
+
id: str
|
|
413
|
+
ref_id: str = Field(alias="refId")
|
|
414
|
+
display_name: str = Field(alias="displayName")
|
|
415
|
+
description: Optional[str] = Field(default=None)
|
|
416
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
417
|
+
version_number: int = Field(alias="versionNumber")
|
|
418
|
+
additional_meta_data: Optional[Any] = Field(
|
|
419
|
+
alias="additionalMetaData", default=None
|
|
420
|
+
)
|
|
421
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
422
|
+
alias="hiddenFromWidgets", default=None
|
|
423
|
+
)
|
|
424
|
+
product: "PlanFragmentProduct"
|
|
425
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
426
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
427
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
428
|
+
alias="inheritedEntitlements", default=None
|
|
429
|
+
)
|
|
430
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
431
|
+
alias="compatibleAddons", default=None
|
|
432
|
+
)
|
|
433
|
+
compatible_package_groups: Optional[
|
|
434
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
435
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
436
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
437
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
438
|
+
alias="overagePrices", default=None
|
|
439
|
+
)
|
|
440
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
441
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
442
|
+
alias="defaultTrialConfig", default=None
|
|
443
|
+
)
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
class PlanFragmentProduct(ProductFragment):
|
|
447
|
+
pass
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
451
|
+
ref_id: str = Field(alias="refId")
|
|
452
|
+
display_name: str = Field(alias="displayName")
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
456
|
+
pass
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
460
|
+
pass
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
464
|
+
pass
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
468
|
+
pass
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
class PlanFragmentPrices(PriceFragment):
|
|
472
|
+
pass
|
|
570
473
|
|
|
571
474
|
|
|
572
|
-
class
|
|
573
|
-
|
|
574
|
-
):
|
|
575
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
576
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
577
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
475
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
476
|
+
pass
|
|
578
477
|
|
|
579
478
|
|
|
580
|
-
class
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
479
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
480
|
+
duration: float
|
|
481
|
+
units: TrialPeriodUnits
|
|
482
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
483
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
484
|
+
alias="trialEndBehavior", default=None
|
|
485
|
+
)
|
|
586
486
|
|
|
587
487
|
|
|
588
|
-
class
|
|
589
|
-
|
|
590
|
-
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
591
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
488
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
489
|
+
limit: float
|
|
592
490
|
|
|
593
491
|
|
|
594
492
|
class SlimCustomerFragment(BaseModel):
|
|
@@ -608,31 +506,23 @@ class SlimCustomerFragment(BaseModel):
|
|
|
608
506
|
)
|
|
609
507
|
|
|
610
508
|
|
|
611
|
-
class
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
)
|
|
629
|
-
total: Optional[float] = Field(default=None)
|
|
630
|
-
total_excluding_tax: Optional[float] = Field(
|
|
631
|
-
alias="totalExcludingTax", default=None
|
|
632
|
-
)
|
|
633
|
-
tax: Optional[float] = Field(default=None)
|
|
634
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
635
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
509
|
+
class CustomerResourceFragment(BaseModel):
|
|
510
|
+
resource_id: str = Field(alias="resourceId")
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
class TotalPriceFragment(BaseModel):
|
|
514
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
515
|
+
total: "TotalPriceFragmentTotal"
|
|
516
|
+
|
|
517
|
+
|
|
518
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
519
|
+
amount: float
|
|
520
|
+
currency: Currency
|
|
521
|
+
|
|
522
|
+
|
|
523
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
524
|
+
amount: float
|
|
525
|
+
currency: Currency
|
|
636
526
|
|
|
637
527
|
|
|
638
528
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
@@ -797,6 +687,33 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
797
687
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
798
688
|
|
|
799
689
|
|
|
690
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
691
|
+
billing_id: str = Field(alias="billingId")
|
|
692
|
+
status: SubscriptionInvoiceStatus
|
|
693
|
+
created_at: Any = Field(alias="createdAt")
|
|
694
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
695
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
696
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
697
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
698
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
699
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
700
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
701
|
+
alias="billingReason", default=None
|
|
702
|
+
)
|
|
703
|
+
currency: Optional[str] = Field(default=None)
|
|
704
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
705
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
706
|
+
alias="subTotalExcludingTax", default=None
|
|
707
|
+
)
|
|
708
|
+
total: Optional[float] = Field(default=None)
|
|
709
|
+
total_excluding_tax: Optional[float] = Field(
|
|
710
|
+
alias="totalExcludingTax", default=None
|
|
711
|
+
)
|
|
712
|
+
tax: Optional[float] = Field(default=None)
|
|
713
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
714
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
715
|
+
|
|
716
|
+
|
|
800
717
|
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
801
718
|
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
802
719
|
|
|
@@ -910,6 +827,89 @@ class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragm
|
|
|
910
827
|
pass
|
|
911
828
|
|
|
912
829
|
|
|
830
|
+
class FeatureFragment(BaseModel):
|
|
831
|
+
typename__: str = Field(alias="__typename")
|
|
832
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
833
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
834
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
835
|
+
feature_units_plural: Optional[str] = Field(
|
|
836
|
+
alias="featureUnitsPlural", default=None
|
|
837
|
+
)
|
|
838
|
+
description: Optional[str] = Field(default=None)
|
|
839
|
+
display_name: str = Field(alias="displayName")
|
|
840
|
+
ref_id: str = Field(alias="refId")
|
|
841
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
842
|
+
alias="unitTransformation", default=None
|
|
843
|
+
)
|
|
844
|
+
|
|
845
|
+
|
|
846
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
847
|
+
divide: float
|
|
848
|
+
round: UnitTransformationRound
|
|
849
|
+
|
|
850
|
+
|
|
851
|
+
class EntitlementFragment(BaseModel):
|
|
852
|
+
typename__: str = Field(alias="__typename")
|
|
853
|
+
is_granted: bool = Field(alias="isGranted")
|
|
854
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
855
|
+
alias="accessDeniedReason", default=None
|
|
856
|
+
)
|
|
857
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
858
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
859
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
860
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
861
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
862
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
863
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
864
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
865
|
+
alias="entitlementUpdatedAt", default=None
|
|
866
|
+
)
|
|
867
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
868
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
869
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
870
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
871
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
872
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
873
|
+
alias="resetPeriod", default=None
|
|
874
|
+
)
|
|
875
|
+
reset_period_configuration: Optional[
|
|
876
|
+
Annotated[
|
|
877
|
+
Union[
|
|
878
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
879
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
880
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
881
|
+
],
|
|
882
|
+
Field(discriminator="typename__"),
|
|
883
|
+
]
|
|
884
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
885
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
886
|
+
|
|
887
|
+
|
|
888
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
889
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
890
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
891
|
+
alias="monthlyAccordingTo", default=None
|
|
892
|
+
)
|
|
893
|
+
|
|
894
|
+
|
|
895
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
896
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
897
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
898
|
+
alias="weeklyAccordingTo", default=None
|
|
899
|
+
)
|
|
900
|
+
|
|
901
|
+
|
|
902
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
903
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
904
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
905
|
+
alias="yearlyAccordingTo", default=None
|
|
906
|
+
)
|
|
907
|
+
|
|
908
|
+
|
|
909
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
910
|
+
pass
|
|
911
|
+
|
|
912
|
+
|
|
913
913
|
class ApplySubscriptionFragment(BaseModel):
|
|
914
914
|
subscription: Optional["ApplySubscriptionFragmentSubscription"] = Field(
|
|
915
915
|
default=None
|
|
@@ -1250,33 +1250,6 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1250
1250
|
pass
|
|
1251
1251
|
|
|
1252
1252
|
|
|
1253
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1254
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1255
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1256
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1257
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1258
|
-
default=None
|
|
1259
|
-
)
|
|
1260
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1261
|
-
default=None
|
|
1262
|
-
)
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1266
|
-
amount: float
|
|
1267
|
-
currency: Currency
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1271
|
-
id: str
|
|
1272
|
-
ref_id: str = Field(alias="refId")
|
|
1273
|
-
display_name: str = Field(alias="displayName")
|
|
1274
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1275
|
-
feature_units_plural: Optional[str] = Field(
|
|
1276
|
-
alias="featureUnitsPlural", default=None
|
|
1277
|
-
)
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
1253
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1281
1254
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1282
1255
|
alias="subscriptionScheduleType"
|
|
@@ -1446,6 +1419,33 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1446
1419
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1447
1420
|
|
|
1448
1421
|
|
|
1422
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1423
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1424
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1425
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1426
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1427
|
+
default=None
|
|
1428
|
+
)
|
|
1429
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1430
|
+
default=None
|
|
1431
|
+
)
|
|
1432
|
+
|
|
1433
|
+
|
|
1434
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1435
|
+
amount: float
|
|
1436
|
+
currency: Currency
|
|
1437
|
+
|
|
1438
|
+
|
|
1439
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1440
|
+
id: str
|
|
1441
|
+
ref_id: str = Field(alias="refId")
|
|
1442
|
+
display_name: str = Field(alias="displayName")
|
|
1443
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1444
|
+
feature_units_plural: Optional[str] = Field(
|
|
1445
|
+
alias="featureUnitsPlural", default=None
|
|
1446
|
+
)
|
|
1447
|
+
|
|
1448
|
+
|
|
1449
1449
|
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1450
1450
|
addon_id: str = Field(alias="addonId")
|
|
1451
1451
|
description: Optional[str] = Field(default=None)
|
|
@@ -2768,19 +2768,19 @@ PriceTierFragment.model_rebuild()
|
|
|
2768
2768
|
OveragePriceFragment.model_rebuild()
|
|
2769
2769
|
PriceFragment.model_rebuild()
|
|
2770
2770
|
AddonFragment.model_rebuild()
|
|
2771
|
-
|
|
2772
|
-
EntitlementFragment.model_rebuild()
|
|
2773
|
-
ProductFragment.model_rebuild()
|
|
2771
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2774
2772
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2773
|
+
ProductFragment.model_rebuild()
|
|
2775
2774
|
PlanFragment.model_rebuild()
|
|
2776
|
-
TotalPriceFragment.model_rebuild()
|
|
2777
|
-
CustomerResourceFragment.model_rebuild()
|
|
2778
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2779
2775
|
SlimCustomerFragment.model_rebuild()
|
|
2780
|
-
|
|
2776
|
+
CustomerResourceFragment.model_rebuild()
|
|
2777
|
+
TotalPriceFragment.model_rebuild()
|
|
2781
2778
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2779
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2782
2780
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2783
2781
|
SubscriptionFragment.model_rebuild()
|
|
2782
|
+
FeatureFragment.model_rebuild()
|
|
2783
|
+
EntitlementFragment.model_rebuild()
|
|
2784
2784
|
ApplySubscriptionFragment.model_rebuild()
|
|
2785
2785
|
FontVariantFragment.model_rebuild()
|
|
2786
2786
|
TypographyConfigurationFragment.model_rebuild()
|
|
@@ -2792,8 +2792,8 @@ CheckoutStateFragment.model_rebuild()
|
|
|
2792
2792
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2793
2793
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2794
2794
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2795
|
-
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2796
2795
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2796
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2797
2797
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2798
2798
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2799
2799
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -174,6 +174,11 @@ class AddonSort(BaseModel):
|
|
|
174
174
|
nulls: Optional[SortNulls] = None
|
|
175
175
|
|
|
176
176
|
|
|
177
|
+
class AddonUnArchiveInput(BaseModel):
|
|
178
|
+
environment_id: Optional[str] = Field(alias="environmentId", default=None)
|
|
179
|
+
id: str
|
|
180
|
+
|
|
181
|
+
|
|
177
182
|
class AddonUpdateInput(BaseModel):
|
|
178
183
|
additional_meta_data: Optional[Any] = Field(
|
|
179
184
|
alias="additionalMetaData", default=None
|
|
@@ -305,6 +310,7 @@ class ArchivePlanInput(BaseModel):
|
|
|
305
310
|
class AttachCustomerPaymentMethodInput(BaseModel):
|
|
306
311
|
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
307
312
|
environment_id: Optional[str] = Field(alias="environmentId", default=None)
|
|
313
|
+
integration_id: Optional[str] = Field(alias="integrationId", default=None)
|
|
308
314
|
payment_method_id: str = Field(alias="paymentMethodId")
|
|
309
315
|
ref_id: Optional[str] = Field(alias="refId", default=None)
|
|
310
316
|
vendor_identifier: VendorIdentifier = Field(alias="vendorIdentifier")
|
|
@@ -766,6 +772,7 @@ class CustomerBillingInfo(BaseModel):
|
|
|
766
772
|
billing_address: Optional["Address"] = Field(alias="billingAddress", default=None)
|
|
767
773
|
currency: Optional[Currency] = None
|
|
768
774
|
customer_name: Optional[str] = Field(alias="customerName", default=None)
|
|
775
|
+
integration_id: Optional[str] = Field(alias="integrationId", default=None)
|
|
769
776
|
invoice_custom_fields: Optional[Any] = Field(
|
|
770
777
|
alias="invoiceCustomFields", default=None
|
|
771
778
|
)
|
|
@@ -2037,6 +2044,7 @@ class ImportSubscriptionsBulkInput(BaseModel):
|
|
|
2037
2044
|
class InitAddStripeCustomerPaymentMethodInput(BaseModel):
|
|
2038
2045
|
customer_ref_id: str = Field(alias="customerRefId")
|
|
2039
2046
|
environment_id: Optional[str] = Field(alias="environmentId", default=None)
|
|
2047
|
+
integration_id: Optional[str] = Field(alias="integrationId", default=None)
|
|
2040
2048
|
|
|
2041
2049
|
|
|
2042
2050
|
class IntFieldComparison(BaseModel):
|
|
@@ -2773,6 +2781,7 @@ class PlanUpdateInput(BaseModel):
|
|
|
2773
2781
|
class PreparePaymentMethodFormInput(BaseModel):
|
|
2774
2782
|
customer_id: str = Field(alias="customerId")
|
|
2775
2783
|
environment_id: Optional[str] = Field(alias="environmentId", default=None)
|
|
2784
|
+
integration_id: Optional[str] = Field(alias="integrationId", default=None)
|
|
2776
2785
|
|
|
2777
2786
|
|
|
2778
2787
|
class PreviewNextInvoiceInput(BaseModel):
|
|
@@ -4221,6 +4230,16 @@ class TypographyConfigurationInput(BaseModel):
|
|
|
4221
4230
|
h_3: Optional["FontVariantInput"] = Field(alias="h3", default=None)
|
|
4222
4231
|
|
|
4223
4232
|
|
|
4233
|
+
class UnArchiveFeatureInput(BaseModel):
|
|
4234
|
+
environment_id: Optional[str] = Field(alias="environmentId", default=None)
|
|
4235
|
+
id: str
|
|
4236
|
+
|
|
4237
|
+
|
|
4238
|
+
class UnArchivePlanInput(BaseModel):
|
|
4239
|
+
environment_id: Optional[str] = Field(alias="environmentId", default=None)
|
|
4240
|
+
id: str
|
|
4241
|
+
|
|
4242
|
+
|
|
4224
4243
|
class UnarchiveCustomerInput(BaseModel):
|
|
4225
4244
|
customer_id: str = Field(alias="customerId")
|
|
4226
4245
|
environment_id: Optional[str] = Field(alias="environmentId", default=None)
|
|
@@ -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=
|
|
109
|
+
stigg/generated/__init__.py,sha256=b51t6c7Q-cJDVvDByMLaRsDXEkokvItn4MpH2mVx93Y,69232
|
|
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
|
|
@@ -119,11 +119,11 @@ stigg/generated/client.py,sha256=AHebP8X0jl5noIxkZwMgE-EOE3e5lv-tGrCj2xDt58c,169
|
|
|
119
119
|
stigg/generated/create_subscription.py,sha256=vbpBJ_daXHcQDtvU3vbwSr2E7s4VGRHxqPavyTV3Mtk,457
|
|
120
120
|
stigg/generated/delegate_subscription_to_customer.py,sha256=0TgQDO0Hk-z7X7PGtqhvciqa8IjkToK9cpiX3Kqu_UY,561
|
|
121
121
|
stigg/generated/detach_customer_payment_method.py,sha256=ACXlC2xsGaUP723OrayFZQ9SbXxe8TtVUYdG1gqcYFc,523
|
|
122
|
-
stigg/generated/enums.py,sha256=
|
|
122
|
+
stigg/generated/enums.py,sha256=VM4Z02Kt1Ze6ViqGGxFWUMtThUiSnIfrg9hG9Y4_hoU,34610
|
|
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=LSWNPYGxN_vY0ZgSsro_wM1d88NY35qEGhs4g9ffRRE,100632
|
|
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
|
|
@@ -144,7 +144,7 @@ stigg/generated/grant_promotional_entitlements.py,sha256=72PRYuqecL-0SkWb7deygkh
|
|
|
144
144
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
145
145
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
146
146
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
147
|
-
stigg/generated/input_types.py,sha256=
|
|
147
|
+
stigg/generated/input_types.py,sha256=aEjkX2dGtdW4x4zlwsEX_suIRT2uUsiiXkAs9RawvPM,192213
|
|
148
148
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
149
149
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
150
150
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -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.
|
|
164
|
-
stigg_api_client_v2-2.
|
|
165
|
-
stigg_api_client_v2-2.
|
|
166
|
-
stigg_api_client_v2-2.
|
|
163
|
+
stigg_api_client_v2-2.324.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.324.0.dist-info/METADATA,sha256=fxVnWt522pRRS5t5cQNOVXWBI24EKYbsMqXGiFMl-BA,2258
|
|
165
|
+
stigg_api_client_v2-2.324.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.324.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|