stigg-api-client-v2 2.492.0__py3-none-any.whl → 2.497.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 +12 -0
- stigg/generated/enums.py +12 -0
- stigg/generated/fragments.py +382 -382
- stigg/generated/input_types.py +59 -0
- {stigg_api_client_v2-2.492.0.dist-info → stigg_api_client_v2-2.497.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.492.0.dist-info → stigg_api_client_v2-2.497.0.dist-info}/RECORD +8 -8
- {stigg_api_client_v2-2.492.0.dist-info → stigg_api_client_v2-2.497.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.492.0.dist-info → stigg_api_client_v2-2.497.0.dist-info}/WHEEL +0 -0
stigg/generated/__init__.py
CHANGED
|
@@ -44,6 +44,7 @@ from .enums import (
|
|
|
44
44
|
CouponSource,
|
|
45
45
|
CouponStatus,
|
|
46
46
|
CouponType,
|
|
47
|
+
CreditGrantType,
|
|
47
48
|
Currency,
|
|
48
49
|
CustomerResourceSortFields,
|
|
49
50
|
CustomerSortFields,
|
|
@@ -630,7 +631,9 @@ from .input_types import (
|
|
|
630
631
|
CreateOrUpdateAwsMarketplaceProductInput,
|
|
631
632
|
CreatePackageGroup,
|
|
632
633
|
CreateWorkflowTriggerInput,
|
|
634
|
+
CreditGrantInput,
|
|
633
635
|
CursorPaging,
|
|
636
|
+
CustomCurrencyInput,
|
|
634
637
|
CustomerBillingInfo,
|
|
635
638
|
CustomerFilter,
|
|
636
639
|
CustomerFilterCustomerSubscriptionFilter,
|
|
@@ -712,6 +715,7 @@ from .input_types import (
|
|
|
712
715
|
FontVariantInput,
|
|
713
716
|
GetActiveSubscriptionsInput,
|
|
714
717
|
GetAuth0ApplicationsInput,
|
|
718
|
+
GetCreditGrantsInput,
|
|
715
719
|
GetCustomerByRefIdInput,
|
|
716
720
|
GetPackageByRefIdInput,
|
|
717
721
|
GetPackageGroup,
|
|
@@ -896,6 +900,8 @@ from .input_types import (
|
|
|
896
900
|
UnlinkFeatureGroupFromPackageInput,
|
|
897
901
|
UpdateAccountInput,
|
|
898
902
|
UpdateCouponInput,
|
|
903
|
+
UpdateCreditGrantInput,
|
|
904
|
+
UpdateCustomCurrencyInput,
|
|
899
905
|
UpdateCustomerInput,
|
|
900
906
|
UpdateExperimentInput,
|
|
901
907
|
UpdateFeatureInput,
|
|
@@ -1092,8 +1098,11 @@ __all__ = [
|
|
|
1092
1098
|
"CreateSubscription",
|
|
1093
1099
|
"CreateSubscriptionCreateSubscription",
|
|
1094
1100
|
"CreateWorkflowTriggerInput",
|
|
1101
|
+
"CreditGrantInput",
|
|
1102
|
+
"CreditGrantType",
|
|
1095
1103
|
"Currency",
|
|
1096
1104
|
"CursorPaging",
|
|
1105
|
+
"CustomCurrencyInput",
|
|
1097
1106
|
"CustomerBillingInfo",
|
|
1098
1107
|
"CustomerFilter",
|
|
1099
1108
|
"CustomerFilterCustomerSubscriptionFilter",
|
|
@@ -1293,6 +1302,7 @@ __all__ = [
|
|
|
1293
1302
|
"GetCouponsCoupons",
|
|
1294
1303
|
"GetCouponsCouponsEdges",
|
|
1295
1304
|
"GetCouponsCouponsEdgesNode",
|
|
1305
|
+
"GetCreditGrantsInput",
|
|
1296
1306
|
"GetCustomerById",
|
|
1297
1307
|
"GetCustomerByIdGetCustomerByRefId",
|
|
1298
1308
|
"GetCustomerByRefIdInput",
|
|
@@ -1845,6 +1855,8 @@ __all__ = [
|
|
|
1845
1855
|
"UnlinkFeatureGroupFromPackageInput",
|
|
1846
1856
|
"UpdateAccountInput",
|
|
1847
1857
|
"UpdateCouponInput",
|
|
1858
|
+
"UpdateCreditGrantInput",
|
|
1859
|
+
"UpdateCustomCurrencyInput",
|
|
1848
1860
|
"UpdateCustomer",
|
|
1849
1861
|
"UpdateCustomerInput",
|
|
1850
1862
|
"UpdateCustomerUpdateCustomer",
|
stigg/generated/enums.py
CHANGED
|
@@ -157,6 +157,11 @@ class CouponType(str, Enum):
|
|
|
157
157
|
PERCENTAGE = "PERCENTAGE"
|
|
158
158
|
|
|
159
159
|
|
|
160
|
+
class CreditGrantType(str, Enum):
|
|
161
|
+
PAID = "PAID"
|
|
162
|
+
PROMOTIONAL = "PROMOTIONAL"
|
|
163
|
+
|
|
164
|
+
|
|
160
165
|
class Currency(str, Enum):
|
|
161
166
|
AED = "AED"
|
|
162
167
|
ALL = "ALL"
|
|
@@ -434,6 +439,9 @@ class ErrorCode(str, Enum):
|
|
|
434
439
|
CannotReportUsageForEntitlementWithMeterError = (
|
|
435
440
|
"CannotReportUsageForEntitlementWithMeterError"
|
|
436
441
|
)
|
|
442
|
+
CannotUpdateExpireAtForExpiredCreditGrantError = (
|
|
443
|
+
"CannotUpdateExpireAtForExpiredCreditGrantError"
|
|
444
|
+
)
|
|
437
445
|
CannotUpdateUnitTransformationError = "CannotUpdateUnitTransformationError"
|
|
438
446
|
CannotUpsertToPackageThatHasDraft = "CannotUpsertToPackageThatHasDraft"
|
|
439
447
|
ChangingPayingCustomerIsNotSupportedError = (
|
|
@@ -441,6 +449,8 @@ class ErrorCode(str, Enum):
|
|
|
441
449
|
)
|
|
442
450
|
CheckoutIsNotSupported = "CheckoutIsNotSupported"
|
|
443
451
|
CouponNotFound = "CouponNotFound"
|
|
452
|
+
CreditGrantNotFound = "CreditGrantNotFound"
|
|
453
|
+
CustomCurrencyNotFound = "CustomCurrencyNotFound"
|
|
444
454
|
CustomerAlreadyHaveCustomerCoupon = "CustomerAlreadyHaveCustomerCoupon"
|
|
445
455
|
CustomerAlreadyUsesCoupon = "CustomerAlreadyUsesCoupon"
|
|
446
456
|
CustomerHasNoEmailAddress = "CustomerHasNoEmailAddress"
|
|
@@ -466,6 +476,7 @@ class ErrorCode(str, Enum):
|
|
|
466
476
|
ExperimentAlreadyRunning = "ExperimentAlreadyRunning"
|
|
467
477
|
ExperimentNotFoundError = "ExperimentNotFoundError"
|
|
468
478
|
ExperimentStatusError = "ExperimentStatusError"
|
|
479
|
+
ExpireAtMustBeLaterThanEffectiveAtError = "ExpireAtMustBeLaterThanEffectiveAtError"
|
|
469
480
|
FailedToCreateCheckoutSessionError = "FailedToCreateCheckoutSessionError"
|
|
470
481
|
FailedToImportCustomer = "FailedToImportCustomer"
|
|
471
482
|
FailedToImportSubscriptions = "FailedToImportSubscriptions"
|
|
@@ -561,6 +572,7 @@ class ErrorCode(str, Enum):
|
|
|
561
572
|
SubscriptionMustHaveSinglePlanError = "SubscriptionMustHaveSinglePlanError"
|
|
562
573
|
SubscriptionNoBillingId = "SubscriptionNoBillingId"
|
|
563
574
|
SubscriptionNotFound = "SubscriptionNotFound"
|
|
575
|
+
TooManyCustomCurrencies = "TooManyCustomCurrencies"
|
|
564
576
|
TooManySubscriptionsPerCustomer = "TooManySubscriptionsPerCustomer"
|
|
565
577
|
TrialMustBeCancelledImmediately = "TrialMustBeCancelledImmediately"
|
|
566
578
|
UnPublishedPackage = "UnPublishedPackage"
|
stigg/generated/fragments.py
CHANGED
|
@@ -80,42 +80,6 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
80
80
|
currency: Currency
|
|
81
81
|
|
|
82
82
|
|
|
83
|
-
class PriceFragment(BaseModel):
|
|
84
|
-
billing_model: BillingModel = Field(alias="billingModel")
|
|
85
|
-
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
86
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
87
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
88
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
89
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
90
|
-
billing_country_code: Optional[str] = Field(
|
|
91
|
-
alias="billingCountryCode", default=None
|
|
92
|
-
)
|
|
93
|
-
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
94
|
-
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
95
|
-
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
96
|
-
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
97
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
class PriceFragmentPrice(BaseModel):
|
|
101
|
-
amount: float
|
|
102
|
-
currency: Currency
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
class PriceFragmentTiers(PriceTierFragment):
|
|
106
|
-
pass
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
class PriceFragmentFeature(BaseModel):
|
|
110
|
-
ref_id: str = Field(alias="refId")
|
|
111
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
112
|
-
feature_units_plural: Optional[str] = Field(
|
|
113
|
-
alias="featureUnitsPlural", default=None
|
|
114
|
-
)
|
|
115
|
-
display_name: str = Field(alias="displayName")
|
|
116
|
-
description: Optional[str] = Field(default=None)
|
|
117
|
-
|
|
118
|
-
|
|
119
83
|
class OveragePriceFragment(BaseModel):
|
|
120
84
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
121
85
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -182,316 +146,80 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
182
146
|
)
|
|
183
147
|
|
|
184
148
|
|
|
185
|
-
class
|
|
186
|
-
|
|
187
|
-
|
|
149
|
+
class PriceFragment(BaseModel):
|
|
150
|
+
billing_model: BillingModel = Field(alias="billingModel")
|
|
151
|
+
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
152
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
188
153
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
alias="
|
|
193
|
-
)
|
|
194
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
195
|
-
alias="hiddenFromWidgets", default=None
|
|
196
|
-
)
|
|
197
|
-
entitlements: Optional[List["AddonFragmentEntitlements"]] = Field(default=None)
|
|
198
|
-
prices: Optional[List["AddonFragmentPrices"]] = Field(default=None)
|
|
199
|
-
overage_prices: Optional[List["AddonFragmentOveragePrices"]] = Field(
|
|
200
|
-
alias="overagePrices", default=None
|
|
154
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
155
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
156
|
+
billing_country_code: Optional[str] = Field(
|
|
157
|
+
alias="billingCountryCode", default=None
|
|
201
158
|
)
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
class AddonFragmentEntitlements(PackageEntitlementFragment):
|
|
208
|
-
pass
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
class AddonFragmentPrices(PriceFragment):
|
|
212
|
-
pass
|
|
159
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
160
|
+
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
161
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
162
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
163
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
213
164
|
|
|
214
165
|
|
|
215
|
-
class
|
|
216
|
-
|
|
166
|
+
class PriceFragmentPrice(BaseModel):
|
|
167
|
+
amount: float
|
|
168
|
+
currency: Currency
|
|
217
169
|
|
|
218
170
|
|
|
219
|
-
class
|
|
171
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
220
172
|
pass
|
|
221
173
|
|
|
222
174
|
|
|
223
|
-
class
|
|
224
|
-
|
|
225
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
226
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
175
|
+
class PriceFragmentFeature(BaseModel):
|
|
176
|
+
ref_id: str = Field(alias="refId")
|
|
227
177
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
228
178
|
feature_units_plural: Optional[str] = Field(
|
|
229
179
|
alias="featureUnitsPlural", default=None
|
|
230
180
|
)
|
|
231
|
-
description: Optional[str] = Field(default=None)
|
|
232
181
|
display_name: str = Field(alias="displayName")
|
|
233
|
-
ref_id: str = Field(alias="refId")
|
|
234
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
235
|
-
alias="unitTransformation", default=None
|
|
236
|
-
)
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
class FeatureFragmentUnitTransformation(BaseModel):
|
|
240
|
-
divide: float
|
|
241
|
-
round: UnitTransformationRound
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
class EntitlementFragment(BaseModel):
|
|
245
|
-
typename__: str = Field(alias="__typename")
|
|
246
|
-
is_granted: bool = Field(alias="isGranted")
|
|
247
|
-
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
248
|
-
alias="accessDeniedReason", default=None
|
|
249
|
-
)
|
|
250
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
251
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
252
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
253
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
254
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
255
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
256
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
257
|
-
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
258
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
259
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
260
|
-
alias="entitlementUpdatedAt", default=None
|
|
261
|
-
)
|
|
262
|
-
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
263
|
-
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
264
|
-
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
265
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
266
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
267
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
268
|
-
alias="resetPeriod", default=None
|
|
269
|
-
)
|
|
270
|
-
reset_period_configuration: Optional[
|
|
271
|
-
Annotated[
|
|
272
|
-
Union[
|
|
273
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
274
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
275
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
276
|
-
],
|
|
277
|
-
Field(discriminator="typename__"),
|
|
278
|
-
]
|
|
279
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
280
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
284
|
-
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
285
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
286
|
-
alias="monthlyAccordingTo", default=None
|
|
287
|
-
)
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
291
|
-
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
292
|
-
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
293
|
-
alias="weeklyAccordingTo", default=None
|
|
294
|
-
)
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
298
|
-
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
299
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
300
|
-
alias="yearlyAccordingTo", default=None
|
|
301
|
-
)
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
class EntitlementFragmentFeature(FeatureFragment):
|
|
305
|
-
pass
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
class TotalPriceFragment(BaseModel):
|
|
309
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
310
|
-
total: "TotalPriceFragmentTotal"
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
314
|
-
amount: float
|
|
315
|
-
currency: Currency
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
319
|
-
amount: float
|
|
320
|
-
currency: Currency
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
class CustomerResourceFragment(BaseModel):
|
|
324
|
-
resource_id: str = Field(alias="resourceId")
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
328
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
332
|
-
billing_id: str = Field(alias="billingId")
|
|
333
|
-
status: SubscriptionInvoiceStatus
|
|
334
|
-
created_at: Any = Field(alias="createdAt")
|
|
335
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
336
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
337
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
338
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
339
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
340
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
341
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
342
|
-
alias="billingReason", default=None
|
|
343
|
-
)
|
|
344
|
-
currency: Optional[str] = Field(default=None)
|
|
345
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
346
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
347
|
-
alias="subTotalExcludingTax", default=None
|
|
348
|
-
)
|
|
349
|
-
total: Optional[float] = Field(default=None)
|
|
350
|
-
total_excluding_tax: Optional[float] = Field(
|
|
351
|
-
alias="totalExcludingTax", default=None
|
|
352
|
-
)
|
|
353
|
-
tax: Optional[float] = Field(default=None)
|
|
354
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
355
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
class SlimCustomerFragment(BaseModel):
|
|
359
|
-
id: Any
|
|
360
|
-
name: Optional[str] = Field(default=None)
|
|
361
|
-
email: Optional[str] = Field(default=None)
|
|
362
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
363
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
364
|
-
ref_id: str = Field(alias="refId")
|
|
365
|
-
customer_id: str = Field(alias="customerId")
|
|
366
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
367
|
-
additional_meta_data: Optional[Any] = Field(
|
|
368
|
-
alias="additionalMetaData", default=None
|
|
369
|
-
)
|
|
370
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
371
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
372
|
-
)
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
class ProductFragment(BaseModel):
|
|
376
|
-
ref_id: str = Field(alias="refId")
|
|
377
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
378
182
|
description: Optional[str] = Field(default=None)
|
|
379
|
-
additional_meta_data: Optional[Any] = Field(
|
|
380
|
-
alias="additionalMetaData", default=None
|
|
381
|
-
)
|
|
382
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
386
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
387
|
-
alias="downgradePlan", default=None
|
|
388
|
-
)
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
392
|
-
ref_id: str = Field(alias="refId")
|
|
393
|
-
display_name: str = Field(alias="displayName")
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
397
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
398
|
-
display_name: str = Field(alias="displayName")
|
|
399
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
400
|
-
default=None
|
|
401
|
-
)
|
|
402
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
406
|
-
pass
|
|
407
183
|
|
|
408
184
|
|
|
409
|
-
class
|
|
410
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
411
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
class PlanFragment(BaseModel):
|
|
185
|
+
class AddonFragment(BaseModel):
|
|
415
186
|
id: Any
|
|
416
187
|
ref_id: str = Field(alias="refId")
|
|
188
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
417
189
|
display_name: str = Field(alias="displayName")
|
|
418
190
|
description: Optional[str] = Field(default=None)
|
|
419
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
420
|
-
version_number: int = Field(alias="versionNumber")
|
|
421
191
|
additional_meta_data: Optional[Any] = Field(
|
|
422
192
|
alias="additionalMetaData", default=None
|
|
423
193
|
)
|
|
424
194
|
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
425
195
|
alias="hiddenFromWidgets", default=None
|
|
426
196
|
)
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
431
|
-
alias="inheritedEntitlements", default=None
|
|
432
|
-
)
|
|
433
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
434
|
-
alias="compatibleAddons", default=None
|
|
435
|
-
)
|
|
436
|
-
compatible_package_groups: Optional[
|
|
437
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
438
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
439
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
440
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
197
|
+
entitlements: Optional[List["AddonFragmentEntitlements"]] = Field(default=None)
|
|
198
|
+
prices: Optional[List["AddonFragmentPrices"]] = Field(default=None)
|
|
199
|
+
overage_prices: Optional[List["AddonFragmentOveragePrices"]] = Field(
|
|
441
200
|
alias="overagePrices", default=None
|
|
442
201
|
)
|
|
443
202
|
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
)
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
class PlanFragmentProduct(ProductFragment):
|
|
450
|
-
pass
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
454
|
-
ref_id: str = Field(alias="refId")
|
|
455
|
-
display_name: str = Field(alias="displayName")
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
459
|
-
pass
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
463
|
-
pass
|
|
203
|
+
max_quantity: Optional[float] = Field(alias="maxQuantity", default=None)
|
|
204
|
+
dependencies: Optional[List["AddonFragmentDependencies"]] = Field(default=None)
|
|
464
205
|
|
|
465
206
|
|
|
466
|
-
class
|
|
207
|
+
class AddonFragmentEntitlements(PackageEntitlementFragment):
|
|
467
208
|
pass
|
|
468
209
|
|
|
469
210
|
|
|
470
|
-
class
|
|
211
|
+
class AddonFragmentPrices(PriceFragment):
|
|
471
212
|
pass
|
|
472
213
|
|
|
473
214
|
|
|
474
|
-
class
|
|
215
|
+
class AddonFragmentOveragePrices(OveragePriceFragment):
|
|
475
216
|
pass
|
|
476
217
|
|
|
477
218
|
|
|
478
|
-
class
|
|
219
|
+
class AddonFragmentDependencies(AddonDependencyFragment):
|
|
479
220
|
pass
|
|
480
221
|
|
|
481
222
|
|
|
482
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
483
|
-
duration: float
|
|
484
|
-
units: TrialPeriodUnits
|
|
485
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
486
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
487
|
-
alias="trialEndBehavior", default=None
|
|
488
|
-
)
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
492
|
-
limit: float
|
|
493
|
-
|
|
494
|
-
|
|
495
223
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
496
224
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
497
225
|
alias="subscriptionScheduleType"
|
|
@@ -654,6 +382,10 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
654
382
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
655
383
|
|
|
656
384
|
|
|
385
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
386
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
387
|
+
|
|
388
|
+
|
|
657
389
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
658
390
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
659
391
|
alias="subscriptionScheduleType"
|
|
@@ -754,58 +486,241 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
754
486
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
755
487
|
|
|
756
488
|
|
|
757
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
758
|
-
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
759
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
760
|
-
change_type: PlanChangeType = Field(alias="changeType")
|
|
761
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
762
|
-
billable_features: Optional[
|
|
763
|
-
List[
|
|
764
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
765
|
-
]
|
|
766
|
-
] = Field(alias="billableFeatures", default=None)
|
|
767
|
-
addons: Optional[
|
|
768
|
-
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
769
|
-
] = Field(default=None)
|
|
770
|
-
price_overrides: Optional[
|
|
771
|
-
List[
|
|
772
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
773
|
-
]
|
|
774
|
-
] = Field(alias="priceOverrides", default=None)
|
|
489
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
490
|
+
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
491
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
492
|
+
change_type: PlanChangeType = Field(alias="changeType")
|
|
493
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
494
|
+
billable_features: Optional[
|
|
495
|
+
List[
|
|
496
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
497
|
+
]
|
|
498
|
+
] = Field(alias="billableFeatures", default=None)
|
|
499
|
+
addons: Optional[
|
|
500
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
501
|
+
] = Field(default=None)
|
|
502
|
+
price_overrides: Optional[
|
|
503
|
+
List[
|
|
504
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
505
|
+
]
|
|
506
|
+
] = Field(alias="priceOverrides", default=None)
|
|
507
|
+
|
|
508
|
+
|
|
509
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
510
|
+
BaseModel
|
|
511
|
+
):
|
|
512
|
+
feature_id: str = Field(alias="featureId")
|
|
513
|
+
quantity: float
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
517
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
518
|
+
quantity: float
|
|
519
|
+
|
|
520
|
+
|
|
521
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
522
|
+
BaseModel
|
|
523
|
+
):
|
|
524
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
525
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
526
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
527
|
+
|
|
528
|
+
|
|
529
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
530
|
+
BaseModel
|
|
531
|
+
):
|
|
532
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
533
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
534
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
535
|
+
|
|
536
|
+
|
|
537
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
538
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
539
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
540
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
541
|
+
|
|
542
|
+
|
|
543
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
544
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
545
|
+
display_name: str = Field(alias="displayName")
|
|
546
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
547
|
+
default=None
|
|
548
|
+
)
|
|
549
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
553
|
+
pass
|
|
554
|
+
|
|
555
|
+
|
|
556
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
557
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
558
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
559
|
+
|
|
560
|
+
|
|
561
|
+
class ProductFragment(BaseModel):
|
|
562
|
+
ref_id: str = Field(alias="refId")
|
|
563
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
564
|
+
description: Optional[str] = Field(default=None)
|
|
565
|
+
additional_meta_data: Optional[Any] = Field(
|
|
566
|
+
alias="additionalMetaData", default=None
|
|
567
|
+
)
|
|
568
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
569
|
+
|
|
570
|
+
|
|
571
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
572
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
573
|
+
alias="downgradePlan", default=None
|
|
574
|
+
)
|
|
575
|
+
|
|
576
|
+
|
|
577
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
578
|
+
ref_id: str = Field(alias="refId")
|
|
579
|
+
display_name: str = Field(alias="displayName")
|
|
580
|
+
|
|
581
|
+
|
|
582
|
+
class PlanFragment(BaseModel):
|
|
583
|
+
id: Any
|
|
584
|
+
ref_id: str = Field(alias="refId")
|
|
585
|
+
display_name: str = Field(alias="displayName")
|
|
586
|
+
description: Optional[str] = Field(default=None)
|
|
587
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
588
|
+
version_number: int = Field(alias="versionNumber")
|
|
589
|
+
additional_meta_data: Optional[Any] = Field(
|
|
590
|
+
alias="additionalMetaData", default=None
|
|
591
|
+
)
|
|
592
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
593
|
+
alias="hiddenFromWidgets", default=None
|
|
594
|
+
)
|
|
595
|
+
product: "PlanFragmentProduct"
|
|
596
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
597
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
598
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
599
|
+
alias="inheritedEntitlements", default=None
|
|
600
|
+
)
|
|
601
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
602
|
+
alias="compatibleAddons", default=None
|
|
603
|
+
)
|
|
604
|
+
compatible_package_groups: Optional[
|
|
605
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
606
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
607
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
608
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
609
|
+
alias="overagePrices", default=None
|
|
610
|
+
)
|
|
611
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
612
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
613
|
+
alias="defaultTrialConfig", default=None
|
|
614
|
+
)
|
|
615
|
+
|
|
616
|
+
|
|
617
|
+
class PlanFragmentProduct(ProductFragment):
|
|
618
|
+
pass
|
|
619
|
+
|
|
620
|
+
|
|
621
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
622
|
+
ref_id: str = Field(alias="refId")
|
|
623
|
+
display_name: str = Field(alias="displayName")
|
|
624
|
+
|
|
625
|
+
|
|
626
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
627
|
+
pass
|
|
628
|
+
|
|
629
|
+
|
|
630
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
631
|
+
pass
|
|
632
|
+
|
|
633
|
+
|
|
634
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
635
|
+
pass
|
|
636
|
+
|
|
637
|
+
|
|
638
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
639
|
+
pass
|
|
640
|
+
|
|
641
|
+
|
|
642
|
+
class PlanFragmentPrices(PriceFragment):
|
|
643
|
+
pass
|
|
644
|
+
|
|
645
|
+
|
|
646
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
647
|
+
pass
|
|
648
|
+
|
|
649
|
+
|
|
650
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
651
|
+
duration: float
|
|
652
|
+
units: TrialPeriodUnits
|
|
653
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
654
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
655
|
+
alias="trialEndBehavior", default=None
|
|
656
|
+
)
|
|
657
|
+
|
|
658
|
+
|
|
659
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
660
|
+
limit: float
|
|
661
|
+
|
|
662
|
+
|
|
663
|
+
class SlimCustomerFragment(BaseModel):
|
|
664
|
+
id: Any
|
|
665
|
+
name: Optional[str] = Field(default=None)
|
|
666
|
+
email: Optional[str] = Field(default=None)
|
|
667
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
668
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
669
|
+
ref_id: str = Field(alias="refId")
|
|
670
|
+
customer_id: str = Field(alias="customerId")
|
|
671
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
672
|
+
additional_meta_data: Optional[Any] = Field(
|
|
673
|
+
alias="additionalMetaData", default=None
|
|
674
|
+
)
|
|
675
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
676
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
677
|
+
)
|
|
775
678
|
|
|
776
679
|
|
|
777
|
-
class
|
|
778
|
-
|
|
779
|
-
):
|
|
780
|
-
feature_id: str = Field(alias="featureId")
|
|
781
|
-
quantity: float
|
|
680
|
+
class CustomerResourceFragment(BaseModel):
|
|
681
|
+
resource_id: str = Field(alias="resourceId")
|
|
782
682
|
|
|
783
683
|
|
|
784
|
-
class
|
|
785
|
-
|
|
786
|
-
|
|
684
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
685
|
+
billing_id: str = Field(alias="billingId")
|
|
686
|
+
status: SubscriptionInvoiceStatus
|
|
687
|
+
created_at: Any = Field(alias="createdAt")
|
|
688
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
689
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
690
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
691
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
692
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
693
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
694
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
695
|
+
alias="billingReason", default=None
|
|
696
|
+
)
|
|
697
|
+
currency: Optional[str] = Field(default=None)
|
|
698
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
699
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
700
|
+
alias="subTotalExcludingTax", default=None
|
|
701
|
+
)
|
|
702
|
+
total: Optional[float] = Field(default=None)
|
|
703
|
+
total_excluding_tax: Optional[float] = Field(
|
|
704
|
+
alias="totalExcludingTax", default=None
|
|
705
|
+
)
|
|
706
|
+
tax: Optional[float] = Field(default=None)
|
|
707
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
708
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
787
709
|
|
|
788
710
|
|
|
789
|
-
class
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
793
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
794
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
711
|
+
class TotalPriceFragment(BaseModel):
|
|
712
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
713
|
+
total: "TotalPriceFragmentTotal"
|
|
795
714
|
|
|
796
715
|
|
|
797
|
-
class
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
801
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
802
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
716
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
717
|
+
amount: float
|
|
718
|
+
currency: Currency
|
|
803
719
|
|
|
804
720
|
|
|
805
|
-
class
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
721
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
722
|
+
amount: float
|
|
723
|
+
currency: Currency
|
|
809
724
|
|
|
810
725
|
|
|
811
726
|
class SubscriptionFragment(BaseModel):
|
|
@@ -917,6 +832,91 @@ class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragm
|
|
|
917
832
|
pass
|
|
918
833
|
|
|
919
834
|
|
|
835
|
+
class FeatureFragment(BaseModel):
|
|
836
|
+
typename__: str = Field(alias="__typename")
|
|
837
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
838
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
839
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
840
|
+
feature_units_plural: Optional[str] = Field(
|
|
841
|
+
alias="featureUnitsPlural", default=None
|
|
842
|
+
)
|
|
843
|
+
description: Optional[str] = Field(default=None)
|
|
844
|
+
display_name: str = Field(alias="displayName")
|
|
845
|
+
ref_id: str = Field(alias="refId")
|
|
846
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
847
|
+
alias="unitTransformation", default=None
|
|
848
|
+
)
|
|
849
|
+
|
|
850
|
+
|
|
851
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
852
|
+
divide: float
|
|
853
|
+
round: UnitTransformationRound
|
|
854
|
+
|
|
855
|
+
|
|
856
|
+
class EntitlementFragment(BaseModel):
|
|
857
|
+
typename__: str = Field(alias="__typename")
|
|
858
|
+
is_granted: bool = Field(alias="isGranted")
|
|
859
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
860
|
+
alias="accessDeniedReason", default=None
|
|
861
|
+
)
|
|
862
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
863
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
864
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
865
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
866
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
867
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
868
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
869
|
+
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
870
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
871
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
872
|
+
alias="entitlementUpdatedAt", default=None
|
|
873
|
+
)
|
|
874
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
875
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
876
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
877
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
878
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
879
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
880
|
+
alias="resetPeriod", default=None
|
|
881
|
+
)
|
|
882
|
+
reset_period_configuration: Optional[
|
|
883
|
+
Annotated[
|
|
884
|
+
Union[
|
|
885
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
886
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
887
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
888
|
+
],
|
|
889
|
+
Field(discriminator="typename__"),
|
|
890
|
+
]
|
|
891
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
892
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
893
|
+
|
|
894
|
+
|
|
895
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
896
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
897
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
898
|
+
alias="monthlyAccordingTo", default=None
|
|
899
|
+
)
|
|
900
|
+
|
|
901
|
+
|
|
902
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
903
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
904
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
905
|
+
alias="weeklyAccordingTo", default=None
|
|
906
|
+
)
|
|
907
|
+
|
|
908
|
+
|
|
909
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
910
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
911
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
912
|
+
alias="yearlyAccordingTo", default=None
|
|
913
|
+
)
|
|
914
|
+
|
|
915
|
+
|
|
916
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
917
|
+
pass
|
|
918
|
+
|
|
919
|
+
|
|
920
920
|
class ApplySubscriptionFragment(BaseModel):
|
|
921
921
|
subscription: Optional["ApplySubscriptionFragmentSubscription"] = Field(
|
|
922
922
|
default=None
|
|
@@ -1280,33 +1280,6 @@ class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
|
1280
1280
|
quantity: int
|
|
1281
1281
|
|
|
1282
1282
|
|
|
1283
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1284
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1285
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1286
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1287
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1288
|
-
default=None
|
|
1289
|
-
)
|
|
1290
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1291
|
-
default=None
|
|
1292
|
-
)
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1296
|
-
amount: float
|
|
1297
|
-
currency: Currency
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1301
|
-
id: Any
|
|
1302
|
-
ref_id: str = Field(alias="refId")
|
|
1303
|
-
display_name: str = Field(alias="displayName")
|
|
1304
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1305
|
-
feature_units_plural: Optional[str] = Field(
|
|
1306
|
-
alias="featureUnitsPlural", default=None
|
|
1307
|
-
)
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
1283
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1311
1284
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1312
1285
|
alias="subscriptionScheduleType"
|
|
@@ -1476,6 +1449,33 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1476
1449
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1477
1450
|
|
|
1478
1451
|
|
|
1452
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1453
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1454
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1455
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1456
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1457
|
+
default=None
|
|
1458
|
+
)
|
|
1459
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1460
|
+
default=None
|
|
1461
|
+
)
|
|
1462
|
+
|
|
1463
|
+
|
|
1464
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1465
|
+
amount: float
|
|
1466
|
+
currency: Currency
|
|
1467
|
+
|
|
1468
|
+
|
|
1469
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1470
|
+
id: Any
|
|
1471
|
+
ref_id: str = Field(alias="refId")
|
|
1472
|
+
display_name: str = Field(alias="displayName")
|
|
1473
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1474
|
+
feature_units_plural: Optional[str] = Field(
|
|
1475
|
+
alias="featureUnitsPlural", default=None
|
|
1476
|
+
)
|
|
1477
|
+
|
|
1478
|
+
|
|
1479
1479
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1480
1480
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1481
1481
|
plan_id: str = Field(alias="planId")
|
|
@@ -2841,23 +2841,23 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2841
2841
|
|
|
2842
2842
|
AddonDependencyFragment.model_rebuild()
|
|
2843
2843
|
PriceTierFragment.model_rebuild()
|
|
2844
|
-
PriceFragment.model_rebuild()
|
|
2845
2844
|
OveragePriceFragment.model_rebuild()
|
|
2846
2845
|
PackageEntitlementFragment.model_rebuild()
|
|
2846
|
+
PriceFragment.model_rebuild()
|
|
2847
2847
|
AddonFragment.model_rebuild()
|
|
2848
|
-
|
|
2849
|
-
EntitlementFragment.model_rebuild()
|
|
2850
|
-
TotalPriceFragment.model_rebuild()
|
|
2851
|
-
CustomerResourceFragment.model_rebuild()
|
|
2848
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2852
2849
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2853
|
-
|
|
2854
|
-
SlimCustomerFragment.model_rebuild()
|
|
2855
|
-
ProductFragment.model_rebuild()
|
|
2850
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2856
2851
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2852
|
+
ProductFragment.model_rebuild()
|
|
2857
2853
|
PlanFragment.model_rebuild()
|
|
2858
|
-
|
|
2859
|
-
|
|
2854
|
+
SlimCustomerFragment.model_rebuild()
|
|
2855
|
+
CustomerResourceFragment.model_rebuild()
|
|
2856
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2857
|
+
TotalPriceFragment.model_rebuild()
|
|
2860
2858
|
SubscriptionFragment.model_rebuild()
|
|
2859
|
+
FeatureFragment.model_rebuild()
|
|
2860
|
+
EntitlementFragment.model_rebuild()
|
|
2861
2861
|
ApplySubscriptionFragment.model_rebuild()
|
|
2862
2862
|
FontVariantFragment.model_rebuild()
|
|
2863
2863
|
TypographyConfigurationFragment.model_rebuild()
|
|
@@ -2871,8 +2871,8 @@ CustomerPortalConfigurationFragment.model_rebuild()
|
|
|
2871
2871
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2872
2872
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2873
2873
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2874
|
-
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2875
2874
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2875
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2876
2876
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2877
2877
|
CustomerPortalFragment.model_rebuild()
|
|
2878
2878
|
CustomerStatisticsFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -24,6 +24,7 @@ from .enums import (
|
|
|
24
24
|
CouponSource,
|
|
25
25
|
CouponStatus,
|
|
26
26
|
CouponType,
|
|
27
|
+
CreditGrantType,
|
|
27
28
|
Currency,
|
|
28
29
|
CustomerResourceSortFields,
|
|
29
30
|
CustomerSortFields,
|
|
@@ -790,6 +791,24 @@ class CreateWorkflowTriggerInput(BaseModel):
|
|
|
790
791
|
trigger_id: Optional[str] = Field(alias="triggerId", default=None)
|
|
791
792
|
|
|
792
793
|
|
|
794
|
+
class CreditGrantInput(BaseModel):
|
|
795
|
+
additional_meta_data: Optional[Any] = Field(
|
|
796
|
+
alias="additionalMetaData", default=None
|
|
797
|
+
)
|
|
798
|
+
amount: float
|
|
799
|
+
comment: Optional[str] = None
|
|
800
|
+
cost: Optional["MoneyInputDTO"] = None
|
|
801
|
+
currency_id: str = Field(alias="currencyId")
|
|
802
|
+
customer_id: str = Field(alias="customerId")
|
|
803
|
+
display_name: str = Field(alias="displayName")
|
|
804
|
+
effective_at: Optional[Any] = Field(alias="effectiveAt", default=None)
|
|
805
|
+
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
806
|
+
expire_at: Optional[Any] = Field(alias="expireAt", default=None)
|
|
807
|
+
grant_type: CreditGrantType = Field(alias="grantType")
|
|
808
|
+
priority: Optional[float] = None
|
|
809
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
810
|
+
|
|
811
|
+
|
|
793
812
|
class CursorPaging(BaseModel):
|
|
794
813
|
after: Optional[Any] = None
|
|
795
814
|
before: Optional[Any] = None
|
|
@@ -797,6 +816,16 @@ class CursorPaging(BaseModel):
|
|
|
797
816
|
last: Optional[int] = None
|
|
798
817
|
|
|
799
818
|
|
|
819
|
+
class CustomCurrencyInput(BaseModel):
|
|
820
|
+
additional_meta_data: Optional[Any] = Field(
|
|
821
|
+
alias="additionalMetaData", default=None
|
|
822
|
+
)
|
|
823
|
+
currency_id: str = Field(alias="currencyId")
|
|
824
|
+
display_name: str = Field(alias="displayName")
|
|
825
|
+
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
826
|
+
symbol: str
|
|
827
|
+
|
|
828
|
+
|
|
800
829
|
class CustomerBillingInfo(BaseModel):
|
|
801
830
|
billing_address: Optional["Address"] = Field(alias="billingAddress", default=None)
|
|
802
831
|
currency: Optional[Currency] = None
|
|
@@ -1939,6 +1968,13 @@ class GetAuth0ApplicationsInput(BaseModel):
|
|
|
1939
1968
|
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
1940
1969
|
|
|
1941
1970
|
|
|
1971
|
+
class GetCreditGrantsInput(BaseModel):
|
|
1972
|
+
currency_id: Optional[str] = Field(alias="currencyId", default=None)
|
|
1973
|
+
customer_id: str = Field(alias="customerId")
|
|
1974
|
+
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
1975
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
1976
|
+
|
|
1977
|
+
|
|
1942
1978
|
class GetCustomerByRefIdInput(BaseModel):
|
|
1943
1979
|
customer_id: str = Field(alias="customerId")
|
|
1944
1980
|
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
@@ -4498,6 +4534,29 @@ class UpdateCouponInput(BaseModel):
|
|
|
4498
4534
|
ref_id: str = Field(alias="refId")
|
|
4499
4535
|
|
|
4500
4536
|
|
|
4537
|
+
class UpdateCreditGrantInput(BaseModel):
|
|
4538
|
+
additional_meta_data: Optional[Any] = Field(
|
|
4539
|
+
alias="additionalMetaData", default=None
|
|
4540
|
+
)
|
|
4541
|
+
comment: Optional[str] = None
|
|
4542
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
4543
|
+
effective_at: Optional[Any] = Field(alias="effectiveAt", default=None)
|
|
4544
|
+
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
4545
|
+
expire_at: Optional[Any] = Field(alias="expireAt", default=None)
|
|
4546
|
+
id: Any
|
|
4547
|
+
priority: Optional[float] = None
|
|
4548
|
+
|
|
4549
|
+
|
|
4550
|
+
class UpdateCustomCurrencyInput(BaseModel):
|
|
4551
|
+
additional_meta_data: Optional[Any] = Field(
|
|
4552
|
+
alias="additionalMetaData", default=None
|
|
4553
|
+
)
|
|
4554
|
+
currency_id: str = Field(alias="currencyId")
|
|
4555
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
4556
|
+
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
4557
|
+
symbol: Optional[str] = None
|
|
4558
|
+
|
|
4559
|
+
|
|
4501
4560
|
class UpdateCustomerInput(BaseModel):
|
|
4502
4561
|
additional_meta_data: Optional[Any] = Field(
|
|
4503
4562
|
alias="additionalMetaData", default=None
|
|
@@ -106,7 +106,7 @@ stigg/_vendors/pydantic-2.6.4.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCe
|
|
|
106
106
|
stigg/_vendors/pydantic-2.6.4.dist-info/WHEEL,sha256=TJPnKdtrSue7xZ_AVGkp9YXcvDrobsjBds1du3Nx6dc,87
|
|
107
107
|
stigg/_vendors/pydantic-2.6.4.dist-info/licenses/LICENSE,sha256=qeGG88oWte74QxjnpwFyE1GgDLe4rjpDlLZ7SeNSnvM,1129
|
|
108
108
|
stigg/client.py,sha256=RWrVnxo9zHFXka8KJVE4sMgyek70ispQk0vqOINCvM0,8335
|
|
109
|
-
stigg/generated/__init__.py,sha256=
|
|
109
|
+
stigg/generated/__init__.py,sha256=fDQ9VzudH8JL72sOeBvEmbG4blpGBVeAFQlduCCSW8I,72005
|
|
110
110
|
stigg/generated/apply_subscription.py,sha256=Vbs-QZZxN16pUpt3Hp7Jvvcc5o_8xwJK9oTLQQjH0ZA,451
|
|
111
111
|
stigg/generated/archive_customer.py,sha256=3N3iBiT2Vvzfb0ckV3o57A6lmJ_ef7JNPaMX_Jtcg6c,396
|
|
112
112
|
stigg/generated/async_base_client.py,sha256=zqd6IhYxpalyA6KQkeGhXgSurC0vXSwSWmSlM2zZ0VM,12593
|
|
@@ -119,11 +119,11 @@ stigg/generated/client.py,sha256=tGqbCewOFV2YP6igue7hQZghW3XraHyV0OXcoKfsssE,173
|
|
|
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=7jmrAj5qzR8Hwom_dk_EWSu1ipLtyOscXa6vg9n8zts,37216
|
|
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=n_94G1RshFIiHRJk5F9mnPJHuVuIyDsPtVmdvTkZKJg,103850
|
|
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
|
|
@@ -145,7 +145,7 @@ stigg/generated/grant_promotional_entitlements.py,sha256=72PRYuqecL-0SkWb7deygkh
|
|
|
145
145
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
146
146
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
147
147
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
148
|
-
stigg/generated/input_types.py,sha256=
|
|
148
|
+
stigg/generated/input_types.py,sha256=c37o276EMmfPjlg9brzcJa7M_syE9KMUQzldBa__QgE,203900
|
|
149
149
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
150
150
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
151
151
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -161,7 +161,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
161
161
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
162
162
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
163
163
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
164
|
-
stigg_api_client_v2-2.
|
|
165
|
-
stigg_api_client_v2-2.
|
|
166
|
-
stigg_api_client_v2-2.
|
|
167
|
-
stigg_api_client_v2-2.
|
|
164
|
+
stigg_api_client_v2-2.497.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
165
|
+
stigg_api_client_v2-2.497.0.dist-info/METADATA,sha256=vBouMvMSZ8IaD-mbNB5bh71MbrTrg-C_nRgTvpwablo,2258
|
|
166
|
+
stigg_api_client_v2-2.497.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
167
|
+
stigg_api_client_v2-2.497.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|