stigg-api-client-v2 3.105.0__py3-none-any.whl → 3.108.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of stigg-api-client-v2 might be problematic. Click here for more details.
- stigg/generated/__init__.py +5 -0
- stigg/generated/async_client.py +43 -0
- stigg/generated/client.py +43 -0
- stigg/generated/enums.py +3 -0
- stigg/generated/fragments.py +413 -413
- stigg/generated/input_types.py +5 -0
- stigg/generated/void_credit_grant.py +18 -0
- {stigg_api_client_v2-3.105.0.dist-info → stigg_api_client_v2-3.108.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.105.0.dist-info → stigg_api_client_v2-3.108.0.dist-info}/RECORD +11 -10
- {stigg_api_client_v2-3.105.0.dist-info → stigg_api_client_v2-3.108.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.105.0.dist-info → stigg_api_client_v2-3.108.0.dist-info}/WHEEL +0 -0
stigg/generated/__init__.py
CHANGED
|
@@ -1018,6 +1018,7 @@ from .input_types import (
|
|
|
1018
1018
|
UUIDFilterComparison,
|
|
1019
1019
|
ValidateMergeEnvironmentInput,
|
|
1020
1020
|
VendorIdentifierFilterComparison,
|
|
1021
|
+
VoidCreditGrantInput,
|
|
1021
1022
|
WeeklyResetPeriodConfigInput,
|
|
1022
1023
|
WidgetConfigurationUpdateInput,
|
|
1023
1024
|
WorkflowsLoginInput,
|
|
@@ -1071,6 +1072,7 @@ from .update_subscription import (
|
|
|
1071
1072
|
UpdateSubscription,
|
|
1072
1073
|
UpdateSubscriptionUpdateSubscription,
|
|
1073
1074
|
)
|
|
1075
|
+
from .void_credit_grant import VoidCreditGrant, VoidCreditGrantVoidCreditGrant
|
|
1074
1076
|
|
|
1075
1077
|
__all__ = [
|
|
1076
1078
|
"AccessDeniedReason",
|
|
@@ -2084,6 +2086,9 @@ __all__ = [
|
|
|
2084
2086
|
"VendorIdentifier",
|
|
2085
2087
|
"VendorIdentifierFilterComparison",
|
|
2086
2088
|
"VendorType",
|
|
2089
|
+
"VoidCreditGrant",
|
|
2090
|
+
"VoidCreditGrantInput",
|
|
2091
|
+
"VoidCreditGrantVoidCreditGrant",
|
|
2087
2092
|
"WeeklyAccordingTo",
|
|
2088
2093
|
"WeeklyResetPeriodConfigInput",
|
|
2089
2094
|
"WidgetConfigurationUpdateInput",
|
stigg/generated/async_client.py
CHANGED
|
@@ -94,6 +94,7 @@ from .input_types import (
|
|
|
94
94
|
UsageEventsReportInput,
|
|
95
95
|
UsageHistoryInput,
|
|
96
96
|
UsageHistoryV2Input,
|
|
97
|
+
VoidCreditGrantInput,
|
|
97
98
|
)
|
|
98
99
|
from .migrate_subscription_to_latest import MigrateSubscriptionToLatest
|
|
99
100
|
from .preview_next_invoice import PreviewNextInvoice
|
|
@@ -112,6 +113,7 @@ from .unarchive_customer import UnarchiveCustomer
|
|
|
112
113
|
from .unlink_promotional_entitlements_group import UnlinkPromotionalEntitlementsGroup
|
|
113
114
|
from .update_customer import UpdateCustomer
|
|
114
115
|
from .update_subscription import UpdateSubscription
|
|
116
|
+
from .void_credit_grant import VoidCreditGrant
|
|
115
117
|
|
|
116
118
|
|
|
117
119
|
def gql(q: str) -> str:
|
|
@@ -3139,6 +3141,47 @@ class AsyncClient(AsyncBaseClient):
|
|
|
3139
3141
|
data = self.get_data(response)
|
|
3140
3142
|
return CreatePaymentSession.model_validate(data)
|
|
3141
3143
|
|
|
3144
|
+
async def void_credit_grant(
|
|
3145
|
+
self, input: VoidCreditGrantInput, **kwargs: Any
|
|
3146
|
+
) -> VoidCreditGrant:
|
|
3147
|
+
query = gql(
|
|
3148
|
+
"""
|
|
3149
|
+
mutation VoidCreditGrant($input: VoidCreditGrantInput!) {
|
|
3150
|
+
voidCreditGrant(input: $input) {
|
|
3151
|
+
...CreditGrantFragment
|
|
3152
|
+
}
|
|
3153
|
+
}
|
|
3154
|
+
|
|
3155
|
+
fragment CreditGrantFragment on CreditGrant {
|
|
3156
|
+
grantId
|
|
3157
|
+
amount
|
|
3158
|
+
comment
|
|
3159
|
+
currencyId
|
|
3160
|
+
customerId
|
|
3161
|
+
displayName
|
|
3162
|
+
effectiveAt
|
|
3163
|
+
expireAt
|
|
3164
|
+
grantType
|
|
3165
|
+
priority
|
|
3166
|
+
consumedAmount
|
|
3167
|
+
cost {
|
|
3168
|
+
amount
|
|
3169
|
+
currency
|
|
3170
|
+
}
|
|
3171
|
+
createdAt
|
|
3172
|
+
updatedAt
|
|
3173
|
+
resourceId
|
|
3174
|
+
additionalMetaData
|
|
3175
|
+
}
|
|
3176
|
+
"""
|
|
3177
|
+
)
|
|
3178
|
+
variables: Dict[str, object] = {"input": input}
|
|
3179
|
+
response = await self.execute(
|
|
3180
|
+
query=query, operation_name="VoidCreditGrant", variables=variables, **kwargs
|
|
3181
|
+
)
|
|
3182
|
+
data = self.get_data(response)
|
|
3183
|
+
return VoidCreditGrant.model_validate(data)
|
|
3184
|
+
|
|
3142
3185
|
async def get_customer_by_id(
|
|
3143
3186
|
self, input: GetCustomerByRefIdInput, **kwargs: Any
|
|
3144
3187
|
) -> GetCustomerById:
|
stigg/generated/client.py
CHANGED
|
@@ -94,6 +94,7 @@ from .input_types import (
|
|
|
94
94
|
UsageEventsReportInput,
|
|
95
95
|
UsageHistoryInput,
|
|
96
96
|
UsageHistoryV2Input,
|
|
97
|
+
VoidCreditGrantInput,
|
|
97
98
|
)
|
|
98
99
|
from .migrate_subscription_to_latest import MigrateSubscriptionToLatest
|
|
99
100
|
from .preview_next_invoice import PreviewNextInvoice
|
|
@@ -112,6 +113,7 @@ from .unarchive_customer import UnarchiveCustomer
|
|
|
112
113
|
from .unlink_promotional_entitlements_group import UnlinkPromotionalEntitlementsGroup
|
|
113
114
|
from .update_customer import UpdateCustomer
|
|
114
115
|
from .update_subscription import UpdateSubscription
|
|
116
|
+
from .void_credit_grant import VoidCreditGrant
|
|
115
117
|
|
|
116
118
|
|
|
117
119
|
def gql(q: str) -> str:
|
|
@@ -3135,6 +3137,47 @@ class Client(BaseClient):
|
|
|
3135
3137
|
data = self.get_data(response)
|
|
3136
3138
|
return CreatePaymentSession.model_validate(data)
|
|
3137
3139
|
|
|
3140
|
+
def void_credit_grant(
|
|
3141
|
+
self, input: VoidCreditGrantInput, **kwargs: Any
|
|
3142
|
+
) -> VoidCreditGrant:
|
|
3143
|
+
query = gql(
|
|
3144
|
+
"""
|
|
3145
|
+
mutation VoidCreditGrant($input: VoidCreditGrantInput!) {
|
|
3146
|
+
voidCreditGrant(input: $input) {
|
|
3147
|
+
...CreditGrantFragment
|
|
3148
|
+
}
|
|
3149
|
+
}
|
|
3150
|
+
|
|
3151
|
+
fragment CreditGrantFragment on CreditGrant {
|
|
3152
|
+
grantId
|
|
3153
|
+
amount
|
|
3154
|
+
comment
|
|
3155
|
+
currencyId
|
|
3156
|
+
customerId
|
|
3157
|
+
displayName
|
|
3158
|
+
effectiveAt
|
|
3159
|
+
expireAt
|
|
3160
|
+
grantType
|
|
3161
|
+
priority
|
|
3162
|
+
consumedAmount
|
|
3163
|
+
cost {
|
|
3164
|
+
amount
|
|
3165
|
+
currency
|
|
3166
|
+
}
|
|
3167
|
+
createdAt
|
|
3168
|
+
updatedAt
|
|
3169
|
+
resourceId
|
|
3170
|
+
additionalMetaData
|
|
3171
|
+
}
|
|
3172
|
+
"""
|
|
3173
|
+
)
|
|
3174
|
+
variables: Dict[str, object] = {"input": input}
|
|
3175
|
+
response = self.execute(
|
|
3176
|
+
query=query, operation_name="VoidCreditGrant", variables=variables, **kwargs
|
|
3177
|
+
)
|
|
3178
|
+
data = self.get_data(response)
|
|
3179
|
+
return VoidCreditGrant.model_validate(data)
|
|
3180
|
+
|
|
3138
3181
|
def get_customer_by_id(
|
|
3139
3182
|
self, input: GetCustomerByRefIdInput, **kwargs: Any
|
|
3140
3183
|
) -> GetCustomerById:
|
stigg/generated/enums.py
CHANGED
|
@@ -170,6 +170,7 @@ class CreditLedgerEventType(str, Enum):
|
|
|
170
170
|
CREDITS_CONSUMED = "CREDITS_CONSUMED"
|
|
171
171
|
CREDITS_EXPIRED = "CREDITS_EXPIRED"
|
|
172
172
|
CREDITS_GRANTED = "CREDITS_GRANTED"
|
|
173
|
+
CREDITS_VOIDED = "CREDITS_VOIDED"
|
|
173
174
|
|
|
174
175
|
|
|
175
176
|
class CreditUsageTimeRange(str, Enum):
|
|
@@ -471,6 +472,7 @@ class ErrorCode(str, Enum):
|
|
|
471
472
|
)
|
|
472
473
|
CheckoutIsNotSupported = "CheckoutIsNotSupported"
|
|
473
474
|
CouponNotFound = "CouponNotFound"
|
|
475
|
+
CreditGrantAlreadyVoided = "CreditGrantAlreadyVoided"
|
|
474
476
|
CreditGrantNotFound = "CreditGrantNotFound"
|
|
475
477
|
CustomCurrencyNotFound = "CustomCurrencyNotFound"
|
|
476
478
|
CustomerAlreadyHaveCustomerCoupon = "CustomerAlreadyHaveCustomerCoupon"
|
|
@@ -680,6 +682,7 @@ class EventLogType(str, Enum):
|
|
|
680
682
|
CREDIT_GRANT_DEPLETED = "CREDIT_GRANT_DEPLETED"
|
|
681
683
|
CREDIT_GRANT_EXPIRED = "CREDIT_GRANT_EXPIRED"
|
|
682
684
|
CREDIT_GRANT_UPDATED = "CREDIT_GRANT_UPDATED"
|
|
685
|
+
CREDIT_GRANT_VOIDED = "CREDIT_GRANT_VOIDED"
|
|
683
686
|
CUSTOMER_CREATED = "CUSTOMER_CREATED"
|
|
684
687
|
CUSTOMER_DELETED = "CUSTOMER_DELETED"
|
|
685
688
|
CUSTOMER_ENTITLEMENT_CALCULATION_TRIGGERED = (
|
stigg/generated/fragments.py
CHANGED
|
@@ -62,6 +62,58 @@ class AddonDependencyFragment(BaseModel):
|
|
|
62
62
|
description: Optional[str] = Field(default=None)
|
|
63
63
|
|
|
64
64
|
|
|
65
|
+
class PriceTierFragment(BaseModel):
|
|
66
|
+
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
67
|
+
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
68
|
+
alias="unitPrice", default=None
|
|
69
|
+
)
|
|
70
|
+
flat_price: Optional["PriceTierFragmentFlatPrice"] = Field(
|
|
71
|
+
alias="flatPrice", default=None
|
|
72
|
+
)
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
class PriceTierFragmentUnitPrice(BaseModel):
|
|
76
|
+
amount: float
|
|
77
|
+
currency: Currency
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
class PriceTierFragmentFlatPrice(BaseModel):
|
|
81
|
+
amount: float
|
|
82
|
+
currency: Currency
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
class OveragePriceFragment(BaseModel):
|
|
86
|
+
billing_model: BillingModel = Field(alias="billingModel")
|
|
87
|
+
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
88
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
89
|
+
billing_country_code: Optional[str] = Field(
|
|
90
|
+
alias="billingCountryCode", default=None
|
|
91
|
+
)
|
|
92
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
93
|
+
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
94
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
95
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
99
|
+
amount: float
|
|
100
|
+
currency: Currency
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
104
|
+
pass
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
108
|
+
ref_id: str = Field(alias="refId")
|
|
109
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
110
|
+
feature_units_plural: Optional[str] = Field(
|
|
111
|
+
alias="featureUnitsPlural", default=None
|
|
112
|
+
)
|
|
113
|
+
display_name: str = Field(alias="displayName")
|
|
114
|
+
description: Optional[str] = Field(default=None)
|
|
115
|
+
|
|
116
|
+
|
|
65
117
|
class PackageEntitlementFragment(BaseModel):
|
|
66
118
|
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
67
119
|
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
@@ -97,26 +149,6 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
97
149
|
)
|
|
98
150
|
|
|
99
151
|
|
|
100
|
-
class PriceTierFragment(BaseModel):
|
|
101
|
-
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
102
|
-
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
103
|
-
alias="unitPrice", default=None
|
|
104
|
-
)
|
|
105
|
-
flat_price: Optional["PriceTierFragmentFlatPrice"] = Field(
|
|
106
|
-
alias="flatPrice", default=None
|
|
107
|
-
)
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
class PriceTierFragmentUnitPrice(BaseModel):
|
|
111
|
-
amount: float
|
|
112
|
-
currency: Currency
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
class PriceTierFragmentFlatPrice(BaseModel):
|
|
116
|
-
amount: float
|
|
117
|
-
currency: Currency
|
|
118
|
-
|
|
119
|
-
|
|
120
152
|
class PriceFragment(BaseModel):
|
|
121
153
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
122
154
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -162,38 +194,6 @@ class PriceFragmentFeature(BaseModel):
|
|
|
162
194
|
description: Optional[str] = Field(default=None)
|
|
163
195
|
|
|
164
196
|
|
|
165
|
-
class OveragePriceFragment(BaseModel):
|
|
166
|
-
billing_model: BillingModel = Field(alias="billingModel")
|
|
167
|
-
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
168
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
169
|
-
billing_country_code: Optional[str] = Field(
|
|
170
|
-
alias="billingCountryCode", default=None
|
|
171
|
-
)
|
|
172
|
-
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
173
|
-
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
174
|
-
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
175
|
-
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
class OveragePriceFragmentPrice(BaseModel):
|
|
179
|
-
amount: float
|
|
180
|
-
currency: Currency
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
184
|
-
pass
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
class OveragePriceFragmentFeature(BaseModel):
|
|
188
|
-
ref_id: str = Field(alias="refId")
|
|
189
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
190
|
-
feature_units_plural: Optional[str] = Field(
|
|
191
|
-
alias="featureUnitsPlural", default=None
|
|
192
|
-
)
|
|
193
|
-
display_name: str = Field(alias="displayName")
|
|
194
|
-
description: Optional[str] = Field(default=None)
|
|
195
|
-
|
|
196
|
-
|
|
197
197
|
class AddonFragment(BaseModel):
|
|
198
198
|
id: Any
|
|
199
199
|
ref_id: str = Field(alias="refId")
|
|
@@ -232,124 +232,113 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
232
232
|
pass
|
|
233
233
|
|
|
234
234
|
|
|
235
|
-
class
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
246
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
247
|
-
alias="downgradePlan", default=None
|
|
235
|
+
class FeatureFragment(BaseModel):
|
|
236
|
+
typename__: str = Field(alias="__typename")
|
|
237
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
238
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
239
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
240
|
+
feature_units_plural: Optional[str] = Field(
|
|
241
|
+
alias="featureUnitsPlural", default=None
|
|
248
242
|
)
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
252
|
-
ref_id: str = Field(alias="refId")
|
|
253
|
-
display_name: str = Field(alias="displayName")
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
257
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
243
|
+
description: Optional[str] = Field(default=None)
|
|
258
244
|
display_name: str = Field(alias="displayName")
|
|
259
|
-
|
|
260
|
-
|
|
245
|
+
ref_id: str = Field(alias="refId")
|
|
246
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
247
|
+
alias="unitTransformation", default=None
|
|
261
248
|
)
|
|
262
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
266
|
-
pass
|
|
267
249
|
|
|
268
250
|
|
|
269
|
-
class
|
|
270
|
-
|
|
271
|
-
|
|
251
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
252
|
+
divide: float
|
|
253
|
+
round: UnitTransformationRound
|
|
272
254
|
|
|
273
255
|
|
|
274
|
-
class
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
280
|
-
version_number: int = Field(alias="versionNumber")
|
|
281
|
-
additional_meta_data: Optional[Any] = Field(
|
|
282
|
-
alias="additionalMetaData", default=None
|
|
283
|
-
)
|
|
284
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
285
|
-
alias="hiddenFromWidgets", default=None
|
|
286
|
-
)
|
|
287
|
-
product: "PlanFragmentProduct"
|
|
288
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
289
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
290
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
291
|
-
alias="inheritedEntitlements", default=None
|
|
256
|
+
class EntitlementFragment(BaseModel):
|
|
257
|
+
typename__: str = Field(alias="__typename")
|
|
258
|
+
is_granted: bool = Field(alias="isGranted")
|
|
259
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
260
|
+
alias="accessDeniedReason", default=None
|
|
292
261
|
)
|
|
293
|
-
|
|
294
|
-
|
|
262
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
263
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
264
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
265
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
266
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
267
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
268
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
269
|
+
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
270
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
271
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
272
|
+
alias="entitlementUpdatedAt", default=None
|
|
295
273
|
)
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
] = Field(alias="
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
274
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
275
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
276
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
277
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
278
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
279
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
280
|
+
alias="resetPeriod", default=None
|
|
302
281
|
)
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
282
|
+
reset_period_configuration: Optional[
|
|
283
|
+
Annotated[
|
|
284
|
+
Union[
|
|
285
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
286
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
287
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
288
|
+
],
|
|
289
|
+
Field(discriminator="typename__"),
|
|
290
|
+
]
|
|
291
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
292
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
293
|
+
credit_rate: Optional["EntitlementFragmentCreditRate"] = Field(
|
|
294
|
+
alias="creditRate", default=None
|
|
306
295
|
)
|
|
296
|
+
valid_until: Optional[float] = Field(alias="validUntil", default=None)
|
|
307
297
|
|
|
308
298
|
|
|
309
|
-
class
|
|
310
|
-
|
|
299
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
300
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
301
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
302
|
+
alias="monthlyAccordingTo", default=None
|
|
303
|
+
)
|
|
311
304
|
|
|
312
305
|
|
|
313
|
-
class
|
|
314
|
-
|
|
315
|
-
|
|
306
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
307
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
308
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
309
|
+
alias="weeklyAccordingTo", default=None
|
|
310
|
+
)
|
|
316
311
|
|
|
317
312
|
|
|
318
|
-
class
|
|
319
|
-
|
|
313
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
314
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
315
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
316
|
+
alias="yearlyAccordingTo", default=None
|
|
317
|
+
)
|
|
320
318
|
|
|
321
319
|
|
|
322
|
-
class
|
|
320
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
323
321
|
pass
|
|
324
322
|
|
|
325
323
|
|
|
326
|
-
class
|
|
327
|
-
|
|
324
|
+
class EntitlementFragmentCreditRate(BaseModel):
|
|
325
|
+
amount: float
|
|
326
|
+
currency_id: str = Field(alias="currencyId")
|
|
328
327
|
|
|
329
328
|
|
|
330
|
-
class
|
|
331
|
-
|
|
329
|
+
class TotalPriceFragment(BaseModel):
|
|
330
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
331
|
+
total: "TotalPriceFragmentTotal"
|
|
332
332
|
|
|
333
333
|
|
|
334
|
-
class
|
|
335
|
-
|
|
334
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
335
|
+
amount: float
|
|
336
|
+
currency: Currency
|
|
336
337
|
|
|
337
338
|
|
|
338
|
-
class
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
343
|
-
duration: float
|
|
344
|
-
units: TrialPeriodUnits
|
|
345
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
346
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
347
|
-
alias="trialEndBehavior", default=None
|
|
348
|
-
)
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
352
|
-
limit: float
|
|
339
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
340
|
+
amount: float
|
|
341
|
+
currency: Currency
|
|
353
342
|
|
|
354
343
|
|
|
355
344
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
@@ -506,42 +495,10 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
506
495
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
507
496
|
|
|
508
497
|
|
|
509
|
-
class TotalPriceFragment(BaseModel):
|
|
510
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
511
|
-
total: "TotalPriceFragmentTotal"
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
515
|
-
amount: float
|
|
516
|
-
currency: Currency
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
520
|
-
amount: float
|
|
521
|
-
currency: Currency
|
|
522
|
-
|
|
523
|
-
|
|
524
498
|
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
525
499
|
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
526
500
|
|
|
527
501
|
|
|
528
|
-
class SlimCustomerFragment(BaseModel):
|
|
529
|
-
id: Any
|
|
530
|
-
name: Optional[str] = Field(default=None)
|
|
531
|
-
email: Optional[str] = Field(default=None)
|
|
532
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
533
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
534
|
-
ref_id: str = Field(alias="refId")
|
|
535
|
-
customer_id: str = Field(alias="customerId")
|
|
536
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
537
|
-
additional_meta_data: Optional[Any] = Field(
|
|
538
|
-
alias="additionalMetaData", default=None
|
|
539
|
-
)
|
|
540
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
541
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
542
|
-
)
|
|
543
|
-
|
|
544
|
-
|
|
545
502
|
class SubscriptionInvoiceFragment(BaseModel):
|
|
546
503
|
billing_id: str = Field(alias="billingId")
|
|
547
504
|
status: SubscriptionInvoiceStatus
|
|
@@ -570,10 +527,6 @@ class SubscriptionInvoiceFragment(BaseModel):
|
|
|
570
527
|
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
571
528
|
|
|
572
529
|
|
|
573
|
-
class CustomerResourceFragment(BaseModel):
|
|
574
|
-
resource_id: str = Field(alias="resourceId")
|
|
575
|
-
|
|
576
|
-
|
|
577
530
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
578
531
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
579
532
|
alias="subscriptionScheduleType"
|
|
@@ -736,207 +689,254 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
736
689
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
737
690
|
|
|
738
691
|
|
|
739
|
-
class
|
|
692
|
+
class SlimCustomerFragment(BaseModel):
|
|
740
693
|
id: Any
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
)
|
|
745
|
-
start_date: Any = Field(alias="startDate")
|
|
746
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
747
|
-
trial_end_date: Optional[Any] = Field(alias="trialEndDate", default=None)
|
|
748
|
-
cancellation_date: Optional[Any] = Field(alias="cancellationDate", default=None)
|
|
749
|
-
effective_end_date: Optional[Any] = Field(alias="effectiveEndDate", default=None)
|
|
750
|
-
status: SubscriptionStatus
|
|
694
|
+
name: Optional[str] = Field(default=None)
|
|
695
|
+
email: Optional[str] = Field(default=None)
|
|
696
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
697
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
751
698
|
ref_id: str = Field(alias="refId")
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
)
|
|
699
|
+
customer_id: str = Field(alias="customerId")
|
|
700
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
755
701
|
additional_meta_data: Optional[Any] = Field(
|
|
756
702
|
alias="additionalMetaData", default=None
|
|
757
703
|
)
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
latest_invoice: Optional["SubscriptionFragmentLatestInvoice"] = Field(
|
|
761
|
-
alias="latestInvoice", default=None
|
|
762
|
-
)
|
|
763
|
-
payment_collection: PaymentCollection = Field(alias="paymentCollection")
|
|
764
|
-
payment_collection_method: Optional[PaymentCollectionMethod] = Field(
|
|
765
|
-
alias="paymentCollectionMethod", default=None
|
|
766
|
-
)
|
|
767
|
-
billing_sync_error: Optional[str] = Field(alias="billingSyncError", default=None)
|
|
768
|
-
resource: Optional["SubscriptionFragmentResource"] = Field(default=None)
|
|
769
|
-
experiment_info: Optional["SubscriptionFragmentExperimentInfo"] = Field(
|
|
770
|
-
alias="experimentInfo", default=None
|
|
771
|
-
)
|
|
772
|
-
prices: Optional[List["SubscriptionFragmentPrices"]] = Field(default=None)
|
|
773
|
-
total_price: Optional["SubscriptionFragmentTotalPrice"] = Field(
|
|
774
|
-
alias="totalPrice", default=None
|
|
775
|
-
)
|
|
776
|
-
pricing_type: PricingType = Field(alias="pricingType")
|
|
777
|
-
plan: "SubscriptionFragmentPlan"
|
|
778
|
-
addons: Optional[List["SubscriptionFragmentAddons"]] = Field(default=None)
|
|
779
|
-
scheduled_updates: Optional[List["SubscriptionFragmentScheduledUpdates"]] = Field(
|
|
780
|
-
alias="scheduledUpdates", default=None
|
|
781
|
-
)
|
|
782
|
-
future_updates: List["SubscriptionFragmentFutureUpdates"] = Field(
|
|
783
|
-
alias="futureUpdates"
|
|
704
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
705
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
784
706
|
)
|
|
785
|
-
|
|
786
|
-
|
|
707
|
+
|
|
708
|
+
|
|
709
|
+
class CustomerResourceFragment(BaseModel):
|
|
710
|
+
resource_id: str = Field(alias="resourceId")
|
|
711
|
+
|
|
712
|
+
|
|
713
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
714
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
715
|
+
display_name: str = Field(alias="displayName")
|
|
716
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
717
|
+
default=None
|
|
787
718
|
)
|
|
719
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
788
720
|
|
|
789
721
|
|
|
790
|
-
class
|
|
722
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
791
723
|
pass
|
|
792
724
|
|
|
793
725
|
|
|
794
|
-
class
|
|
795
|
-
|
|
726
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
727
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
728
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
796
729
|
|
|
797
730
|
|
|
798
|
-
class
|
|
799
|
-
|
|
731
|
+
class ProductFragment(BaseModel):
|
|
732
|
+
ref_id: str = Field(alias="refId")
|
|
733
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
734
|
+
description: Optional[str] = Field(default=None)
|
|
735
|
+
additional_meta_data: Optional[Any] = Field(
|
|
736
|
+
alias="additionalMetaData", default=None
|
|
737
|
+
)
|
|
738
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
800
739
|
|
|
801
740
|
|
|
802
|
-
class
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
id: str
|
|
741
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
742
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
743
|
+
alias="downgradePlan", default=None
|
|
744
|
+
)
|
|
807
745
|
|
|
808
746
|
|
|
809
|
-
class
|
|
810
|
-
|
|
811
|
-
|
|
747
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
748
|
+
ref_id: str = Field(alias="refId")
|
|
749
|
+
display_name: str = Field(alias="displayName")
|
|
812
750
|
|
|
813
751
|
|
|
814
|
-
class
|
|
815
|
-
|
|
752
|
+
class PlanFragment(BaseModel):
|
|
753
|
+
id: Any
|
|
754
|
+
ref_id: str = Field(alias="refId")
|
|
755
|
+
display_name: str = Field(alias="displayName")
|
|
756
|
+
description: Optional[str] = Field(default=None)
|
|
757
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
758
|
+
version_number: int = Field(alias="versionNumber")
|
|
759
|
+
additional_meta_data: Optional[Any] = Field(
|
|
760
|
+
alias="additionalMetaData", default=None
|
|
761
|
+
)
|
|
762
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
763
|
+
alias="hiddenFromWidgets", default=None
|
|
764
|
+
)
|
|
765
|
+
product: "PlanFragmentProduct"
|
|
766
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
767
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
768
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
769
|
+
alias="inheritedEntitlements", default=None
|
|
770
|
+
)
|
|
771
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
772
|
+
alias="compatibleAddons", default=None
|
|
773
|
+
)
|
|
774
|
+
compatible_package_groups: Optional[
|
|
775
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
776
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
777
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
778
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
779
|
+
alias="overagePrices", default=None
|
|
780
|
+
)
|
|
781
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
782
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
783
|
+
alias="defaultTrialConfig", default=None
|
|
784
|
+
)
|
|
816
785
|
|
|
817
786
|
|
|
818
|
-
class
|
|
787
|
+
class PlanFragmentProduct(ProductFragment):
|
|
819
788
|
pass
|
|
820
789
|
|
|
821
790
|
|
|
822
|
-
class
|
|
791
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
792
|
+
ref_id: str = Field(alias="refId")
|
|
793
|
+
display_name: str = Field(alias="displayName")
|
|
794
|
+
|
|
795
|
+
|
|
796
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
823
797
|
pass
|
|
824
798
|
|
|
825
799
|
|
|
826
|
-
class
|
|
827
|
-
|
|
828
|
-
quantity: float
|
|
829
|
-
addon: "SubscriptionFragmentAddonsAddon"
|
|
800
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
801
|
+
pass
|
|
830
802
|
|
|
831
803
|
|
|
832
|
-
class
|
|
804
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
833
805
|
pass
|
|
834
806
|
|
|
835
807
|
|
|
836
|
-
class
|
|
808
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
837
809
|
pass
|
|
838
810
|
|
|
839
811
|
|
|
840
|
-
class
|
|
812
|
+
class PlanFragmentPrices(PriceFragment):
|
|
841
813
|
pass
|
|
842
814
|
|
|
843
815
|
|
|
844
|
-
class
|
|
816
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
845
817
|
pass
|
|
846
818
|
|
|
847
819
|
|
|
848
|
-
class
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
alias="featureUnitsPlural", default=None
|
|
855
|
-
)
|
|
856
|
-
description: Optional[str] = Field(default=None)
|
|
857
|
-
display_name: str = Field(alias="displayName")
|
|
858
|
-
ref_id: str = Field(alias="refId")
|
|
859
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
860
|
-
alias="unitTransformation", default=None
|
|
820
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
821
|
+
duration: float
|
|
822
|
+
units: TrialPeriodUnits
|
|
823
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
824
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
825
|
+
alias="trialEndBehavior", default=None
|
|
861
826
|
)
|
|
862
827
|
|
|
863
828
|
|
|
864
|
-
class
|
|
865
|
-
|
|
866
|
-
round: UnitTransformationRound
|
|
829
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
830
|
+
limit: float
|
|
867
831
|
|
|
868
832
|
|
|
869
|
-
class
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
alias="
|
|
833
|
+
class SubscriptionFragment(BaseModel):
|
|
834
|
+
id: Any
|
|
835
|
+
subscription_id: str = Field(alias="subscriptionId")
|
|
836
|
+
paying_customer: Optional["SubscriptionFragmentPayingCustomer"] = Field(
|
|
837
|
+
alias="payingCustomer", default=None
|
|
874
838
|
)
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
885
|
-
alias="entitlementUpdatedAt", default=None
|
|
839
|
+
start_date: Any = Field(alias="startDate")
|
|
840
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
841
|
+
trial_end_date: Optional[Any] = Field(alias="trialEndDate", default=None)
|
|
842
|
+
cancellation_date: Optional[Any] = Field(alias="cancellationDate", default=None)
|
|
843
|
+
effective_end_date: Optional[Any] = Field(alias="effectiveEndDate", default=None)
|
|
844
|
+
status: SubscriptionStatus
|
|
845
|
+
ref_id: str = Field(alias="refId")
|
|
846
|
+
current_billing_period_end: Optional[Any] = Field(
|
|
847
|
+
alias="currentBillingPeriodEnd", default=None
|
|
886
848
|
)
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
890
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
891
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
892
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
893
|
-
alias="resetPeriod", default=None
|
|
849
|
+
additional_meta_data: Optional[Any] = Field(
|
|
850
|
+
alias="additionalMetaData", default=None
|
|
894
851
|
)
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
900
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
901
|
-
],
|
|
902
|
-
Field(discriminator="typename__"),
|
|
903
|
-
]
|
|
904
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
905
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
906
|
-
credit_rate: Optional["EntitlementFragmentCreditRate"] = Field(
|
|
907
|
-
alias="creditRate", default=None
|
|
852
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
853
|
+
billing_link_url: Optional[str] = Field(alias="billingLinkUrl", default=None)
|
|
854
|
+
latest_invoice: Optional["SubscriptionFragmentLatestInvoice"] = Field(
|
|
855
|
+
alias="latestInvoice", default=None
|
|
908
856
|
)
|
|
909
|
-
|
|
857
|
+
payment_collection: PaymentCollection = Field(alias="paymentCollection")
|
|
858
|
+
payment_collection_method: Optional[PaymentCollectionMethod] = Field(
|
|
859
|
+
alias="paymentCollectionMethod", default=None
|
|
860
|
+
)
|
|
861
|
+
billing_sync_error: Optional[str] = Field(alias="billingSyncError", default=None)
|
|
862
|
+
resource: Optional["SubscriptionFragmentResource"] = Field(default=None)
|
|
863
|
+
experiment_info: Optional["SubscriptionFragmentExperimentInfo"] = Field(
|
|
864
|
+
alias="experimentInfo", default=None
|
|
865
|
+
)
|
|
866
|
+
prices: Optional[List["SubscriptionFragmentPrices"]] = Field(default=None)
|
|
867
|
+
total_price: Optional["SubscriptionFragmentTotalPrice"] = Field(
|
|
868
|
+
alias="totalPrice", default=None
|
|
869
|
+
)
|
|
870
|
+
pricing_type: PricingType = Field(alias="pricingType")
|
|
871
|
+
plan: "SubscriptionFragmentPlan"
|
|
872
|
+
addons: Optional[List["SubscriptionFragmentAddons"]] = Field(default=None)
|
|
873
|
+
scheduled_updates: Optional[List["SubscriptionFragmentScheduledUpdates"]] = Field(
|
|
874
|
+
alias="scheduledUpdates", default=None
|
|
875
|
+
)
|
|
876
|
+
future_updates: List["SubscriptionFragmentFutureUpdates"] = Field(
|
|
877
|
+
alias="futureUpdates"
|
|
878
|
+
)
|
|
879
|
+
trial_configuration: Optional["SubscriptionFragmentTrialConfiguration"] = Field(
|
|
880
|
+
alias="trialConfiguration", default=None
|
|
881
|
+
)
|
|
882
|
+
|
|
883
|
+
|
|
884
|
+
class SubscriptionFragmentPayingCustomer(SlimCustomerFragment):
|
|
885
|
+
pass
|
|
910
886
|
|
|
911
887
|
|
|
912
|
-
class
|
|
913
|
-
|
|
914
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
915
|
-
alias="monthlyAccordingTo", default=None
|
|
916
|
-
)
|
|
888
|
+
class SubscriptionFragmentLatestInvoice(SubscriptionInvoiceFragment):
|
|
889
|
+
pass
|
|
917
890
|
|
|
918
891
|
|
|
919
|
-
class
|
|
920
|
-
|
|
921
|
-
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
922
|
-
alias="weeklyAccordingTo", default=None
|
|
923
|
-
)
|
|
892
|
+
class SubscriptionFragmentResource(CustomerResourceFragment):
|
|
893
|
+
pass
|
|
924
894
|
|
|
925
895
|
|
|
926
|
-
class
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
896
|
+
class SubscriptionFragmentExperimentInfo(BaseModel):
|
|
897
|
+
name: str
|
|
898
|
+
group_type: experimentGroupType = Field(alias="groupType")
|
|
899
|
+
group_name: str = Field(alias="groupName")
|
|
900
|
+
id: str
|
|
931
901
|
|
|
932
902
|
|
|
933
|
-
class
|
|
903
|
+
class SubscriptionFragmentPrices(BaseModel):
|
|
904
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
905
|
+
price: Optional["SubscriptionFragmentPricesPrice"] = Field(default=None)
|
|
906
|
+
|
|
907
|
+
|
|
908
|
+
class SubscriptionFragmentPricesPrice(PriceFragment):
|
|
934
909
|
pass
|
|
935
910
|
|
|
936
911
|
|
|
937
|
-
class
|
|
938
|
-
|
|
939
|
-
|
|
912
|
+
class SubscriptionFragmentTotalPrice(TotalPriceFragment):
|
|
913
|
+
pass
|
|
914
|
+
|
|
915
|
+
|
|
916
|
+
class SubscriptionFragmentPlan(PlanFragment):
|
|
917
|
+
pass
|
|
918
|
+
|
|
919
|
+
|
|
920
|
+
class SubscriptionFragmentAddons(BaseModel):
|
|
921
|
+
id: Any
|
|
922
|
+
quantity: float
|
|
923
|
+
addon: "SubscriptionFragmentAddonsAddon"
|
|
924
|
+
|
|
925
|
+
|
|
926
|
+
class SubscriptionFragmentAddonsAddon(AddonFragment):
|
|
927
|
+
pass
|
|
928
|
+
|
|
929
|
+
|
|
930
|
+
class SubscriptionFragmentScheduledUpdates(SubscriptionScheduledUpdateData):
|
|
931
|
+
pass
|
|
932
|
+
|
|
933
|
+
|
|
934
|
+
class SubscriptionFragmentFutureUpdates(SubscriptionFutureUpdateData):
|
|
935
|
+
pass
|
|
936
|
+
|
|
937
|
+
|
|
938
|
+
class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragment):
|
|
939
|
+
pass
|
|
940
940
|
|
|
941
941
|
|
|
942
942
|
class ApplySubscriptionFragment(BaseModel):
|
|
@@ -1016,45 +1016,6 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
1016
1016
|
)
|
|
1017
1017
|
|
|
1018
1018
|
|
|
1019
|
-
class ZuoraCheckoutCredentialsFragment(BaseModel):
|
|
1020
|
-
publishable_key: str = Field(alias="publishableKey")
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
class StripeCheckoutCredentialsFragment(BaseModel):
|
|
1024
|
-
account_id: Optional[str] = Field(alias="accountId", default=None)
|
|
1025
|
-
setup_secret: str = Field(alias="setupSecret")
|
|
1026
|
-
public_key: Optional[str] = Field(alias="publicKey", default=None)
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
1030
|
-
status: PromotionalEntitlementStatus
|
|
1031
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1032
|
-
feature_id: Any = Field(alias="featureId")
|
|
1033
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1034
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1035
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1036
|
-
alias="resetPeriod", default=None
|
|
1037
|
-
)
|
|
1038
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1039
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1040
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1044
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1045
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1046
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1047
|
-
feature_units_plural: Optional[str] = Field(
|
|
1048
|
-
alias="featureUnitsPlural", default=None
|
|
1049
|
-
)
|
|
1050
|
-
display_name: str = Field(alias="displayName")
|
|
1051
|
-
description: Optional[str] = Field(default=None)
|
|
1052
|
-
ref_id: str = Field(alias="refId")
|
|
1053
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1054
|
-
alias="additionalMetaData", default=None
|
|
1055
|
-
)
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
1019
|
class CouponFragment(BaseModel):
|
|
1059
1020
|
id: Any
|
|
1060
1021
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1089,6 +1050,35 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1089
1050
|
status: SyncStatus
|
|
1090
1051
|
|
|
1091
1052
|
|
|
1053
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
1054
|
+
status: PromotionalEntitlementStatus
|
|
1055
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1056
|
+
feature_id: Any = Field(alias="featureId")
|
|
1057
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1058
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1059
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1060
|
+
alias="resetPeriod", default=None
|
|
1061
|
+
)
|
|
1062
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1063
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1064
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1065
|
+
|
|
1066
|
+
|
|
1067
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1068
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1069
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1070
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1071
|
+
feature_units_plural: Optional[str] = Field(
|
|
1072
|
+
alias="featureUnitsPlural", default=None
|
|
1073
|
+
)
|
|
1074
|
+
display_name: str = Field(alias="displayName")
|
|
1075
|
+
description: Optional[str] = Field(default=None)
|
|
1076
|
+
ref_id: str = Field(alias="refId")
|
|
1077
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1078
|
+
alias="additionalMetaData", default=None
|
|
1079
|
+
)
|
|
1080
|
+
|
|
1081
|
+
|
|
1092
1082
|
class CustomerFragment(SlimCustomerFragment):
|
|
1093
1083
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1094
1084
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1147,6 +1137,16 @@ class CustomerFragmentPromotionalEntitlements(PromotionalEntitlementFragment):
|
|
|
1147
1137
|
pass
|
|
1148
1138
|
|
|
1149
1139
|
|
|
1140
|
+
class ZuoraCheckoutCredentialsFragment(BaseModel):
|
|
1141
|
+
publishable_key: str = Field(alias="publishableKey")
|
|
1142
|
+
|
|
1143
|
+
|
|
1144
|
+
class StripeCheckoutCredentialsFragment(BaseModel):
|
|
1145
|
+
account_id: Optional[str] = Field(alias="accountId", default=None)
|
|
1146
|
+
setup_secret: str = Field(alias="setupSecret")
|
|
1147
|
+
public_key: Optional[str] = Field(alias="publicKey", default=None)
|
|
1148
|
+
|
|
1149
|
+
|
|
1150
1150
|
class CheckoutStateFragment(BaseModel):
|
|
1151
1151
|
configuration: Optional["CheckoutStateFragmentConfiguration"] = Field(default=None)
|
|
1152
1152
|
setup_secret: str = Field(alias="setupSecret")
|
|
@@ -1445,6 +1445,48 @@ class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
|
1445
1445
|
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1446
1446
|
|
|
1447
1447
|
|
|
1448
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1449
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1450
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1451
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1452
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1453
|
+
default=None
|
|
1454
|
+
)
|
|
1455
|
+
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1456
|
+
alias="creditRate", default=None
|
|
1457
|
+
)
|
|
1458
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1459
|
+
default=None
|
|
1460
|
+
)
|
|
1461
|
+
|
|
1462
|
+
|
|
1463
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1464
|
+
amount: float
|
|
1465
|
+
currency: Currency
|
|
1466
|
+
|
|
1467
|
+
|
|
1468
|
+
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1469
|
+
amount: float
|
|
1470
|
+
currency_id: str = Field(alias="currencyId")
|
|
1471
|
+
|
|
1472
|
+
|
|
1473
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1474
|
+
id: Any
|
|
1475
|
+
ref_id: str = Field(alias="refId")
|
|
1476
|
+
display_name: str = Field(alias="displayName")
|
|
1477
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1478
|
+
feature_units_plural: Optional[str] = Field(
|
|
1479
|
+
alias="featureUnitsPlural", default=None
|
|
1480
|
+
)
|
|
1481
|
+
|
|
1482
|
+
|
|
1483
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1484
|
+
addon_id: str = Field(alias="addonId")
|
|
1485
|
+
description: Optional[str] = Field(default=None)
|
|
1486
|
+
display_name: str = Field(alias="displayName")
|
|
1487
|
+
quantity: int
|
|
1488
|
+
|
|
1489
|
+
|
|
1448
1490
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1449
1491
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1450
1492
|
alias="subscriptionScheduleType"
|
|
@@ -1614,48 +1656,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1614
1656
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1615
1657
|
|
|
1616
1658
|
|
|
1617
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1618
|
-
addon_id: str = Field(alias="addonId")
|
|
1619
|
-
description: Optional[str] = Field(default=None)
|
|
1620
|
-
display_name: str = Field(alias="displayName")
|
|
1621
|
-
quantity: int
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1625
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1626
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1627
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1628
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1629
|
-
default=None
|
|
1630
|
-
)
|
|
1631
|
-
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1632
|
-
alias="creditRate", default=None
|
|
1633
|
-
)
|
|
1634
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1635
|
-
default=None
|
|
1636
|
-
)
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1640
|
-
amount: float
|
|
1641
|
-
currency: Currency
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1645
|
-
amount: float
|
|
1646
|
-
currency_id: str = Field(alias="currencyId")
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1650
|
-
id: Any
|
|
1651
|
-
ref_id: str = Field(alias="refId")
|
|
1652
|
-
display_name: str = Field(alias="displayName")
|
|
1653
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1654
|
-
feature_units_plural: Optional[str] = Field(
|
|
1655
|
-
alias="featureUnitsPlural", default=None
|
|
1656
|
-
)
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
1659
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1660
1660
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1661
1661
|
plan_id: str = Field(alias="planId")
|
|
@@ -3041,33 +3041,33 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
3041
3041
|
|
|
3042
3042
|
|
|
3043
3043
|
AddonDependencyFragment.model_rebuild()
|
|
3044
|
-
PackageEntitlementFragment.model_rebuild()
|
|
3045
3044
|
PriceTierFragment.model_rebuild()
|
|
3046
|
-
PriceFragment.model_rebuild()
|
|
3047
3045
|
OveragePriceFragment.model_rebuild()
|
|
3046
|
+
PackageEntitlementFragment.model_rebuild()
|
|
3047
|
+
PriceFragment.model_rebuild()
|
|
3048
3048
|
AddonFragment.model_rebuild()
|
|
3049
|
-
|
|
3050
|
-
|
|
3051
|
-
PlanFragment.model_rebuild()
|
|
3052
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
3049
|
+
FeatureFragment.model_rebuild()
|
|
3050
|
+
EntitlementFragment.model_rebuild()
|
|
3053
3051
|
TotalPriceFragment.model_rebuild()
|
|
3052
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
3054
3053
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
3055
|
-
SlimCustomerFragment.model_rebuild()
|
|
3056
3054
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
3057
|
-
CustomerResourceFragment.model_rebuild()
|
|
3058
3055
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
3056
|
+
SlimCustomerFragment.model_rebuild()
|
|
3057
|
+
CustomerResourceFragment.model_rebuild()
|
|
3058
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
3059
|
+
ProductFragment.model_rebuild()
|
|
3060
|
+
PlanFragment.model_rebuild()
|
|
3059
3061
|
SubscriptionFragment.model_rebuild()
|
|
3060
|
-
FeatureFragment.model_rebuild()
|
|
3061
|
-
EntitlementFragment.model_rebuild()
|
|
3062
3062
|
ApplySubscriptionFragment.model_rebuild()
|
|
3063
3063
|
FontVariantFragment.model_rebuild()
|
|
3064
3064
|
TypographyConfigurationFragment.model_rebuild()
|
|
3065
3065
|
CheckoutConfigurationFragment.model_rebuild()
|
|
3066
|
-
ZuoraCheckoutCredentialsFragment.model_rebuild()
|
|
3067
|
-
StripeCheckoutCredentialsFragment.model_rebuild()
|
|
3068
|
-
PromotionalEntitlementFragment.model_rebuild()
|
|
3069
3066
|
CouponFragment.model_rebuild()
|
|
3067
|
+
PromotionalEntitlementFragment.model_rebuild()
|
|
3070
3068
|
CustomerFragment.model_rebuild()
|
|
3069
|
+
ZuoraCheckoutCredentialsFragment.model_rebuild()
|
|
3070
|
+
StripeCheckoutCredentialsFragment.model_rebuild()
|
|
3071
3071
|
CheckoutStateFragment.model_rebuild()
|
|
3072
3072
|
CreditBalanceFragment.model_rebuild()
|
|
3073
3073
|
CreditBalanceUpdatedPayload.model_rebuild()
|
|
@@ -3080,9 +3080,9 @@ CustomerPortalBillingInformationFragment.model_rebuild()
|
|
|
3080
3080
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
3081
3081
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
3082
3082
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
3083
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
3084
|
-
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
3085
3083
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
3084
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
3085
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
3086
3086
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
3087
3087
|
CustomerPortalFragment.model_rebuild()
|
|
3088
3088
|
CustomerStatisticsFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -5201,6 +5201,11 @@ class VendorIdentifierFilterComparison(BaseModel):
|
|
|
5201
5201
|
not_like: Optional[VendorIdentifier] = Field(alias="notLike", default=None)
|
|
5202
5202
|
|
|
5203
5203
|
|
|
5204
|
+
class VoidCreditGrantInput(BaseModel):
|
|
5205
|
+
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
5206
|
+
id: str
|
|
5207
|
+
|
|
5208
|
+
|
|
5204
5209
|
class WeeklyResetPeriodConfigInput(BaseModel):
|
|
5205
5210
|
according_to: WeeklyAccordingTo = Field(alias="accordingTo")
|
|
5206
5211
|
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Generated by ariadne-codegen
|
|
2
|
+
# Source: operations.graphql
|
|
3
|
+
|
|
4
|
+
from stigg._vendors.pydantic import Field
|
|
5
|
+
|
|
6
|
+
from .base_model import BaseModel
|
|
7
|
+
from .fragments import CreditGrantFragment
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class VoidCreditGrant(BaseModel):
|
|
11
|
+
void_credit_grant: "VoidCreditGrantVoidCreditGrant" = Field(alias="voidCreditGrant")
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class VoidCreditGrantVoidCreditGrant(CreditGrantFragment):
|
|
15
|
+
pass
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
VoidCreditGrant.model_rebuild()
|
|
@@ -106,25 +106,25 @@ 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=xwYBK0s9WkNoL-9QnvqV-jrkktMHlK2P__uOGcKatKM,78603
|
|
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
|
|
113
|
-
stigg/generated/async_client.py,sha256=
|
|
113
|
+
stigg/generated/async_client.py,sha256=KGB6qwieGt5JUtjD0Dl_Mf198lPKMkRKb0Ic7DMNi6E,193599
|
|
114
114
|
stigg/generated/base_client.py,sha256=nAto-nOqrOHFTLqdRy2ZDpT1afgsqCzf6hTeBh5MyPQ,6674
|
|
115
115
|
stigg/generated/base_model.py,sha256=0rs99bmZqPbltlPVMfhExeA5zD6ATQFaNZVsxGNonI4,635
|
|
116
116
|
stigg/generated/cancel_subscription.py,sha256=pKrMFmKjGIuWvnVCYQ8brWQO9_JeTnfScgGQjztuN-o,457
|
|
117
117
|
stigg/generated/cancel_subscription_updates.py,sha256=T1C9vyppzZi_91pEnIGkHUL3GEsvtf5EMwr1f01tjbM,241
|
|
118
|
-
stigg/generated/client.py,sha256=
|
|
118
|
+
stigg/generated/client.py,sha256=nJ1GDv1Ky9F1wPvCbtxwvV69hxh_ag5VQwZXpj9qIQ8,192864
|
|
119
119
|
stigg/generated/create_payment_session.py,sha256=VRPT8Bbvb_evFHMav9y_pXWHMVbkRy9csf5SJCCUARk,470
|
|
120
120
|
stigg/generated/create_subscription.py,sha256=vbpBJ_daXHcQDtvU3vbwSr2E7s4VGRHxqPavyTV3Mtk,457
|
|
121
121
|
stigg/generated/delegate_subscription_to_customer.py,sha256=0TgQDO0Hk-z7X7PGtqhvciqa8IjkToK9cpiX3Kqu_UY,561
|
|
122
122
|
stigg/generated/detach_customer_payment_method.py,sha256=ACXlC2xsGaUP723OrayFZQ9SbXxe8TtVUYdG1gqcYFc,523
|
|
123
|
-
stigg/generated/enums.py,sha256=
|
|
123
|
+
stigg/generated/enums.py,sha256=JUtjNl58vJpWeq_Ucdm_TVQ0AJ_zvqywKvWkj8D9rMI,39797
|
|
124
124
|
stigg/generated/estimate_subscription.py,sha256=c0_vg0A_Hi8fdjeGudWZ0WziUF9jcjX5rlRitGMAMaQ,479
|
|
125
125
|
stigg/generated/estimate_subscription_update.py,sha256=ZYIFqqHHDfzhrOn95QnMmPNTXZ7JrKWRlUFzk8fWwKA,528
|
|
126
126
|
stigg/generated/exceptions.py,sha256=OQu-ZYCCV4VyMWTd1HR8gIjIK2CrA_JMlFxqOAJugWY,2411
|
|
127
|
-
stigg/generated/fragments.py,sha256=
|
|
127
|
+
stigg/generated/fragments.py,sha256=ehRa81XN4LsaEimz_tGDcXSN58g7KtyAMEEBVujg0Z8,111377
|
|
128
128
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
129
129
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
130
130
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -153,7 +153,7 @@ stigg/generated/grant_promotional_entitlements_group.py,sha256=iQwCd07VFaYbsN_E-
|
|
|
153
153
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
154
154
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
155
155
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
156
|
-
stigg/generated/input_types.py,sha256=
|
|
156
|
+
stigg/generated/input_types.py,sha256=jCkOdRQDTYAaw5JXX3tBaVWT0Rzq-kiYVKh382BuxQs,214951
|
|
157
157
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
158
158
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
159
159
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -171,7 +171,8 @@ stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9e
|
|
|
171
171
|
stigg/generated/unlink_promotional_entitlements_group.py,sha256=8UIRQ0CNvReRfX0LZmDYkRn9mMjZm9n41YG6-p7Z8qU,636
|
|
172
172
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
173
173
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
174
|
-
|
|
175
|
-
stigg_api_client_v2-3.
|
|
176
|
-
stigg_api_client_v2-3.
|
|
177
|
-
stigg_api_client_v2-3.
|
|
174
|
+
stigg/generated/void_credit_grant.py,sha256=uQ22Xb2vwMOJfqh48GU2fhZ6Dcv9nHNIx_UJpjmJSBU,410
|
|
175
|
+
stigg_api_client_v2-3.108.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
176
|
+
stigg_api_client_v2-3.108.0.dist-info/METADATA,sha256=ruc6JTq1SYu3CjygJvsCaf0eNtpKobOGXS6pTdJZSNs,2258
|
|
177
|
+
stigg_api_client_v2-3.108.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
178
|
+
stigg_api_client_v2-3.108.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|