stigg-api-client-v2 3.54.0__py3-none-any.whl → 3.59.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of stigg-api-client-v2 might be problematic. Click here for more details.
- stigg/generated/__init__.py +6 -0
- stigg/generated/fragments.py +293 -293
- stigg/generated/input_types.py +25 -0
- {stigg_api_client_v2-3.54.0.dist-info → stigg_api_client_v2-3.59.2.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.54.0.dist-info → stigg_api_client_v2-3.59.2.dist-info}/RECORD +7 -7
- {stigg_api_client_v2-3.54.0.dist-info → stigg_api_client_v2-3.59.2.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.54.0.dist-info → stigg_api_client_v2-3.59.2.dist-info}/WHEEL +0 -0
stigg/generated/__init__.py
CHANGED
|
@@ -742,6 +742,7 @@ from .input_types import (
|
|
|
742
742
|
GetWidgetConfigurationInput,
|
|
743
743
|
GetWorkflowTriggersInput,
|
|
744
744
|
GrantPromotionalEntitlementInput,
|
|
745
|
+
GrantPromotionalEntitlementsGroupInput,
|
|
745
746
|
GrantPromotionalEntitlementsInput,
|
|
746
747
|
HookFilter,
|
|
747
748
|
HookSort,
|
|
@@ -847,6 +848,7 @@ from .input_types import (
|
|
|
847
848
|
ReportUsageInput,
|
|
848
849
|
ResyncIntegrationInput,
|
|
849
850
|
RevokePromotionalEntitlementInput,
|
|
851
|
+
RevokePromotionalEntitlementsGroupInput,
|
|
850
852
|
SalesforceCredentialsInput,
|
|
851
853
|
SetAccessRolesInput,
|
|
852
854
|
SetBasePlanOnPlanInput,
|
|
@@ -919,6 +921,7 @@ from .input_types import (
|
|
|
919
921
|
UnitsInput,
|
|
920
922
|
UnitTransformationInput,
|
|
921
923
|
UnlinkFeatureGroupFromPackageInput,
|
|
924
|
+
UnlinkPromotionalEntitlementsGroupInput,
|
|
922
925
|
UpdateAccountInput,
|
|
923
926
|
UpdateCouponInput,
|
|
924
927
|
UpdateCreditGrantInput,
|
|
@@ -1385,6 +1388,7 @@ __all__ = [
|
|
|
1385
1388
|
"GrantPromotionalEntitlementInput",
|
|
1386
1389
|
"GrantPromotionalEntitlements",
|
|
1387
1390
|
"GrantPromotionalEntitlementsGrantPromotionalEntitlements",
|
|
1391
|
+
"GrantPromotionalEntitlementsGroupInput",
|
|
1388
1392
|
"GrantPromotionalEntitlementsInput",
|
|
1389
1393
|
"GraphQLClientError",
|
|
1390
1394
|
"GraphQLClientGraphQLError",
|
|
@@ -1646,6 +1650,7 @@ __all__ = [
|
|
|
1646
1650
|
"RevokePromotionalEntitlement",
|
|
1647
1651
|
"RevokePromotionalEntitlementInput",
|
|
1648
1652
|
"RevokePromotionalEntitlementRevokePromotionalEntitlement",
|
|
1653
|
+
"RevokePromotionalEntitlementsGroupInput",
|
|
1649
1654
|
"SalesforceCredentialsInput",
|
|
1650
1655
|
"ScheduleStrategy",
|
|
1651
1656
|
"SetAccessRolesInput",
|
|
@@ -1898,6 +1903,7 @@ __all__ = [
|
|
|
1898
1903
|
"UnitTransformationRound",
|
|
1899
1904
|
"UnitsInput",
|
|
1900
1905
|
"UnlinkFeatureGroupFromPackageInput",
|
|
1906
|
+
"UnlinkPromotionalEntitlementsGroupInput",
|
|
1901
1907
|
"UpdateAccountInput",
|
|
1902
1908
|
"UpdateCouponInput",
|
|
1903
1909
|
"UpdateCreditGrantInput",
|
stigg/generated/fragments.py
CHANGED
|
@@ -230,6 +230,172 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
230
230
|
pass
|
|
231
231
|
|
|
232
232
|
|
|
233
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
234
|
+
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
235
|
+
alias="subscriptionScheduleType"
|
|
236
|
+
)
|
|
237
|
+
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
238
|
+
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
239
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
240
|
+
alias="targetPackage", default=None
|
|
241
|
+
)
|
|
242
|
+
schedule_variables: Optional[
|
|
243
|
+
Annotated[
|
|
244
|
+
Union[
|
|
245
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
246
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
247
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
248
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
249
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
250
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
251
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
252
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
253
|
+
],
|
|
254
|
+
Field(discriminator="typename__"),
|
|
255
|
+
]
|
|
256
|
+
] = Field(alias="scheduleVariables", default=None)
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
260
|
+
id: Any
|
|
261
|
+
ref_id: str = Field(alias="refId")
|
|
262
|
+
display_name: str = Field(alias="displayName")
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
266
|
+
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
267
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
268
|
+
new_quantity: float = Field(alias="newQuantity")
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
272
|
+
BaseModel
|
|
273
|
+
):
|
|
274
|
+
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
275
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
276
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
280
|
+
BaseModel
|
|
281
|
+
):
|
|
282
|
+
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
283
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
287
|
+
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
291
|
+
BaseModel
|
|
292
|
+
):
|
|
293
|
+
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
294
|
+
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
295
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
296
|
+
billable_features: Optional[
|
|
297
|
+
List[
|
|
298
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
299
|
+
]
|
|
300
|
+
] = Field(alias="billableFeatures", default=None)
|
|
301
|
+
addons: Optional[
|
|
302
|
+
List[
|
|
303
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
304
|
+
]
|
|
305
|
+
] = Field(default=None)
|
|
306
|
+
price_overrides: Optional[
|
|
307
|
+
List[
|
|
308
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
309
|
+
]
|
|
310
|
+
] = Field(alias="priceOverrides", default=None)
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
314
|
+
BaseModel
|
|
315
|
+
):
|
|
316
|
+
feature_id: str = Field(alias="featureId")
|
|
317
|
+
quantity: float
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
321
|
+
BaseModel
|
|
322
|
+
):
|
|
323
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
324
|
+
quantity: float
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
328
|
+
BaseModel
|
|
329
|
+
):
|
|
330
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
331
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
332
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
336
|
+
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
337
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
338
|
+
change_type: PlanChangeType = Field(alias="changeType")
|
|
339
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
340
|
+
billable_features: Optional[
|
|
341
|
+
List[
|
|
342
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
343
|
+
]
|
|
344
|
+
] = Field(alias="billableFeatures", default=None)
|
|
345
|
+
addons: Optional[
|
|
346
|
+
List[
|
|
347
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
348
|
+
]
|
|
349
|
+
] = Field(default=None)
|
|
350
|
+
price_overrides: Optional[
|
|
351
|
+
List[
|
|
352
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
353
|
+
]
|
|
354
|
+
] = Field(alias="priceOverrides", default=None)
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
358
|
+
BaseModel
|
|
359
|
+
):
|
|
360
|
+
feature_id: str = Field(alias="featureId")
|
|
361
|
+
quantity: float
|
|
362
|
+
|
|
363
|
+
|
|
364
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
365
|
+
BaseModel
|
|
366
|
+
):
|
|
367
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
368
|
+
quantity: float
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
372
|
+
BaseModel
|
|
373
|
+
):
|
|
374
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
375
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
376
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
380
|
+
BaseModel
|
|
381
|
+
):
|
|
382
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
383
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
384
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
388
|
+
BaseModel
|
|
389
|
+
):
|
|
390
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
391
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
392
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
class CustomerResourceFragment(BaseModel):
|
|
396
|
+
resource_id: str = Field(alias="resourceId")
|
|
397
|
+
|
|
398
|
+
|
|
233
399
|
class SlimCustomerFragment(BaseModel):
|
|
234
400
|
id: Any
|
|
235
401
|
name: Optional[str] = Field(default=None)
|
|
@@ -247,6 +413,34 @@ class SlimCustomerFragment(BaseModel):
|
|
|
247
413
|
)
|
|
248
414
|
|
|
249
415
|
|
|
416
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
417
|
+
billing_id: str = Field(alias="billingId")
|
|
418
|
+
status: SubscriptionInvoiceStatus
|
|
419
|
+
created_at: Any = Field(alias="createdAt")
|
|
420
|
+
due_date: Optional[Any] = Field(alias="dueDate", default=None)
|
|
421
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
422
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
423
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
424
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
425
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
426
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
427
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
428
|
+
alias="billingReason", default=None
|
|
429
|
+
)
|
|
430
|
+
currency: Optional[str] = Field(default=None)
|
|
431
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
432
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
433
|
+
alias="subTotalExcludingTax", default=None
|
|
434
|
+
)
|
|
435
|
+
total: Optional[float] = Field(default=None)
|
|
436
|
+
total_excluding_tax: Optional[float] = Field(
|
|
437
|
+
alias="totalExcludingTax", default=None
|
|
438
|
+
)
|
|
439
|
+
tax: Optional[float] = Field(default=None)
|
|
440
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
441
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
442
|
+
|
|
443
|
+
|
|
250
444
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
251
445
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
252
446
|
alias="subscriptionScheduleType"
|
|
@@ -401,10 +595,6 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
401
595
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
402
596
|
|
|
403
597
|
|
|
404
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
405
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
406
|
-
|
|
407
|
-
|
|
408
598
|
class TotalPriceFragment(BaseModel):
|
|
409
599
|
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
410
600
|
total: "TotalPriceFragmentTotal"
|
|
@@ -494,244 +684,54 @@ class PlanFragment(BaseModel):
|
|
|
494
684
|
)
|
|
495
685
|
|
|
496
686
|
|
|
497
|
-
class PlanFragmentProduct(ProductFragment):
|
|
498
|
-
pass
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
502
|
-
ref_id: str = Field(alias="refId")
|
|
503
|
-
display_name: str = Field(alias="displayName")
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
507
|
-
pass
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
511
|
-
pass
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
515
|
-
pass
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
519
|
-
pass
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
class PlanFragmentPrices(PriceFragment):
|
|
523
|
-
pass
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
527
|
-
pass
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
531
|
-
duration: float
|
|
532
|
-
units: TrialPeriodUnits
|
|
533
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
534
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
535
|
-
alias="trialEndBehavior", default=None
|
|
536
|
-
)
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
540
|
-
limit: float
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
class SubscriptionScheduledUpdateData(BaseModel):
|
|
544
|
-
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
545
|
-
alias="subscriptionScheduleType"
|
|
546
|
-
)
|
|
547
|
-
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
548
|
-
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
549
|
-
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
550
|
-
alias="targetPackage", default=None
|
|
551
|
-
)
|
|
552
|
-
schedule_variables: Optional[
|
|
553
|
-
Annotated[
|
|
554
|
-
Union[
|
|
555
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
556
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
557
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
558
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
559
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
560
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
561
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
562
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
563
|
-
],
|
|
564
|
-
Field(discriminator="typename__"),
|
|
565
|
-
]
|
|
566
|
-
] = Field(alias="scheduleVariables", default=None)
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
570
|
-
id: Any
|
|
571
|
-
ref_id: str = Field(alias="refId")
|
|
572
|
-
display_name: str = Field(alias="displayName")
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
576
|
-
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
577
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
578
|
-
new_quantity: float = Field(alias="newQuantity")
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
582
|
-
BaseModel
|
|
583
|
-
):
|
|
584
|
-
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
585
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
586
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
590
|
-
BaseModel
|
|
591
|
-
):
|
|
592
|
-
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
593
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
597
|
-
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
601
|
-
BaseModel
|
|
602
|
-
):
|
|
603
|
-
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
604
|
-
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
605
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
606
|
-
billable_features: Optional[
|
|
607
|
-
List[
|
|
608
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
609
|
-
]
|
|
610
|
-
] = Field(alias="billableFeatures", default=None)
|
|
611
|
-
addons: Optional[
|
|
612
|
-
List[
|
|
613
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
614
|
-
]
|
|
615
|
-
] = Field(default=None)
|
|
616
|
-
price_overrides: Optional[
|
|
617
|
-
List[
|
|
618
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
619
|
-
]
|
|
620
|
-
] = Field(alias="priceOverrides", default=None)
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
624
|
-
BaseModel
|
|
625
|
-
):
|
|
626
|
-
feature_id: str = Field(alias="featureId")
|
|
627
|
-
quantity: float
|
|
628
|
-
|
|
687
|
+
class PlanFragmentProduct(ProductFragment):
|
|
688
|
+
pass
|
|
629
689
|
|
|
630
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
631
|
-
BaseModel
|
|
632
|
-
):
|
|
633
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
634
|
-
quantity: float
|
|
635
690
|
|
|
691
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
692
|
+
ref_id: str = Field(alias="refId")
|
|
693
|
+
display_name: str = Field(alias="displayName")
|
|
636
694
|
|
|
637
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
638
|
-
BaseModel
|
|
639
|
-
):
|
|
640
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
641
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
642
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
643
695
|
|
|
696
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
697
|
+
pass
|
|
644
698
|
|
|
645
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
646
|
-
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
647
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
648
|
-
change_type: PlanChangeType = Field(alias="changeType")
|
|
649
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
650
|
-
billable_features: Optional[
|
|
651
|
-
List[
|
|
652
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
653
|
-
]
|
|
654
|
-
] = Field(alias="billableFeatures", default=None)
|
|
655
|
-
addons: Optional[
|
|
656
|
-
List[
|
|
657
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
658
|
-
]
|
|
659
|
-
] = Field(default=None)
|
|
660
|
-
price_overrides: Optional[
|
|
661
|
-
List[
|
|
662
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
663
|
-
]
|
|
664
|
-
] = Field(alias="priceOverrides", default=None)
|
|
665
699
|
|
|
700
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
701
|
+
pass
|
|
666
702
|
|
|
667
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
668
|
-
BaseModel
|
|
669
|
-
):
|
|
670
|
-
feature_id: str = Field(alias="featureId")
|
|
671
|
-
quantity: float
|
|
672
703
|
|
|
704
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
705
|
+
pass
|
|
673
706
|
|
|
674
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
675
|
-
BaseModel
|
|
676
|
-
):
|
|
677
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
678
|
-
quantity: float
|
|
679
707
|
|
|
708
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
709
|
+
pass
|
|
680
710
|
|
|
681
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
682
|
-
BaseModel
|
|
683
|
-
):
|
|
684
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
685
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
686
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
687
711
|
|
|
712
|
+
class PlanFragmentPrices(PriceFragment):
|
|
713
|
+
pass
|
|
688
714
|
|
|
689
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
690
|
-
BaseModel
|
|
691
|
-
):
|
|
692
|
-
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
693
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
694
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
695
715
|
|
|
716
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
717
|
+
pass
|
|
696
718
|
|
|
697
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
698
|
-
BaseModel
|
|
699
|
-
):
|
|
700
|
-
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
701
|
-
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
702
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
703
719
|
|
|
720
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
721
|
+
duration: float
|
|
722
|
+
units: TrialPeriodUnits
|
|
723
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
724
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
725
|
+
alias="trialEndBehavior", default=None
|
|
726
|
+
)
|
|
704
727
|
|
|
705
|
-
class CustomerResourceFragment(BaseModel):
|
|
706
|
-
resource_id: str = Field(alias="resourceId")
|
|
707
728
|
|
|
729
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
730
|
+
limit: float
|
|
708
731
|
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
created_at: Any = Field(alias="createdAt")
|
|
713
|
-
due_date: Optional[Any] = Field(alias="dueDate", default=None)
|
|
714
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
715
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
716
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
717
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
718
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
719
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
720
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
721
|
-
alias="billingReason", default=None
|
|
722
|
-
)
|
|
723
|
-
currency: Optional[str] = Field(default=None)
|
|
724
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
725
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
726
|
-
alias="subTotalExcludingTax", default=None
|
|
727
|
-
)
|
|
728
|
-
total: Optional[float] = Field(default=None)
|
|
729
|
-
total_excluding_tax: Optional[float] = Field(
|
|
730
|
-
alias="totalExcludingTax", default=None
|
|
731
|
-
)
|
|
732
|
-
tax: Optional[float] = Field(default=None)
|
|
733
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
734
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
732
|
+
|
|
733
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
734
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
735
735
|
|
|
736
736
|
|
|
737
737
|
class SubscriptionFragment(BaseModel):
|
|
@@ -1005,6 +1005,35 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
1005
1005
|
)
|
|
1006
1006
|
|
|
1007
1007
|
|
|
1008
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
1009
|
+
status: PromotionalEntitlementStatus
|
|
1010
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1011
|
+
feature_id: Any = Field(alias="featureId")
|
|
1012
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1013
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1014
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1015
|
+
alias="resetPeriod", default=None
|
|
1016
|
+
)
|
|
1017
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1018
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1019
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1020
|
+
|
|
1021
|
+
|
|
1022
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1023
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1024
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1025
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1026
|
+
feature_units_plural: Optional[str] = Field(
|
|
1027
|
+
alias="featureUnitsPlural", default=None
|
|
1028
|
+
)
|
|
1029
|
+
display_name: str = Field(alias="displayName")
|
|
1030
|
+
description: Optional[str] = Field(default=None)
|
|
1031
|
+
ref_id: str = Field(alias="refId")
|
|
1032
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1033
|
+
alias="additionalMetaData", default=None
|
|
1034
|
+
)
|
|
1035
|
+
|
|
1036
|
+
|
|
1008
1037
|
class CouponFragment(BaseModel):
|
|
1009
1038
|
id: Any
|
|
1010
1039
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1039,35 +1068,6 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1039
1068
|
status: SyncStatus
|
|
1040
1069
|
|
|
1041
1070
|
|
|
1042
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
1043
|
-
status: PromotionalEntitlementStatus
|
|
1044
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1045
|
-
feature_id: Any = Field(alias="featureId")
|
|
1046
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1047
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1048
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1049
|
-
alias="resetPeriod", default=None
|
|
1050
|
-
)
|
|
1051
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1052
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1053
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1057
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1058
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1059
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1060
|
-
feature_units_plural: Optional[str] = Field(
|
|
1061
|
-
alias="featureUnitsPlural", default=None
|
|
1062
|
-
)
|
|
1063
|
-
display_name: str = Field(alias="displayName")
|
|
1064
|
-
description: Optional[str] = Field(default=None)
|
|
1065
|
-
ref_id: str = Field(alias="refId")
|
|
1066
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1067
|
-
alias="additionalMetaData", default=None
|
|
1068
|
-
)
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
1071
|
class CustomerFragment(SlimCustomerFragment):
|
|
1072
1072
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1073
1073
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1318,41 +1318,6 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1318
1318
|
pass
|
|
1319
1319
|
|
|
1320
1320
|
|
|
1321
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1322
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1323
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1324
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1325
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1326
|
-
default=None
|
|
1327
|
-
)
|
|
1328
|
-
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1329
|
-
alias="creditRate", default=None
|
|
1330
|
-
)
|
|
1331
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1332
|
-
default=None
|
|
1333
|
-
)
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1337
|
-
amount: float
|
|
1338
|
-
currency: Currency
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1342
|
-
amount: float
|
|
1343
|
-
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1347
|
-
id: Any
|
|
1348
|
-
ref_id: str = Field(alias="refId")
|
|
1349
|
-
display_name: str = Field(alias="displayName")
|
|
1350
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1351
|
-
feature_units_plural: Optional[str] = Field(
|
|
1352
|
-
alias="featureUnitsPlural", default=None
|
|
1353
|
-
)
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
1321
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1357
1322
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1358
1323
|
alias="subscriptionScheduleType"
|
|
@@ -1529,6 +1494,41 @@ class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
|
1529
1494
|
quantity: int
|
|
1530
1495
|
|
|
1531
1496
|
|
|
1497
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1498
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1499
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1500
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1501
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1502
|
+
default=None
|
|
1503
|
+
)
|
|
1504
|
+
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1505
|
+
alias="creditRate", default=None
|
|
1506
|
+
)
|
|
1507
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1508
|
+
default=None
|
|
1509
|
+
)
|
|
1510
|
+
|
|
1511
|
+
|
|
1512
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1513
|
+
amount: float
|
|
1514
|
+
currency: Currency
|
|
1515
|
+
|
|
1516
|
+
|
|
1517
|
+
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1518
|
+
amount: float
|
|
1519
|
+
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
1520
|
+
|
|
1521
|
+
|
|
1522
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1523
|
+
id: Any
|
|
1524
|
+
ref_id: str = Field(alias="refId")
|
|
1525
|
+
display_name: str = Field(alias="displayName")
|
|
1526
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1527
|
+
feature_units_plural: Optional[str] = Field(
|
|
1528
|
+
alias="featureUnitsPlural", default=None
|
|
1529
|
+
)
|
|
1530
|
+
|
|
1531
|
+
|
|
1532
1532
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1533
1533
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1534
1534
|
plan_id: str = Field(alias="planId")
|
|
@@ -2925,16 +2925,16 @@ PriceTierFragment.model_rebuild()
|
|
|
2925
2925
|
PriceFragment.model_rebuild()
|
|
2926
2926
|
OveragePriceFragment.model_rebuild()
|
|
2927
2927
|
AddonFragment.model_rebuild()
|
|
2928
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2929
|
+
CustomerResourceFragment.model_rebuild()
|
|
2928
2930
|
SlimCustomerFragment.model_rebuild()
|
|
2931
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2929
2932
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2930
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2931
2933
|
TotalPriceFragment.model_rebuild()
|
|
2932
2934
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2933
2935
|
ProductFragment.model_rebuild()
|
|
2934
2936
|
PlanFragment.model_rebuild()
|
|
2935
|
-
|
|
2936
|
-
CustomerResourceFragment.model_rebuild()
|
|
2937
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2937
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2938
2938
|
SubscriptionFragment.model_rebuild()
|
|
2939
2939
|
FeatureFragment.model_rebuild()
|
|
2940
2940
|
EntitlementFragment.model_rebuild()
|
|
@@ -2942,8 +2942,8 @@ ApplySubscriptionFragment.model_rebuild()
|
|
|
2942
2942
|
FontVariantFragment.model_rebuild()
|
|
2943
2943
|
TypographyConfigurationFragment.model_rebuild()
|
|
2944
2944
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2945
|
-
CouponFragment.model_rebuild()
|
|
2946
2945
|
PromotionalEntitlementFragment.model_rebuild()
|
|
2946
|
+
CouponFragment.model_rebuild()
|
|
2947
2947
|
CustomerFragment.model_rebuild()
|
|
2948
2948
|
CheckoutStateFragment.model_rebuild()
|
|
2949
2949
|
CreditGrantFragment.model_rebuild()
|
|
@@ -2951,9 +2951,9 @@ CreditsBalanceSummaryFragment.model_rebuild()
|
|
|
2951
2951
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2952
2952
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2953
2953
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2954
|
-
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2955
2954
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2956
2955
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2956
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2957
2957
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2958
2958
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2959
2959
|
CustomerPortalFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -2074,6 +2074,15 @@ class GrantPromotionalEntitlementInput(BaseModel):
|
|
|
2074
2074
|
)
|
|
2075
2075
|
|
|
2076
2076
|
|
|
2077
|
+
class GrantPromotionalEntitlementsGroupInput(BaseModel):
|
|
2078
|
+
customer_id: str = Field(alias="customerId")
|
|
2079
|
+
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
2080
|
+
feature_group_id: Any = Field(alias="featureGroupId")
|
|
2081
|
+
promotional_entitlements: List["GrantPromotionalEntitlementInput"] = Field(
|
|
2082
|
+
alias="promotionalEntitlements"
|
|
2083
|
+
)
|
|
2084
|
+
|
|
2085
|
+
|
|
2077
2086
|
class GrantPromotionalEntitlementsInput(BaseModel):
|
|
2078
2087
|
customer_id: str = Field(alias="customerId")
|
|
2079
2088
|
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
@@ -3265,6 +3274,7 @@ class PromotionalEntitlementInput(BaseModel):
|
|
|
3265
3274
|
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
3266
3275
|
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
3267
3276
|
environment_id: Any = Field(alias="environmentId")
|
|
3277
|
+
feature_group_id: Optional[Any] = Field(alias="featureGroupId", default=None)
|
|
3268
3278
|
feature_id: str = Field(alias="featureId")
|
|
3269
3279
|
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
3270
3280
|
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
@@ -3633,6 +3643,12 @@ class RevokePromotionalEntitlementInput(BaseModel):
|
|
|
3633
3643
|
feature_id: str = Field(alias="featureId")
|
|
3634
3644
|
|
|
3635
3645
|
|
|
3646
|
+
class RevokePromotionalEntitlementsGroupInput(BaseModel):
|
|
3647
|
+
customer_id: str = Field(alias="customerId")
|
|
3648
|
+
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
3649
|
+
feature_group_id: Any = Field(alias="featureGroupId")
|
|
3650
|
+
|
|
3651
|
+
|
|
3636
3652
|
class SalesforceCredentialsInput(BaseModel):
|
|
3637
3653
|
domain: Optional[str] = None
|
|
3638
3654
|
|
|
@@ -3914,6 +3930,9 @@ class SubscriptionCancelReasonFilterComparison(BaseModel):
|
|
|
3914
3930
|
|
|
3915
3931
|
|
|
3916
3932
|
class SubscriptionCancellationInput(BaseModel):
|
|
3933
|
+
await_subscription_cancellation: Optional[bool] = Field(
|
|
3934
|
+
alias="awaitSubscriptionCancellation", default=True
|
|
3935
|
+
)
|
|
3917
3936
|
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
3918
3937
|
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
3919
3938
|
prorate: Optional[bool] = None
|
|
@@ -4558,6 +4577,12 @@ class UnlinkFeatureGroupFromPackageInput(BaseModel):
|
|
|
4558
4577
|
package_id: Any = Field(alias="packageId")
|
|
4559
4578
|
|
|
4560
4579
|
|
|
4580
|
+
class UnlinkPromotionalEntitlementsGroupInput(BaseModel):
|
|
4581
|
+
customer_id: str = Field(alias="customerId")
|
|
4582
|
+
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
4583
|
+
feature_group_id: Any = Field(alias="featureGroupId")
|
|
4584
|
+
|
|
4585
|
+
|
|
4561
4586
|
class UpdateAccountInput(BaseModel):
|
|
4562
4587
|
access_method: Optional[AccountAccessMethod] = Field(
|
|
4563
4588
|
alias="accessMethod", 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=IeT9vYKGoOkdNAwqm8twvLl2bY81EWGKg8iMZWrlyrk,74024
|
|
110
110
|
stigg/generated/apply_subscription.py,sha256=Vbs-QZZxN16pUpt3Hp7Jvvcc5o_8xwJK9oTLQQjH0ZA,451
|
|
111
111
|
stigg/generated/archive_customer.py,sha256=3N3iBiT2Vvzfb0ckV3o57A6lmJ_ef7JNPaMX_Jtcg6c,396
|
|
112
112
|
stigg/generated/async_base_client.py,sha256=zqd6IhYxpalyA6KQkeGhXgSurC0vXSwSWmSlM2zZ0VM,12593
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=4wSfEXeZZqMSjsCsSG8baVg3Si8sjzV3bp_unHWHBtQ,3800
|
|
|
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=252lBJk5HFWUyekjBNRO50po4Q7n8B6JOJtb3yK4vs8,106791
|
|
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
|
|
@@ -148,7 +148,7 @@ stigg/generated/grant_promotional_entitlements.py,sha256=72PRYuqecL-0SkWb7deygkh
|
|
|
148
148
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
149
149
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
150
150
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
151
|
-
stigg/generated/input_types.py,sha256=
|
|
151
|
+
stigg/generated/input_types.py,sha256=I4wHmB3YgGbzLRfYbTBO11FC0Rhdcxj2L6Fx0j1bMpg,207301
|
|
152
152
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
153
153
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
154
154
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -164,7 +164,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
164
164
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
165
165
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
166
166
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
167
|
-
stigg_api_client_v2-3.
|
|
168
|
-
stigg_api_client_v2-3.
|
|
169
|
-
stigg_api_client_v2-3.
|
|
170
|
-
stigg_api_client_v2-3.
|
|
167
|
+
stigg_api_client_v2-3.59.2.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
168
|
+
stigg_api_client_v2-3.59.2.dist-info/METADATA,sha256=6Jxfn5OZEvu6beuLp8ztbiYjI55dWSJbddfXtM7XHSE,2257
|
|
169
|
+
stigg_api_client_v2-3.59.2.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
170
|
+
stigg_api_client_v2-3.59.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|