stigg-api-client-v2 2.359.0__py3-none-any.whl → 2.361.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/fragments.py +285 -285
- {stigg_api_client_v2-2.359.0.dist-info → stigg_api_client_v2-2.361.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.359.0.dist-info → stigg_api_client_v2-2.361.0.dist-info}/RECORD +5 -5
- {stigg_api_client_v2-2.359.0.dist-info → stigg_api_client_v2-2.361.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.359.0.dist-info → stigg_api_client_v2-2.361.0.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -60,6 +60,39 @@ class AddonDependencyFragment(BaseModel):
|
|
|
60
60
|
description: Optional[str] = Field(default=None)
|
|
61
61
|
|
|
62
62
|
|
|
63
|
+
class PackageEntitlementFragment(BaseModel):
|
|
64
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
65
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
66
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
67
|
+
feature_id: str = Field(alias="featureId")
|
|
68
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
69
|
+
alias="resetPeriod", default=None
|
|
70
|
+
)
|
|
71
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
72
|
+
alias="hiddenFromWidgets", default=None
|
|
73
|
+
)
|
|
74
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
75
|
+
display_name_override: Optional[str] = Field(
|
|
76
|
+
alias="displayNameOverride", default=None
|
|
77
|
+
)
|
|
78
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
82
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
83
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
84
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
85
|
+
feature_units_plural: Optional[str] = Field(
|
|
86
|
+
alias="featureUnitsPlural", default=None
|
|
87
|
+
)
|
|
88
|
+
display_name: str = Field(alias="displayName")
|
|
89
|
+
description: Optional[str] = Field(default=None)
|
|
90
|
+
ref_id: str = Field(alias="refId")
|
|
91
|
+
additional_meta_data: Optional[Any] = Field(
|
|
92
|
+
alias="additionalMetaData", default=None
|
|
93
|
+
)
|
|
94
|
+
|
|
95
|
+
|
|
63
96
|
class PriceTierFragment(BaseModel):
|
|
64
97
|
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
65
98
|
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
@@ -80,29 +113,33 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
80
113
|
currency: Currency
|
|
81
114
|
|
|
82
115
|
|
|
83
|
-
class
|
|
116
|
+
class PriceFragment(BaseModel):
|
|
84
117
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
85
118
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
119
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
86
120
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
121
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
122
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
87
123
|
billing_country_code: Optional[str] = Field(
|
|
88
124
|
alias="billingCountryCode", default=None
|
|
89
125
|
)
|
|
90
|
-
price: Optional["
|
|
126
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
91
127
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
92
|
-
tiers: Optional[List["
|
|
93
|
-
feature: Optional["
|
|
128
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
129
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
130
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
94
131
|
|
|
95
132
|
|
|
96
|
-
class
|
|
133
|
+
class PriceFragmentPrice(BaseModel):
|
|
97
134
|
amount: float
|
|
98
135
|
currency: Currency
|
|
99
136
|
|
|
100
137
|
|
|
101
|
-
class
|
|
138
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
102
139
|
pass
|
|
103
140
|
|
|
104
141
|
|
|
105
|
-
class
|
|
142
|
+
class PriceFragmentFeature(BaseModel):
|
|
106
143
|
ref_id: str = Field(alias="refId")
|
|
107
144
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
108
145
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -112,33 +149,29 @@ class OveragePriceFragmentFeature(BaseModel):
|
|
|
112
149
|
description: Optional[str] = Field(default=None)
|
|
113
150
|
|
|
114
151
|
|
|
115
|
-
class
|
|
152
|
+
class OveragePriceFragment(BaseModel):
|
|
116
153
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
117
154
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
118
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
119
155
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
120
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
121
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
122
156
|
billing_country_code: Optional[str] = Field(
|
|
123
157
|
alias="billingCountryCode", default=None
|
|
124
158
|
)
|
|
125
|
-
price: Optional["
|
|
159
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
126
160
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
127
|
-
tiers: Optional[List["
|
|
128
|
-
feature: Optional["
|
|
129
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
161
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
162
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
130
163
|
|
|
131
164
|
|
|
132
|
-
class
|
|
165
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
133
166
|
amount: float
|
|
134
167
|
currency: Currency
|
|
135
168
|
|
|
136
169
|
|
|
137
|
-
class
|
|
170
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
138
171
|
pass
|
|
139
172
|
|
|
140
173
|
|
|
141
|
-
class
|
|
174
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
142
175
|
ref_id: str = Field(alias="refId")
|
|
143
176
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
144
177
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -148,39 +181,6 @@ class PriceFragmentFeature(BaseModel):
|
|
|
148
181
|
description: Optional[str] = Field(default=None)
|
|
149
182
|
|
|
150
183
|
|
|
151
|
-
class PackageEntitlementFragment(BaseModel):
|
|
152
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
153
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
154
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
155
|
-
feature_id: str = Field(alias="featureId")
|
|
156
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
157
|
-
alias="resetPeriod", default=None
|
|
158
|
-
)
|
|
159
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
160
|
-
alias="hiddenFromWidgets", default=None
|
|
161
|
-
)
|
|
162
|
-
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
163
|
-
display_name_override: Optional[str] = Field(
|
|
164
|
-
alias="displayNameOverride", default=None
|
|
165
|
-
)
|
|
166
|
-
feature: "PackageEntitlementFragmentFeature"
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
class PackageEntitlementFragmentFeature(BaseModel):
|
|
170
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
171
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
172
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
173
|
-
feature_units_plural: Optional[str] = Field(
|
|
174
|
-
alias="featureUnitsPlural", default=None
|
|
175
|
-
)
|
|
176
|
-
display_name: str = Field(alias="displayName")
|
|
177
|
-
description: Optional[str] = Field(default=None)
|
|
178
|
-
ref_id: str = Field(alias="refId")
|
|
179
|
-
additional_meta_data: Optional[Any] = Field(
|
|
180
|
-
alias="additionalMetaData", default=None
|
|
181
|
-
)
|
|
182
|
-
|
|
183
|
-
|
|
184
184
|
class AddonFragment(BaseModel):
|
|
185
185
|
id: str
|
|
186
186
|
ref_id: str = Field(alias="refId")
|
|
@@ -216,71 +216,87 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
216
216
|
pass
|
|
217
217
|
|
|
218
218
|
|
|
219
|
-
class
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
227
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
228
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
229
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
230
|
-
alias="billingReason", default=None
|
|
231
|
-
)
|
|
232
|
-
currency: Optional[str] = Field(default=None)
|
|
233
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
234
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
235
|
-
alias="subTotalExcludingTax", default=None
|
|
219
|
+
class FeatureFragment(BaseModel):
|
|
220
|
+
typename__: str = Field(alias="__typename")
|
|
221
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
222
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
223
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
224
|
+
feature_units_plural: Optional[str] = Field(
|
|
225
|
+
alias="featureUnitsPlural", default=None
|
|
236
226
|
)
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
227
|
+
description: Optional[str] = Field(default=None)
|
|
228
|
+
display_name: str = Field(alias="displayName")
|
|
229
|
+
ref_id: str = Field(alias="refId")
|
|
230
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
231
|
+
alias="unitTransformation", default=None
|
|
240
232
|
)
|
|
241
|
-
tax: Optional[float] = Field(default=None)
|
|
242
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
243
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
244
233
|
|
|
245
234
|
|
|
246
|
-
class
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
class TotalPriceFragment(BaseModel):
|
|
251
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
252
|
-
total: "TotalPriceFragmentTotal"
|
|
235
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
236
|
+
divide: float
|
|
237
|
+
round: UnitTransformationRound
|
|
253
238
|
|
|
254
239
|
|
|
255
|
-
class
|
|
256
|
-
|
|
257
|
-
|
|
240
|
+
class EntitlementFragment(BaseModel):
|
|
241
|
+
typename__: str = Field(alias="__typename")
|
|
242
|
+
is_granted: bool = Field(alias="isGranted")
|
|
243
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
244
|
+
alias="accessDeniedReason", default=None
|
|
245
|
+
)
|
|
246
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
247
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
248
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
249
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
250
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
251
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
252
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
253
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
254
|
+
alias="entitlementUpdatedAt", default=None
|
|
255
|
+
)
|
|
256
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
257
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
258
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
259
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
260
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
261
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
262
|
+
alias="resetPeriod", default=None
|
|
263
|
+
)
|
|
264
|
+
reset_period_configuration: Optional[
|
|
265
|
+
Annotated[
|
|
266
|
+
Union[
|
|
267
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
268
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
269
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
270
|
+
],
|
|
271
|
+
Field(discriminator="typename__"),
|
|
272
|
+
]
|
|
273
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
274
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
258
275
|
|
|
259
276
|
|
|
260
|
-
class
|
|
261
|
-
|
|
262
|
-
|
|
277
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
278
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
279
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
280
|
+
alias="monthlyAccordingTo", default=None
|
|
281
|
+
)
|
|
263
282
|
|
|
264
283
|
|
|
265
|
-
class
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
additional_meta_data: Optional[Any] = Field(
|
|
270
|
-
alias="additionalMetaData", default=None
|
|
284
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
285
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
286
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
287
|
+
alias="weeklyAccordingTo", default=None
|
|
271
288
|
)
|
|
272
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
273
289
|
|
|
274
290
|
|
|
275
|
-
class
|
|
276
|
-
|
|
277
|
-
|
|
291
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
292
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
293
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
294
|
+
alias="yearlyAccordingTo", default=None
|
|
278
295
|
)
|
|
279
296
|
|
|
280
297
|
|
|
281
|
-
class
|
|
282
|
-
|
|
283
|
-
display_name: str = Field(alias="displayName")
|
|
298
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
299
|
+
pass
|
|
284
300
|
|
|
285
301
|
|
|
286
302
|
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
@@ -301,6 +317,27 @@ class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
|
301
317
|
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
302
318
|
|
|
303
319
|
|
|
320
|
+
class ProductFragment(BaseModel):
|
|
321
|
+
ref_id: str = Field(alias="refId")
|
|
322
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
323
|
+
description: Optional[str] = Field(default=None)
|
|
324
|
+
additional_meta_data: Optional[Any] = Field(
|
|
325
|
+
alias="additionalMetaData", default=None
|
|
326
|
+
)
|
|
327
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
331
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
332
|
+
alias="downgradePlan", default=None
|
|
333
|
+
)
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
337
|
+
ref_id: str = Field(alias="refId")
|
|
338
|
+
display_name: str = Field(alias="displayName")
|
|
339
|
+
|
|
340
|
+
|
|
304
341
|
class PlanFragment(BaseModel):
|
|
305
342
|
id: str
|
|
306
343
|
ref_id: str = Field(alias="refId")
|
|
@@ -382,21 +419,12 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
382
419
|
limit: float
|
|
383
420
|
|
|
384
421
|
|
|
385
|
-
class
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
ref_id: str = Field(alias="refId")
|
|
392
|
-
customer_id: str = Field(alias="customerId")
|
|
393
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
394
|
-
additional_meta_data: Optional[Any] = Field(
|
|
395
|
-
alias="additionalMetaData", default=None
|
|
396
|
-
)
|
|
397
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
398
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
399
|
-
)
|
|
422
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
423
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
class CustomerResourceFragment(BaseModel):
|
|
427
|
+
resource_id: str = Field(alias="resourceId")
|
|
400
428
|
|
|
401
429
|
|
|
402
430
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
@@ -553,8 +581,21 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
553
581
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
554
582
|
|
|
555
583
|
|
|
556
|
-
class
|
|
557
|
-
|
|
584
|
+
class SlimCustomerFragment(BaseModel):
|
|
585
|
+
id: str
|
|
586
|
+
name: Optional[str] = Field(default=None)
|
|
587
|
+
email: Optional[str] = Field(default=None)
|
|
588
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
589
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
590
|
+
ref_id: str = Field(alias="refId")
|
|
591
|
+
customer_id: str = Field(alias="customerId")
|
|
592
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
593
|
+
additional_meta_data: Optional[Any] = Field(
|
|
594
|
+
alias="additionalMetaData", default=None
|
|
595
|
+
)
|
|
596
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
597
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
598
|
+
)
|
|
558
599
|
|
|
559
600
|
|
|
560
601
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
@@ -719,6 +760,48 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
719
760
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
720
761
|
|
|
721
762
|
|
|
763
|
+
class TotalPriceFragment(BaseModel):
|
|
764
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
765
|
+
total: "TotalPriceFragmentTotal"
|
|
766
|
+
|
|
767
|
+
|
|
768
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
769
|
+
amount: float
|
|
770
|
+
currency: Currency
|
|
771
|
+
|
|
772
|
+
|
|
773
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
774
|
+
amount: float
|
|
775
|
+
currency: Currency
|
|
776
|
+
|
|
777
|
+
|
|
778
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
779
|
+
billing_id: str = Field(alias="billingId")
|
|
780
|
+
status: SubscriptionInvoiceStatus
|
|
781
|
+
created_at: Any = Field(alias="createdAt")
|
|
782
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
783
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
784
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
785
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
786
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
787
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
788
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
789
|
+
alias="billingReason", default=None
|
|
790
|
+
)
|
|
791
|
+
currency: Optional[str] = Field(default=None)
|
|
792
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
793
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
794
|
+
alias="subTotalExcludingTax", default=None
|
|
795
|
+
)
|
|
796
|
+
total: Optional[float] = Field(default=None)
|
|
797
|
+
total_excluding_tax: Optional[float] = Field(
|
|
798
|
+
alias="totalExcludingTax", default=None
|
|
799
|
+
)
|
|
800
|
+
tax: Optional[float] = Field(default=None)
|
|
801
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
802
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
803
|
+
|
|
804
|
+
|
|
722
805
|
class SubscriptionFragment(BaseModel):
|
|
723
806
|
id: str
|
|
724
807
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -828,89 +911,6 @@ class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragm
|
|
|
828
911
|
pass
|
|
829
912
|
|
|
830
913
|
|
|
831
|
-
class FeatureFragment(BaseModel):
|
|
832
|
-
typename__: str = Field(alias="__typename")
|
|
833
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
834
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
835
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
836
|
-
feature_units_plural: Optional[str] = Field(
|
|
837
|
-
alias="featureUnitsPlural", default=None
|
|
838
|
-
)
|
|
839
|
-
description: Optional[str] = Field(default=None)
|
|
840
|
-
display_name: str = Field(alias="displayName")
|
|
841
|
-
ref_id: str = Field(alias="refId")
|
|
842
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
843
|
-
alias="unitTransformation", default=None
|
|
844
|
-
)
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
class FeatureFragmentUnitTransformation(BaseModel):
|
|
848
|
-
divide: float
|
|
849
|
-
round: UnitTransformationRound
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
class EntitlementFragment(BaseModel):
|
|
853
|
-
typename__: str = Field(alias="__typename")
|
|
854
|
-
is_granted: bool = Field(alias="isGranted")
|
|
855
|
-
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
856
|
-
alias="accessDeniedReason", default=None
|
|
857
|
-
)
|
|
858
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
859
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
860
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
861
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
862
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
863
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
864
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
865
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
866
|
-
alias="entitlementUpdatedAt", default=None
|
|
867
|
-
)
|
|
868
|
-
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
869
|
-
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
870
|
-
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
871
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
872
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
873
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
874
|
-
alias="resetPeriod", default=None
|
|
875
|
-
)
|
|
876
|
-
reset_period_configuration: Optional[
|
|
877
|
-
Annotated[
|
|
878
|
-
Union[
|
|
879
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
880
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
881
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
882
|
-
],
|
|
883
|
-
Field(discriminator="typename__"),
|
|
884
|
-
]
|
|
885
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
886
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
890
|
-
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
891
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
892
|
-
alias="monthlyAccordingTo", default=None
|
|
893
|
-
)
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
897
|
-
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
898
|
-
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
899
|
-
alias="weeklyAccordingTo", default=None
|
|
900
|
-
)
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
904
|
-
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
905
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
906
|
-
alias="yearlyAccordingTo", default=None
|
|
907
|
-
)
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
class EntitlementFragmentFeature(FeatureFragment):
|
|
911
|
-
pass
|
|
912
|
-
|
|
913
|
-
|
|
914
914
|
class ApplySubscriptionFragment(BaseModel):
|
|
915
915
|
subscription: Optional["ApplySubscriptionFragmentSubscription"] = Field(
|
|
916
916
|
default=None
|
|
@@ -988,6 +988,35 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
988
988
|
)
|
|
989
989
|
|
|
990
990
|
|
|
991
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
992
|
+
status: PromotionalEntitlementStatus
|
|
993
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
994
|
+
feature_id: str = Field(alias="featureId")
|
|
995
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
996
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
997
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
998
|
+
alias="resetPeriod", default=None
|
|
999
|
+
)
|
|
1000
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1001
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1002
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1003
|
+
|
|
1004
|
+
|
|
1005
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1006
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1007
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1008
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1009
|
+
feature_units_plural: Optional[str] = Field(
|
|
1010
|
+
alias="featureUnitsPlural", default=None
|
|
1011
|
+
)
|
|
1012
|
+
display_name: str = Field(alias="displayName")
|
|
1013
|
+
description: Optional[str] = Field(default=None)
|
|
1014
|
+
ref_id: str = Field(alias="refId")
|
|
1015
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1016
|
+
alias="additionalMetaData", default=None
|
|
1017
|
+
)
|
|
1018
|
+
|
|
1019
|
+
|
|
991
1020
|
class CouponFragment(BaseModel):
|
|
992
1021
|
id: str
|
|
993
1022
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1022,35 +1051,6 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1022
1051
|
status: SyncStatus
|
|
1023
1052
|
|
|
1024
1053
|
|
|
1025
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
1026
|
-
status: PromotionalEntitlementStatus
|
|
1027
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1028
|
-
feature_id: str = Field(alias="featureId")
|
|
1029
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1030
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1031
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1032
|
-
alias="resetPeriod", default=None
|
|
1033
|
-
)
|
|
1034
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1035
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1036
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1040
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1041
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1042
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1043
|
-
feature_units_plural: Optional[str] = Field(
|
|
1044
|
-
alias="featureUnitsPlural", default=None
|
|
1045
|
-
)
|
|
1046
|
-
display_name: str = Field(alias="displayName")
|
|
1047
|
-
description: Optional[str] = Field(default=None)
|
|
1048
|
-
ref_id: str = Field(alias="refId")
|
|
1049
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1050
|
-
alias="additionalMetaData", default=None
|
|
1051
|
-
)
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
1054
|
class CustomerFragment(SlimCustomerFragment):
|
|
1055
1055
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1056
1056
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1257,16 +1257,6 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1257
1257
|
pass
|
|
1258
1258
|
|
|
1259
1259
|
|
|
1260
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1261
|
-
display_name: str = Field(alias="displayName")
|
|
1262
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1263
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1264
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1265
|
-
period: PromotionalEntitlementPeriod
|
|
1266
|
-
start_date: Any = Field(alias="startDate")
|
|
1267
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
1260
|
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1271
1261
|
addon_id: str = Field(alias="addonId")
|
|
1272
1262
|
description: Optional[str] = Field(default=None)
|
|
@@ -1566,6 +1556,16 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1566
1556
|
pass
|
|
1567
1557
|
|
|
1568
1558
|
|
|
1559
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1560
|
+
display_name: str = Field(alias="displayName")
|
|
1561
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1562
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1563
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1564
|
+
period: PromotionalEntitlementPeriod
|
|
1565
|
+
start_date: Any = Field(alias="startDate")
|
|
1566
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1567
|
+
|
|
1568
|
+
|
|
1569
1569
|
class CustomerPortalFragment(BaseModel):
|
|
1570
1570
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1571
1571
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -1793,6 +1793,39 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1793
1793
|
description: Optional[str] = Field(default=None)
|
|
1794
1794
|
|
|
1795
1795
|
|
|
1796
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1797
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1798
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1799
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1800
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1801
|
+
alias="resetPeriod", default=None
|
|
1802
|
+
)
|
|
1803
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1804
|
+
alias="hiddenFromWidgets", default=None
|
|
1805
|
+
)
|
|
1806
|
+
display_name_override: Optional[str] = Field(
|
|
1807
|
+
alias="displayNameOverride", default=None
|
|
1808
|
+
)
|
|
1809
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1810
|
+
default=None
|
|
1811
|
+
)
|
|
1812
|
+
|
|
1813
|
+
|
|
1814
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1815
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1816
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1817
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1818
|
+
feature_units_plural: Optional[str] = Field(
|
|
1819
|
+
alias="featureUnitsPlural", default=None
|
|
1820
|
+
)
|
|
1821
|
+
display_name: str = Field(alias="displayName")
|
|
1822
|
+
description: Optional[str] = Field(default=None)
|
|
1823
|
+
ref_id: str = Field(alias="refId")
|
|
1824
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1825
|
+
alias="additionalMetaData", default=None
|
|
1826
|
+
)
|
|
1827
|
+
|
|
1828
|
+
|
|
1796
1829
|
class MockPaywallPriceFragment(BaseModel):
|
|
1797
1830
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1798
1831
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1827,39 +1860,6 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1827
1860
|
display_name: str = Field(alias="displayName")
|
|
1828
1861
|
|
|
1829
1862
|
|
|
1830
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1831
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1832
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1833
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1834
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1835
|
-
alias="resetPeriod", default=None
|
|
1836
|
-
)
|
|
1837
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1838
|
-
alias="hiddenFromWidgets", default=None
|
|
1839
|
-
)
|
|
1840
|
-
display_name_override: Optional[str] = Field(
|
|
1841
|
-
alias="displayNameOverride", default=None
|
|
1842
|
-
)
|
|
1843
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1844
|
-
default=None
|
|
1845
|
-
)
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1849
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1850
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1851
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1852
|
-
feature_units_plural: Optional[str] = Field(
|
|
1853
|
-
alias="featureUnitsPlural", default=None
|
|
1854
|
-
)
|
|
1855
|
-
display_name: str = Field(alias="displayName")
|
|
1856
|
-
description: Optional[str] = Field(default=None)
|
|
1857
|
-
ref_id: str = Field(alias="refId")
|
|
1858
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1859
|
-
alias="additionalMetaData", default=None
|
|
1860
|
-
)
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
1863
|
class MockPaywallAddonFragment(BaseModel):
|
|
1864
1864
|
ref_id: str = Field(alias="refId")
|
|
1865
1865
|
display_name: str = Field(alias="displayName")
|
|
@@ -2770,40 +2770,40 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2770
2770
|
|
|
2771
2771
|
|
|
2772
2772
|
AddonDependencyFragment.model_rebuild()
|
|
2773
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2773
2774
|
PriceTierFragment.model_rebuild()
|
|
2774
|
-
OveragePriceFragment.model_rebuild()
|
|
2775
2775
|
PriceFragment.model_rebuild()
|
|
2776
|
-
|
|
2776
|
+
OveragePriceFragment.model_rebuild()
|
|
2777
2777
|
AddonFragment.model_rebuild()
|
|
2778
|
-
|
|
2779
|
-
|
|
2780
|
-
TotalPriceFragment.model_rebuild()
|
|
2781
|
-
ProductFragment.model_rebuild()
|
|
2778
|
+
FeatureFragment.model_rebuild()
|
|
2779
|
+
EntitlementFragment.model_rebuild()
|
|
2782
2780
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2781
|
+
ProductFragment.model_rebuild()
|
|
2783
2782
|
PlanFragment.model_rebuild()
|
|
2784
|
-
SlimCustomerFragment.model_rebuild()
|
|
2785
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2786
2783
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2784
|
+
CustomerResourceFragment.model_rebuild()
|
|
2785
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2786
|
+
SlimCustomerFragment.model_rebuild()
|
|
2787
2787
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2788
|
+
TotalPriceFragment.model_rebuild()
|
|
2789
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2788
2790
|
SubscriptionFragment.model_rebuild()
|
|
2789
|
-
FeatureFragment.model_rebuild()
|
|
2790
|
-
EntitlementFragment.model_rebuild()
|
|
2791
2791
|
ApplySubscriptionFragment.model_rebuild()
|
|
2792
2792
|
FontVariantFragment.model_rebuild()
|
|
2793
2793
|
TypographyConfigurationFragment.model_rebuild()
|
|
2794
2794
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2795
|
-
CouponFragment.model_rebuild()
|
|
2796
2795
|
PromotionalEntitlementFragment.model_rebuild()
|
|
2796
|
+
CouponFragment.model_rebuild()
|
|
2797
2797
|
CustomerFragment.model_rebuild()
|
|
2798
2798
|
CheckoutStateFragment.model_rebuild()
|
|
2799
2799
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2800
2800
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2801
2801
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2802
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2803
2802
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2804
2803
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2805
2804
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2806
2805
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2806
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2807
2807
|
CustomerPortalFragment.model_rebuild()
|
|
2808
2808
|
CustomerStatisticsFragment.model_rebuild()
|
|
2809
2809
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -2813,8 +2813,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2813
2813
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2814
2814
|
LayoutConfigurationFragment.model_rebuild()
|
|
2815
2815
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2816
|
-
MockPaywallPriceFragment.model_rebuild()
|
|
2817
2816
|
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2817
|
+
MockPaywallPriceFragment.model_rebuild()
|
|
2818
2818
|
MockPaywallAddonFragment.model_rebuild()
|
|
2819
2819
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2820
2820
|
MockPaywallPlanFragment.model_rebuild()
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=t6q4y-5cKBmgLTrf_2YWXkNvmclEjnvBos1Ycd0aomI,3521
|
|
|
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=M60P8DhE-6lbZrEiUQtk8D1UuPT-ctW6EyTK73n_u-g,100917
|
|
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
|
|
@@ -160,7 +160,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
160
160
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
161
161
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
162
162
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
163
|
-
stigg_api_client_v2-2.
|
|
164
|
-
stigg_api_client_v2-2.
|
|
165
|
-
stigg_api_client_v2-2.
|
|
166
|
-
stigg_api_client_v2-2.
|
|
163
|
+
stigg_api_client_v2-2.361.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.361.0.dist-info/METADATA,sha256=yEMiCXJ7TDH39wLfFjyLxFsgMmVgYKGLyBAFSF9WA7k,2258
|
|
165
|
+
stigg_api_client_v2-2.361.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.361.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|