stigg-api-client-v2 3.105.0__py3-none-any.whl → 3.107.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 +2 -0
- stigg/generated/enums.py +3 -0
- stigg/generated/fragments.py +408 -408
- stigg/generated/input_types.py +5 -0
- {stigg_api_client_v2-3.105.0.dist-info → stigg_api_client_v2-3.107.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.105.0.dist-info → stigg_api_client_v2-3.107.0.dist-info}/RECORD +8 -8
- {stigg_api_client_v2-3.105.0.dist-info → stigg_api_client_v2-3.107.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.105.0.dist-info → stigg_api_client_v2-3.107.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,
|
|
@@ -2084,6 +2085,7 @@ __all__ = [
|
|
|
2084
2085
|
"VendorIdentifier",
|
|
2085
2086
|
"VendorIdentifierFilterComparison",
|
|
2086
2087
|
"VendorType",
|
|
2088
|
+
"VoidCreditGrantInput",
|
|
2087
2089
|
"WeeklyAccordingTo",
|
|
2088
2090
|
"WeeklyResetPeriodConfigInput",
|
|
2089
2091
|
"WidgetConfigurationUpdateInput",
|
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,41 +62,6 @@ class AddonDependencyFragment(BaseModel):
|
|
|
62
62
|
description: Optional[str] = Field(default=None)
|
|
63
63
|
|
|
64
64
|
|
|
65
|
-
class PackageEntitlementFragment(BaseModel):
|
|
66
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
67
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
68
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
69
|
-
feature_id: str = Field(alias="featureId")
|
|
70
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
71
|
-
alias="resetPeriod", default=None
|
|
72
|
-
)
|
|
73
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
74
|
-
alias="hiddenFromWidgets", default=None
|
|
75
|
-
)
|
|
76
|
-
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
77
|
-
display_name_override: Optional[str] = Field(
|
|
78
|
-
alias="displayNameOverride", default=None
|
|
79
|
-
)
|
|
80
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
81
|
-
is_granted: bool = Field(alias="isGranted")
|
|
82
|
-
feature: "PackageEntitlementFragmentFeature"
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
class PackageEntitlementFragmentFeature(BaseModel):
|
|
86
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
87
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
88
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
89
|
-
feature_units_plural: Optional[str] = Field(
|
|
90
|
-
alias="featureUnitsPlural", default=None
|
|
91
|
-
)
|
|
92
|
-
display_name: str = Field(alias="displayName")
|
|
93
|
-
description: Optional[str] = Field(default=None)
|
|
94
|
-
ref_id: str = Field(alias="refId")
|
|
95
|
-
additional_meta_data: Optional[Any] = Field(
|
|
96
|
-
alias="additionalMetaData", default=None
|
|
97
|
-
)
|
|
98
|
-
|
|
99
|
-
|
|
100
65
|
class PriceTierFragment(BaseModel):
|
|
101
66
|
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
102
67
|
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
@@ -194,6 +159,41 @@ class OveragePriceFragmentFeature(BaseModel):
|
|
|
194
159
|
description: Optional[str] = Field(default=None)
|
|
195
160
|
|
|
196
161
|
|
|
162
|
+
class PackageEntitlementFragment(BaseModel):
|
|
163
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
164
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
165
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
166
|
+
feature_id: str = Field(alias="featureId")
|
|
167
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
168
|
+
alias="resetPeriod", default=None
|
|
169
|
+
)
|
|
170
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
171
|
+
alias="hiddenFromWidgets", default=None
|
|
172
|
+
)
|
|
173
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
174
|
+
display_name_override: Optional[str] = Field(
|
|
175
|
+
alias="displayNameOverride", default=None
|
|
176
|
+
)
|
|
177
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
178
|
+
is_granted: bool = Field(alias="isGranted")
|
|
179
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
183
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
184
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
185
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
186
|
+
feature_units_plural: Optional[str] = Field(
|
|
187
|
+
alias="featureUnitsPlural", default=None
|
|
188
|
+
)
|
|
189
|
+
display_name: str = Field(alias="displayName")
|
|
190
|
+
description: Optional[str] = Field(default=None)
|
|
191
|
+
ref_id: str = Field(alias="refId")
|
|
192
|
+
additional_meta_data: Optional[Any] = Field(
|
|
193
|
+
alias="additionalMetaData", default=None
|
|
194
|
+
)
|
|
195
|
+
|
|
196
|
+
|
|
197
197
|
class AddonFragment(BaseModel):
|
|
198
198
|
id: Any
|
|
199
199
|
ref_id: str = Field(alias="refId")
|
|
@@ -232,124 +232,98 @@ 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
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
ref_id: str = Field(alias="refId")
|
|
315
|
-
display_name: str = Field(alias="displayName")
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
319
|
-
pass
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
323
|
-
pass
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
327
|
-
pass
|
|
299
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
300
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
301
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
302
|
+
alias="monthlyAccordingTo", default=None
|
|
303
|
+
)
|
|
328
304
|
|
|
329
305
|
|
|
330
|
-
class
|
|
331
|
-
|
|
306
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
307
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
308
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
309
|
+
alias="weeklyAccordingTo", default=None
|
|
310
|
+
)
|
|
332
311
|
|
|
333
312
|
|
|
334
|
-
class
|
|
335
|
-
|
|
313
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
314
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
315
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
316
|
+
alias="yearlyAccordingTo", default=None
|
|
317
|
+
)
|
|
336
318
|
|
|
337
319
|
|
|
338
|
-
class
|
|
320
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
339
321
|
pass
|
|
340
322
|
|
|
341
323
|
|
|
342
|
-
class
|
|
343
|
-
|
|
344
|
-
|
|
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
|
|
324
|
+
class EntitlementFragmentCreditRate(BaseModel):
|
|
325
|
+
amount: float
|
|
326
|
+
currency_id: str = Field(alias="currencyId")
|
|
353
327
|
|
|
354
328
|
|
|
355
329
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
@@ -506,6 +480,10 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
506
480
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
507
481
|
|
|
508
482
|
|
|
483
|
+
class CustomerResourceFragment(BaseModel):
|
|
484
|
+
resource_id: str = Field(alias="resourceId")
|
|
485
|
+
|
|
486
|
+
|
|
509
487
|
class TotalPriceFragment(BaseModel):
|
|
510
488
|
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
511
489
|
total: "TotalPriceFragmentTotal"
|
|
@@ -521,59 +499,6 @@ class TotalPriceFragmentTotal(BaseModel):
|
|
|
521
499
|
currency: Currency
|
|
522
500
|
|
|
523
501
|
|
|
524
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
525
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
526
|
-
|
|
527
|
-
|
|
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
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
546
|
-
billing_id: str = Field(alias="billingId")
|
|
547
|
-
status: SubscriptionInvoiceStatus
|
|
548
|
-
created_at: Any = Field(alias="createdAt")
|
|
549
|
-
due_date: Optional[Any] = Field(alias="dueDate", default=None)
|
|
550
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
551
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
552
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
553
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
554
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
555
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
556
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
557
|
-
alias="billingReason", default=None
|
|
558
|
-
)
|
|
559
|
-
currency: Optional[str] = Field(default=None)
|
|
560
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
561
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
562
|
-
alias="subTotalExcludingTax", default=None
|
|
563
|
-
)
|
|
564
|
-
total: Optional[float] = Field(default=None)
|
|
565
|
-
total_excluding_tax: Optional[float] = Field(
|
|
566
|
-
alias="totalExcludingTax", default=None
|
|
567
|
-
)
|
|
568
|
-
tax: Optional[float] = Field(default=None)
|
|
569
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
570
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
class CustomerResourceFragment(BaseModel):
|
|
574
|
-
resource_id: str = Field(alias="resourceId")
|
|
575
|
-
|
|
576
|
-
|
|
577
502
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
578
503
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
579
504
|
alias="subscriptionScheduleType"
|
|
@@ -736,6 +661,175 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
736
661
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
737
662
|
|
|
738
663
|
|
|
664
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
665
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
666
|
+
display_name: str = Field(alias="displayName")
|
|
667
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
668
|
+
default=None
|
|
669
|
+
)
|
|
670
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
671
|
+
|
|
672
|
+
|
|
673
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
674
|
+
pass
|
|
675
|
+
|
|
676
|
+
|
|
677
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
678
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
679
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
680
|
+
|
|
681
|
+
|
|
682
|
+
class ProductFragment(BaseModel):
|
|
683
|
+
ref_id: str = Field(alias="refId")
|
|
684
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
685
|
+
description: Optional[str] = Field(default=None)
|
|
686
|
+
additional_meta_data: Optional[Any] = Field(
|
|
687
|
+
alias="additionalMetaData", default=None
|
|
688
|
+
)
|
|
689
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
690
|
+
|
|
691
|
+
|
|
692
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
693
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
694
|
+
alias="downgradePlan", default=None
|
|
695
|
+
)
|
|
696
|
+
|
|
697
|
+
|
|
698
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
699
|
+
ref_id: str = Field(alias="refId")
|
|
700
|
+
display_name: str = Field(alias="displayName")
|
|
701
|
+
|
|
702
|
+
|
|
703
|
+
class PlanFragment(BaseModel):
|
|
704
|
+
id: Any
|
|
705
|
+
ref_id: str = Field(alias="refId")
|
|
706
|
+
display_name: str = Field(alias="displayName")
|
|
707
|
+
description: Optional[str] = Field(default=None)
|
|
708
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
709
|
+
version_number: int = Field(alias="versionNumber")
|
|
710
|
+
additional_meta_data: Optional[Any] = Field(
|
|
711
|
+
alias="additionalMetaData", default=None
|
|
712
|
+
)
|
|
713
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
714
|
+
alias="hiddenFromWidgets", default=None
|
|
715
|
+
)
|
|
716
|
+
product: "PlanFragmentProduct"
|
|
717
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
718
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
719
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
720
|
+
alias="inheritedEntitlements", default=None
|
|
721
|
+
)
|
|
722
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
723
|
+
alias="compatibleAddons", default=None
|
|
724
|
+
)
|
|
725
|
+
compatible_package_groups: Optional[
|
|
726
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
727
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
728
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
729
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
730
|
+
alias="overagePrices", default=None
|
|
731
|
+
)
|
|
732
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
733
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
734
|
+
alias="defaultTrialConfig", default=None
|
|
735
|
+
)
|
|
736
|
+
|
|
737
|
+
|
|
738
|
+
class PlanFragmentProduct(ProductFragment):
|
|
739
|
+
pass
|
|
740
|
+
|
|
741
|
+
|
|
742
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
743
|
+
ref_id: str = Field(alias="refId")
|
|
744
|
+
display_name: str = Field(alias="displayName")
|
|
745
|
+
|
|
746
|
+
|
|
747
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
748
|
+
pass
|
|
749
|
+
|
|
750
|
+
|
|
751
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
752
|
+
pass
|
|
753
|
+
|
|
754
|
+
|
|
755
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
756
|
+
pass
|
|
757
|
+
|
|
758
|
+
|
|
759
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
760
|
+
pass
|
|
761
|
+
|
|
762
|
+
|
|
763
|
+
class PlanFragmentPrices(PriceFragment):
|
|
764
|
+
pass
|
|
765
|
+
|
|
766
|
+
|
|
767
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
768
|
+
pass
|
|
769
|
+
|
|
770
|
+
|
|
771
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
772
|
+
duration: float
|
|
773
|
+
units: TrialPeriodUnits
|
|
774
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
775
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
776
|
+
alias="trialEndBehavior", default=None
|
|
777
|
+
)
|
|
778
|
+
|
|
779
|
+
|
|
780
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
781
|
+
limit: float
|
|
782
|
+
|
|
783
|
+
|
|
784
|
+
class SlimCustomerFragment(BaseModel):
|
|
785
|
+
id: Any
|
|
786
|
+
name: Optional[str] = Field(default=None)
|
|
787
|
+
email: Optional[str] = Field(default=None)
|
|
788
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
789
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
790
|
+
ref_id: str = Field(alias="refId")
|
|
791
|
+
customer_id: str = Field(alias="customerId")
|
|
792
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
793
|
+
additional_meta_data: Optional[Any] = Field(
|
|
794
|
+
alias="additionalMetaData", default=None
|
|
795
|
+
)
|
|
796
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
797
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
798
|
+
)
|
|
799
|
+
|
|
800
|
+
|
|
801
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
802
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
803
|
+
|
|
804
|
+
|
|
805
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
806
|
+
billing_id: str = Field(alias="billingId")
|
|
807
|
+
status: SubscriptionInvoiceStatus
|
|
808
|
+
created_at: Any = Field(alias="createdAt")
|
|
809
|
+
due_date: Optional[Any] = Field(alias="dueDate", default=None)
|
|
810
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
811
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
812
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
813
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
814
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
815
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
816
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
817
|
+
alias="billingReason", default=None
|
|
818
|
+
)
|
|
819
|
+
currency: Optional[str] = Field(default=None)
|
|
820
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
821
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
822
|
+
alias="subTotalExcludingTax", default=None
|
|
823
|
+
)
|
|
824
|
+
total: Optional[float] = Field(default=None)
|
|
825
|
+
total_excluding_tax: Optional[float] = Field(
|
|
826
|
+
alias="totalExcludingTax", default=None
|
|
827
|
+
)
|
|
828
|
+
tax: Optional[float] = Field(default=None)
|
|
829
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
830
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
831
|
+
|
|
832
|
+
|
|
739
833
|
class SubscriptionFragment(BaseModel):
|
|
740
834
|
id: Any
|
|
741
835
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -845,100 +939,6 @@ class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragm
|
|
|
845
939
|
pass
|
|
846
940
|
|
|
847
941
|
|
|
848
|
-
class FeatureFragment(BaseModel):
|
|
849
|
-
typename__: str = Field(alias="__typename")
|
|
850
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
851
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
852
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
853
|
-
feature_units_plural: Optional[str] = Field(
|
|
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
|
|
861
|
-
)
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
class FeatureFragmentUnitTransformation(BaseModel):
|
|
865
|
-
divide: float
|
|
866
|
-
round: UnitTransformationRound
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
class EntitlementFragment(BaseModel):
|
|
870
|
-
typename__: str = Field(alias="__typename")
|
|
871
|
-
is_granted: bool = Field(alias="isGranted")
|
|
872
|
-
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
873
|
-
alias="accessDeniedReason", default=None
|
|
874
|
-
)
|
|
875
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
876
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
877
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
878
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
879
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
880
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
881
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
882
|
-
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
883
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
884
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
885
|
-
alias="entitlementUpdatedAt", default=None
|
|
886
|
-
)
|
|
887
|
-
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
888
|
-
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
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
|
|
894
|
-
)
|
|
895
|
-
reset_period_configuration: Optional[
|
|
896
|
-
Annotated[
|
|
897
|
-
Union[
|
|
898
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
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
|
|
908
|
-
)
|
|
909
|
-
valid_until: Optional[float] = Field(alias="validUntil", default=None)
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
913
|
-
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
914
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
915
|
-
alias="monthlyAccordingTo", default=None
|
|
916
|
-
)
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
920
|
-
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
921
|
-
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
922
|
-
alias="weeklyAccordingTo", default=None
|
|
923
|
-
)
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
927
|
-
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
928
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
929
|
-
alias="yearlyAccordingTo", default=None
|
|
930
|
-
)
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
class EntitlementFragmentFeature(FeatureFragment):
|
|
934
|
-
pass
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
class EntitlementFragmentCreditRate(BaseModel):
|
|
938
|
-
amount: float
|
|
939
|
-
currency_id: str = Field(alias="currencyId")
|
|
940
|
-
|
|
941
|
-
|
|
942
942
|
class ApplySubscriptionFragment(BaseModel):
|
|
943
943
|
subscription: Optional["ApplySubscriptionFragmentSubscription"] = Field(
|
|
944
944
|
default=None
|
|
@@ -1016,43 +1016,14 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
1016
1016
|
)
|
|
1017
1017
|
|
|
1018
1018
|
|
|
1019
|
-
class ZuoraCheckoutCredentialsFragment(BaseModel):
|
|
1020
|
-
publishable_key: str = Field(alias="publishableKey")
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
1019
|
class StripeCheckoutCredentialsFragment(BaseModel):
|
|
1024
1020
|
account_id: Optional[str] = Field(alias="accountId", default=None)
|
|
1025
1021
|
setup_secret: str = Field(alias="setupSecret")
|
|
1026
1022
|
public_key: Optional[str] = Field(alias="publicKey", default=None)
|
|
1027
1023
|
|
|
1028
1024
|
|
|
1029
|
-
class
|
|
1030
|
-
|
|
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
|
-
)
|
|
1025
|
+
class ZuoraCheckoutCredentialsFragment(BaseModel):
|
|
1026
|
+
publishable_key: str = Field(alias="publishableKey")
|
|
1056
1027
|
|
|
1057
1028
|
|
|
1058
1029
|
class CouponFragment(BaseModel):
|
|
@@ -1089,6 +1060,35 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1089
1060
|
status: SyncStatus
|
|
1090
1061
|
|
|
1091
1062
|
|
|
1063
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
1064
|
+
status: PromotionalEntitlementStatus
|
|
1065
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1066
|
+
feature_id: Any = Field(alias="featureId")
|
|
1067
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1068
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1069
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1070
|
+
alias="resetPeriod", default=None
|
|
1071
|
+
)
|
|
1072
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1073
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1074
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1075
|
+
|
|
1076
|
+
|
|
1077
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1078
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1079
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1080
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1081
|
+
feature_units_plural: Optional[str] = Field(
|
|
1082
|
+
alias="featureUnitsPlural", default=None
|
|
1083
|
+
)
|
|
1084
|
+
display_name: str = Field(alias="displayName")
|
|
1085
|
+
description: Optional[str] = Field(default=None)
|
|
1086
|
+
ref_id: str = Field(alias="refId")
|
|
1087
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1088
|
+
alias="additionalMetaData", default=None
|
|
1089
|
+
)
|
|
1090
|
+
|
|
1091
|
+
|
|
1092
1092
|
class CustomerFragment(SlimCustomerFragment):
|
|
1093
1093
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1094
1094
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1435,14 +1435,46 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1435
1435
|
pass
|
|
1436
1436
|
|
|
1437
1437
|
|
|
1438
|
-
class
|
|
1438
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1439
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1440
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1441
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1442
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1443
|
+
default=None
|
|
1444
|
+
)
|
|
1445
|
+
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1446
|
+
alias="creditRate", default=None
|
|
1447
|
+
)
|
|
1448
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1449
|
+
default=None
|
|
1450
|
+
)
|
|
1451
|
+
|
|
1452
|
+
|
|
1453
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1454
|
+
amount: float
|
|
1455
|
+
currency: Currency
|
|
1456
|
+
|
|
1457
|
+
|
|
1458
|
+
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1459
|
+
amount: float
|
|
1460
|
+
currency_id: str = Field(alias="currencyId")
|
|
1461
|
+
|
|
1462
|
+
|
|
1463
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1464
|
+
id: Any
|
|
1465
|
+
ref_id: str = Field(alias="refId")
|
|
1439
1466
|
display_name: str = Field(alias="displayName")
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1467
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1468
|
+
feature_units_plural: Optional[str] = Field(
|
|
1469
|
+
alias="featureUnitsPlural", default=None
|
|
1470
|
+
)
|
|
1471
|
+
|
|
1472
|
+
|
|
1473
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1474
|
+
addon_id: str = Field(alias="addonId")
|
|
1475
|
+
description: Optional[str] = Field(default=None)
|
|
1476
|
+
display_name: str = Field(alias="displayName")
|
|
1477
|
+
quantity: int
|
|
1446
1478
|
|
|
1447
1479
|
|
|
1448
1480
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
@@ -1614,48 +1646,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1614
1646
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1615
1647
|
|
|
1616
1648
|
|
|
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
1649
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1660
1650
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1661
1651
|
plan_id: str = Field(alias="planId")
|
|
@@ -1760,6 +1750,16 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1760
1750
|
pass
|
|
1761
1751
|
|
|
1762
1752
|
|
|
1753
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1754
|
+
display_name: str = Field(alias="displayName")
|
|
1755
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1756
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1757
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1758
|
+
period: PromotionalEntitlementPeriod
|
|
1759
|
+
start_date: Any = Field(alias="startDate")
|
|
1760
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1761
|
+
|
|
1762
|
+
|
|
1763
1763
|
class CustomerPortalFragment(BaseModel):
|
|
1764
1764
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1765
1765
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -1987,6 +1987,41 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1987
1987
|
description: Optional[str] = Field(default=None)
|
|
1988
1988
|
|
|
1989
1989
|
|
|
1990
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1991
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1992
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1993
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1994
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1995
|
+
alias="resetPeriod", default=None
|
|
1996
|
+
)
|
|
1997
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1998
|
+
alias="hiddenFromWidgets", default=None
|
|
1999
|
+
)
|
|
2000
|
+
display_name_override: Optional[str] = Field(
|
|
2001
|
+
alias="displayNameOverride", default=None
|
|
2002
|
+
)
|
|
2003
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
2004
|
+
is_granted: bool = Field(alias="isGranted")
|
|
2005
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
2006
|
+
default=None
|
|
2007
|
+
)
|
|
2008
|
+
|
|
2009
|
+
|
|
2010
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
2011
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
2012
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
2013
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
2014
|
+
feature_units_plural: Optional[str] = Field(
|
|
2015
|
+
alias="featureUnitsPlural", default=None
|
|
2016
|
+
)
|
|
2017
|
+
display_name: str = Field(alias="displayName")
|
|
2018
|
+
description: Optional[str] = Field(default=None)
|
|
2019
|
+
ref_id: str = Field(alias="refId")
|
|
2020
|
+
additional_meta_data: Optional[Any] = Field(
|
|
2021
|
+
alias="additionalMetaData", default=None
|
|
2022
|
+
)
|
|
2023
|
+
|
|
2024
|
+
|
|
1990
2025
|
class MockPaywallPriceFragment(BaseModel):
|
|
1991
2026
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1992
2027
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -2029,41 +2064,6 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
2029
2064
|
display_name: str = Field(alias="displayName")
|
|
2030
2065
|
|
|
2031
2066
|
|
|
2032
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
2033
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
2034
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
2035
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
2036
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
2037
|
-
alias="resetPeriod", default=None
|
|
2038
|
-
)
|
|
2039
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
2040
|
-
alias="hiddenFromWidgets", default=None
|
|
2041
|
-
)
|
|
2042
|
-
display_name_override: Optional[str] = Field(
|
|
2043
|
-
alias="displayNameOverride", default=None
|
|
2044
|
-
)
|
|
2045
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
2046
|
-
is_granted: bool = Field(alias="isGranted")
|
|
2047
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
2048
|
-
default=None
|
|
2049
|
-
)
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
2053
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
2054
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
2055
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
2056
|
-
feature_units_plural: Optional[str] = Field(
|
|
2057
|
-
alias="featureUnitsPlural", default=None
|
|
2058
|
-
)
|
|
2059
|
-
display_name: str = Field(alias="displayName")
|
|
2060
|
-
description: Optional[str] = Field(default=None)
|
|
2061
|
-
ref_id: str = Field(alias="refId")
|
|
2062
|
-
additional_meta_data: Optional[Any] = Field(
|
|
2063
|
-
alias="additionalMetaData", default=None
|
|
2064
|
-
)
|
|
2065
|
-
|
|
2066
|
-
|
|
2067
2067
|
class MockPaywallAddonFragment(BaseModel):
|
|
2068
2068
|
ref_id: str = Field(alias="refId")
|
|
2069
2069
|
display_name: str = Field(alias="displayName")
|
|
@@ -3041,32 +3041,32 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
3041
3041
|
|
|
3042
3042
|
|
|
3043
3043
|
AddonDependencyFragment.model_rebuild()
|
|
3044
|
-
PackageEntitlementFragment.model_rebuild()
|
|
3045
3044
|
PriceTierFragment.model_rebuild()
|
|
3046
3045
|
PriceFragment.model_rebuild()
|
|
3047
3046
|
OveragePriceFragment.model_rebuild()
|
|
3047
|
+
PackageEntitlementFragment.model_rebuild()
|
|
3048
3048
|
AddonFragment.model_rebuild()
|
|
3049
|
-
|
|
3050
|
-
|
|
3051
|
-
PlanFragment.model_rebuild()
|
|
3049
|
+
FeatureFragment.model_rebuild()
|
|
3050
|
+
EntitlementFragment.model_rebuild()
|
|
3052
3051
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
3052
|
+
CustomerResourceFragment.model_rebuild()
|
|
3053
3053
|
TotalPriceFragment.model_rebuild()
|
|
3054
|
-
|
|
3054
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
3055
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
3056
|
+
ProductFragment.model_rebuild()
|
|
3057
|
+
PlanFragment.model_rebuild()
|
|
3055
3058
|
SlimCustomerFragment.model_rebuild()
|
|
3059
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
3056
3060
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
3057
|
-
CustomerResourceFragment.model_rebuild()
|
|
3058
|
-
SubscriptionScheduledUpdateData.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
3066
|
StripeCheckoutCredentialsFragment.model_rebuild()
|
|
3068
|
-
|
|
3067
|
+
ZuoraCheckoutCredentialsFragment.model_rebuild()
|
|
3069
3068
|
CouponFragment.model_rebuild()
|
|
3069
|
+
PromotionalEntitlementFragment.model_rebuild()
|
|
3070
3070
|
CustomerFragment.model_rebuild()
|
|
3071
3071
|
CheckoutStateFragment.model_rebuild()
|
|
3072
3072
|
CreditBalanceFragment.model_rebuild()
|
|
@@ -3079,11 +3079,11 @@ CreditsBalanceSummaryFragment.model_rebuild()
|
|
|
3079
3079
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
3080
3080
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
3081
3081
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
3082
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
3083
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
3084
|
-
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
3085
3082
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
3083
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
3084
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
3086
3085
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
3086
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
3087
3087
|
CustomerPortalFragment.model_rebuild()
|
|
3088
3088
|
CustomerStatisticsFragment.model_rebuild()
|
|
3089
3089
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -3093,8 +3093,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
3093
3093
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
3094
3094
|
LayoutConfigurationFragment.model_rebuild()
|
|
3095
3095
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
3096
|
-
MockPaywallPriceFragment.model_rebuild()
|
|
3097
3096
|
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
3097
|
+
MockPaywallPriceFragment.model_rebuild()
|
|
3098
3098
|
MockPaywallAddonFragment.model_rebuild()
|
|
3099
3099
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
3100
3100
|
MockPaywallPlanFragment.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
|
|
|
@@ -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=B0ytVDNWFTINi6c7p_71tU32FZRhKSsVAGt0lwJSz88,78463
|
|
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
|
|
@@ -120,11 +120,11 @@ stigg/generated/create_payment_session.py,sha256=VRPT8Bbvb_evFHMav9y_pXWHMVbkRy9
|
|
|
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=43UH29w0N03Uc5-dst2ZSq3oge9p6fmNup2QUfQMfWw,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,7 @@ 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
|
-
stigg_api_client_v2-3.
|
|
175
|
-
stigg_api_client_v2-3.
|
|
176
|
-
stigg_api_client_v2-3.
|
|
177
|
-
stigg_api_client_v2-3.
|
|
174
|
+
stigg_api_client_v2-3.107.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
175
|
+
stigg_api_client_v2-3.107.0.dist-info/METADATA,sha256=JhoHiCPOk8fM02DLtQPIwQTzh-96h9ncYsLUroz-XxQ,2258
|
|
176
|
+
stigg_api_client_v2-3.107.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
177
|
+
stigg_api_client_v2-3.107.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|