stigg-api-client-v2 3.53.4__py3-none-any.whl → 3.57.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 +6 -0
- stigg/generated/fragments.py +414 -414
- stigg/generated/input_types.py +22 -0
- {stigg_api_client_v2-3.53.4.dist-info → stigg_api_client_v2-3.57.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.53.4.dist-info → stigg_api_client_v2-3.57.0.dist-info}/RECORD +7 -7
- {stigg_api_client_v2-3.53.4.dist-info → stigg_api_client_v2-3.57.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.53.4.dist-info → stigg_api_client_v2-3.57.0.dist-info}/WHEEL +0 -0
stigg/generated/__init__.py
CHANGED
|
@@ -742,6 +742,7 @@ from .input_types import (
|
|
|
742
742
|
GetWidgetConfigurationInput,
|
|
743
743
|
GetWorkflowTriggersInput,
|
|
744
744
|
GrantPromotionalEntitlementInput,
|
|
745
|
+
GrantPromotionalEntitlementsGroupInput,
|
|
745
746
|
GrantPromotionalEntitlementsInput,
|
|
746
747
|
HookFilter,
|
|
747
748
|
HookSort,
|
|
@@ -847,6 +848,7 @@ from .input_types import (
|
|
|
847
848
|
ReportUsageInput,
|
|
848
849
|
ResyncIntegrationInput,
|
|
849
850
|
RevokePromotionalEntitlementInput,
|
|
851
|
+
RevokePromotionalEntitlementsGroupInput,
|
|
850
852
|
SalesforceCredentialsInput,
|
|
851
853
|
SetAccessRolesInput,
|
|
852
854
|
SetBasePlanOnPlanInput,
|
|
@@ -919,6 +921,7 @@ from .input_types import (
|
|
|
919
921
|
UnitsInput,
|
|
920
922
|
UnitTransformationInput,
|
|
921
923
|
UnlinkFeatureGroupFromPackageInput,
|
|
924
|
+
UnlinkPromotionalEntitlementsGroupInput,
|
|
922
925
|
UpdateAccountInput,
|
|
923
926
|
UpdateCouponInput,
|
|
924
927
|
UpdateCreditGrantInput,
|
|
@@ -1385,6 +1388,7 @@ __all__ = [
|
|
|
1385
1388
|
"GrantPromotionalEntitlementInput",
|
|
1386
1389
|
"GrantPromotionalEntitlements",
|
|
1387
1390
|
"GrantPromotionalEntitlementsGrantPromotionalEntitlements",
|
|
1391
|
+
"GrantPromotionalEntitlementsGroupInput",
|
|
1388
1392
|
"GrantPromotionalEntitlementsInput",
|
|
1389
1393
|
"GraphQLClientError",
|
|
1390
1394
|
"GraphQLClientGraphQLError",
|
|
@@ -1646,6 +1650,7 @@ __all__ = [
|
|
|
1646
1650
|
"RevokePromotionalEntitlement",
|
|
1647
1651
|
"RevokePromotionalEntitlementInput",
|
|
1648
1652
|
"RevokePromotionalEntitlementRevokePromotionalEntitlement",
|
|
1653
|
+
"RevokePromotionalEntitlementsGroupInput",
|
|
1649
1654
|
"SalesforceCredentialsInput",
|
|
1650
1655
|
"ScheduleStrategy",
|
|
1651
1656
|
"SetAccessRolesInput",
|
|
@@ -1898,6 +1903,7 @@ __all__ = [
|
|
|
1898
1903
|
"UnitTransformationRound",
|
|
1899
1904
|
"UnitsInput",
|
|
1900
1905
|
"UnlinkFeatureGroupFromPackageInput",
|
|
1906
|
+
"UnlinkPromotionalEntitlementsGroupInput",
|
|
1901
1907
|
"UpdateAccountInput",
|
|
1902
1908
|
"UpdateCouponInput",
|
|
1903
1909
|
"UpdateCreditGrantInput",
|
stigg/generated/fragments.py
CHANGED
|
@@ -61,6 +61,41 @@ class AddonDependencyFragment(BaseModel):
|
|
|
61
61
|
description: Optional[str] = Field(default=None)
|
|
62
62
|
|
|
63
63
|
|
|
64
|
+
class PackageEntitlementFragment(BaseModel):
|
|
65
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
66
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
67
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
68
|
+
feature_id: str = Field(alias="featureId")
|
|
69
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
70
|
+
alias="resetPeriod", default=None
|
|
71
|
+
)
|
|
72
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
73
|
+
alias="hiddenFromWidgets", default=None
|
|
74
|
+
)
|
|
75
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
76
|
+
display_name_override: Optional[str] = Field(
|
|
77
|
+
alias="displayNameOverride", default=None
|
|
78
|
+
)
|
|
79
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
80
|
+
is_granted: bool = Field(alias="isGranted")
|
|
81
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
85
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
86
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
87
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
88
|
+
feature_units_plural: Optional[str] = Field(
|
|
89
|
+
alias="featureUnitsPlural", default=None
|
|
90
|
+
)
|
|
91
|
+
display_name: str = Field(alias="displayName")
|
|
92
|
+
description: Optional[str] = Field(default=None)
|
|
93
|
+
ref_id: str = Field(alias="refId")
|
|
94
|
+
additional_meta_data: Optional[Any] = Field(
|
|
95
|
+
alias="additionalMetaData", default=None
|
|
96
|
+
)
|
|
97
|
+
|
|
98
|
+
|
|
64
99
|
class PriceTierFragment(BaseModel):
|
|
65
100
|
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
66
101
|
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
@@ -113,41 +148,6 @@ class OveragePriceFragmentFeature(BaseModel):
|
|
|
113
148
|
description: Optional[str] = Field(default=None)
|
|
114
149
|
|
|
115
150
|
|
|
116
|
-
class PackageEntitlementFragment(BaseModel):
|
|
117
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
118
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
119
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
120
|
-
feature_id: str = Field(alias="featureId")
|
|
121
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
122
|
-
alias="resetPeriod", default=None
|
|
123
|
-
)
|
|
124
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
125
|
-
alias="hiddenFromWidgets", default=None
|
|
126
|
-
)
|
|
127
|
-
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
128
|
-
display_name_override: Optional[str] = Field(
|
|
129
|
-
alias="displayNameOverride", default=None
|
|
130
|
-
)
|
|
131
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
132
|
-
is_granted: bool = Field(alias="isGranted")
|
|
133
|
-
feature: "PackageEntitlementFragmentFeature"
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
class PackageEntitlementFragmentFeature(BaseModel):
|
|
137
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
138
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
139
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
140
|
-
feature_units_plural: Optional[str] = Field(
|
|
141
|
-
alias="featureUnitsPlural", default=None
|
|
142
|
-
)
|
|
143
|
-
display_name: str = Field(alias="displayName")
|
|
144
|
-
description: Optional[str] = Field(default=None)
|
|
145
|
-
ref_id: str = Field(alias="refId")
|
|
146
|
-
additional_meta_data: Optional[Any] = Field(
|
|
147
|
-
alias="additionalMetaData", default=None
|
|
148
|
-
)
|
|
149
|
-
|
|
150
|
-
|
|
151
151
|
class PriceFragment(BaseModel):
|
|
152
152
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
153
153
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -230,207 +230,108 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
230
230
|
pass
|
|
231
231
|
|
|
232
232
|
|
|
233
|
-
class
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
created_at: Any = Field(alias="createdAt")
|
|
241
|
-
due_date: Optional[Any] = Field(alias="dueDate", default=None)
|
|
242
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
243
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
244
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
245
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
246
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
247
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
248
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
249
|
-
alias="billingReason", default=None
|
|
250
|
-
)
|
|
251
|
-
currency: Optional[str] = Field(default=None)
|
|
252
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
253
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
254
|
-
alias="subTotalExcludingTax", default=None
|
|
233
|
+
class FeatureFragment(BaseModel):
|
|
234
|
+
typename__: str = Field(alias="__typename")
|
|
235
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
236
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
237
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
238
|
+
feature_units_plural: Optional[str] = Field(
|
|
239
|
+
alias="featureUnitsPlural", default=None
|
|
255
240
|
)
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
241
|
+
description: Optional[str] = Field(default=None)
|
|
242
|
+
display_name: str = Field(alias="displayName")
|
|
243
|
+
ref_id: str = Field(alias="refId")
|
|
244
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
245
|
+
alias="unitTransformation", default=None
|
|
259
246
|
)
|
|
260
|
-
tax: Optional[float] = Field(default=None)
|
|
261
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
262
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
263
247
|
|
|
264
248
|
|
|
265
|
-
class
|
|
266
|
-
|
|
267
|
-
|
|
249
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
250
|
+
divide: float
|
|
251
|
+
round: UnitTransformationRound
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
class EntitlementFragment(BaseModel):
|
|
255
|
+
typename__: str = Field(alias="__typename")
|
|
256
|
+
is_granted: bool = Field(alias="isGranted")
|
|
257
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
258
|
+
alias="accessDeniedReason", default=None
|
|
268
259
|
)
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
260
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
261
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
262
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
263
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
264
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
265
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
266
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
267
|
+
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
268
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
269
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
270
|
+
alias="entitlementUpdatedAt", default=None
|
|
273
271
|
)
|
|
274
|
-
|
|
272
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
273
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
274
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
275
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
276
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
277
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
278
|
+
alias="resetPeriod", default=None
|
|
279
|
+
)
|
|
280
|
+
reset_period_configuration: Optional[
|
|
275
281
|
Annotated[
|
|
276
282
|
Union[
|
|
277
|
-
"
|
|
278
|
-
"
|
|
279
|
-
"
|
|
280
|
-
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
281
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
282
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
283
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
284
|
-
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
283
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
284
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
285
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
285
286
|
],
|
|
286
287
|
Field(discriminator="typename__"),
|
|
287
288
|
]
|
|
288
|
-
] = Field(alias="
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
292
|
-
id: Any
|
|
293
|
-
ref_id: str = Field(alias="refId")
|
|
294
|
-
display_name: str = Field(alias="displayName")
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
298
|
-
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
299
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
300
|
-
new_quantity: float = Field(alias="newQuantity")
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
304
|
-
BaseModel
|
|
305
|
-
):
|
|
306
|
-
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
307
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
308
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
312
|
-
BaseModel
|
|
313
|
-
):
|
|
314
|
-
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
315
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
319
|
-
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
323
|
-
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
324
|
-
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
325
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
326
|
-
billable_features: Optional[
|
|
327
|
-
List[
|
|
328
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
329
|
-
]
|
|
330
|
-
] = Field(alias="billableFeatures", default=None)
|
|
331
|
-
addons: Optional[
|
|
332
|
-
List[
|
|
333
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
334
|
-
]
|
|
335
|
-
] = Field(default=None)
|
|
336
|
-
price_overrides: Optional[
|
|
337
|
-
List[
|
|
338
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
339
|
-
]
|
|
340
|
-
] = Field(alias="priceOverrides", default=None)
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
344
|
-
BaseModel
|
|
345
|
-
):
|
|
346
|
-
feature_id: str = Field(alias="featureId")
|
|
347
|
-
quantity: float
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
351
|
-
BaseModel
|
|
352
|
-
):
|
|
353
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
354
|
-
quantity: float
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
358
|
-
BaseModel
|
|
359
|
-
):
|
|
360
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
361
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
362
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
289
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
290
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
363
291
|
|
|
364
292
|
|
|
365
|
-
class
|
|
366
|
-
typename__: Literal["
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
billable_features: Optional[
|
|
371
|
-
List[
|
|
372
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
373
|
-
]
|
|
374
|
-
] = Field(alias="billableFeatures", default=None)
|
|
375
|
-
addons: Optional[
|
|
376
|
-
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
377
|
-
] = Field(default=None)
|
|
378
|
-
price_overrides: Optional[
|
|
379
|
-
List[
|
|
380
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
381
|
-
]
|
|
382
|
-
] = Field(alias="priceOverrides", default=None)
|
|
293
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
294
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
295
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
296
|
+
alias="monthlyAccordingTo", default=None
|
|
297
|
+
)
|
|
383
298
|
|
|
384
299
|
|
|
385
|
-
class
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
300
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
301
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
302
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
303
|
+
alias="weeklyAccordingTo", default=None
|
|
304
|
+
)
|
|
390
305
|
|
|
391
306
|
|
|
392
|
-
class
|
|
393
|
-
|
|
394
|
-
|
|
307
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
308
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
309
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
310
|
+
alias="yearlyAccordingTo", default=None
|
|
311
|
+
)
|
|
395
312
|
|
|
396
313
|
|
|
397
|
-
class
|
|
398
|
-
|
|
399
|
-
):
|
|
400
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
401
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
402
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
314
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
315
|
+
pass
|
|
403
316
|
|
|
404
317
|
|
|
405
|
-
class
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
409
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
410
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
318
|
+
class TotalPriceFragment(BaseModel):
|
|
319
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
320
|
+
total: "TotalPriceFragmentTotal"
|
|
411
321
|
|
|
412
322
|
|
|
413
|
-
class
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
323
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
324
|
+
amount: float
|
|
325
|
+
currency: Currency
|
|
417
326
|
|
|
418
327
|
|
|
419
|
-
class
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
customer_id: str = Field(alias="customerId")
|
|
427
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
428
|
-
additional_meta_data: Optional[Any] = Field(
|
|
429
|
-
alias="additionalMetaData", default=None
|
|
430
|
-
)
|
|
431
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
432
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
433
|
-
)
|
|
328
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
329
|
+
amount: float
|
|
330
|
+
currency: Currency
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
class CustomerResourceFragment(BaseModel):
|
|
334
|
+
resource_id: str = Field(alias="resourceId")
|
|
434
335
|
|
|
435
336
|
|
|
436
337
|
class ProductFragment(BaseModel):
|
|
@@ -553,6 +454,10 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
553
454
|
limit: float
|
|
554
455
|
|
|
555
456
|
|
|
457
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
458
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
459
|
+
|
|
460
|
+
|
|
556
461
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
557
462
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
558
463
|
alias="subscriptionScheduleType"
|
|
@@ -715,23 +620,203 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
715
620
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
716
621
|
|
|
717
622
|
|
|
718
|
-
class
|
|
719
|
-
|
|
623
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
624
|
+
billing_id: str = Field(alias="billingId")
|
|
625
|
+
status: SubscriptionInvoiceStatus
|
|
626
|
+
created_at: Any = Field(alias="createdAt")
|
|
627
|
+
due_date: Optional[Any] = Field(alias="dueDate", default=None)
|
|
628
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
629
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
630
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
631
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
632
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
633
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
634
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
635
|
+
alias="billingReason", default=None
|
|
636
|
+
)
|
|
637
|
+
currency: Optional[str] = Field(default=None)
|
|
638
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
639
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
640
|
+
alias="subTotalExcludingTax", default=None
|
|
641
|
+
)
|
|
642
|
+
total: Optional[float] = Field(default=None)
|
|
643
|
+
total_excluding_tax: Optional[float] = Field(
|
|
644
|
+
alias="totalExcludingTax", default=None
|
|
645
|
+
)
|
|
646
|
+
tax: Optional[float] = Field(default=None)
|
|
647
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
648
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
720
649
|
|
|
721
650
|
|
|
722
|
-
class
|
|
723
|
-
|
|
724
|
-
|
|
651
|
+
class SlimCustomerFragment(BaseModel):
|
|
652
|
+
id: Any
|
|
653
|
+
name: Optional[str] = Field(default=None)
|
|
654
|
+
email: Optional[str] = Field(default=None)
|
|
655
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
656
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
657
|
+
ref_id: str = Field(alias="refId")
|
|
658
|
+
customer_id: str = Field(alias="customerId")
|
|
659
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
660
|
+
additional_meta_data: Optional[Any] = Field(
|
|
661
|
+
alias="additionalMetaData", default=None
|
|
662
|
+
)
|
|
663
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
664
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
665
|
+
)
|
|
725
666
|
|
|
726
667
|
|
|
727
|
-
class
|
|
728
|
-
|
|
729
|
-
|
|
668
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
669
|
+
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
670
|
+
alias="subscriptionScheduleType"
|
|
671
|
+
)
|
|
672
|
+
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
673
|
+
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
674
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
675
|
+
alias="targetPackage", default=None
|
|
676
|
+
)
|
|
677
|
+
schedule_variables: Optional[
|
|
678
|
+
Annotated[
|
|
679
|
+
Union[
|
|
680
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
681
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
682
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
683
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
684
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
685
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
686
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
687
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
688
|
+
],
|
|
689
|
+
Field(discriminator="typename__"),
|
|
690
|
+
]
|
|
691
|
+
] = Field(alias="scheduleVariables", default=None)
|
|
730
692
|
|
|
731
693
|
|
|
732
|
-
class
|
|
733
|
-
|
|
734
|
-
|
|
694
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
695
|
+
id: Any
|
|
696
|
+
ref_id: str = Field(alias="refId")
|
|
697
|
+
display_name: str = Field(alias="displayName")
|
|
698
|
+
|
|
699
|
+
|
|
700
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
701
|
+
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
702
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
703
|
+
new_quantity: float = Field(alias="newQuantity")
|
|
704
|
+
|
|
705
|
+
|
|
706
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
707
|
+
BaseModel
|
|
708
|
+
):
|
|
709
|
+
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
710
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
711
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
712
|
+
|
|
713
|
+
|
|
714
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
715
|
+
BaseModel
|
|
716
|
+
):
|
|
717
|
+
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
718
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
719
|
+
|
|
720
|
+
|
|
721
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
722
|
+
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
723
|
+
|
|
724
|
+
|
|
725
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
726
|
+
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
727
|
+
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
728
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
729
|
+
billable_features: Optional[
|
|
730
|
+
List[
|
|
731
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
732
|
+
]
|
|
733
|
+
] = Field(alias="billableFeatures", default=None)
|
|
734
|
+
addons: Optional[
|
|
735
|
+
List[
|
|
736
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
737
|
+
]
|
|
738
|
+
] = Field(default=None)
|
|
739
|
+
price_overrides: Optional[
|
|
740
|
+
List[
|
|
741
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
742
|
+
]
|
|
743
|
+
] = Field(alias="priceOverrides", default=None)
|
|
744
|
+
|
|
745
|
+
|
|
746
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
747
|
+
BaseModel
|
|
748
|
+
):
|
|
749
|
+
feature_id: str = Field(alias="featureId")
|
|
750
|
+
quantity: float
|
|
751
|
+
|
|
752
|
+
|
|
753
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
754
|
+
BaseModel
|
|
755
|
+
):
|
|
756
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
757
|
+
quantity: float
|
|
758
|
+
|
|
759
|
+
|
|
760
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
761
|
+
BaseModel
|
|
762
|
+
):
|
|
763
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
764
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
765
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
766
|
+
|
|
767
|
+
|
|
768
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
769
|
+
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
770
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
771
|
+
change_type: PlanChangeType = Field(alias="changeType")
|
|
772
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
773
|
+
billable_features: Optional[
|
|
774
|
+
List[
|
|
775
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
776
|
+
]
|
|
777
|
+
] = Field(alias="billableFeatures", default=None)
|
|
778
|
+
addons: Optional[
|
|
779
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
780
|
+
] = Field(default=None)
|
|
781
|
+
price_overrides: Optional[
|
|
782
|
+
List[
|
|
783
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
784
|
+
]
|
|
785
|
+
] = Field(alias="priceOverrides", default=None)
|
|
786
|
+
|
|
787
|
+
|
|
788
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
789
|
+
BaseModel
|
|
790
|
+
):
|
|
791
|
+
feature_id: str = Field(alias="featureId")
|
|
792
|
+
quantity: float
|
|
793
|
+
|
|
794
|
+
|
|
795
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
796
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
797
|
+
quantity: float
|
|
798
|
+
|
|
799
|
+
|
|
800
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
801
|
+
BaseModel
|
|
802
|
+
):
|
|
803
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
804
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
805
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
806
|
+
|
|
807
|
+
|
|
808
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
809
|
+
BaseModel
|
|
810
|
+
):
|
|
811
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
812
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
813
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
814
|
+
|
|
815
|
+
|
|
816
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
817
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
818
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
819
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
735
820
|
|
|
736
821
|
|
|
737
822
|
class SubscriptionFragment(BaseModel):
|
|
@@ -814,117 +899,32 @@ class SubscriptionFragmentPricesPrice(PriceFragment):
|
|
|
814
899
|
|
|
815
900
|
|
|
816
901
|
class SubscriptionFragmentTotalPrice(TotalPriceFragment):
|
|
817
|
-
pass
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
class SubscriptionFragmentPlan(PlanFragment):
|
|
821
|
-
pass
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
class SubscriptionFragmentAddons(BaseModel):
|
|
825
|
-
id: Any
|
|
826
|
-
quantity: float
|
|
827
|
-
addon: "SubscriptionFragmentAddonsAddon"
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
class SubscriptionFragmentAddonsAddon(AddonFragment):
|
|
831
|
-
pass
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
class SubscriptionFragmentScheduledUpdates(SubscriptionScheduledUpdateData):
|
|
835
|
-
pass
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
class SubscriptionFragmentFutureUpdates(SubscriptionFutureUpdateData):
|
|
839
|
-
pass
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragment):
|
|
843
|
-
pass
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
class FeatureFragment(BaseModel):
|
|
847
|
-
typename__: str = Field(alias="__typename")
|
|
848
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
849
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
850
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
851
|
-
feature_units_plural: Optional[str] = Field(
|
|
852
|
-
alias="featureUnitsPlural", default=None
|
|
853
|
-
)
|
|
854
|
-
description: Optional[str] = Field(default=None)
|
|
855
|
-
display_name: str = Field(alias="displayName")
|
|
856
|
-
ref_id: str = Field(alias="refId")
|
|
857
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
858
|
-
alias="unitTransformation", default=None
|
|
859
|
-
)
|
|
902
|
+
pass
|
|
860
903
|
|
|
861
904
|
|
|
862
|
-
class
|
|
863
|
-
|
|
864
|
-
round: UnitTransformationRound
|
|
905
|
+
class SubscriptionFragmentPlan(PlanFragment):
|
|
906
|
+
pass
|
|
865
907
|
|
|
866
908
|
|
|
867
|
-
class
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
alias="accessDeniedReason", default=None
|
|
872
|
-
)
|
|
873
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
874
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
875
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
876
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
877
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
878
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
879
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
880
|
-
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
881
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
882
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
883
|
-
alias="entitlementUpdatedAt", default=None
|
|
884
|
-
)
|
|
885
|
-
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
886
|
-
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
887
|
-
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
888
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
889
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
890
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
891
|
-
alias="resetPeriod", default=None
|
|
892
|
-
)
|
|
893
|
-
reset_period_configuration: Optional[
|
|
894
|
-
Annotated[
|
|
895
|
-
Union[
|
|
896
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
897
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
898
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
899
|
-
],
|
|
900
|
-
Field(discriminator="typename__"),
|
|
901
|
-
]
|
|
902
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
903
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
909
|
+
class SubscriptionFragmentAddons(BaseModel):
|
|
910
|
+
id: Any
|
|
911
|
+
quantity: float
|
|
912
|
+
addon: "SubscriptionFragmentAddonsAddon"
|
|
904
913
|
|
|
905
914
|
|
|
906
|
-
class
|
|
907
|
-
|
|
908
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
909
|
-
alias="monthlyAccordingTo", default=None
|
|
910
|
-
)
|
|
915
|
+
class SubscriptionFragmentAddonsAddon(AddonFragment):
|
|
916
|
+
pass
|
|
911
917
|
|
|
912
918
|
|
|
913
|
-
class
|
|
914
|
-
|
|
915
|
-
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
916
|
-
alias="weeklyAccordingTo", default=None
|
|
917
|
-
)
|
|
919
|
+
class SubscriptionFragmentScheduledUpdates(SubscriptionScheduledUpdateData):
|
|
920
|
+
pass
|
|
918
921
|
|
|
919
922
|
|
|
920
|
-
class
|
|
921
|
-
|
|
922
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
923
|
-
alias="yearlyAccordingTo", default=None
|
|
924
|
-
)
|
|
923
|
+
class SubscriptionFragmentFutureUpdates(SubscriptionFutureUpdateData):
|
|
924
|
+
pass
|
|
925
925
|
|
|
926
926
|
|
|
927
|
-
class
|
|
927
|
+
class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragment):
|
|
928
928
|
pass
|
|
929
929
|
|
|
930
930
|
|
|
@@ -1005,6 +1005,35 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
1005
1005
|
)
|
|
1006
1006
|
|
|
1007
1007
|
|
|
1008
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
1009
|
+
status: PromotionalEntitlementStatus
|
|
1010
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1011
|
+
feature_id: Any = Field(alias="featureId")
|
|
1012
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1013
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1014
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1015
|
+
alias="resetPeriod", default=None
|
|
1016
|
+
)
|
|
1017
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1018
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1019
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1020
|
+
|
|
1021
|
+
|
|
1022
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1023
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1024
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1025
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1026
|
+
feature_units_plural: Optional[str] = Field(
|
|
1027
|
+
alias="featureUnitsPlural", default=None
|
|
1028
|
+
)
|
|
1029
|
+
display_name: str = Field(alias="displayName")
|
|
1030
|
+
description: Optional[str] = Field(default=None)
|
|
1031
|
+
ref_id: str = Field(alias="refId")
|
|
1032
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1033
|
+
alias="additionalMetaData", default=None
|
|
1034
|
+
)
|
|
1035
|
+
|
|
1036
|
+
|
|
1008
1037
|
class CouponFragment(BaseModel):
|
|
1009
1038
|
id: Any
|
|
1010
1039
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1039,35 +1068,6 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1039
1068
|
status: SyncStatus
|
|
1040
1069
|
|
|
1041
1070
|
|
|
1042
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
1043
|
-
status: PromotionalEntitlementStatus
|
|
1044
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1045
|
-
feature_id: Any = Field(alias="featureId")
|
|
1046
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1047
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1048
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1049
|
-
alias="resetPeriod", default=None
|
|
1050
|
-
)
|
|
1051
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1052
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1053
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1057
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1058
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1059
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1060
|
-
feature_units_plural: Optional[str] = Field(
|
|
1061
|
-
alias="featureUnitsPlural", default=None
|
|
1062
|
-
)
|
|
1063
|
-
display_name: str = Field(alias="displayName")
|
|
1064
|
-
description: Optional[str] = Field(default=None)
|
|
1065
|
-
ref_id: str = Field(alias="refId")
|
|
1066
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1067
|
-
alias="additionalMetaData", default=None
|
|
1068
|
-
)
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
1071
|
class CustomerFragment(SlimCustomerFragment):
|
|
1072
1072
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1073
1073
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1318,6 +1318,16 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1318
1318
|
pass
|
|
1319
1319
|
|
|
1320
1320
|
|
|
1321
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1322
|
+
display_name: str = Field(alias="displayName")
|
|
1323
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1324
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1325
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1326
|
+
period: PromotionalEntitlementPeriod
|
|
1327
|
+
start_date: Any = Field(alias="startDate")
|
|
1328
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1329
|
+
|
|
1330
|
+
|
|
1321
1331
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1322
1332
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1323
1333
|
alias="subscriptionScheduleType"
|
|
@@ -1487,6 +1497,13 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1487
1497
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1488
1498
|
|
|
1489
1499
|
|
|
1500
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1501
|
+
addon_id: str = Field(alias="addonId")
|
|
1502
|
+
description: Optional[str] = Field(default=None)
|
|
1503
|
+
display_name: str = Field(alias="displayName")
|
|
1504
|
+
quantity: int
|
|
1505
|
+
|
|
1506
|
+
|
|
1490
1507
|
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1491
1508
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1492
1509
|
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
@@ -1522,13 +1539,6 @@ class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
|
1522
1539
|
)
|
|
1523
1540
|
|
|
1524
1541
|
|
|
1525
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1526
|
-
addon_id: str = Field(alias="addonId")
|
|
1527
|
-
description: Optional[str] = Field(default=None)
|
|
1528
|
-
display_name: str = Field(alias="displayName")
|
|
1529
|
-
quantity: int
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
1542
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1533
1543
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1534
1544
|
plan_id: str = Field(alias="planId")
|
|
@@ -1633,16 +1643,6 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1633
1643
|
pass
|
|
1634
1644
|
|
|
1635
1645
|
|
|
1636
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1637
|
-
display_name: str = Field(alias="displayName")
|
|
1638
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1639
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1640
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1641
|
-
period: PromotionalEntitlementPeriod
|
|
1642
|
-
start_date: Any = Field(alias="startDate")
|
|
1643
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
1646
|
class CustomerPortalFragment(BaseModel):
|
|
1647
1647
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1648
1648
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -1870,41 +1870,6 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1870
1870
|
description: Optional[str] = Field(default=None)
|
|
1871
1871
|
|
|
1872
1872
|
|
|
1873
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1874
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1875
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1876
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1877
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1878
|
-
alias="resetPeriod", default=None
|
|
1879
|
-
)
|
|
1880
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1881
|
-
alias="hiddenFromWidgets", default=None
|
|
1882
|
-
)
|
|
1883
|
-
display_name_override: Optional[str] = Field(
|
|
1884
|
-
alias="displayNameOverride", default=None
|
|
1885
|
-
)
|
|
1886
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
1887
|
-
is_granted: bool = Field(alias="isGranted")
|
|
1888
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1889
|
-
default=None
|
|
1890
|
-
)
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1894
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1895
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1896
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1897
|
-
feature_units_plural: Optional[str] = Field(
|
|
1898
|
-
alias="featureUnitsPlural", default=None
|
|
1899
|
-
)
|
|
1900
|
-
display_name: str = Field(alias="displayName")
|
|
1901
|
-
description: Optional[str] = Field(default=None)
|
|
1902
|
-
ref_id: str = Field(alias="refId")
|
|
1903
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1904
|
-
alias="additionalMetaData", default=None
|
|
1905
|
-
)
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
1873
|
class MockPaywallPriceFragment(BaseModel):
|
|
1909
1874
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1910
1875
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1947,6 +1912,41 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1947
1912
|
display_name: str = Field(alias="displayName")
|
|
1948
1913
|
|
|
1949
1914
|
|
|
1915
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1916
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1917
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1918
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1919
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1920
|
+
alias="resetPeriod", default=None
|
|
1921
|
+
)
|
|
1922
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1923
|
+
alias="hiddenFromWidgets", default=None
|
|
1924
|
+
)
|
|
1925
|
+
display_name_override: Optional[str] = Field(
|
|
1926
|
+
alias="displayNameOverride", default=None
|
|
1927
|
+
)
|
|
1928
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
1929
|
+
is_granted: bool = Field(alias="isGranted")
|
|
1930
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1931
|
+
default=None
|
|
1932
|
+
)
|
|
1933
|
+
|
|
1934
|
+
|
|
1935
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1936
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1937
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1938
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1939
|
+
feature_units_plural: Optional[str] = Field(
|
|
1940
|
+
alias="featureUnitsPlural", default=None
|
|
1941
|
+
)
|
|
1942
|
+
display_name: str = Field(alias="displayName")
|
|
1943
|
+
description: Optional[str] = Field(default=None)
|
|
1944
|
+
ref_id: str = Field(alias="refId")
|
|
1945
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1946
|
+
alias="additionalMetaData", default=None
|
|
1947
|
+
)
|
|
1948
|
+
|
|
1949
|
+
|
|
1950
1950
|
class MockPaywallAddonFragment(BaseModel):
|
|
1951
1951
|
ref_id: str = Field(alias="refId")
|
|
1952
1952
|
display_name: str = Field(alias="displayName")
|
|
@@ -2920,30 +2920,30 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2920
2920
|
|
|
2921
2921
|
|
|
2922
2922
|
AddonDependencyFragment.model_rebuild()
|
|
2923
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2923
2924
|
PriceTierFragment.model_rebuild()
|
|
2924
2925
|
OveragePriceFragment.model_rebuild()
|
|
2925
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2926
2926
|
PriceFragment.model_rebuild()
|
|
2927
2927
|
AddonFragment.model_rebuild()
|
|
2928
|
+
FeatureFragment.model_rebuild()
|
|
2929
|
+
EntitlementFragment.model_rebuild()
|
|
2930
|
+
TotalPriceFragment.model_rebuild()
|
|
2928
2931
|
CustomerResourceFragment.model_rebuild()
|
|
2929
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2930
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2931
|
-
SlimCustomerFragment.model_rebuild()
|
|
2932
2932
|
ProductFragment.model_rebuild()
|
|
2933
2933
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2934
2934
|
PlanFragment.model_rebuild()
|
|
2935
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2936
2935
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2937
|
-
|
|
2936
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2937
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2938
|
+
SlimCustomerFragment.model_rebuild()
|
|
2939
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2938
2940
|
SubscriptionFragment.model_rebuild()
|
|
2939
|
-
FeatureFragment.model_rebuild()
|
|
2940
|
-
EntitlementFragment.model_rebuild()
|
|
2941
2941
|
ApplySubscriptionFragment.model_rebuild()
|
|
2942
2942
|
FontVariantFragment.model_rebuild()
|
|
2943
2943
|
TypographyConfigurationFragment.model_rebuild()
|
|
2944
2944
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2945
|
-
CouponFragment.model_rebuild()
|
|
2946
2945
|
PromotionalEntitlementFragment.model_rebuild()
|
|
2946
|
+
CouponFragment.model_rebuild()
|
|
2947
2947
|
CustomerFragment.model_rebuild()
|
|
2948
2948
|
CheckoutStateFragment.model_rebuild()
|
|
2949
2949
|
CreditGrantFragment.model_rebuild()
|
|
@@ -2951,11 +2951,11 @@ CreditsBalanceSummaryFragment.model_rebuild()
|
|
|
2951
2951
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2952
2952
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2953
2953
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2954
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2954
2955
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2955
|
-
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2956
2956
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2957
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2957
2958
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2958
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2959
2959
|
CustomerPortalFragment.model_rebuild()
|
|
2960
2960
|
CustomerStatisticsFragment.model_rebuild()
|
|
2961
2961
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -2965,8 +2965,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2965
2965
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2966
2966
|
LayoutConfigurationFragment.model_rebuild()
|
|
2967
2967
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2968
|
-
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2969
2968
|
MockPaywallPriceFragment.model_rebuild()
|
|
2969
|
+
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2970
2970
|
MockPaywallAddonFragment.model_rebuild()
|
|
2971
2971
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2972
2972
|
MockPaywallPlanFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -2074,6 +2074,15 @@ class GrantPromotionalEntitlementInput(BaseModel):
|
|
|
2074
2074
|
)
|
|
2075
2075
|
|
|
2076
2076
|
|
|
2077
|
+
class GrantPromotionalEntitlementsGroupInput(BaseModel):
|
|
2078
|
+
customer_id: str = Field(alias="customerId")
|
|
2079
|
+
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
2080
|
+
feature_group_id: Any = Field(alias="featureGroupId")
|
|
2081
|
+
promotional_entitlements: List["GrantPromotionalEntitlementInput"] = Field(
|
|
2082
|
+
alias="promotionalEntitlements"
|
|
2083
|
+
)
|
|
2084
|
+
|
|
2085
|
+
|
|
2077
2086
|
class GrantPromotionalEntitlementsInput(BaseModel):
|
|
2078
2087
|
customer_id: str = Field(alias="customerId")
|
|
2079
2088
|
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
@@ -3265,6 +3274,7 @@ class PromotionalEntitlementInput(BaseModel):
|
|
|
3265
3274
|
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
3266
3275
|
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
3267
3276
|
environment_id: Any = Field(alias="environmentId")
|
|
3277
|
+
feature_group_id: Optional[Any] = Field(alias="featureGroupId", default=None)
|
|
3268
3278
|
feature_id: str = Field(alias="featureId")
|
|
3269
3279
|
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
3270
3280
|
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
@@ -3633,6 +3643,12 @@ class RevokePromotionalEntitlementInput(BaseModel):
|
|
|
3633
3643
|
feature_id: str = Field(alias="featureId")
|
|
3634
3644
|
|
|
3635
3645
|
|
|
3646
|
+
class RevokePromotionalEntitlementsGroupInput(BaseModel):
|
|
3647
|
+
customer_id: str = Field(alias="customerId")
|
|
3648
|
+
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
3649
|
+
feature_group_id: Any = Field(alias="featureGroupId")
|
|
3650
|
+
|
|
3651
|
+
|
|
3636
3652
|
class SalesforceCredentialsInput(BaseModel):
|
|
3637
3653
|
domain: Optional[str] = None
|
|
3638
3654
|
|
|
@@ -4558,6 +4574,12 @@ class UnlinkFeatureGroupFromPackageInput(BaseModel):
|
|
|
4558
4574
|
package_id: Any = Field(alias="packageId")
|
|
4559
4575
|
|
|
4560
4576
|
|
|
4577
|
+
class UnlinkPromotionalEntitlementsGroupInput(BaseModel):
|
|
4578
|
+
customer_id: str = Field(alias="customerId")
|
|
4579
|
+
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
4580
|
+
feature_group_id: Any = Field(alias="featureGroupId")
|
|
4581
|
+
|
|
4582
|
+
|
|
4561
4583
|
class UpdateAccountInput(BaseModel):
|
|
4562
4584
|
access_method: Optional[AccountAccessMethod] = Field(
|
|
4563
4585
|
alias="accessMethod", 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=IeT9vYKGoOkdNAwqm8twvLl2bY81EWGKg8iMZWrlyrk,74024
|
|
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
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=4wSfEXeZZqMSjsCsSG8baVg3Si8sjzV3bp_unHWHBtQ,3800
|
|
|
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=oYIuruveDeiPlVlEsnvoovdEIcuKkCkMcn8KhWjbB2E,106791
|
|
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
|
|
@@ -148,7 +148,7 @@ stigg/generated/grant_promotional_entitlements.py,sha256=72PRYuqecL-0SkWb7deygkh
|
|
|
148
148
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
149
149
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
150
150
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
151
|
-
stigg/generated/input_types.py,sha256=
|
|
151
|
+
stigg/generated/input_types.py,sha256=bUURVQwCdG8107n9upwWwhqcZn13baH2fH11X7izw00,207174
|
|
152
152
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
153
153
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
154
154
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -164,7 +164,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
164
164
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
165
165
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
166
166
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
167
|
-
stigg_api_client_v2-3.
|
|
168
|
-
stigg_api_client_v2-3.
|
|
169
|
-
stigg_api_client_v2-3.
|
|
170
|
-
stigg_api_client_v2-3.
|
|
167
|
+
stigg_api_client_v2-3.57.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
168
|
+
stigg_api_client_v2-3.57.0.dist-info/METADATA,sha256=EPE3uugAezp5To0tgljlnLU5G7BwaxTQW080mQ4uJks,2257
|
|
169
|
+
stigg_api_client_v2-3.57.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
170
|
+
stigg_api_client_v2-3.57.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|