stigg-api-client-v2 2.336.0__py3-none-any.whl → 2.349.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 +8 -0
- stigg/generated/enums.py +1 -0
- stigg/generated/fragments.py +204 -204
- stigg/generated/input_types.py +24 -0
- {stigg_api_client_v2-2.336.0.dist-info → stigg_api_client_v2-2.349.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.336.0.dist-info → stigg_api_client_v2-2.349.0.dist-info}/RECORD +8 -8
- {stigg_api_client_v2-2.336.0.dist-info → stigg_api_client_v2-2.349.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.336.0.dist-info → stigg_api_client_v2-2.349.0.dist-info}/WHEEL +0 -0
stigg/generated/__init__.py
CHANGED
|
@@ -608,6 +608,7 @@ from .input_types import (
|
|
|
608
608
|
CreateOneProductInput,
|
|
609
609
|
CreateOrUpdateAwsMarketplaceProductInput,
|
|
610
610
|
CreatePackageGroup,
|
|
611
|
+
CreateWorkflowTriggerInput,
|
|
611
612
|
CursorPaging,
|
|
612
613
|
CustomerBillingInfo,
|
|
613
614
|
CustomerFilter,
|
|
@@ -643,6 +644,7 @@ from .input_types import (
|
|
|
643
644
|
DeleteOnePriceInput,
|
|
644
645
|
DeleteOneProductInput,
|
|
645
646
|
DeleteOnePromotionalEntitlementInput,
|
|
647
|
+
DeleteWorkflowTriggerInput,
|
|
646
648
|
DetachCustomerPaymentMethodInput,
|
|
647
649
|
DimensionsMappingInput,
|
|
648
650
|
DiscardPackageDraftInput,
|
|
@@ -691,6 +693,7 @@ from .input_types import (
|
|
|
691
693
|
GetPaywallInput,
|
|
692
694
|
GetSubscriptionInput,
|
|
693
695
|
GetWidgetConfigurationInput,
|
|
696
|
+
GetWorkflowTriggersInput,
|
|
694
697
|
GrantPromotionalEntitlementInput,
|
|
695
698
|
GrantPromotionalEntitlementsInput,
|
|
696
699
|
HookFilter,
|
|
@@ -853,6 +856,7 @@ from .input_types import (
|
|
|
853
856
|
TriggerSubscriptionBillingMonthEndsSoonWebhookInput,
|
|
854
857
|
TriggerSubscriptionMigrationInput,
|
|
855
858
|
TriggerSubscriptionUsageSyncInput,
|
|
859
|
+
TriggerWorkflowInput,
|
|
856
860
|
TypographyConfigurationInput,
|
|
857
861
|
UnarchiveCustomerInput,
|
|
858
862
|
UnarchiveEnvironmentInput,
|
|
@@ -1053,6 +1057,7 @@ __all__ = [
|
|
|
1053
1057
|
"CreatePackageGroup",
|
|
1054
1058
|
"CreateSubscription",
|
|
1055
1059
|
"CreateSubscriptionCreateSubscription",
|
|
1060
|
+
"CreateWorkflowTriggerInput",
|
|
1056
1061
|
"Currency",
|
|
1057
1062
|
"CursorPaging",
|
|
1058
1063
|
"CustomerBillingInfo",
|
|
@@ -1155,6 +1160,7 @@ __all__ = [
|
|
|
1155
1160
|
"DeleteOnePriceInput",
|
|
1156
1161
|
"DeleteOneProductInput",
|
|
1157
1162
|
"DeleteOnePromotionalEntitlementInput",
|
|
1163
|
+
"DeleteWorkflowTriggerInput",
|
|
1158
1164
|
"Department",
|
|
1159
1165
|
"DetachCustomerPaymentMethod",
|
|
1160
1166
|
"DetachCustomerPaymentMethodDetachCustomerPaymentMethod",
|
|
@@ -1281,6 +1287,7 @@ __all__ = [
|
|
|
1281
1287
|
"GetUsageHistoryV2",
|
|
1282
1288
|
"GetUsageHistoryV2UsageHistoryV2",
|
|
1283
1289
|
"GetWidgetConfigurationInput",
|
|
1290
|
+
"GetWorkflowTriggersInput",
|
|
1284
1291
|
"GrantPromotionalEntitlementInput",
|
|
1285
1292
|
"GrantPromotionalEntitlements",
|
|
1286
1293
|
"GrantPromotionalEntitlementsGrantPromotionalEntitlements",
|
|
@@ -1759,6 +1766,7 @@ __all__ = [
|
|
|
1759
1766
|
"TriggerSubscriptionBillingMonthEndsSoonWebhookInput",
|
|
1760
1767
|
"TriggerSubscriptionMigrationInput",
|
|
1761
1768
|
"TriggerSubscriptionUsageSyncInput",
|
|
1769
|
+
"TriggerWorkflowInput",
|
|
1762
1770
|
"TypographyConfigurationFragment",
|
|
1763
1771
|
"TypographyConfigurationFragmentBody",
|
|
1764
1772
|
"TypographyConfigurationFragmentH1",
|
stigg/generated/enums.py
CHANGED
|
@@ -556,6 +556,7 @@ class ErrorCode(str, Enum):
|
|
|
556
556
|
UnsupportedSubscriptionScheduleType = "UnsupportedSubscriptionScheduleType"
|
|
557
557
|
UnsupportedVendorIdentifier = "UnsupportedVendorIdentifier"
|
|
558
558
|
UsageMeasurementDiffOutOfRangeError = "UsageMeasurementDiffOutOfRangeError"
|
|
559
|
+
WorkflowTriggerNotFound = "WorkflowTriggerNotFound"
|
|
559
560
|
|
|
560
561
|
|
|
561
562
|
class EventActor(str, Enum):
|
stigg/generated/fragments.py
CHANGED
|
@@ -59,39 +59,6 @@ class AddonDependencyFragment(BaseModel):
|
|
|
59
59
|
description: Optional[str] = Field(default=None)
|
|
60
60
|
|
|
61
61
|
|
|
62
|
-
class PackageEntitlementFragment(BaseModel):
|
|
63
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
64
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
65
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
66
|
-
feature_id: str = Field(alias="featureId")
|
|
67
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
68
|
-
alias="resetPeriod", default=None
|
|
69
|
-
)
|
|
70
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
71
|
-
alias="hiddenFromWidgets", default=None
|
|
72
|
-
)
|
|
73
|
-
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
74
|
-
display_name_override: Optional[str] = Field(
|
|
75
|
-
alias="displayNameOverride", default=None
|
|
76
|
-
)
|
|
77
|
-
feature: "PackageEntitlementFragmentFeature"
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
class PackageEntitlementFragmentFeature(BaseModel):
|
|
81
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
82
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
83
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
84
|
-
feature_units_plural: Optional[str] = Field(
|
|
85
|
-
alias="featureUnitsPlural", default=None
|
|
86
|
-
)
|
|
87
|
-
display_name: str = Field(alias="displayName")
|
|
88
|
-
description: Optional[str] = Field(default=None)
|
|
89
|
-
ref_id: str = Field(alias="refId")
|
|
90
|
-
additional_meta_data: Optional[Any] = Field(
|
|
91
|
-
alias="additionalMetaData", default=None
|
|
92
|
-
)
|
|
93
|
-
|
|
94
|
-
|
|
95
62
|
class PriceTierFragment(BaseModel):
|
|
96
63
|
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
97
64
|
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
@@ -180,6 +147,39 @@ class PriceFragmentFeature(BaseModel):
|
|
|
180
147
|
description: Optional[str] = Field(default=None)
|
|
181
148
|
|
|
182
149
|
|
|
150
|
+
class PackageEntitlementFragment(BaseModel):
|
|
151
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
152
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
153
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
154
|
+
feature_id: str = Field(alias="featureId")
|
|
155
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
156
|
+
alias="resetPeriod", default=None
|
|
157
|
+
)
|
|
158
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
159
|
+
alias="hiddenFromWidgets", default=None
|
|
160
|
+
)
|
|
161
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
162
|
+
display_name_override: Optional[str] = Field(
|
|
163
|
+
alias="displayNameOverride", default=None
|
|
164
|
+
)
|
|
165
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
169
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
170
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
171
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
172
|
+
feature_units_plural: Optional[str] = Field(
|
|
173
|
+
alias="featureUnitsPlural", default=None
|
|
174
|
+
)
|
|
175
|
+
display_name: str = Field(alias="displayName")
|
|
176
|
+
description: Optional[str] = Field(default=None)
|
|
177
|
+
ref_id: str = Field(alias="refId")
|
|
178
|
+
additional_meta_data: Optional[Any] = Field(
|
|
179
|
+
alias="additionalMetaData", default=None
|
|
180
|
+
)
|
|
181
|
+
|
|
182
|
+
|
|
183
183
|
class AddonFragment(BaseModel):
|
|
184
184
|
id: str
|
|
185
185
|
ref_id: str = Field(alias="refId")
|
|
@@ -215,49 +215,45 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
215
215
|
pass
|
|
216
216
|
|
|
217
217
|
|
|
218
|
-
class
|
|
219
|
-
resource_id: str = Field(alias="resourceId")
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
class SubscriptionScheduledUpdateData(BaseModel):
|
|
218
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
223
219
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
224
220
|
alias="subscriptionScheduleType"
|
|
225
221
|
)
|
|
226
222
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
227
223
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
228
|
-
target_package: Optional["
|
|
224
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
229
225
|
alias="targetPackage", default=None
|
|
230
226
|
)
|
|
231
227
|
schedule_variables: Optional[
|
|
232
228
|
Annotated[
|
|
233
229
|
Union[
|
|
234
|
-
"
|
|
235
|
-
"
|
|
236
|
-
"
|
|
237
|
-
"
|
|
238
|
-
"
|
|
239
|
-
"
|
|
240
|
-
"
|
|
241
|
-
"
|
|
230
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
231
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
232
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
233
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
234
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
235
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
236
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
237
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
242
238
|
],
|
|
243
239
|
Field(discriminator="typename__"),
|
|
244
240
|
]
|
|
245
241
|
] = Field(alias="scheduleVariables", default=None)
|
|
246
242
|
|
|
247
243
|
|
|
248
|
-
class
|
|
244
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
249
245
|
id: str
|
|
250
246
|
ref_id: str = Field(alias="refId")
|
|
251
247
|
display_name: str = Field(alias="displayName")
|
|
252
248
|
|
|
253
249
|
|
|
254
|
-
class
|
|
250
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
255
251
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
256
252
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
257
253
|
new_quantity: float = Field(alias="newQuantity")
|
|
258
254
|
|
|
259
255
|
|
|
260
|
-
class
|
|
256
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
261
257
|
BaseModel
|
|
262
258
|
):
|
|
263
259
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -265,55 +261,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
265
261
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
266
262
|
|
|
267
263
|
|
|
268
|
-
class
|
|
264
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
269
265
|
BaseModel
|
|
270
266
|
):
|
|
271
267
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
272
268
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
273
269
|
|
|
274
270
|
|
|
275
|
-
class
|
|
271
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
276
272
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
277
273
|
|
|
278
274
|
|
|
279
|
-
class
|
|
280
|
-
BaseModel
|
|
281
|
-
):
|
|
275
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
282
276
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
283
277
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
284
278
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
285
279
|
billable_features: Optional[
|
|
286
280
|
List[
|
|
287
|
-
"
|
|
281
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
288
282
|
]
|
|
289
283
|
] = Field(alias="billableFeatures", default=None)
|
|
290
284
|
addons: Optional[
|
|
291
285
|
List[
|
|
292
|
-
"
|
|
286
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
293
287
|
]
|
|
294
288
|
] = Field(default=None)
|
|
295
289
|
price_overrides: Optional[
|
|
296
290
|
List[
|
|
297
|
-
"
|
|
291
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
298
292
|
]
|
|
299
293
|
] = Field(alias="priceOverrides", default=None)
|
|
300
294
|
|
|
301
295
|
|
|
302
|
-
class
|
|
296
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
303
297
|
BaseModel
|
|
304
298
|
):
|
|
305
299
|
feature_id: str = Field(alias="featureId")
|
|
306
300
|
quantity: float
|
|
307
301
|
|
|
308
302
|
|
|
309
|
-
class
|
|
303
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
310
304
|
BaseModel
|
|
311
305
|
):
|
|
312
306
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
313
307
|
quantity: float
|
|
314
308
|
|
|
315
309
|
|
|
316
|
-
class
|
|
310
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
317
311
|
BaseModel
|
|
318
312
|
):
|
|
319
313
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -321,43 +315,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
321
315
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
322
316
|
|
|
323
317
|
|
|
324
|
-
class
|
|
318
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
325
319
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
326
320
|
plan_ref_id: str = Field(alias="planRefId")
|
|
327
321
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
328
322
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
329
323
|
billable_features: Optional[
|
|
330
324
|
List[
|
|
331
|
-
"
|
|
325
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
332
326
|
]
|
|
333
327
|
] = Field(alias="billableFeatures", default=None)
|
|
334
328
|
addons: Optional[
|
|
335
|
-
List[
|
|
336
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
337
|
-
]
|
|
329
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
338
330
|
] = Field(default=None)
|
|
339
331
|
price_overrides: Optional[
|
|
340
332
|
List[
|
|
341
|
-
"
|
|
333
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
342
334
|
]
|
|
343
335
|
] = Field(alias="priceOverrides", default=None)
|
|
344
336
|
|
|
345
337
|
|
|
346
|
-
class
|
|
338
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
347
339
|
BaseModel
|
|
348
340
|
):
|
|
349
341
|
feature_id: str = Field(alias="featureId")
|
|
350
342
|
quantity: float
|
|
351
343
|
|
|
352
344
|
|
|
353
|
-
class
|
|
354
|
-
BaseModel
|
|
355
|
-
):
|
|
345
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
356
346
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
357
347
|
quantity: float
|
|
358
348
|
|
|
359
349
|
|
|
360
|
-
class
|
|
350
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
361
351
|
BaseModel
|
|
362
352
|
):
|
|
363
353
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -365,7 +355,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
365
355
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
366
356
|
|
|
367
357
|
|
|
368
|
-
class
|
|
358
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
369
359
|
BaseModel
|
|
370
360
|
):
|
|
371
361
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -373,53 +363,76 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
373
363
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
374
364
|
|
|
375
365
|
|
|
376
|
-
class
|
|
377
|
-
BaseModel
|
|
378
|
-
):
|
|
366
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
379
367
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
380
368
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
381
369
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
382
370
|
|
|
383
371
|
|
|
384
|
-
class
|
|
372
|
+
class CustomerResourceFragment(BaseModel):
|
|
373
|
+
resource_id: str = Field(alias="resourceId")
|
|
374
|
+
|
|
375
|
+
|
|
376
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
377
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
class SlimCustomerFragment(BaseModel):
|
|
381
|
+
id: str
|
|
382
|
+
name: Optional[str] = Field(default=None)
|
|
383
|
+
email: Optional[str] = Field(default=None)
|
|
384
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
385
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
386
|
+
ref_id: str = Field(alias="refId")
|
|
387
|
+
customer_id: str = Field(alias="customerId")
|
|
388
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
389
|
+
additional_meta_data: Optional[Any] = Field(
|
|
390
|
+
alias="additionalMetaData", default=None
|
|
391
|
+
)
|
|
392
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
393
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
394
|
+
)
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
385
398
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
386
399
|
alias="subscriptionScheduleType"
|
|
387
400
|
)
|
|
388
401
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
389
402
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
390
|
-
target_package: Optional["
|
|
403
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
391
404
|
alias="targetPackage", default=None
|
|
392
405
|
)
|
|
393
406
|
schedule_variables: Optional[
|
|
394
407
|
Annotated[
|
|
395
408
|
Union[
|
|
396
|
-
"
|
|
397
|
-
"
|
|
398
|
-
"
|
|
399
|
-
"
|
|
400
|
-
"
|
|
401
|
-
"
|
|
402
|
-
"
|
|
403
|
-
"
|
|
409
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
410
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
411
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
412
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
413
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
414
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
415
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
416
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
404
417
|
],
|
|
405
418
|
Field(discriminator="typename__"),
|
|
406
419
|
]
|
|
407
420
|
] = Field(alias="scheduleVariables", default=None)
|
|
408
421
|
|
|
409
422
|
|
|
410
|
-
class
|
|
423
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
411
424
|
id: str
|
|
412
425
|
ref_id: str = Field(alias="refId")
|
|
413
426
|
display_name: str = Field(alias="displayName")
|
|
414
427
|
|
|
415
428
|
|
|
416
|
-
class
|
|
429
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
417
430
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
418
431
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
419
432
|
new_quantity: float = Field(alias="newQuantity")
|
|
420
433
|
|
|
421
434
|
|
|
422
|
-
class
|
|
435
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
423
436
|
BaseModel
|
|
424
437
|
):
|
|
425
438
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -427,53 +440,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
427
440
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
428
441
|
|
|
429
442
|
|
|
430
|
-
class
|
|
443
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
431
444
|
BaseModel
|
|
432
445
|
):
|
|
433
446
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
434
447
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
435
448
|
|
|
436
449
|
|
|
437
|
-
class
|
|
450
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
438
451
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
439
452
|
|
|
440
453
|
|
|
441
|
-
class
|
|
454
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
455
|
+
BaseModel
|
|
456
|
+
):
|
|
442
457
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
443
458
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
444
459
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
445
460
|
billable_features: Optional[
|
|
446
461
|
List[
|
|
447
|
-
"
|
|
462
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
448
463
|
]
|
|
449
464
|
] = Field(alias="billableFeatures", default=None)
|
|
450
465
|
addons: Optional[
|
|
451
466
|
List[
|
|
452
|
-
"
|
|
467
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
453
468
|
]
|
|
454
469
|
] = Field(default=None)
|
|
455
470
|
price_overrides: Optional[
|
|
456
471
|
List[
|
|
457
|
-
"
|
|
472
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
458
473
|
]
|
|
459
474
|
] = Field(alias="priceOverrides", default=None)
|
|
460
475
|
|
|
461
476
|
|
|
462
|
-
class
|
|
477
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
463
478
|
BaseModel
|
|
464
479
|
):
|
|
465
480
|
feature_id: str = Field(alias="featureId")
|
|
466
481
|
quantity: float
|
|
467
482
|
|
|
468
483
|
|
|
469
|
-
class
|
|
484
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
470
485
|
BaseModel
|
|
471
486
|
):
|
|
472
487
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
473
488
|
quantity: float
|
|
474
489
|
|
|
475
490
|
|
|
476
|
-
class
|
|
491
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
477
492
|
BaseModel
|
|
478
493
|
):
|
|
479
494
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -481,39 +496,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
481
496
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
482
497
|
|
|
483
498
|
|
|
484
|
-
class
|
|
499
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
485
500
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
486
501
|
plan_ref_id: str = Field(alias="planRefId")
|
|
487
502
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
488
503
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
489
504
|
billable_features: Optional[
|
|
490
505
|
List[
|
|
491
|
-
"
|
|
506
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
492
507
|
]
|
|
493
508
|
] = Field(alias="billableFeatures", default=None)
|
|
494
509
|
addons: Optional[
|
|
495
|
-
List[
|
|
510
|
+
List[
|
|
511
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
512
|
+
]
|
|
496
513
|
] = Field(default=None)
|
|
497
514
|
price_overrides: Optional[
|
|
498
515
|
List[
|
|
499
|
-
"
|
|
516
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
500
517
|
]
|
|
501
518
|
] = Field(alias="priceOverrides", default=None)
|
|
502
519
|
|
|
503
520
|
|
|
504
|
-
class
|
|
521
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
505
522
|
BaseModel
|
|
506
523
|
):
|
|
507
524
|
feature_id: str = Field(alias="featureId")
|
|
508
525
|
quantity: float
|
|
509
526
|
|
|
510
527
|
|
|
511
|
-
class
|
|
528
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
529
|
+
BaseModel
|
|
530
|
+
):
|
|
512
531
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
513
532
|
quantity: float
|
|
514
533
|
|
|
515
534
|
|
|
516
|
-
class
|
|
535
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
517
536
|
BaseModel
|
|
518
537
|
):
|
|
519
538
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -521,7 +540,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
521
540
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
522
541
|
|
|
523
542
|
|
|
524
|
-
class
|
|
543
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
525
544
|
BaseModel
|
|
526
545
|
):
|
|
527
546
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -529,27 +548,14 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
529
548
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
530
549
|
|
|
531
550
|
|
|
532
|
-
class
|
|
551
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
552
|
+
BaseModel
|
|
553
|
+
):
|
|
533
554
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
534
555
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
535
556
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
536
557
|
|
|
537
558
|
|
|
538
|
-
class TotalPriceFragment(BaseModel):
|
|
539
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
540
|
-
total: "TotalPriceFragmentTotal"
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
544
|
-
amount: float
|
|
545
|
-
currency: Currency
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
549
|
-
amount: float
|
|
550
|
-
currency: Currency
|
|
551
|
-
|
|
552
|
-
|
|
553
559
|
class SubscriptionInvoiceFragment(BaseModel):
|
|
554
560
|
billing_id: str = Field(alias="billingId")
|
|
555
561
|
status: SubscriptionInvoiceStatus
|
|
@@ -577,21 +583,22 @@ class SubscriptionInvoiceFragment(BaseModel):
|
|
|
577
583
|
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
578
584
|
|
|
579
585
|
|
|
580
|
-
class
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
586
|
-
ref_id: str = Field(alias="refId")
|
|
587
|
-
customer_id: str = Field(alias="customerId")
|
|
588
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
589
|
-
additional_meta_data: Optional[Any] = Field(
|
|
590
|
-
alias="additionalMetaData", default=None
|
|
591
|
-
)
|
|
592
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
593
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
586
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
587
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
588
|
+
display_name: str = Field(alias="displayName")
|
|
589
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
590
|
+
default=None
|
|
594
591
|
)
|
|
592
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
593
|
+
|
|
594
|
+
|
|
595
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
596
|
+
pass
|
|
597
|
+
|
|
598
|
+
|
|
599
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
600
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
601
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
595
602
|
|
|
596
603
|
|
|
597
604
|
class ProductFragment(BaseModel):
|
|
@@ -615,24 +622,6 @@ class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
|
615
622
|
display_name: str = Field(alias="displayName")
|
|
616
623
|
|
|
617
624
|
|
|
618
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
619
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
620
|
-
display_name: str = Field(alias="displayName")
|
|
621
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
622
|
-
default=None
|
|
623
|
-
)
|
|
624
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
628
|
-
pass
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
632
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
633
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
634
|
-
|
|
635
|
-
|
|
636
625
|
class PlanFragment(BaseModel):
|
|
637
626
|
id: str
|
|
638
627
|
ref_id: str = Field(alias="refId")
|
|
@@ -714,8 +703,19 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
714
703
|
limit: float
|
|
715
704
|
|
|
716
705
|
|
|
717
|
-
class
|
|
718
|
-
|
|
706
|
+
class TotalPriceFragment(BaseModel):
|
|
707
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
708
|
+
total: "TotalPriceFragmentTotal"
|
|
709
|
+
|
|
710
|
+
|
|
711
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
712
|
+
amount: float
|
|
713
|
+
currency: Currency
|
|
714
|
+
|
|
715
|
+
|
|
716
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
717
|
+
amount: float
|
|
718
|
+
currency: Currency
|
|
719
719
|
|
|
720
720
|
|
|
721
721
|
class SubscriptionFragment(BaseModel):
|
|
@@ -1429,13 +1429,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1429
1429
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1430
1430
|
|
|
1431
1431
|
|
|
1432
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1433
|
-
addon_id: str = Field(alias="addonId")
|
|
1434
|
-
description: Optional[str] = Field(default=None)
|
|
1435
|
-
display_name: str = Field(alias="displayName")
|
|
1436
|
-
quantity: int
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
1432
|
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1440
1433
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1441
1434
|
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
@@ -1463,6 +1456,13 @@ class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
|
1463
1456
|
)
|
|
1464
1457
|
|
|
1465
1458
|
|
|
1459
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1460
|
+
addon_id: str = Field(alias="addonId")
|
|
1461
|
+
description: Optional[str] = Field(default=None)
|
|
1462
|
+
display_name: str = Field(alias="displayName")
|
|
1463
|
+
quantity: int
|
|
1464
|
+
|
|
1465
|
+
|
|
1466
1466
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1467
1467
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1468
1468
|
plan_id: str = Field(alias="planId")
|
|
@@ -1786,6 +1786,39 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1786
1786
|
description: Optional[str] = Field(default=None)
|
|
1787
1787
|
|
|
1788
1788
|
|
|
1789
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1790
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1791
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1792
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1793
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1794
|
+
alias="resetPeriod", default=None
|
|
1795
|
+
)
|
|
1796
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1797
|
+
alias="hiddenFromWidgets", default=None
|
|
1798
|
+
)
|
|
1799
|
+
display_name_override: Optional[str] = Field(
|
|
1800
|
+
alias="displayNameOverride", default=None
|
|
1801
|
+
)
|
|
1802
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1803
|
+
default=None
|
|
1804
|
+
)
|
|
1805
|
+
|
|
1806
|
+
|
|
1807
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1808
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1809
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1810
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1811
|
+
feature_units_plural: Optional[str] = Field(
|
|
1812
|
+
alias="featureUnitsPlural", default=None
|
|
1813
|
+
)
|
|
1814
|
+
display_name: str = Field(alias="displayName")
|
|
1815
|
+
description: Optional[str] = Field(default=None)
|
|
1816
|
+
ref_id: str = Field(alias="refId")
|
|
1817
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1818
|
+
alias="additionalMetaData", default=None
|
|
1819
|
+
)
|
|
1820
|
+
|
|
1821
|
+
|
|
1789
1822
|
class MockPaywallPriceFragment(BaseModel):
|
|
1790
1823
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1791
1824
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1820,39 +1853,6 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1820
1853
|
display_name: str = Field(alias="displayName")
|
|
1821
1854
|
|
|
1822
1855
|
|
|
1823
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1824
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1825
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1826
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1827
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1828
|
-
alias="resetPeriod", default=None
|
|
1829
|
-
)
|
|
1830
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1831
|
-
alias="hiddenFromWidgets", default=None
|
|
1832
|
-
)
|
|
1833
|
-
display_name_override: Optional[str] = Field(
|
|
1834
|
-
alias="displayNameOverride", default=None
|
|
1835
|
-
)
|
|
1836
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1837
|
-
default=None
|
|
1838
|
-
)
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1842
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1843
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1844
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1845
|
-
feature_units_plural: Optional[str] = Field(
|
|
1846
|
-
alias="featureUnitsPlural", default=None
|
|
1847
|
-
)
|
|
1848
|
-
display_name: str = Field(alias="displayName")
|
|
1849
|
-
description: Optional[str] = Field(default=None)
|
|
1850
|
-
ref_id: str = Field(alias="refId")
|
|
1851
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1852
|
-
alias="additionalMetaData", default=None
|
|
1853
|
-
)
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
1856
|
class MockPaywallAddonFragment(BaseModel):
|
|
1857
1857
|
ref_id: str = Field(alias="refId")
|
|
1858
1858
|
display_name: str = Field(alias="displayName")
|
|
@@ -2763,21 +2763,21 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2763
2763
|
|
|
2764
2764
|
|
|
2765
2765
|
AddonDependencyFragment.model_rebuild()
|
|
2766
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2767
2766
|
PriceTierFragment.model_rebuild()
|
|
2768
2767
|
OveragePriceFragment.model_rebuild()
|
|
2769
2768
|
PriceFragment.model_rebuild()
|
|
2769
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2770
2770
|
AddonFragment.model_rebuild()
|
|
2771
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2771
2772
|
CustomerResourceFragment.model_rebuild()
|
|
2773
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2774
|
+
SlimCustomerFragment.model_rebuild()
|
|
2772
2775
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2773
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2774
|
-
TotalPriceFragment.model_rebuild()
|
|
2775
2776
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2776
|
-
SlimCustomerFragment.model_rebuild()
|
|
2777
|
-
ProductFragment.model_rebuild()
|
|
2778
2777
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2778
|
+
ProductFragment.model_rebuild()
|
|
2779
2779
|
PlanFragment.model_rebuild()
|
|
2780
|
-
|
|
2780
|
+
TotalPriceFragment.model_rebuild()
|
|
2781
2781
|
SubscriptionFragment.model_rebuild()
|
|
2782
2782
|
FeatureFragment.model_rebuild()
|
|
2783
2783
|
EntitlementFragment.model_rebuild()
|
|
@@ -2794,8 +2794,8 @@ CustomerPortalConfigurationFragment.model_rebuild()
|
|
|
2794
2794
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2795
2795
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2796
2796
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2797
|
-
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2798
2797
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2798
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2799
2799
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2800
2800
|
CustomerPortalFragment.model_rebuild()
|
|
2801
2801
|
CustomerStatisticsFragment.model_rebuild()
|
|
@@ -2806,8 +2806,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2806
2806
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2807
2807
|
LayoutConfigurationFragment.model_rebuild()
|
|
2808
2808
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2809
|
-
MockPaywallPriceFragment.model_rebuild()
|
|
2810
2809
|
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2810
|
+
MockPaywallPriceFragment.model_rebuild()
|
|
2811
2811
|
MockPaywallAddonFragment.model_rebuild()
|
|
2812
2812
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2813
2813
|
MockPaywallPlanFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -762,6 +762,14 @@ class CreatePackageGroup(BaseModel):
|
|
|
762
762
|
product_id: str = Field(alias="productId")
|
|
763
763
|
|
|
764
764
|
|
|
765
|
+
class CreateWorkflowTriggerInput(BaseModel):
|
|
766
|
+
configuration: Optional[Any] = None
|
|
767
|
+
endpoint: str
|
|
768
|
+
environment_id: Optional[str] = Field(alias="environmentId", default=None)
|
|
769
|
+
event_log_types: List[EventLogType] = Field(alias="eventLogTypes")
|
|
770
|
+
trigger_id: Optional[str] = Field(alias="triggerId", default=None)
|
|
771
|
+
|
|
772
|
+
|
|
765
773
|
class CursorPaging(BaseModel):
|
|
766
774
|
after: Optional[Any] = None
|
|
767
775
|
before: Optional[Any] = None
|
|
@@ -1382,6 +1390,11 @@ class DeleteOnePromotionalEntitlementInput(BaseModel):
|
|
|
1382
1390
|
id: str
|
|
1383
1391
|
|
|
1384
1392
|
|
|
1393
|
+
class DeleteWorkflowTriggerInput(BaseModel):
|
|
1394
|
+
environment_id: Optional[str] = Field(alias="environmentId", default=None)
|
|
1395
|
+
workflow_trigger_id: str = Field(alias="workflowTriggerId")
|
|
1396
|
+
|
|
1397
|
+
|
|
1385
1398
|
class DetachCustomerPaymentMethodInput(BaseModel):
|
|
1386
1399
|
customer_id: str = Field(alias="customerId")
|
|
1387
1400
|
environment_id: Optional[str] = Field(alias="environmentId", default=None)
|
|
@@ -1869,6 +1882,12 @@ class GetWidgetConfigurationInput(BaseModel):
|
|
|
1869
1882
|
environment_id: Optional[str] = Field(alias="environmentId", default=None)
|
|
1870
1883
|
|
|
1871
1884
|
|
|
1885
|
+
class GetWorkflowTriggersInput(BaseModel):
|
|
1886
|
+
environment_id: Optional[str] = Field(alias="environmentId", default=None)
|
|
1887
|
+
trigger_id: Optional[str] = Field(alias="triggerId", default=None)
|
|
1888
|
+
workflow_trigger_id: Optional[str] = Field(alias="workflowTriggerId", default=None)
|
|
1889
|
+
|
|
1890
|
+
|
|
1872
1891
|
class GrantPromotionalEntitlementInput(BaseModel):
|
|
1873
1892
|
custom_end_date: Optional[Any] = Field(alias="customEndDate", default=None)
|
|
1874
1893
|
feature_id: str = Field(alias="featureId")
|
|
@@ -4224,6 +4243,11 @@ class TriggerSubscriptionUsageSyncInput(BaseModel):
|
|
|
4224
4243
|
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
4225
4244
|
|
|
4226
4245
|
|
|
4246
|
+
class TriggerWorkflowInput(BaseModel):
|
|
4247
|
+
payload: Optional[Any] = None
|
|
4248
|
+
trigger_id: str = Field(alias="triggerId")
|
|
4249
|
+
|
|
4250
|
+
|
|
4227
4251
|
class TypographyConfigurationInput(BaseModel):
|
|
4228
4252
|
body: Optional["FontVariantInput"] = None
|
|
4229
4253
|
font_family: Optional[str] = Field(alias="fontFamily", 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=aT4_xKTm4cUMJ93771njYtyHkTEhx0ru5ojQDVL5oKE,69584
|
|
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=KlwYli207O_L90hJ_SOXSq85vW6XU-bYsdr37sjRFIM,35134
|
|
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=9JTQhezBdo7UuqY2xdv9rJTeXpUEN8532MA_sMeJUrk,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=LaQZvfsVmhhpaI5uwBXpMhTkLVb8igdRXlhzcRCbFMM,193568
|
|
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.349.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.349.0.dist-info/METADATA,sha256=9k_J3l7sQSGpC-qE84l4gOi8y68aw_LgmlHrg0LYg1s,2258
|
|
165
|
+
stigg_api_client_v2-2.349.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.349.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|