stigg-api-client-v2 2.341.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 +2 -0
- stigg/generated/enums.py +1 -0
- stigg/generated/fragments.py +232 -232
- stigg/generated/input_types.py +5 -0
- {stigg_api_client_v2-2.341.0.dist-info → stigg_api_client_v2-2.349.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.341.0.dist-info → stigg_api_client_v2-2.349.0.dist-info}/RECORD +8 -8
- {stigg_api_client_v2-2.341.0.dist-info → stigg_api_client_v2-2.349.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.341.0.dist-info → stigg_api_client_v2-2.349.0.dist-info}/WHEEL +0 -0
stigg/generated/__init__.py
CHANGED
|
@@ -856,6 +856,7 @@ from .input_types import (
|
|
|
856
856
|
TriggerSubscriptionBillingMonthEndsSoonWebhookInput,
|
|
857
857
|
TriggerSubscriptionMigrationInput,
|
|
858
858
|
TriggerSubscriptionUsageSyncInput,
|
|
859
|
+
TriggerWorkflowInput,
|
|
859
860
|
TypographyConfigurationInput,
|
|
860
861
|
UnarchiveCustomerInput,
|
|
861
862
|
UnarchiveEnvironmentInput,
|
|
@@ -1765,6 +1766,7 @@ __all__ = [
|
|
|
1765
1766
|
"TriggerSubscriptionBillingMonthEndsSoonWebhookInput",
|
|
1766
1767
|
"TriggerSubscriptionMigrationInput",
|
|
1767
1768
|
"TriggerSubscriptionUsageSyncInput",
|
|
1769
|
+
"TriggerWorkflowInput",
|
|
1768
1770
|
"TypographyConfigurationFragment",
|
|
1769
1771
|
"TypographyConfigurationFragmentBody",
|
|
1770
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
|
@@ -111,39 +111,6 @@ class OveragePriceFragmentFeature(BaseModel):
|
|
|
111
111
|
description: Optional[str] = Field(default=None)
|
|
112
112
|
|
|
113
113
|
|
|
114
|
-
class PackageEntitlementFragment(BaseModel):
|
|
115
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
116
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
117
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
118
|
-
feature_id: str = Field(alias="featureId")
|
|
119
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
120
|
-
alias="resetPeriod", default=None
|
|
121
|
-
)
|
|
122
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
123
|
-
alias="hiddenFromWidgets", default=None
|
|
124
|
-
)
|
|
125
|
-
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
126
|
-
display_name_override: Optional[str] = Field(
|
|
127
|
-
alias="displayNameOverride", default=None
|
|
128
|
-
)
|
|
129
|
-
feature: "PackageEntitlementFragmentFeature"
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
class PackageEntitlementFragmentFeature(BaseModel):
|
|
133
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
134
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
135
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
136
|
-
feature_units_plural: Optional[str] = Field(
|
|
137
|
-
alias="featureUnitsPlural", default=None
|
|
138
|
-
)
|
|
139
|
-
display_name: str = Field(alias="displayName")
|
|
140
|
-
description: Optional[str] = Field(default=None)
|
|
141
|
-
ref_id: str = Field(alias="refId")
|
|
142
|
-
additional_meta_data: Optional[Any] = Field(
|
|
143
|
-
alias="additionalMetaData", default=None
|
|
144
|
-
)
|
|
145
|
-
|
|
146
|
-
|
|
147
114
|
class PriceFragment(BaseModel):
|
|
148
115
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
149
116
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -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,10 +215,168 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
215
215
|
pass
|
|
216
216
|
|
|
217
217
|
|
|
218
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
219
|
+
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
220
|
+
alias="subscriptionScheduleType"
|
|
221
|
+
)
|
|
222
|
+
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
223
|
+
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
224
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
225
|
+
alias="targetPackage", default=None
|
|
226
|
+
)
|
|
227
|
+
schedule_variables: Optional[
|
|
228
|
+
Annotated[
|
|
229
|
+
Union[
|
|
230
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
231
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
232
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
233
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
234
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
235
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
236
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
237
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
238
|
+
],
|
|
239
|
+
Field(discriminator="typename__"),
|
|
240
|
+
]
|
|
241
|
+
] = Field(alias="scheduleVariables", default=None)
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
245
|
+
id: str
|
|
246
|
+
ref_id: str = Field(alias="refId")
|
|
247
|
+
display_name: str = Field(alias="displayName")
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
251
|
+
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
252
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
253
|
+
new_quantity: float = Field(alias="newQuantity")
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
257
|
+
BaseModel
|
|
258
|
+
):
|
|
259
|
+
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
260
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
261
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
265
|
+
BaseModel
|
|
266
|
+
):
|
|
267
|
+
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
268
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
272
|
+
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
276
|
+
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
277
|
+
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
278
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
279
|
+
billable_features: Optional[
|
|
280
|
+
List[
|
|
281
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
282
|
+
]
|
|
283
|
+
] = Field(alias="billableFeatures", default=None)
|
|
284
|
+
addons: Optional[
|
|
285
|
+
List[
|
|
286
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
287
|
+
]
|
|
288
|
+
] = Field(default=None)
|
|
289
|
+
price_overrides: Optional[
|
|
290
|
+
List[
|
|
291
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
292
|
+
]
|
|
293
|
+
] = Field(alias="priceOverrides", default=None)
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
297
|
+
BaseModel
|
|
298
|
+
):
|
|
299
|
+
feature_id: str = Field(alias="featureId")
|
|
300
|
+
quantity: float
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
304
|
+
BaseModel
|
|
305
|
+
):
|
|
306
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
307
|
+
quantity: float
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
311
|
+
BaseModel
|
|
312
|
+
):
|
|
313
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
314
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
315
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
319
|
+
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
320
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
321
|
+
change_type: PlanChangeType = Field(alias="changeType")
|
|
322
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
323
|
+
billable_features: Optional[
|
|
324
|
+
List[
|
|
325
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
326
|
+
]
|
|
327
|
+
] = Field(alias="billableFeatures", default=None)
|
|
328
|
+
addons: Optional[
|
|
329
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
330
|
+
] = Field(default=None)
|
|
331
|
+
price_overrides: Optional[
|
|
332
|
+
List[
|
|
333
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
334
|
+
]
|
|
335
|
+
] = Field(alias="priceOverrides", default=None)
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
339
|
+
BaseModel
|
|
340
|
+
):
|
|
341
|
+
feature_id: str = Field(alias="featureId")
|
|
342
|
+
quantity: float
|
|
343
|
+
|
|
344
|
+
|
|
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
|
+
|
|
218
372
|
class CustomerResourceFragment(BaseModel):
|
|
219
373
|
resource_id: str = Field(alias="resourceId")
|
|
220
374
|
|
|
221
375
|
|
|
376
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
377
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
378
|
+
|
|
379
|
+
|
|
222
380
|
class SlimCustomerFragment(BaseModel):
|
|
223
381
|
id: str
|
|
224
382
|
name: Optional[str] = Field(default=None)
|
|
@@ -236,21 +394,6 @@ class SlimCustomerFragment(BaseModel):
|
|
|
236
394
|
)
|
|
237
395
|
|
|
238
396
|
|
|
239
|
-
class TotalPriceFragment(BaseModel):
|
|
240
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
241
|
-
total: "TotalPriceFragmentTotal"
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
245
|
-
amount: float
|
|
246
|
-
currency: Currency
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
250
|
-
amount: float
|
|
251
|
-
currency: Currency
|
|
252
|
-
|
|
253
|
-
|
|
254
397
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
255
398
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
256
399
|
alias="subscriptionScheduleType"
|
|
@@ -413,6 +556,33 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
413
556
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
414
557
|
|
|
415
558
|
|
|
559
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
560
|
+
billing_id: str = Field(alias="billingId")
|
|
561
|
+
status: SubscriptionInvoiceStatus
|
|
562
|
+
created_at: Any = Field(alias="createdAt")
|
|
563
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
564
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
565
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
566
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
567
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
568
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
569
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
570
|
+
alias="billingReason", default=None
|
|
571
|
+
)
|
|
572
|
+
currency: Optional[str] = Field(default=None)
|
|
573
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
574
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
575
|
+
alias="subTotalExcludingTax", default=None
|
|
576
|
+
)
|
|
577
|
+
total: Optional[float] = Field(default=None)
|
|
578
|
+
total_excluding_tax: Optional[float] = Field(
|
|
579
|
+
alias="totalExcludingTax", default=None
|
|
580
|
+
)
|
|
581
|
+
tax: Optional[float] = Field(default=None)
|
|
582
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
583
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
584
|
+
|
|
585
|
+
|
|
416
586
|
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
417
587
|
package_group_id: str = Field(alias="packageGroupId")
|
|
418
588
|
display_name: str = Field(alias="displayName")
|
|
@@ -533,189 +703,19 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
533
703
|
limit: float
|
|
534
704
|
|
|
535
705
|
|
|
536
|
-
class
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
created_at: Any = Field(alias="createdAt")
|
|
540
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
541
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
542
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
543
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
544
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
545
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
546
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
547
|
-
alias="billingReason", default=None
|
|
548
|
-
)
|
|
549
|
-
currency: Optional[str] = Field(default=None)
|
|
550
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
551
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
552
|
-
alias="subTotalExcludingTax", default=None
|
|
553
|
-
)
|
|
554
|
-
total: Optional[float] = Field(default=None)
|
|
555
|
-
total_excluding_tax: Optional[float] = Field(
|
|
556
|
-
alias="totalExcludingTax", default=None
|
|
557
|
-
)
|
|
558
|
-
tax: Optional[float] = Field(default=None)
|
|
559
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
560
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
class SubscriptionFutureUpdateData(BaseModel):
|
|
564
|
-
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
565
|
-
alias="subscriptionScheduleType"
|
|
566
|
-
)
|
|
567
|
-
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
568
|
-
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
569
|
-
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
570
|
-
alias="targetPackage", default=None
|
|
571
|
-
)
|
|
572
|
-
schedule_variables: Optional[
|
|
573
|
-
Annotated[
|
|
574
|
-
Union[
|
|
575
|
-
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
576
|
-
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
577
|
-
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
578
|
-
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
579
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
580
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
581
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
582
|
-
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
583
|
-
],
|
|
584
|
-
Field(discriminator="typename__"),
|
|
585
|
-
]
|
|
586
|
-
] = Field(alias="scheduleVariables", default=None)
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
590
|
-
id: str
|
|
591
|
-
ref_id: str = Field(alias="refId")
|
|
592
|
-
display_name: str = Field(alias="displayName")
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
596
|
-
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
597
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
598
|
-
new_quantity: float = Field(alias="newQuantity")
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
602
|
-
BaseModel
|
|
603
|
-
):
|
|
604
|
-
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
605
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
606
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
610
|
-
BaseModel
|
|
611
|
-
):
|
|
612
|
-
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
613
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
617
|
-
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
621
|
-
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
622
|
-
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
623
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
624
|
-
billable_features: Optional[
|
|
625
|
-
List[
|
|
626
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
627
|
-
]
|
|
628
|
-
] = Field(alias="billableFeatures", default=None)
|
|
629
|
-
addons: Optional[
|
|
630
|
-
List[
|
|
631
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
632
|
-
]
|
|
633
|
-
] = Field(default=None)
|
|
634
|
-
price_overrides: Optional[
|
|
635
|
-
List[
|
|
636
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
637
|
-
]
|
|
638
|
-
] = Field(alias="priceOverrides", default=None)
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
642
|
-
BaseModel
|
|
643
|
-
):
|
|
644
|
-
feature_id: str = Field(alias="featureId")
|
|
645
|
-
quantity: float
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
649
|
-
BaseModel
|
|
650
|
-
):
|
|
651
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
652
|
-
quantity: float
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
656
|
-
BaseModel
|
|
657
|
-
):
|
|
658
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
659
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
660
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
664
|
-
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
665
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
666
|
-
change_type: PlanChangeType = Field(alias="changeType")
|
|
667
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
668
|
-
billable_features: Optional[
|
|
669
|
-
List[
|
|
670
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
671
|
-
]
|
|
672
|
-
] = Field(alias="billableFeatures", default=None)
|
|
673
|
-
addons: Optional[
|
|
674
|
-
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
675
|
-
] = Field(default=None)
|
|
676
|
-
price_overrides: Optional[
|
|
677
|
-
List[
|
|
678
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
679
|
-
]
|
|
680
|
-
] = Field(alias="priceOverrides", default=None)
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
684
|
-
BaseModel
|
|
685
|
-
):
|
|
686
|
-
feature_id: str = Field(alias="featureId")
|
|
687
|
-
quantity: float
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
691
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
692
|
-
quantity: float
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
696
|
-
BaseModel
|
|
697
|
-
):
|
|
698
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
699
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
700
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
704
|
-
BaseModel
|
|
705
|
-
):
|
|
706
|
-
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
707
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
708
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
706
|
+
class TotalPriceFragment(BaseModel):
|
|
707
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
708
|
+
total: "TotalPriceFragmentTotal"
|
|
709
709
|
|
|
710
710
|
|
|
711
|
-
class
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
711
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
712
|
+
amount: float
|
|
713
|
+
currency: Currency
|
|
715
714
|
|
|
716
715
|
|
|
717
|
-
class
|
|
718
|
-
|
|
716
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
717
|
+
amount: float
|
|
718
|
+
currency: Currency
|
|
719
719
|
|
|
720
720
|
|
|
721
721
|
class SubscriptionFragment(BaseModel):
|
|
@@ -2765,19 +2765,19 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2765
2765
|
AddonDependencyFragment.model_rebuild()
|
|
2766
2766
|
PriceTierFragment.model_rebuild()
|
|
2767
2767
|
OveragePriceFragment.model_rebuild()
|
|
2768
|
-
PackageEntitlementFragment.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()
|
|
2772
2774
|
SlimCustomerFragment.model_rebuild()
|
|
2773
|
-
TotalPriceFragment.model_rebuild()
|
|
2774
2775
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2776
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2775
2777
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2776
2778
|
ProductFragment.model_rebuild()
|
|
2777
2779
|
PlanFragment.model_rebuild()
|
|
2778
|
-
|
|
2779
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2780
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2780
|
+
TotalPriceFragment.model_rebuild()
|
|
2781
2781
|
SubscriptionFragment.model_rebuild()
|
|
2782
2782
|
FeatureFragment.model_rebuild()
|
|
2783
2783
|
EntitlementFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -4243,6 +4243,11 @@ class TriggerSubscriptionUsageSyncInput(BaseModel):
|
|
|
4243
4243
|
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
4244
4244
|
|
|
4245
4245
|
|
|
4246
|
+
class TriggerWorkflowInput(BaseModel):
|
|
4247
|
+
payload: Optional[Any] = None
|
|
4248
|
+
trigger_id: str = Field(alias="triggerId")
|
|
4249
|
+
|
|
4250
|
+
|
|
4246
4251
|
class TypographyConfigurationInput(BaseModel):
|
|
4247
4252
|
body: Optional["FontVariantInput"] = None
|
|
4248
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
|