stigg-api-client-v2 2.416.0__py3-none-any.whl → 2.418.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/enums.py +2 -0
- stigg/generated/fragments.py +207 -207
- stigg/generated/input_types.py +36 -0
- {stigg_api_client_v2-2.416.0.dist-info → stigg_api_client_v2-2.418.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.416.0.dist-info → stigg_api_client_v2-2.418.0.dist-info}/RECORD +7 -7
- {stigg_api_client_v2-2.416.0.dist-info → stigg_api_client_v2-2.418.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.416.0.dist-info → stigg_api_client_v2-2.418.0.dist-info}/WHEEL +0 -0
stigg/generated/enums.py
CHANGED
|
@@ -292,6 +292,7 @@ class CustomerSortFields(str, Enum):
|
|
|
292
292
|
id = "id"
|
|
293
293
|
name = "name"
|
|
294
294
|
refId = "refId"
|
|
295
|
+
salesforceId = "salesforceId"
|
|
295
296
|
searchQuery = "searchQuery"
|
|
296
297
|
updatedAt = "updatedAt"
|
|
297
298
|
|
|
@@ -317,6 +318,7 @@ class CustomerSubscriptionSortFields(str, Enum):
|
|
|
317
318
|
pricingType = "pricingType"
|
|
318
319
|
refId = "refId"
|
|
319
320
|
resourceId = "resourceId"
|
|
321
|
+
salesforceId = "salesforceId"
|
|
320
322
|
startDate = "startDate"
|
|
321
323
|
status = "status"
|
|
322
324
|
subscriptionId = "subscriptionId"
|
stigg/generated/fragments.py
CHANGED
|
@@ -113,33 +113,29 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
113
113
|
currency: Currency
|
|
114
114
|
|
|
115
115
|
|
|
116
|
-
class
|
|
116
|
+
class OveragePriceFragment(BaseModel):
|
|
117
117
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
118
118
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
119
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
120
119
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
121
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
122
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
123
120
|
billing_country_code: Optional[str] = Field(
|
|
124
121
|
alias="billingCountryCode", default=None
|
|
125
122
|
)
|
|
126
|
-
price: Optional["
|
|
123
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
127
124
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
128
|
-
tiers: Optional[List["
|
|
129
|
-
feature: Optional["
|
|
130
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
125
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
126
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
131
127
|
|
|
132
128
|
|
|
133
|
-
class
|
|
129
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
134
130
|
amount: float
|
|
135
131
|
currency: Currency
|
|
136
132
|
|
|
137
133
|
|
|
138
|
-
class
|
|
134
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
139
135
|
pass
|
|
140
136
|
|
|
141
137
|
|
|
142
|
-
class
|
|
138
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
143
139
|
ref_id: str = Field(alias="refId")
|
|
144
140
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
145
141
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -149,29 +145,33 @@ class PriceFragmentFeature(BaseModel):
|
|
|
149
145
|
description: Optional[str] = Field(default=None)
|
|
150
146
|
|
|
151
147
|
|
|
152
|
-
class
|
|
148
|
+
class PriceFragment(BaseModel):
|
|
153
149
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
154
150
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
151
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
155
152
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
153
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
154
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
156
155
|
billing_country_code: Optional[str] = Field(
|
|
157
156
|
alias="billingCountryCode", default=None
|
|
158
157
|
)
|
|
159
|
-
price: Optional["
|
|
158
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
160
159
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
161
|
-
tiers: Optional[List["
|
|
162
|
-
feature: Optional["
|
|
160
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
161
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
162
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
163
163
|
|
|
164
164
|
|
|
165
|
-
class
|
|
165
|
+
class PriceFragmentPrice(BaseModel):
|
|
166
166
|
amount: float
|
|
167
167
|
currency: Currency
|
|
168
168
|
|
|
169
169
|
|
|
170
|
-
class
|
|
170
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
171
171
|
pass
|
|
172
172
|
|
|
173
173
|
|
|
174
|
-
class
|
|
174
|
+
class PriceFragmentFeature(BaseModel):
|
|
175
175
|
ref_id: str = Field(alias="refId")
|
|
176
176
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
177
177
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -216,31 +216,25 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
216
216
|
pass
|
|
217
217
|
|
|
218
218
|
|
|
219
|
-
class
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
219
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
220
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
class SlimCustomerFragment(BaseModel):
|
|
224
|
+
id: str
|
|
225
|
+
name: Optional[str] = Field(default=None)
|
|
226
|
+
email: Optional[str] = Field(default=None)
|
|
227
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
223
228
|
updated_at: Any = Field(alias="updatedAt")
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
230
|
-
alias="billingReason", default=None
|
|
231
|
-
)
|
|
232
|
-
currency: Optional[str] = Field(default=None)
|
|
233
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
234
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
235
|
-
alias="subTotalExcludingTax", default=None
|
|
229
|
+
ref_id: str = Field(alias="refId")
|
|
230
|
+
customer_id: str = Field(alias="customerId")
|
|
231
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
232
|
+
additional_meta_data: Optional[Any] = Field(
|
|
233
|
+
alias="additionalMetaData", default=None
|
|
236
234
|
)
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
alias="totalExcludingTax", default=None
|
|
235
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
236
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
240
237
|
)
|
|
241
|
-
tax: Optional[float] = Field(default=None)
|
|
242
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
243
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
244
238
|
|
|
245
239
|
|
|
246
240
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
@@ -405,6 +399,33 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
405
399
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
406
400
|
|
|
407
401
|
|
|
402
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
403
|
+
billing_id: str = Field(alias="billingId")
|
|
404
|
+
status: SubscriptionInvoiceStatus
|
|
405
|
+
created_at: Any = Field(alias="createdAt")
|
|
406
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
407
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
408
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
409
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
410
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
411
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
412
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
413
|
+
alias="billingReason", default=None
|
|
414
|
+
)
|
|
415
|
+
currency: Optional[str] = Field(default=None)
|
|
416
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
417
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
418
|
+
alias="subTotalExcludingTax", default=None
|
|
419
|
+
)
|
|
420
|
+
total: Optional[float] = Field(default=None)
|
|
421
|
+
total_excluding_tax: Optional[float] = Field(
|
|
422
|
+
alias="totalExcludingTax", default=None
|
|
423
|
+
)
|
|
424
|
+
tax: Optional[float] = Field(default=None)
|
|
425
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
426
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
427
|
+
|
|
428
|
+
|
|
408
429
|
class TotalPriceFragment(BaseModel):
|
|
409
430
|
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
410
431
|
total: "TotalPriceFragmentTotal"
|
|
@@ -420,126 +441,6 @@ class TotalPriceFragmentTotal(BaseModel):
|
|
|
420
441
|
currency: Currency
|
|
421
442
|
|
|
422
443
|
|
|
423
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
424
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
425
|
-
display_name: str = Field(alias="displayName")
|
|
426
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
427
|
-
default=None
|
|
428
|
-
)
|
|
429
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
433
|
-
pass
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
437
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
438
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
class ProductFragment(BaseModel):
|
|
442
|
-
ref_id: str = Field(alias="refId")
|
|
443
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
444
|
-
description: Optional[str] = Field(default=None)
|
|
445
|
-
additional_meta_data: Optional[Any] = Field(
|
|
446
|
-
alias="additionalMetaData", default=None
|
|
447
|
-
)
|
|
448
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
452
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
453
|
-
alias="downgradePlan", default=None
|
|
454
|
-
)
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
458
|
-
ref_id: str = Field(alias="refId")
|
|
459
|
-
display_name: str = Field(alias="displayName")
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
class PlanFragment(BaseModel):
|
|
463
|
-
id: str
|
|
464
|
-
ref_id: str = Field(alias="refId")
|
|
465
|
-
display_name: str = Field(alias="displayName")
|
|
466
|
-
description: Optional[str] = Field(default=None)
|
|
467
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
468
|
-
version_number: int = Field(alias="versionNumber")
|
|
469
|
-
additional_meta_data: Optional[Any] = Field(
|
|
470
|
-
alias="additionalMetaData", default=None
|
|
471
|
-
)
|
|
472
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
473
|
-
alias="hiddenFromWidgets", default=None
|
|
474
|
-
)
|
|
475
|
-
product: "PlanFragmentProduct"
|
|
476
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
477
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
478
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
479
|
-
alias="inheritedEntitlements", default=None
|
|
480
|
-
)
|
|
481
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
482
|
-
alias="compatibleAddons", default=None
|
|
483
|
-
)
|
|
484
|
-
compatible_package_groups: Optional[
|
|
485
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
486
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
487
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
488
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
489
|
-
alias="overagePrices", default=None
|
|
490
|
-
)
|
|
491
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
492
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
493
|
-
alias="defaultTrialConfig", default=None
|
|
494
|
-
)
|
|
495
|
-
|
|
496
|
-
|
|
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
444
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
544
445
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
545
446
|
alias="subscriptionScheduleType"
|
|
@@ -694,29 +595,128 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
694
595
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
695
596
|
|
|
696
597
|
|
|
697
|
-
class
|
|
698
|
-
|
|
598
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
599
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
600
|
+
display_name: str = Field(alias="displayName")
|
|
601
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
602
|
+
default=None
|
|
603
|
+
)
|
|
604
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
699
605
|
|
|
700
606
|
|
|
701
|
-
class
|
|
702
|
-
|
|
607
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
608
|
+
pass
|
|
703
609
|
|
|
704
610
|
|
|
705
|
-
class
|
|
611
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
612
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
613
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
614
|
+
|
|
615
|
+
|
|
616
|
+
class ProductFragment(BaseModel):
|
|
617
|
+
ref_id: str = Field(alias="refId")
|
|
618
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
619
|
+
description: Optional[str] = Field(default=None)
|
|
620
|
+
additional_meta_data: Optional[Any] = Field(
|
|
621
|
+
alias="additionalMetaData", default=None
|
|
622
|
+
)
|
|
623
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
624
|
+
|
|
625
|
+
|
|
626
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
627
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
628
|
+
alias="downgradePlan", default=None
|
|
629
|
+
)
|
|
630
|
+
|
|
631
|
+
|
|
632
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
633
|
+
ref_id: str = Field(alias="refId")
|
|
634
|
+
display_name: str = Field(alias="displayName")
|
|
635
|
+
|
|
636
|
+
|
|
637
|
+
class PlanFragment(BaseModel):
|
|
706
638
|
id: str
|
|
707
|
-
name: Optional[str] = Field(default=None)
|
|
708
|
-
email: Optional[str] = Field(default=None)
|
|
709
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
710
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
711
639
|
ref_id: str = Field(alias="refId")
|
|
712
|
-
|
|
640
|
+
display_name: str = Field(alias="displayName")
|
|
641
|
+
description: Optional[str] = Field(default=None)
|
|
713
642
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
643
|
+
version_number: int = Field(alias="versionNumber")
|
|
714
644
|
additional_meta_data: Optional[Any] = Field(
|
|
715
645
|
alias="additionalMetaData", default=None
|
|
716
646
|
)
|
|
717
|
-
|
|
718
|
-
alias="
|
|
647
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
648
|
+
alias="hiddenFromWidgets", default=None
|
|
649
|
+
)
|
|
650
|
+
product: "PlanFragmentProduct"
|
|
651
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
652
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
653
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
654
|
+
alias="inheritedEntitlements", default=None
|
|
655
|
+
)
|
|
656
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
657
|
+
alias="compatibleAddons", default=None
|
|
658
|
+
)
|
|
659
|
+
compatible_package_groups: Optional[
|
|
660
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
661
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
662
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
663
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
664
|
+
alias="overagePrices", default=None
|
|
719
665
|
)
|
|
666
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
667
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
668
|
+
alias="defaultTrialConfig", default=None
|
|
669
|
+
)
|
|
670
|
+
|
|
671
|
+
|
|
672
|
+
class PlanFragmentProduct(ProductFragment):
|
|
673
|
+
pass
|
|
674
|
+
|
|
675
|
+
|
|
676
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
677
|
+
ref_id: str = Field(alias="refId")
|
|
678
|
+
display_name: str = Field(alias="displayName")
|
|
679
|
+
|
|
680
|
+
|
|
681
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
682
|
+
pass
|
|
683
|
+
|
|
684
|
+
|
|
685
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
686
|
+
pass
|
|
687
|
+
|
|
688
|
+
|
|
689
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
690
|
+
pass
|
|
691
|
+
|
|
692
|
+
|
|
693
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
694
|
+
pass
|
|
695
|
+
|
|
696
|
+
|
|
697
|
+
class PlanFragmentPrices(PriceFragment):
|
|
698
|
+
pass
|
|
699
|
+
|
|
700
|
+
|
|
701
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
702
|
+
pass
|
|
703
|
+
|
|
704
|
+
|
|
705
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
706
|
+
duration: float
|
|
707
|
+
units: TrialPeriodUnits
|
|
708
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
709
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
710
|
+
alias="trialEndBehavior", default=None
|
|
711
|
+
)
|
|
712
|
+
|
|
713
|
+
|
|
714
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
715
|
+
limit: float
|
|
716
|
+
|
|
717
|
+
|
|
718
|
+
class CustomerResourceFragment(BaseModel):
|
|
719
|
+
resource_id: str = Field(alias="resourceId")
|
|
720
720
|
|
|
721
721
|
|
|
722
722
|
class SubscriptionFragment(BaseModel):
|
|
@@ -1257,11 +1257,31 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1257
1257
|
pass
|
|
1258
1258
|
|
|
1259
1259
|
|
|
1260
|
-
class
|
|
1261
|
-
|
|
1262
|
-
|
|
1260
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1261
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1262
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1263
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1264
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1265
|
+
default=None
|
|
1266
|
+
)
|
|
1267
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1268
|
+
default=None
|
|
1269
|
+
)
|
|
1270
|
+
|
|
1271
|
+
|
|
1272
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1273
|
+
amount: float
|
|
1274
|
+
currency: Currency
|
|
1275
|
+
|
|
1276
|
+
|
|
1277
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1278
|
+
id: str
|
|
1279
|
+
ref_id: str = Field(alias="refId")
|
|
1263
1280
|
display_name: str = Field(alias="displayName")
|
|
1264
|
-
|
|
1281
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1282
|
+
feature_units_plural: Optional[str] = Field(
|
|
1283
|
+
alias="featureUnitsPlural", default=None
|
|
1284
|
+
)
|
|
1265
1285
|
|
|
1266
1286
|
|
|
1267
1287
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
@@ -1433,31 +1453,11 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1433
1453
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1434
1454
|
|
|
1435
1455
|
|
|
1436
|
-
class
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1440
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1441
|
-
default=None
|
|
1442
|
-
)
|
|
1443
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1444
|
-
default=None
|
|
1445
|
-
)
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1449
|
-
amount: float
|
|
1450
|
-
currency: Currency
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1454
|
-
id: str
|
|
1455
|
-
ref_id: str = Field(alias="refId")
|
|
1456
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1457
|
+
addon_id: str = Field(alias="addonId")
|
|
1458
|
+
description: Optional[str] = Field(default=None)
|
|
1456
1459
|
display_name: str = Field(alias="displayName")
|
|
1457
|
-
|
|
1458
|
-
feature_units_plural: Optional[str] = Field(
|
|
1459
|
-
alias="featureUnitsPlural", default=None
|
|
1460
|
-
)
|
|
1460
|
+
quantity: int
|
|
1461
1461
|
|
|
1462
1462
|
|
|
1463
1463
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
@@ -2772,19 +2772,19 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2772
2772
|
AddonDependencyFragment.model_rebuild()
|
|
2773
2773
|
PackageEntitlementFragment.model_rebuild()
|
|
2774
2774
|
PriceTierFragment.model_rebuild()
|
|
2775
|
-
PriceFragment.model_rebuild()
|
|
2776
2775
|
OveragePriceFragment.model_rebuild()
|
|
2776
|
+
PriceFragment.model_rebuild()
|
|
2777
2777
|
AddonFragment.model_rebuild()
|
|
2778
|
-
|
|
2778
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2779
|
+
SlimCustomerFragment.model_rebuild()
|
|
2779
2780
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2781
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2780
2782
|
TotalPriceFragment.model_rebuild()
|
|
2783
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2781
2784
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2782
2785
|
ProductFragment.model_rebuild()
|
|
2783
2786
|
PlanFragment.model_rebuild()
|
|
2784
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2785
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2786
2787
|
CustomerResourceFragment.model_rebuild()
|
|
2787
|
-
SlimCustomerFragment.model_rebuild()
|
|
2788
2788
|
SubscriptionFragment.model_rebuild()
|
|
2789
2789
|
FeatureFragment.model_rebuild()
|
|
2790
2790
|
EntitlementFragment.model_rebuild()
|
|
@@ -2799,9 +2799,9 @@ CheckoutStateFragment.model_rebuild()
|
|
|
2799
2799
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2800
2800
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2801
2801
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2802
|
-
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2803
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2804
2802
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2803
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2804
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2805
2805
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2806
2806
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2807
2807
|
CustomerPortalFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -543,6 +543,9 @@ class CouponFilterCustomerFilter(BaseModel):
|
|
|
543
543
|
name: Optional["StringFieldComparison"] = None
|
|
544
544
|
or_: Optional[List["CouponFilterCustomerFilter"]] = Field(alias="or", default=None)
|
|
545
545
|
ref_id: Optional["StringFieldComparison"] = Field(alias="refId", default=None)
|
|
546
|
+
salesforce_id: Optional["StringFieldComparison"] = Field(
|
|
547
|
+
alias="salesforceId", default=None
|
|
548
|
+
)
|
|
546
549
|
search_query: Optional["CustomerSearchQueryFilterComparison"] = Field(
|
|
547
550
|
alias="searchQuery", default=None
|
|
548
551
|
)
|
|
@@ -822,6 +825,9 @@ class CustomerFilter(BaseModel):
|
|
|
822
825
|
"CustomerFilterPromotionalEntitlementFilter"
|
|
823
826
|
] = Field(alias="promotionalEntitlements", default=None)
|
|
824
827
|
ref_id: Optional["StringFieldComparison"] = Field(alias="refId", default=None)
|
|
828
|
+
salesforce_id: Optional["StringFieldComparison"] = Field(
|
|
829
|
+
alias="salesforceId", default=None
|
|
830
|
+
)
|
|
825
831
|
search_query: Optional["CustomerSearchQueryFilterComparison"] = Field(
|
|
826
832
|
alias="searchQuery", default=None
|
|
827
833
|
)
|
|
@@ -886,6 +892,9 @@ class CustomerFilterCustomerSubscriptionFilter(BaseModel):
|
|
|
886
892
|
resource_id: Optional["StringFieldComparison"] = Field(
|
|
887
893
|
alias="resourceId", default=None
|
|
888
894
|
)
|
|
895
|
+
salesforce_id: Optional["StringFieldComparison"] = Field(
|
|
896
|
+
alias="salesforceId", default=None
|
|
897
|
+
)
|
|
889
898
|
start_date: Optional["DateFieldComparison"] = Field(alias="startDate", default=None)
|
|
890
899
|
status: Optional["SubscriptionStatusFilterComparison"] = None
|
|
891
900
|
subscription_id: Optional["StringFieldComparison"] = Field(
|
|
@@ -1004,6 +1013,9 @@ class CustomerResourceFilterCustomerFilter(BaseModel):
|
|
|
1004
1013
|
alias="or", default=None
|
|
1005
1014
|
)
|
|
1006
1015
|
ref_id: Optional["StringFieldComparison"] = Field(alias="refId", default=None)
|
|
1016
|
+
salesforce_id: Optional["StringFieldComparison"] = Field(
|
|
1017
|
+
alias="salesforceId", default=None
|
|
1018
|
+
)
|
|
1007
1019
|
search_query: Optional["CustomerSearchQueryFilterComparison"] = Field(
|
|
1008
1020
|
alias="searchQuery", default=None
|
|
1009
1021
|
)
|
|
@@ -1067,6 +1079,9 @@ class CustomerResourceFilterCustomerSubscriptionFilter(BaseModel):
|
|
|
1067
1079
|
resource_id: Optional["StringFieldComparison"] = Field(
|
|
1068
1080
|
alias="resourceId", default=None
|
|
1069
1081
|
)
|
|
1082
|
+
salesforce_id: Optional["StringFieldComparison"] = Field(
|
|
1083
|
+
alias="salesforceId", default=None
|
|
1084
|
+
)
|
|
1070
1085
|
start_date: Optional["DateFieldComparison"] = Field(alias="startDate", default=None)
|
|
1071
1086
|
status: Optional["SubscriptionStatusFilterComparison"] = None
|
|
1072
1087
|
subscription_id: Optional["StringFieldComparison"] = Field(
|
|
@@ -1156,6 +1171,9 @@ class CustomerSubscriptionFilter(BaseModel):
|
|
|
1156
1171
|
resource_id: Optional["StringFieldComparison"] = Field(
|
|
1157
1172
|
alias="resourceId", default=None
|
|
1158
1173
|
)
|
|
1174
|
+
salesforce_id: Optional["StringFieldComparison"] = Field(
|
|
1175
|
+
alias="salesforceId", default=None
|
|
1176
|
+
)
|
|
1159
1177
|
start_date: Optional["DateFieldComparison"] = Field(alias="startDate", default=None)
|
|
1160
1178
|
status: Optional["SubscriptionStatusFilterComparison"] = None
|
|
1161
1179
|
subscription_entitlements: Optional[
|
|
@@ -1198,6 +1216,9 @@ class CustomerSubscriptionFilterCustomerFilter(BaseModel):
|
|
|
1198
1216
|
alias="or", default=None
|
|
1199
1217
|
)
|
|
1200
1218
|
ref_id: Optional["StringFieldComparison"] = Field(alias="refId", default=None)
|
|
1219
|
+
salesforce_id: Optional["StringFieldComparison"] = Field(
|
|
1220
|
+
alias="salesforceId", default=None
|
|
1221
|
+
)
|
|
1201
1222
|
search_query: Optional["CustomerSearchQueryFilterComparison"] = Field(
|
|
1202
1223
|
alias="searchQuery", default=None
|
|
1203
1224
|
)
|
|
@@ -1682,6 +1703,9 @@ class ExperimentFilterCustomerFilter(BaseModel):
|
|
|
1682
1703
|
alias="or", default=None
|
|
1683
1704
|
)
|
|
1684
1705
|
ref_id: Optional["StringFieldComparison"] = Field(alias="refId", default=None)
|
|
1706
|
+
salesforce_id: Optional["StringFieldComparison"] = Field(
|
|
1707
|
+
alias="salesforceId", default=None
|
|
1708
|
+
)
|
|
1685
1709
|
search_query: Optional["CustomerSearchQueryFilterComparison"] = Field(
|
|
1686
1710
|
alias="searchQuery", default=None
|
|
1687
1711
|
)
|
|
@@ -3626,6 +3650,9 @@ class SubscriptionAddonFilterCustomerSubscriptionFilter(BaseModel):
|
|
|
3626
3650
|
resource_id: Optional["StringFieldComparison"] = Field(
|
|
3627
3651
|
alias="resourceId", default=None
|
|
3628
3652
|
)
|
|
3653
|
+
salesforce_id: Optional["StringFieldComparison"] = Field(
|
|
3654
|
+
alias="salesforceId", default=None
|
|
3655
|
+
)
|
|
3629
3656
|
start_date: Optional["DateFieldComparison"] = Field(alias="startDate", default=None)
|
|
3630
3657
|
status: Optional["SubscriptionStatusFilterComparison"] = None
|
|
3631
3658
|
subscription_id: Optional["StringFieldComparison"] = Field(
|
|
@@ -3827,6 +3854,9 @@ class SubscriptionEntitlementFilterCustomerSubscriptionFilter(BaseModel):
|
|
|
3827
3854
|
resource_id: Optional["StringFieldComparison"] = Field(
|
|
3828
3855
|
alias="resourceId", default=None
|
|
3829
3856
|
)
|
|
3857
|
+
salesforce_id: Optional["StringFieldComparison"] = Field(
|
|
3858
|
+
alias="salesforceId", default=None
|
|
3859
|
+
)
|
|
3830
3860
|
start_date: Optional["DateFieldComparison"] = Field(alias="startDate", default=None)
|
|
3831
3861
|
status: Optional["SubscriptionStatusFilterComparison"] = None
|
|
3832
3862
|
subscription_id: Optional["StringFieldComparison"] = Field(
|
|
@@ -4071,6 +4101,9 @@ class SubscriptionPriceFilterCustomerSubscriptionFilter(BaseModel):
|
|
|
4071
4101
|
resource_id: Optional["StringFieldComparison"] = Field(
|
|
4072
4102
|
alias="resourceId", default=None
|
|
4073
4103
|
)
|
|
4104
|
+
salesforce_id: Optional["StringFieldComparison"] = Field(
|
|
4105
|
+
alias="salesforceId", default=None
|
|
4106
|
+
)
|
|
4074
4107
|
start_date: Optional["DateFieldComparison"] = Field(alias="startDate", default=None)
|
|
4075
4108
|
status: Optional["SubscriptionStatusFilterComparison"] = None
|
|
4076
4109
|
subscription_id: Optional["StringFieldComparison"] = Field(
|
|
@@ -4627,6 +4660,9 @@ class UsageMeasurementFilterCustomerFilter(BaseModel):
|
|
|
4627
4660
|
alias="or", default=None
|
|
4628
4661
|
)
|
|
4629
4662
|
ref_id: Optional["StringFieldComparison"] = Field(alias="refId", default=None)
|
|
4663
|
+
salesforce_id: Optional["StringFieldComparison"] = Field(
|
|
4664
|
+
alias="salesforceId", default=None
|
|
4665
|
+
)
|
|
4630
4666
|
search_query: Optional["CustomerSearchQueryFilterComparison"] = Field(
|
|
4631
4667
|
alias="searchQuery", default=None
|
|
4632
4668
|
)
|
|
@@ -119,11 +119,11 @@ stigg/generated/client.py,sha256=NgGx0jZs30ZsxuITO15EVz6K4LjJE5XocrwRuGcjm8w,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=BnCwbHSipcepnaDJ7ZOwNfdLtRW_p67ObbANkWR2xhY,35280
|
|
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=iL_WYZqHpSrLV1bOkiLZFxOOfBwcj5uxahDS9MUZ5NA,100917
|
|
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=X4_Yc95B8Hsi5GbeIbuMuyNqWIxNMv4mcIRTYHlUOwo,195390
|
|
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.418.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.418.0.dist-info/METADATA,sha256=TSRxncp8hnm9HP2ZZO-0nx_5HabAxQoJlwkrLYX8sT4,2258
|
|
165
|
+
stigg_api_client_v2-2.418.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.418.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|