stigg-api-client-v2 2.331.0__py3-none-any.whl → 2.331.1__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 +0 -1
- stigg/generated/fragments.py +171 -171
- stigg/generated/input_types.py +0 -1
- {stigg_api_client_v2-2.331.0.dist-info → stigg_api_client_v2-2.331.1.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.331.0.dist-info → stigg_api_client_v2-2.331.1.dist-info}/RECORD +7 -7
- {stigg_api_client_v2-2.331.0.dist-info → stigg_api_client_v2-2.331.1.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.331.0.dist-info → stigg_api_client_v2-2.331.1.dist-info}/WHEEL +0 -0
stigg/generated/enums.py
CHANGED
|
@@ -453,7 +453,6 @@ class ErrorCode(str, Enum):
|
|
|
453
453
|
FailedToCreateCheckoutSessionError = "FailedToCreateCheckoutSessionError"
|
|
454
454
|
FailedToImportCustomer = "FailedToImportCustomer"
|
|
455
455
|
FailedToImportSubscriptions = "FailedToImportSubscriptions"
|
|
456
|
-
FailedToResolveBillingIntegration = "FailedToResolveBillingIntegration"
|
|
457
456
|
FeatureNotFound = "FeatureNotFound"
|
|
458
457
|
FetchAllCountriesPricesNotAllowed = "FetchAllCountriesPricesNotAllowed"
|
|
459
458
|
FreePlanCantHaveCompatiblePackageGroupError = (
|
stigg/generated/fragments.py
CHANGED
|
@@ -79,6 +79,42 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
79
79
|
currency: Currency
|
|
80
80
|
|
|
81
81
|
|
|
82
|
+
class PriceFragment(BaseModel):
|
|
83
|
+
billing_model: BillingModel = Field(alias="billingModel")
|
|
84
|
+
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
85
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
86
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
87
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
88
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
89
|
+
billing_country_code: Optional[str] = Field(
|
|
90
|
+
alias="billingCountryCode", default=None
|
|
91
|
+
)
|
|
92
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
93
|
+
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
94
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
95
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
96
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
class PriceFragmentPrice(BaseModel):
|
|
100
|
+
amount: float
|
|
101
|
+
currency: Currency
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
105
|
+
pass
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
class PriceFragmentFeature(BaseModel):
|
|
109
|
+
ref_id: str = Field(alias="refId")
|
|
110
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
111
|
+
feature_units_plural: Optional[str] = Field(
|
|
112
|
+
alias="featureUnitsPlural", default=None
|
|
113
|
+
)
|
|
114
|
+
display_name: str = Field(alias="displayName")
|
|
115
|
+
description: Optional[str] = Field(default=None)
|
|
116
|
+
|
|
117
|
+
|
|
82
118
|
class OveragePriceFragment(BaseModel):
|
|
83
119
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
84
120
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -144,42 +180,6 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
144
180
|
)
|
|
145
181
|
|
|
146
182
|
|
|
147
|
-
class PriceFragment(BaseModel):
|
|
148
|
-
billing_model: BillingModel = Field(alias="billingModel")
|
|
149
|
-
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
150
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
151
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
152
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
153
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
154
|
-
billing_country_code: Optional[str] = Field(
|
|
155
|
-
alias="billingCountryCode", default=None
|
|
156
|
-
)
|
|
157
|
-
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
158
|
-
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
159
|
-
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
160
|
-
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
161
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
class PriceFragmentPrice(BaseModel):
|
|
165
|
-
amount: float
|
|
166
|
-
currency: Currency
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
class PriceFragmentTiers(PriceTierFragment):
|
|
170
|
-
pass
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
class PriceFragmentFeature(BaseModel):
|
|
174
|
-
ref_id: str = Field(alias="refId")
|
|
175
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
176
|
-
feature_units_plural: Optional[str] = Field(
|
|
177
|
-
alias="featureUnitsPlural", default=None
|
|
178
|
-
)
|
|
179
|
-
display_name: str = Field(alias="displayName")
|
|
180
|
-
description: Optional[str] = Field(default=None)
|
|
181
|
-
|
|
182
|
-
|
|
183
183
|
class AddonFragment(BaseModel):
|
|
184
184
|
id: str
|
|
185
185
|
ref_id: str = Field(alias="refId")
|
|
@@ -335,31 +335,29 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
335
335
|
limit: float
|
|
336
336
|
|
|
337
337
|
|
|
338
|
-
class
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
338
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
339
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
class SlimCustomerFragment(BaseModel):
|
|
343
|
+
id: str
|
|
344
|
+
name: Optional[str] = Field(default=None)
|
|
345
|
+
email: Optional[str] = Field(default=None)
|
|
346
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
342
347
|
updated_at: Any = Field(alias="updatedAt")
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
349
|
-
alias="billingReason", default=None
|
|
350
|
-
)
|
|
351
|
-
currency: Optional[str] = Field(default=None)
|
|
352
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
353
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
354
|
-
alias="subTotalExcludingTax", default=None
|
|
348
|
+
ref_id: str = Field(alias="refId")
|
|
349
|
+
customer_id: str = Field(alias="customerId")
|
|
350
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
351
|
+
additional_meta_data: Optional[Any] = Field(
|
|
352
|
+
alias="additionalMetaData", default=None
|
|
355
353
|
)
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
alias="totalExcludingTax", default=None
|
|
354
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
355
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
359
356
|
)
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
class CustomerResourceFragment(BaseModel):
|
|
360
|
+
resource_id: str = Field(alias="resourceId")
|
|
363
361
|
|
|
364
362
|
|
|
365
363
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
@@ -516,42 +514,6 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
516
514
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
517
515
|
|
|
518
516
|
|
|
519
|
-
class SlimCustomerFragment(BaseModel):
|
|
520
|
-
id: str
|
|
521
|
-
name: Optional[str] = Field(default=None)
|
|
522
|
-
email: Optional[str] = Field(default=None)
|
|
523
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
524
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
525
|
-
ref_id: str = Field(alias="refId")
|
|
526
|
-
customer_id: str = Field(alias="customerId")
|
|
527
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
528
|
-
additional_meta_data: Optional[Any] = Field(
|
|
529
|
-
alias="additionalMetaData", default=None
|
|
530
|
-
)
|
|
531
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
532
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
533
|
-
)
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
class TotalPriceFragment(BaseModel):
|
|
537
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
538
|
-
total: "TotalPriceFragmentTotal"
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
542
|
-
amount: float
|
|
543
|
-
currency: Currency
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
547
|
-
amount: float
|
|
548
|
-
currency: Currency
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
552
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
553
|
-
|
|
554
|
-
|
|
555
517
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
556
518
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
557
519
|
alias="subscriptionScheduleType"
|
|
@@ -714,8 +676,46 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
714
676
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
715
677
|
|
|
716
678
|
|
|
717
|
-
class
|
|
718
|
-
|
|
679
|
+
class TotalPriceFragment(BaseModel):
|
|
680
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
681
|
+
total: "TotalPriceFragmentTotal"
|
|
682
|
+
|
|
683
|
+
|
|
684
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
685
|
+
amount: float
|
|
686
|
+
currency: Currency
|
|
687
|
+
|
|
688
|
+
|
|
689
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
690
|
+
amount: float
|
|
691
|
+
currency: Currency
|
|
692
|
+
|
|
693
|
+
|
|
694
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
695
|
+
billing_id: str = Field(alias="billingId")
|
|
696
|
+
status: SubscriptionInvoiceStatus
|
|
697
|
+
created_at: Any = Field(alias="createdAt")
|
|
698
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
699
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
700
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
701
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
702
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
703
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
704
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
705
|
+
alias="billingReason", default=None
|
|
706
|
+
)
|
|
707
|
+
currency: Optional[str] = Field(default=None)
|
|
708
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
709
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
710
|
+
alias="subTotalExcludingTax", default=None
|
|
711
|
+
)
|
|
712
|
+
total: Optional[float] = Field(default=None)
|
|
713
|
+
total_excluding_tax: Optional[float] = Field(
|
|
714
|
+
alias="totalExcludingTax", default=None
|
|
715
|
+
)
|
|
716
|
+
tax: Optional[float] = Field(default=None)
|
|
717
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
718
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
719
719
|
|
|
720
720
|
|
|
721
721
|
class SubscriptionFragment(BaseModel):
|
|
@@ -987,6 +987,35 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
987
987
|
)
|
|
988
988
|
|
|
989
989
|
|
|
990
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
991
|
+
status: PromotionalEntitlementStatus
|
|
992
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
993
|
+
feature_id: str = Field(alias="featureId")
|
|
994
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
995
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
996
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
997
|
+
alias="resetPeriod", default=None
|
|
998
|
+
)
|
|
999
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1000
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1001
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1002
|
+
|
|
1003
|
+
|
|
1004
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1005
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1006
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1007
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1008
|
+
feature_units_plural: Optional[str] = Field(
|
|
1009
|
+
alias="featureUnitsPlural", default=None
|
|
1010
|
+
)
|
|
1011
|
+
display_name: str = Field(alias="displayName")
|
|
1012
|
+
description: Optional[str] = Field(default=None)
|
|
1013
|
+
ref_id: str = Field(alias="refId")
|
|
1014
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1015
|
+
alias="additionalMetaData", default=None
|
|
1016
|
+
)
|
|
1017
|
+
|
|
1018
|
+
|
|
990
1019
|
class CouponFragment(BaseModel):
|
|
991
1020
|
id: str
|
|
992
1021
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1021,35 +1050,6 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1021
1050
|
status: SyncStatus
|
|
1022
1051
|
|
|
1023
1052
|
|
|
1024
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
1025
|
-
status: PromotionalEntitlementStatus
|
|
1026
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1027
|
-
feature_id: str = Field(alias="featureId")
|
|
1028
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1029
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1030
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1031
|
-
alias="resetPeriod", default=None
|
|
1032
|
-
)
|
|
1033
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1034
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1035
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1039
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1040
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1041
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1042
|
-
feature_units_plural: Optional[str] = Field(
|
|
1043
|
-
alias="featureUnitsPlural", default=None
|
|
1044
|
-
)
|
|
1045
|
-
display_name: str = Field(alias="displayName")
|
|
1046
|
-
description: Optional[str] = Field(default=None)
|
|
1047
|
-
ref_id: str = Field(alias="refId")
|
|
1048
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1049
|
-
alias="additionalMetaData", default=None
|
|
1050
|
-
)
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
1053
|
class CustomerFragment(SlimCustomerFragment):
|
|
1054
1054
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1055
1055
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1250,6 +1250,16 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1250
1250
|
pass
|
|
1251
1251
|
|
|
1252
1252
|
|
|
1253
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1254
|
+
display_name: str = Field(alias="displayName")
|
|
1255
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1256
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1257
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1258
|
+
period: PromotionalEntitlementPeriod
|
|
1259
|
+
start_date: Any = Field(alias="startDate")
|
|
1260
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1261
|
+
|
|
1262
|
+
|
|
1253
1263
|
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1254
1264
|
addon_id: str = Field(alias="addonId")
|
|
1255
1265
|
description: Optional[str] = Field(default=None)
|
|
@@ -1257,6 +1267,33 @@ class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
|
1257
1267
|
quantity: int
|
|
1258
1268
|
|
|
1259
1269
|
|
|
1270
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1271
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1272
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1273
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1274
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1275
|
+
default=None
|
|
1276
|
+
)
|
|
1277
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1278
|
+
default=None
|
|
1279
|
+
)
|
|
1280
|
+
|
|
1281
|
+
|
|
1282
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1283
|
+
amount: float
|
|
1284
|
+
currency: Currency
|
|
1285
|
+
|
|
1286
|
+
|
|
1287
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1288
|
+
id: str
|
|
1289
|
+
ref_id: str = Field(alias="refId")
|
|
1290
|
+
display_name: str = Field(alias="displayName")
|
|
1291
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1292
|
+
feature_units_plural: Optional[str] = Field(
|
|
1293
|
+
alias="featureUnitsPlural", default=None
|
|
1294
|
+
)
|
|
1295
|
+
|
|
1296
|
+
|
|
1260
1297
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1261
1298
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1262
1299
|
alias="subscriptionScheduleType"
|
|
@@ -1426,33 +1463,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1426
1463
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1427
1464
|
|
|
1428
1465
|
|
|
1429
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1430
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1431
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1432
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1433
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1434
|
-
default=None
|
|
1435
|
-
)
|
|
1436
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1437
|
-
default=None
|
|
1438
|
-
)
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1442
|
-
amount: float
|
|
1443
|
-
currency: Currency
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1447
|
-
id: str
|
|
1448
|
-
ref_id: str = Field(alias="refId")
|
|
1449
|
-
display_name: str = Field(alias="displayName")
|
|
1450
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1451
|
-
feature_units_plural: Optional[str] = Field(
|
|
1452
|
-
alias="featureUnitsPlural", default=None
|
|
1453
|
-
)
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
1466
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1457
1467
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1458
1468
|
plan_id: str = Field(alias="planId")
|
|
@@ -1549,16 +1559,6 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1549
1559
|
pass
|
|
1550
1560
|
|
|
1551
1561
|
|
|
1552
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1553
|
-
display_name: str = Field(alias="displayName")
|
|
1554
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1555
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1556
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1557
|
-
period: PromotionalEntitlementPeriod
|
|
1558
|
-
start_date: Any = Field(alias="startDate")
|
|
1559
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
1562
|
class CustomerPortalFragment(BaseModel):
|
|
1563
1563
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1564
1564
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -2764,20 +2764,20 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2764
2764
|
|
|
2765
2765
|
AddonDependencyFragment.model_rebuild()
|
|
2766
2766
|
PriceTierFragment.model_rebuild()
|
|
2767
|
+
PriceFragment.model_rebuild()
|
|
2767
2768
|
OveragePriceFragment.model_rebuild()
|
|
2768
2769
|
PackageEntitlementFragment.model_rebuild()
|
|
2769
|
-
PriceFragment.model_rebuild()
|
|
2770
2770
|
AddonFragment.model_rebuild()
|
|
2771
2771
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2772
2772
|
ProductFragment.model_rebuild()
|
|
2773
2773
|
PlanFragment.model_rebuild()
|
|
2774
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2775
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2776
|
-
SlimCustomerFragment.model_rebuild()
|
|
2777
|
-
TotalPriceFragment.model_rebuild()
|
|
2778
2774
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2779
|
-
|
|
2775
|
+
SlimCustomerFragment.model_rebuild()
|
|
2780
2776
|
CustomerResourceFragment.model_rebuild()
|
|
2777
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2778
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2779
|
+
TotalPriceFragment.model_rebuild()
|
|
2780
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2781
2781
|
SubscriptionFragment.model_rebuild()
|
|
2782
2782
|
FeatureFragment.model_rebuild()
|
|
2783
2783
|
EntitlementFragment.model_rebuild()
|
|
@@ -2785,18 +2785,18 @@ ApplySubscriptionFragment.model_rebuild()
|
|
|
2785
2785
|
FontVariantFragment.model_rebuild()
|
|
2786
2786
|
TypographyConfigurationFragment.model_rebuild()
|
|
2787
2787
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2788
|
-
CouponFragment.model_rebuild()
|
|
2789
2788
|
PromotionalEntitlementFragment.model_rebuild()
|
|
2789
|
+
CouponFragment.model_rebuild()
|
|
2790
2790
|
CustomerFragment.model_rebuild()
|
|
2791
2791
|
CheckoutStateFragment.model_rebuild()
|
|
2792
2792
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2793
2793
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2794
2794
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2795
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2795
2796
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2796
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2797
2797
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2798
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2798
2799
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2799
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2800
2800
|
CustomerPortalFragment.model_rebuild()
|
|
2801
2801
|
CustomerStatisticsFragment.model_rebuild()
|
|
2802
2802
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -3660,7 +3660,6 @@ class SubscriptionBillingInfo(BaseModel):
|
|
|
3660
3660
|
alias="chargeOnBehalfOfAccount", default=None
|
|
3661
3661
|
)
|
|
3662
3662
|
coupon_id: Optional[str] = Field(alias="couponId", default=None)
|
|
3663
|
-
integration_id: Optional[str] = Field(alias="integrationId", default=None)
|
|
3664
3663
|
invoice_days_until_due: Optional[float] = Field(
|
|
3665
3664
|
alias="invoiceDaysUntilDue", default=None
|
|
3666
3665
|
)
|
|
@@ -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=XiTyxApFyNYiRaaHYXIGvi3KCHczQhHCPwNKpJKdh2U,34870
|
|
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=jOoWDcsq6tSruXvGThP7f6Wa_OBVqdfcqTfq8BFF-zA,100632
|
|
127
127
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
128
128
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
129
129
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -144,7 +144,7 @@ stigg/generated/grant_promotional_entitlements.py,sha256=72PRYuqecL-0SkWb7deygkh
|
|
|
144
144
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
145
145
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
146
146
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
147
|
-
stigg/generated/input_types.py,sha256=
|
|
147
|
+
stigg/generated/input_types.py,sha256=aEjkX2dGtdW4x4zlwsEX_suIRT2uUsiiXkAs9RawvPM,192213
|
|
148
148
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
149
149
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
150
150
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -160,7 +160,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
160
160
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
161
161
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
162
162
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
163
|
-
stigg_api_client_v2-2.331.
|
|
164
|
-
stigg_api_client_v2-2.331.
|
|
165
|
-
stigg_api_client_v2-2.331.
|
|
166
|
-
stigg_api_client_v2-2.331.
|
|
163
|
+
stigg_api_client_v2-2.331.1.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.331.1.dist-info/METADATA,sha256=twerXpgylMf-rvpo22s5rKsYMGnMuuSSvd2uTsCvBXc,2258
|
|
165
|
+
stigg_api_client_v2-2.331.1.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.331.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|