stigg-api-client-v2 2.287.0__py3-none-any.whl → 2.293.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 +333 -333
- stigg/generated/input_types.py +6 -0
- {stigg_api_client_v2-2.287.0.dist-info → stigg_api_client_v2-2.293.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.287.0.dist-info → stigg_api_client_v2-2.293.0.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-2.287.0.dist-info → stigg_api_client_v2-2.293.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.287.0.dist-info → stigg_api_client_v2-2.293.0.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -59,39 +59,6 @@ class AddonDependencyFragment(BaseModel):
|
|
|
59
59
|
description: Optional[str] = Field(default=None)
|
|
60
60
|
|
|
61
61
|
|
|
62
|
-
class PackageEntitlementFragment(BaseModel):
|
|
63
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
64
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
65
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
66
|
-
feature_id: str = Field(alias="featureId")
|
|
67
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
68
|
-
alias="resetPeriod", default=None
|
|
69
|
-
)
|
|
70
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
71
|
-
alias="hiddenFromWidgets", default=None
|
|
72
|
-
)
|
|
73
|
-
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
74
|
-
display_name_override: Optional[str] = Field(
|
|
75
|
-
alias="displayNameOverride", default=None
|
|
76
|
-
)
|
|
77
|
-
feature: "PackageEntitlementFragmentFeature"
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
class PackageEntitlementFragmentFeature(BaseModel):
|
|
81
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
82
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
83
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
84
|
-
feature_units_plural: Optional[str] = Field(
|
|
85
|
-
alias="featureUnitsPlural", default=None
|
|
86
|
-
)
|
|
87
|
-
display_name: str = Field(alias="displayName")
|
|
88
|
-
description: Optional[str] = Field(default=None)
|
|
89
|
-
ref_id: str = Field(alias="refId")
|
|
90
|
-
additional_meta_data: Optional[Any] = Field(
|
|
91
|
-
alias="additionalMetaData", default=None
|
|
92
|
-
)
|
|
93
|
-
|
|
94
|
-
|
|
95
62
|
class PriceTierFragment(BaseModel):
|
|
96
63
|
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
97
64
|
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
@@ -112,33 +79,29 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
112
79
|
currency: Currency
|
|
113
80
|
|
|
114
81
|
|
|
115
|
-
class
|
|
82
|
+
class OveragePriceFragment(BaseModel):
|
|
116
83
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
117
84
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
118
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
119
85
|
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
86
|
billing_country_code: Optional[str] = Field(
|
|
123
87
|
alias="billingCountryCode", default=None
|
|
124
88
|
)
|
|
125
|
-
price: Optional["
|
|
89
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
126
90
|
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)
|
|
91
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
92
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
130
93
|
|
|
131
94
|
|
|
132
|
-
class
|
|
95
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
133
96
|
amount: float
|
|
134
97
|
currency: Currency
|
|
135
98
|
|
|
136
99
|
|
|
137
|
-
class
|
|
100
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
138
101
|
pass
|
|
139
102
|
|
|
140
103
|
|
|
141
|
-
class
|
|
104
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
142
105
|
ref_id: str = Field(alias="refId")
|
|
143
106
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
144
107
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -148,29 +111,66 @@ class PriceFragmentFeature(BaseModel):
|
|
|
148
111
|
description: Optional[str] = Field(default=None)
|
|
149
112
|
|
|
150
113
|
|
|
151
|
-
class
|
|
114
|
+
class PackageEntitlementFragment(BaseModel):
|
|
115
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
116
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
117
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
118
|
+
feature_id: str = Field(alias="featureId")
|
|
119
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
120
|
+
alias="resetPeriod", default=None
|
|
121
|
+
)
|
|
122
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
123
|
+
alias="hiddenFromWidgets", default=None
|
|
124
|
+
)
|
|
125
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
126
|
+
display_name_override: Optional[str] = Field(
|
|
127
|
+
alias="displayNameOverride", default=None
|
|
128
|
+
)
|
|
129
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
133
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
134
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
135
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
136
|
+
feature_units_plural: Optional[str] = Field(
|
|
137
|
+
alias="featureUnitsPlural", default=None
|
|
138
|
+
)
|
|
139
|
+
display_name: str = Field(alias="displayName")
|
|
140
|
+
description: Optional[str] = Field(default=None)
|
|
141
|
+
ref_id: str = Field(alias="refId")
|
|
142
|
+
additional_meta_data: Optional[Any] = Field(
|
|
143
|
+
alias="additionalMetaData", default=None
|
|
144
|
+
)
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
class PriceFragment(BaseModel):
|
|
152
148
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
153
149
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
150
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
154
151
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
152
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
153
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
155
154
|
billing_country_code: Optional[str] = Field(
|
|
156
155
|
alias="billingCountryCode", default=None
|
|
157
156
|
)
|
|
158
|
-
price: Optional["
|
|
157
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
159
158
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
160
|
-
tiers: Optional[List["
|
|
161
|
-
feature: Optional["
|
|
159
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
160
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
161
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
162
162
|
|
|
163
163
|
|
|
164
|
-
class
|
|
164
|
+
class PriceFragmentPrice(BaseModel):
|
|
165
165
|
amount: float
|
|
166
166
|
currency: Currency
|
|
167
167
|
|
|
168
168
|
|
|
169
|
-
class
|
|
169
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
170
170
|
pass
|
|
171
171
|
|
|
172
172
|
|
|
173
|
-
class
|
|
173
|
+
class PriceFragmentFeature(BaseModel):
|
|
174
174
|
ref_id: str = Field(alias="refId")
|
|
175
175
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
176
176
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -215,154 +215,45 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
215
215
|
pass
|
|
216
216
|
|
|
217
217
|
|
|
218
|
-
class
|
|
219
|
-
typename__: str = Field(alias="__typename")
|
|
220
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
221
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
222
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
223
|
-
feature_units_plural: Optional[str] = Field(
|
|
224
|
-
alias="featureUnitsPlural", default=None
|
|
225
|
-
)
|
|
226
|
-
description: Optional[str] = Field(default=None)
|
|
227
|
-
display_name: str = Field(alias="displayName")
|
|
228
|
-
ref_id: str = Field(alias="refId")
|
|
229
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
230
|
-
alias="unitTransformation", default=None
|
|
231
|
-
)
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
class FeatureFragmentUnitTransformation(BaseModel):
|
|
235
|
-
divide: float
|
|
236
|
-
round: UnitTransformationRound
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
class EntitlementFragment(BaseModel):
|
|
240
|
-
typename__: str = Field(alias="__typename")
|
|
241
|
-
is_granted: bool = Field(alias="isGranted")
|
|
242
|
-
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
243
|
-
alias="accessDeniedReason", default=None
|
|
244
|
-
)
|
|
245
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
246
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
247
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
248
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
249
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
250
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
251
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
252
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
253
|
-
alias="entitlementUpdatedAt", default=None
|
|
254
|
-
)
|
|
255
|
-
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
256
|
-
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
257
|
-
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
258
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
259
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
260
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
261
|
-
alias="resetPeriod", default=None
|
|
262
|
-
)
|
|
263
|
-
reset_period_configuration: Optional[
|
|
264
|
-
Annotated[
|
|
265
|
-
Union[
|
|
266
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
267
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
268
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
269
|
-
],
|
|
270
|
-
Field(discriminator="typename__"),
|
|
271
|
-
]
|
|
272
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
273
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
277
|
-
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
278
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
279
|
-
alias="monthlyAccordingTo", default=None
|
|
280
|
-
)
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
284
|
-
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
285
|
-
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
286
|
-
alias="weeklyAccordingTo", default=None
|
|
287
|
-
)
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
291
|
-
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
292
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
293
|
-
alias="yearlyAccordingTo", default=None
|
|
294
|
-
)
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
class EntitlementFragmentFeature(FeatureFragment):
|
|
298
|
-
pass
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
302
|
-
billing_id: str = Field(alias="billingId")
|
|
303
|
-
status: SubscriptionInvoiceStatus
|
|
304
|
-
created_at: Any = Field(alias="createdAt")
|
|
305
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
306
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
307
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
308
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
309
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
310
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
311
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
312
|
-
alias="billingReason", default=None
|
|
313
|
-
)
|
|
314
|
-
currency: Optional[str] = Field(default=None)
|
|
315
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
316
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
317
|
-
alias="subTotalExcludingTax", default=None
|
|
318
|
-
)
|
|
319
|
-
total: Optional[float] = Field(default=None)
|
|
320
|
-
total_excluding_tax: Optional[float] = Field(
|
|
321
|
-
alias="totalExcludingTax", default=None
|
|
322
|
-
)
|
|
323
|
-
tax: Optional[float] = Field(default=None)
|
|
324
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
class SubscriptionScheduledUpdateData(BaseModel):
|
|
218
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
328
219
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
329
220
|
alias="subscriptionScheduleType"
|
|
330
221
|
)
|
|
331
222
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
332
223
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
333
|
-
target_package: Optional["
|
|
224
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
334
225
|
alias="targetPackage", default=None
|
|
335
226
|
)
|
|
336
227
|
schedule_variables: Optional[
|
|
337
228
|
Annotated[
|
|
338
229
|
Union[
|
|
339
|
-
"
|
|
340
|
-
"
|
|
341
|
-
"
|
|
342
|
-
"
|
|
343
|
-
"
|
|
344
|
-
"
|
|
345
|
-
"
|
|
346
|
-
"
|
|
230
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
231
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
232
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
233
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
234
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
235
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
236
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
237
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
347
238
|
],
|
|
348
239
|
Field(discriminator="typename__"),
|
|
349
240
|
]
|
|
350
241
|
] = Field(alias="scheduleVariables", default=None)
|
|
351
242
|
|
|
352
243
|
|
|
353
|
-
class
|
|
244
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
354
245
|
id: str
|
|
355
246
|
ref_id: str = Field(alias="refId")
|
|
356
247
|
display_name: str = Field(alias="displayName")
|
|
357
248
|
|
|
358
249
|
|
|
359
|
-
class
|
|
250
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
360
251
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
361
252
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
362
253
|
new_quantity: float = Field(alias="newQuantity")
|
|
363
254
|
|
|
364
255
|
|
|
365
|
-
class
|
|
256
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
366
257
|
BaseModel
|
|
367
258
|
):
|
|
368
259
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -370,55 +261,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
370
261
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
371
262
|
|
|
372
263
|
|
|
373
|
-
class
|
|
264
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
374
265
|
BaseModel
|
|
375
266
|
):
|
|
376
267
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
377
268
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
378
269
|
|
|
379
270
|
|
|
380
|
-
class
|
|
271
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
381
272
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
382
273
|
|
|
383
274
|
|
|
384
|
-
class
|
|
385
|
-
BaseModel
|
|
386
|
-
):
|
|
275
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
387
276
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
388
277
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
389
278
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
390
279
|
billable_features: Optional[
|
|
391
280
|
List[
|
|
392
|
-
"
|
|
281
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
393
282
|
]
|
|
394
283
|
] = Field(alias="billableFeatures", default=None)
|
|
395
284
|
addons: Optional[
|
|
396
285
|
List[
|
|
397
|
-
"
|
|
286
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
398
287
|
]
|
|
399
288
|
] = Field(default=None)
|
|
400
289
|
price_overrides: Optional[
|
|
401
290
|
List[
|
|
402
|
-
"
|
|
291
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
403
292
|
]
|
|
404
293
|
] = Field(alias="priceOverrides", default=None)
|
|
405
294
|
|
|
406
295
|
|
|
407
|
-
class
|
|
296
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
408
297
|
BaseModel
|
|
409
298
|
):
|
|
410
299
|
feature_id: str = Field(alias="featureId")
|
|
411
300
|
quantity: float
|
|
412
301
|
|
|
413
302
|
|
|
414
|
-
class
|
|
303
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
415
304
|
BaseModel
|
|
416
305
|
):
|
|
417
306
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
418
307
|
quantity: float
|
|
419
308
|
|
|
420
309
|
|
|
421
|
-
class
|
|
310
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
422
311
|
BaseModel
|
|
423
312
|
):
|
|
424
313
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -426,43 +315,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
426
315
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
427
316
|
|
|
428
317
|
|
|
429
|
-
class
|
|
318
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
430
319
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
431
320
|
plan_ref_id: str = Field(alias="planRefId")
|
|
432
321
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
433
322
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
434
323
|
billable_features: Optional[
|
|
435
324
|
List[
|
|
436
|
-
"
|
|
325
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
437
326
|
]
|
|
438
327
|
] = Field(alias="billableFeatures", default=None)
|
|
439
328
|
addons: Optional[
|
|
440
|
-
List[
|
|
441
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
442
|
-
]
|
|
329
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
443
330
|
] = Field(default=None)
|
|
444
331
|
price_overrides: Optional[
|
|
445
332
|
List[
|
|
446
|
-
"
|
|
333
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
447
334
|
]
|
|
448
335
|
] = Field(alias="priceOverrides", default=None)
|
|
449
336
|
|
|
450
337
|
|
|
451
|
-
class
|
|
338
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
452
339
|
BaseModel
|
|
453
340
|
):
|
|
454
341
|
feature_id: str = Field(alias="featureId")
|
|
455
342
|
quantity: float
|
|
456
343
|
|
|
457
344
|
|
|
458
|
-
class
|
|
459
|
-
BaseModel
|
|
460
|
-
):
|
|
345
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
461
346
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
462
347
|
quantity: float
|
|
463
348
|
|
|
464
349
|
|
|
465
|
-
class
|
|
350
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
466
351
|
BaseModel
|
|
467
352
|
):
|
|
468
353
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -470,7 +355,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
470
355
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
471
356
|
|
|
472
357
|
|
|
473
|
-
class
|
|
358
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
474
359
|
BaseModel
|
|
475
360
|
):
|
|
476
361
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -478,16 +363,40 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
478
363
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
479
364
|
|
|
480
365
|
|
|
481
|
-
class
|
|
482
|
-
BaseModel
|
|
483
|
-
):
|
|
366
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
484
367
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
485
368
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
486
369
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
487
370
|
|
|
488
371
|
|
|
489
|
-
class
|
|
490
|
-
|
|
372
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
373
|
+
billing_id: str = Field(alias="billingId")
|
|
374
|
+
status: SubscriptionInvoiceStatus
|
|
375
|
+
created_at: Any = Field(alias="createdAt")
|
|
376
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
377
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
378
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
379
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
380
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
381
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
382
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
383
|
+
alias="billingReason", default=None
|
|
384
|
+
)
|
|
385
|
+
currency: Optional[str] = Field(default=None)
|
|
386
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
387
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
388
|
+
alias="subTotalExcludingTax", default=None
|
|
389
|
+
)
|
|
390
|
+
total: Optional[float] = Field(default=None)
|
|
391
|
+
total_excluding_tax: Optional[float] = Field(
|
|
392
|
+
alias="totalExcludingTax", default=None
|
|
393
|
+
)
|
|
394
|
+
tax: Optional[float] = Field(default=None)
|
|
395
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
class CustomerResourceFragment(BaseModel):
|
|
399
|
+
resource_id: str = Field(alias="resourceId")
|
|
491
400
|
|
|
492
401
|
|
|
493
402
|
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
@@ -610,62 +519,45 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
610
519
|
limit: float
|
|
611
520
|
|
|
612
521
|
|
|
613
|
-
class
|
|
614
|
-
id: str
|
|
615
|
-
name: Optional[str] = Field(default=None)
|
|
616
|
-
email: Optional[str] = Field(default=None)
|
|
617
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
618
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
619
|
-
ref_id: str = Field(alias="refId")
|
|
620
|
-
customer_id: str = Field(alias="customerId")
|
|
621
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
622
|
-
additional_meta_data: Optional[Any] = Field(
|
|
623
|
-
alias="additionalMetaData", default=None
|
|
624
|
-
)
|
|
625
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
626
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
627
|
-
)
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
class SubscriptionFutureUpdateData(BaseModel):
|
|
522
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
631
523
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
632
524
|
alias="subscriptionScheduleType"
|
|
633
525
|
)
|
|
634
526
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
635
527
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
636
|
-
target_package: Optional["
|
|
528
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
637
529
|
alias="targetPackage", default=None
|
|
638
530
|
)
|
|
639
531
|
schedule_variables: Optional[
|
|
640
532
|
Annotated[
|
|
641
533
|
Union[
|
|
642
|
-
"
|
|
643
|
-
"
|
|
644
|
-
"
|
|
645
|
-
"
|
|
646
|
-
"
|
|
647
|
-
"
|
|
648
|
-
"
|
|
649
|
-
"
|
|
534
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
535
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
536
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
537
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
538
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
539
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
540
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
541
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
650
542
|
],
|
|
651
543
|
Field(discriminator="typename__"),
|
|
652
544
|
]
|
|
653
545
|
] = Field(alias="scheduleVariables", default=None)
|
|
654
546
|
|
|
655
547
|
|
|
656
|
-
class
|
|
548
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
657
549
|
id: str
|
|
658
550
|
ref_id: str = Field(alias="refId")
|
|
659
551
|
display_name: str = Field(alias="displayName")
|
|
660
552
|
|
|
661
553
|
|
|
662
|
-
class
|
|
554
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
663
555
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
664
556
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
665
557
|
new_quantity: float = Field(alias="newQuantity")
|
|
666
558
|
|
|
667
559
|
|
|
668
|
-
class
|
|
560
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
669
561
|
BaseModel
|
|
670
562
|
):
|
|
671
563
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -673,53 +565,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
673
565
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
674
566
|
|
|
675
567
|
|
|
676
|
-
class
|
|
568
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
677
569
|
BaseModel
|
|
678
570
|
):
|
|
679
571
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
680
572
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
681
573
|
|
|
682
574
|
|
|
683
|
-
class
|
|
575
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
684
576
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
685
577
|
|
|
686
578
|
|
|
687
|
-
class
|
|
579
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
580
|
+
BaseModel
|
|
581
|
+
):
|
|
688
582
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
689
583
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
690
584
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
691
585
|
billable_features: Optional[
|
|
692
586
|
List[
|
|
693
|
-
"
|
|
587
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
694
588
|
]
|
|
695
589
|
] = Field(alias="billableFeatures", default=None)
|
|
696
590
|
addons: Optional[
|
|
697
591
|
List[
|
|
698
|
-
"
|
|
592
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
699
593
|
]
|
|
700
594
|
] = Field(default=None)
|
|
701
595
|
price_overrides: Optional[
|
|
702
596
|
List[
|
|
703
|
-
"
|
|
597
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
704
598
|
]
|
|
705
599
|
] = Field(alias="priceOverrides", default=None)
|
|
706
600
|
|
|
707
601
|
|
|
708
|
-
class
|
|
602
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
709
603
|
BaseModel
|
|
710
604
|
):
|
|
711
605
|
feature_id: str = Field(alias="featureId")
|
|
712
606
|
quantity: float
|
|
713
607
|
|
|
714
608
|
|
|
715
|
-
class
|
|
609
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
716
610
|
BaseModel
|
|
717
611
|
):
|
|
718
612
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
719
613
|
quantity: float
|
|
720
614
|
|
|
721
615
|
|
|
722
|
-
class
|
|
616
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
723
617
|
BaseModel
|
|
724
618
|
):
|
|
725
619
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -727,39 +621,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
727
621
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
728
622
|
|
|
729
623
|
|
|
730
|
-
class
|
|
624
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
731
625
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
732
626
|
plan_ref_id: str = Field(alias="planRefId")
|
|
733
627
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
734
628
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
735
629
|
billable_features: Optional[
|
|
736
630
|
List[
|
|
737
|
-
"
|
|
631
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
738
632
|
]
|
|
739
633
|
] = Field(alias="billableFeatures", default=None)
|
|
740
634
|
addons: Optional[
|
|
741
|
-
List[
|
|
635
|
+
List[
|
|
636
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
637
|
+
]
|
|
742
638
|
] = Field(default=None)
|
|
743
639
|
price_overrides: Optional[
|
|
744
640
|
List[
|
|
745
|
-
"
|
|
641
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
746
642
|
]
|
|
747
643
|
] = Field(alias="priceOverrides", default=None)
|
|
748
644
|
|
|
749
645
|
|
|
750
|
-
class
|
|
646
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
751
647
|
BaseModel
|
|
752
648
|
):
|
|
753
649
|
feature_id: str = Field(alias="featureId")
|
|
754
650
|
quantity: float
|
|
755
651
|
|
|
756
652
|
|
|
757
|
-
class
|
|
653
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
654
|
+
BaseModel
|
|
655
|
+
):
|
|
758
656
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
759
657
|
quantity: float
|
|
760
658
|
|
|
761
659
|
|
|
762
|
-
class
|
|
660
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
763
661
|
BaseModel
|
|
764
662
|
):
|
|
765
663
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -767,7 +665,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
767
665
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
768
666
|
|
|
769
667
|
|
|
770
|
-
class
|
|
668
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
771
669
|
BaseModel
|
|
772
670
|
):
|
|
773
671
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -775,7 +673,9 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
775
673
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
776
674
|
|
|
777
675
|
|
|
778
|
-
class
|
|
676
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
677
|
+
BaseModel
|
|
678
|
+
):
|
|
779
679
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
780
680
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
781
681
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
@@ -796,8 +696,25 @@ class TotalPriceFragmentTotal(BaseModel):
|
|
|
796
696
|
currency: Currency
|
|
797
697
|
|
|
798
698
|
|
|
799
|
-
class
|
|
800
|
-
|
|
699
|
+
class SlimCustomerFragment(BaseModel):
|
|
700
|
+
id: str
|
|
701
|
+
name: Optional[str] = Field(default=None)
|
|
702
|
+
email: Optional[str] = Field(default=None)
|
|
703
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
704
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
705
|
+
ref_id: str = Field(alias="refId")
|
|
706
|
+
customer_id: str = Field(alias="customerId")
|
|
707
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
708
|
+
additional_meta_data: Optional[Any] = Field(
|
|
709
|
+
alias="additionalMetaData", default=None
|
|
710
|
+
)
|
|
711
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
712
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
713
|
+
)
|
|
714
|
+
|
|
715
|
+
|
|
716
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
717
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
801
718
|
|
|
802
719
|
|
|
803
720
|
class SubscriptionFragment(BaseModel):
|
|
@@ -909,6 +826,89 @@ class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragm
|
|
|
909
826
|
pass
|
|
910
827
|
|
|
911
828
|
|
|
829
|
+
class FeatureFragment(BaseModel):
|
|
830
|
+
typename__: str = Field(alias="__typename")
|
|
831
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
832
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
833
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
834
|
+
feature_units_plural: Optional[str] = Field(
|
|
835
|
+
alias="featureUnitsPlural", default=None
|
|
836
|
+
)
|
|
837
|
+
description: Optional[str] = Field(default=None)
|
|
838
|
+
display_name: str = Field(alias="displayName")
|
|
839
|
+
ref_id: str = Field(alias="refId")
|
|
840
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
841
|
+
alias="unitTransformation", default=None
|
|
842
|
+
)
|
|
843
|
+
|
|
844
|
+
|
|
845
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
846
|
+
divide: float
|
|
847
|
+
round: UnitTransformationRound
|
|
848
|
+
|
|
849
|
+
|
|
850
|
+
class EntitlementFragment(BaseModel):
|
|
851
|
+
typename__: str = Field(alias="__typename")
|
|
852
|
+
is_granted: bool = Field(alias="isGranted")
|
|
853
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
854
|
+
alias="accessDeniedReason", default=None
|
|
855
|
+
)
|
|
856
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
857
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
858
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
859
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
860
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
861
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
862
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
863
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
864
|
+
alias="entitlementUpdatedAt", default=None
|
|
865
|
+
)
|
|
866
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
867
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
868
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
869
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
870
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
871
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
872
|
+
alias="resetPeriod", default=None
|
|
873
|
+
)
|
|
874
|
+
reset_period_configuration: Optional[
|
|
875
|
+
Annotated[
|
|
876
|
+
Union[
|
|
877
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
878
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
879
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
880
|
+
],
|
|
881
|
+
Field(discriminator="typename__"),
|
|
882
|
+
]
|
|
883
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
884
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
885
|
+
|
|
886
|
+
|
|
887
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
888
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
889
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
890
|
+
alias="monthlyAccordingTo", default=None
|
|
891
|
+
)
|
|
892
|
+
|
|
893
|
+
|
|
894
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
895
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
896
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
897
|
+
alias="weeklyAccordingTo", default=None
|
|
898
|
+
)
|
|
899
|
+
|
|
900
|
+
|
|
901
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
902
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
903
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
904
|
+
alias="yearlyAccordingTo", default=None
|
|
905
|
+
)
|
|
906
|
+
|
|
907
|
+
|
|
908
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
909
|
+
pass
|
|
910
|
+
|
|
911
|
+
|
|
912
912
|
class ApplySubscriptionFragment(BaseModel):
|
|
913
913
|
subscription: Optional["ApplySubscriptionFragmentSubscription"] = Field(
|
|
914
914
|
default=None
|
|
@@ -1249,6 +1249,43 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1249
1249
|
pass
|
|
1250
1250
|
|
|
1251
1251
|
|
|
1252
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1253
|
+
display_name: str = Field(alias="displayName")
|
|
1254
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1255
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1256
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1257
|
+
period: PromotionalEntitlementPeriod
|
|
1258
|
+
start_date: Any = Field(alias="startDate")
|
|
1259
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1260
|
+
|
|
1261
|
+
|
|
1262
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1263
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1264
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1265
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1266
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1267
|
+
default=None
|
|
1268
|
+
)
|
|
1269
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1270
|
+
default=None
|
|
1271
|
+
)
|
|
1272
|
+
|
|
1273
|
+
|
|
1274
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1275
|
+
amount: float
|
|
1276
|
+
currency: Currency
|
|
1277
|
+
|
|
1278
|
+
|
|
1279
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1280
|
+
id: str
|
|
1281
|
+
ref_id: str = Field(alias="refId")
|
|
1282
|
+
display_name: str = Field(alias="displayName")
|
|
1283
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1284
|
+
feature_units_plural: Optional[str] = Field(
|
|
1285
|
+
alias="featureUnitsPlural", default=None
|
|
1286
|
+
)
|
|
1287
|
+
|
|
1288
|
+
|
|
1252
1289
|
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1253
1290
|
addon_id: str = Field(alias="addonId")
|
|
1254
1291
|
description: Optional[str] = Field(default=None)
|
|
@@ -1425,33 +1462,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1425
1462
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1426
1463
|
|
|
1427
1464
|
|
|
1428
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1429
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1430
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1431
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1432
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1433
|
-
default=None
|
|
1434
|
-
)
|
|
1435
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1436
|
-
default=None
|
|
1437
|
-
)
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1441
|
-
amount: float
|
|
1442
|
-
currency: Currency
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1446
|
-
id: str
|
|
1447
|
-
ref_id: str = Field(alias="refId")
|
|
1448
|
-
display_name: str = Field(alias="displayName")
|
|
1449
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1450
|
-
feature_units_plural: Optional[str] = Field(
|
|
1451
|
-
alias="featureUnitsPlural", default=None
|
|
1452
|
-
)
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
1465
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1456
1466
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1457
1467
|
plan_id: str = Field(alias="planId")
|
|
@@ -1548,16 +1558,6 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1548
1558
|
pass
|
|
1549
1559
|
|
|
1550
1560
|
|
|
1551
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1552
|
-
display_name: str = Field(alias="displayName")
|
|
1553
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1554
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1555
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1556
|
-
period: PromotionalEntitlementPeriod
|
|
1557
|
-
start_date: Any = Field(alias="startDate")
|
|
1558
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
1561
|
class CustomerPortalFragment(BaseModel):
|
|
1562
1562
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1563
1563
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -1785,39 +1785,6 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1785
1785
|
description: Optional[str] = Field(default=None)
|
|
1786
1786
|
|
|
1787
1787
|
|
|
1788
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1789
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1790
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1791
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1792
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1793
|
-
alias="resetPeriod", default=None
|
|
1794
|
-
)
|
|
1795
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1796
|
-
alias="hiddenFromWidgets", default=None
|
|
1797
|
-
)
|
|
1798
|
-
display_name_override: Optional[str] = Field(
|
|
1799
|
-
alias="displayNameOverride", default=None
|
|
1800
|
-
)
|
|
1801
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1802
|
-
default=None
|
|
1803
|
-
)
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1807
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1808
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1809
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1810
|
-
feature_units_plural: Optional[str] = Field(
|
|
1811
|
-
alias="featureUnitsPlural", default=None
|
|
1812
|
-
)
|
|
1813
|
-
display_name: str = Field(alias="displayName")
|
|
1814
|
-
description: Optional[str] = Field(default=None)
|
|
1815
|
-
ref_id: str = Field(alias="refId")
|
|
1816
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1817
|
-
alias="additionalMetaData", default=None
|
|
1818
|
-
)
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
1788
|
class MockPaywallPriceFragment(BaseModel):
|
|
1822
1789
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1823
1790
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1852,6 +1819,39 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1852
1819
|
display_name: str = Field(alias="displayName")
|
|
1853
1820
|
|
|
1854
1821
|
|
|
1822
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1823
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1824
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1825
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1826
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1827
|
+
alias="resetPeriod", default=None
|
|
1828
|
+
)
|
|
1829
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1830
|
+
alias="hiddenFromWidgets", default=None
|
|
1831
|
+
)
|
|
1832
|
+
display_name_override: Optional[str] = Field(
|
|
1833
|
+
alias="displayNameOverride", default=None
|
|
1834
|
+
)
|
|
1835
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1836
|
+
default=None
|
|
1837
|
+
)
|
|
1838
|
+
|
|
1839
|
+
|
|
1840
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1841
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1842
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1843
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1844
|
+
feature_units_plural: Optional[str] = Field(
|
|
1845
|
+
alias="featureUnitsPlural", default=None
|
|
1846
|
+
)
|
|
1847
|
+
display_name: str = Field(alias="displayName")
|
|
1848
|
+
description: Optional[str] = Field(default=None)
|
|
1849
|
+
ref_id: str = Field(alias="refId")
|
|
1850
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1851
|
+
alias="additionalMetaData", default=None
|
|
1852
|
+
)
|
|
1853
|
+
|
|
1854
|
+
|
|
1855
1855
|
class MockPaywallAddonFragment(BaseModel):
|
|
1856
1856
|
ref_id: str = Field(alias="refId")
|
|
1857
1857
|
display_name: str = Field(alias="displayName")
|
|
@@ -2762,24 +2762,24 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2762
2762
|
|
|
2763
2763
|
|
|
2764
2764
|
AddonDependencyFragment.model_rebuild()
|
|
2765
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2766
2765
|
PriceTierFragment.model_rebuild()
|
|
2767
|
-
PriceFragment.model_rebuild()
|
|
2768
2766
|
OveragePriceFragment.model_rebuild()
|
|
2767
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2768
|
+
PriceFragment.model_rebuild()
|
|
2769
2769
|
AddonFragment.model_rebuild()
|
|
2770
|
-
|
|
2771
|
-
EntitlementFragment.model_rebuild()
|
|
2770
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2772
2771
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2773
|
-
|
|
2774
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2772
|
+
CustomerResourceFragment.model_rebuild()
|
|
2775
2773
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2776
2774
|
ProductFragment.model_rebuild()
|
|
2777
2775
|
PlanFragment.model_rebuild()
|
|
2778
|
-
|
|
2779
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2776
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2780
2777
|
TotalPriceFragment.model_rebuild()
|
|
2781
|
-
|
|
2778
|
+
SlimCustomerFragment.model_rebuild()
|
|
2779
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2782
2780
|
SubscriptionFragment.model_rebuild()
|
|
2781
|
+
FeatureFragment.model_rebuild()
|
|
2782
|
+
EntitlementFragment.model_rebuild()
|
|
2783
2783
|
ApplySubscriptionFragment.model_rebuild()
|
|
2784
2784
|
FontVariantFragment.model_rebuild()
|
|
2785
2785
|
TypographyConfigurationFragment.model_rebuild()
|
|
@@ -2791,11 +2791,11 @@ CheckoutStateFragment.model_rebuild()
|
|
|
2791
2791
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2792
2792
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2793
2793
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2794
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2795
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2794
2796
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2795
2797
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2796
|
-
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2797
2798
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2798
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2799
2799
|
CustomerPortalFragment.model_rebuild()
|
|
2800
2800
|
CustomerStatisticsFragment.model_rebuild()
|
|
2801
2801
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -2805,8 +2805,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2805
2805
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2806
2806
|
LayoutConfigurationFragment.model_rebuild()
|
|
2807
2807
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2808
|
-
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2809
2808
|
MockPaywallPriceFragment.model_rebuild()
|
|
2809
|
+
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2810
2810
|
MockPaywallAddonFragment.model_rebuild()
|
|
2811
2811
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2812
2812
|
MockPaywallPlanFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -1930,6 +1930,7 @@ class ImportCustomerInput(BaseModel):
|
|
|
1930
1930
|
name: Optional[str] = None
|
|
1931
1931
|
payment_method_id: Optional[str] = Field(alias="paymentMethodId", default=None)
|
|
1932
1932
|
ref_id: Optional[str] = Field(alias="refId", default=None)
|
|
1933
|
+
salesforce_id: Optional[str] = Field(alias="salesforceId", default=None)
|
|
1933
1934
|
updated_at: Optional[Any] = Field(alias="updatedAt", default=None)
|
|
1934
1935
|
|
|
1935
1936
|
|
|
@@ -2001,7 +2002,12 @@ class ImportSubscriptionInput(BaseModel):
|
|
|
2001
2002
|
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
2002
2003
|
plan_id: str = Field(alias="planId")
|
|
2003
2004
|
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
2005
|
+
salesforce_id: Optional[str] = Field(alias="salesforceId", default=None)
|
|
2004
2006
|
start_date: Optional[Any] = Field(alias="startDate", default=None)
|
|
2007
|
+
subscription_entitlements: Optional[List["SubscriptionEntitlementInput"]] = Field(
|
|
2008
|
+
alias="subscriptionEntitlements", default=None
|
|
2009
|
+
)
|
|
2010
|
+
subscription_id: Optional[str] = Field(alias="subscriptionId", default=None)
|
|
2005
2011
|
unit_quantity: Optional[float] = Field(alias="unitQuantity", default=None)
|
|
2006
2012
|
updated_at: Optional[Any] = Field(alias="updatedAt", default=None)
|
|
2007
2013
|
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=sAWkIRKUluDgemnIRIPpRnCf49mbnaTUKOc_OxDO3NY,3415
|
|
|
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=IoAqfFZtZ-KAzs7WhCRvDbBYP0b3jgdUC-GQ_C8nmy8,100553
|
|
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
|
|
@@ -144,7 +144,7 @@ stigg/generated/grant_promotional_entitlements.py,sha256=72PRYuqecL-0SkWb7deygkh
|
|
|
144
144
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
145
145
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
146
146
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
147
|
-
stigg/generated/input_types.py,sha256=
|
|
147
|
+
stigg/generated/input_types.py,sha256=uAW8Sdg4EANvtUVy-9u6wnW7L0gsvHcPV-cbuIWPn44,189431
|
|
148
148
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
149
149
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
150
150
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -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.293.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.293.0.dist-info/METADATA,sha256=IrSwwj3yIxsYKFYcozoJgi_K3I7xJNRwrX9qh3MJn9Q,2258
|
|
165
|
+
stigg_api_client_v2-2.293.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.293.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|