stigg-api-client-v2 2.331.0__py3-none-any.whl → 2.334.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of stigg-api-client-v2 might be problematic. Click here for more details.
- stigg/generated/__init__.py +2 -0
- stigg/generated/fragments.py +345 -345
- stigg/generated/input_types.py +4 -0
- {stigg_api_client_v2-2.331.0.dist-info → stigg_api_client_v2-2.334.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.331.0.dist-info → stigg_api_client_v2-2.334.0.dist-info}/RECORD +7 -7
- {stigg_api_client_v2-2.331.0.dist-info → stigg_api_client_v2-2.334.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.331.0.dist-info → stigg_api_client_v2-2.334.0.dist-info}/WHEEL +0 -0
stigg/generated/__init__.py
CHANGED
|
@@ -891,6 +891,7 @@ from .input_types import (
|
|
|
891
891
|
VendorIdentifierFilterComparison,
|
|
892
892
|
WeeklyResetPeriodConfigInput,
|
|
893
893
|
WidgetConfigurationUpdateInput,
|
|
894
|
+
WorkflowsLoginInput,
|
|
894
895
|
YearlyResetPeriodConfigInput,
|
|
895
896
|
ZuoraCredentialsInput,
|
|
896
897
|
)
|
|
@@ -1827,6 +1828,7 @@ __all__ = [
|
|
|
1827
1828
|
"WeeklyResetPeriodConfigInput",
|
|
1828
1829
|
"WidgetConfigurationUpdateInput",
|
|
1829
1830
|
"WidgetType",
|
|
1831
|
+
"WorkflowsLoginInput",
|
|
1830
1832
|
"YearlyAccordingTo",
|
|
1831
1833
|
"YearlyResetPeriodConfigInput",
|
|
1832
1834
|
"ZuoraCredentialsInput",
|
stigg/generated/fragments.py
CHANGED
|
@@ -111,39 +111,6 @@ class OveragePriceFragmentFeature(BaseModel):
|
|
|
111
111
|
description: Optional[str] = Field(default=None)
|
|
112
112
|
|
|
113
113
|
|
|
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
114
|
class PriceFragment(BaseModel):
|
|
148
115
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
149
116
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -180,227 +147,128 @@ class PriceFragmentFeature(BaseModel):
|
|
|
180
147
|
description: Optional[str] = Field(default=None)
|
|
181
148
|
|
|
182
149
|
|
|
183
|
-
class
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
alias="additionalMetaData", default=None
|
|
150
|
+
class PackageEntitlementFragment(BaseModel):
|
|
151
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
152
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
153
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
154
|
+
feature_id: str = Field(alias="featureId")
|
|
155
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
156
|
+
alias="resetPeriod", default=None
|
|
191
157
|
)
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
overage_prices: Optional[List["AddonFragmentOveragePrices"]] = Field(
|
|
195
|
-
alias="overagePrices", default=None
|
|
158
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
159
|
+
alias="hiddenFromWidgets", default=None
|
|
196
160
|
)
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
class AddonFragmentEntitlements(PackageEntitlementFragment):
|
|
203
|
-
pass
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
class AddonFragmentPrices(PriceFragment):
|
|
207
|
-
pass
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
class AddonFragmentOveragePrices(OveragePriceFragment):
|
|
211
|
-
pass
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
class AddonFragmentDependencies(AddonDependencyFragment):
|
|
215
|
-
pass
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
219
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
220
|
-
display_name: str = Field(alias="displayName")
|
|
221
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
222
|
-
default=None
|
|
161
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
162
|
+
display_name_override: Optional[str] = Field(
|
|
163
|
+
alias="displayNameOverride", default=None
|
|
223
164
|
)
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
228
|
-
pass
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
232
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
233
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
165
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
234
166
|
|
|
235
167
|
|
|
236
|
-
class
|
|
237
|
-
|
|
238
|
-
|
|
168
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
169
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
170
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
171
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
172
|
+
feature_units_plural: Optional[str] = Field(
|
|
173
|
+
alias="featureUnitsPlural", default=None
|
|
174
|
+
)
|
|
175
|
+
display_name: str = Field(alias="displayName")
|
|
239
176
|
description: Optional[str] = Field(default=None)
|
|
177
|
+
ref_id: str = Field(alias="refId")
|
|
240
178
|
additional_meta_data: Optional[Any] = Field(
|
|
241
179
|
alias="additionalMetaData", default=None
|
|
242
180
|
)
|
|
243
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
244
181
|
|
|
245
182
|
|
|
246
|
-
class
|
|
247
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
248
|
-
alias="downgradePlan", default=None
|
|
249
|
-
)
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
253
|
-
ref_id: str = Field(alias="refId")
|
|
254
|
-
display_name: str = Field(alias="displayName")
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
class PlanFragment(BaseModel):
|
|
183
|
+
class AddonFragment(BaseModel):
|
|
258
184
|
id: str
|
|
259
185
|
ref_id: str = Field(alias="refId")
|
|
186
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
260
187
|
display_name: str = Field(alias="displayName")
|
|
261
188
|
description: Optional[str] = Field(default=None)
|
|
262
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
263
|
-
version_number: int = Field(alias="versionNumber")
|
|
264
189
|
additional_meta_data: Optional[Any] = Field(
|
|
265
190
|
alias="additionalMetaData", default=None
|
|
266
191
|
)
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
product: "PlanFragmentProduct"
|
|
271
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
272
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
273
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
274
|
-
alias="inheritedEntitlements", default=None
|
|
275
|
-
)
|
|
276
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
277
|
-
alias="compatibleAddons", default=None
|
|
278
|
-
)
|
|
279
|
-
compatible_package_groups: Optional[
|
|
280
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
281
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
282
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
283
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
192
|
+
entitlements: Optional[List["AddonFragmentEntitlements"]] = Field(default=None)
|
|
193
|
+
prices: Optional[List["AddonFragmentPrices"]] = Field(default=None)
|
|
194
|
+
overage_prices: Optional[List["AddonFragmentOveragePrices"]] = Field(
|
|
284
195
|
alias="overagePrices", default=None
|
|
285
196
|
)
|
|
286
197
|
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
)
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
class PlanFragmentProduct(ProductFragment):
|
|
293
|
-
pass
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
297
|
-
ref_id: str = Field(alias="refId")
|
|
298
|
-
display_name: str = Field(alias="displayName")
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
302
|
-
pass
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
306
|
-
pass
|
|
198
|
+
max_quantity: Optional[float] = Field(alias="maxQuantity", default=None)
|
|
199
|
+
dependencies: Optional[List["AddonFragmentDependencies"]] = Field(default=None)
|
|
307
200
|
|
|
308
201
|
|
|
309
|
-
class
|
|
202
|
+
class AddonFragmentEntitlements(PackageEntitlementFragment):
|
|
310
203
|
pass
|
|
311
204
|
|
|
312
205
|
|
|
313
|
-
class
|
|
206
|
+
class AddonFragmentPrices(PriceFragment):
|
|
314
207
|
pass
|
|
315
208
|
|
|
316
209
|
|
|
317
|
-
class
|
|
210
|
+
class AddonFragmentOveragePrices(OveragePriceFragment):
|
|
318
211
|
pass
|
|
319
212
|
|
|
320
213
|
|
|
321
|
-
class
|
|
214
|
+
class AddonFragmentDependencies(AddonDependencyFragment):
|
|
322
215
|
pass
|
|
323
216
|
|
|
324
217
|
|
|
325
|
-
class
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
329
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
330
|
-
alias="trialEndBehavior", default=None
|
|
331
|
-
)
|
|
218
|
+
class TotalPriceFragment(BaseModel):
|
|
219
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
220
|
+
total: "TotalPriceFragmentTotal"
|
|
332
221
|
|
|
333
222
|
|
|
334
|
-
class
|
|
335
|
-
|
|
223
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
224
|
+
amount: float
|
|
225
|
+
currency: Currency
|
|
336
226
|
|
|
337
227
|
|
|
338
|
-
class
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
created_at: Any = Field(alias="createdAt")
|
|
342
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
343
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
344
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
345
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
346
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
347
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
348
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
349
|
-
alias="billingReason", default=None
|
|
350
|
-
)
|
|
351
|
-
currency: Optional[str] = Field(default=None)
|
|
352
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
353
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
354
|
-
alias="subTotalExcludingTax", default=None
|
|
355
|
-
)
|
|
356
|
-
total: Optional[float] = Field(default=None)
|
|
357
|
-
total_excluding_tax: Optional[float] = Field(
|
|
358
|
-
alias="totalExcludingTax", default=None
|
|
359
|
-
)
|
|
360
|
-
tax: Optional[float] = Field(default=None)
|
|
361
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
362
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
228
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
229
|
+
amount: float
|
|
230
|
+
currency: Currency
|
|
363
231
|
|
|
364
232
|
|
|
365
|
-
class
|
|
233
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
366
234
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
367
235
|
alias="subscriptionScheduleType"
|
|
368
236
|
)
|
|
369
237
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
370
238
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
371
|
-
target_package: Optional["
|
|
239
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
372
240
|
alias="targetPackage", default=None
|
|
373
241
|
)
|
|
374
242
|
schedule_variables: Optional[
|
|
375
243
|
Annotated[
|
|
376
244
|
Union[
|
|
377
|
-
"
|
|
378
|
-
"
|
|
379
|
-
"
|
|
380
|
-
"
|
|
381
|
-
"
|
|
382
|
-
"
|
|
383
|
-
"
|
|
384
|
-
"
|
|
245
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
246
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
247
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
248
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
249
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
250
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
251
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
252
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
385
253
|
],
|
|
386
254
|
Field(discriminator="typename__"),
|
|
387
255
|
]
|
|
388
256
|
] = Field(alias="scheduleVariables", default=None)
|
|
389
257
|
|
|
390
258
|
|
|
391
|
-
class
|
|
259
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
392
260
|
id: str
|
|
393
261
|
ref_id: str = Field(alias="refId")
|
|
394
262
|
display_name: str = Field(alias="displayName")
|
|
395
263
|
|
|
396
264
|
|
|
397
|
-
class
|
|
265
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
398
266
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
399
267
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
400
268
|
new_quantity: float = Field(alias="newQuantity")
|
|
401
269
|
|
|
402
270
|
|
|
403
|
-
class
|
|
271
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
404
272
|
BaseModel
|
|
405
273
|
):
|
|
406
274
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -408,53 +276,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
408
276
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
409
277
|
|
|
410
278
|
|
|
411
|
-
class
|
|
279
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
412
280
|
BaseModel
|
|
413
281
|
):
|
|
414
282
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
415
283
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
416
284
|
|
|
417
285
|
|
|
418
|
-
class
|
|
286
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
419
287
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
420
288
|
|
|
421
289
|
|
|
422
|
-
class
|
|
290
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
291
|
+
BaseModel
|
|
292
|
+
):
|
|
423
293
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
424
294
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
425
295
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
426
296
|
billable_features: Optional[
|
|
427
297
|
List[
|
|
428
|
-
"
|
|
298
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
429
299
|
]
|
|
430
300
|
] = Field(alias="billableFeatures", default=None)
|
|
431
301
|
addons: Optional[
|
|
432
302
|
List[
|
|
433
|
-
"
|
|
303
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
434
304
|
]
|
|
435
305
|
] = Field(default=None)
|
|
436
306
|
price_overrides: Optional[
|
|
437
307
|
List[
|
|
438
|
-
"
|
|
308
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
439
309
|
]
|
|
440
310
|
] = Field(alias="priceOverrides", default=None)
|
|
441
311
|
|
|
442
312
|
|
|
443
|
-
class
|
|
313
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
444
314
|
BaseModel
|
|
445
315
|
):
|
|
446
316
|
feature_id: str = Field(alias="featureId")
|
|
447
317
|
quantity: float
|
|
448
318
|
|
|
449
319
|
|
|
450
|
-
class
|
|
320
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
451
321
|
BaseModel
|
|
452
322
|
):
|
|
453
323
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
454
324
|
quantity: float
|
|
455
325
|
|
|
456
326
|
|
|
457
|
-
class
|
|
327
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
458
328
|
BaseModel
|
|
459
329
|
):
|
|
460
330
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -462,39 +332,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
462
332
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
463
333
|
|
|
464
334
|
|
|
465
|
-
class
|
|
335
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
466
336
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
467
337
|
plan_ref_id: str = Field(alias="planRefId")
|
|
468
338
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
469
339
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
470
340
|
billable_features: Optional[
|
|
471
341
|
List[
|
|
472
|
-
"
|
|
342
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
473
343
|
]
|
|
474
344
|
] = Field(alias="billableFeatures", default=None)
|
|
475
345
|
addons: Optional[
|
|
476
|
-
List[
|
|
346
|
+
List[
|
|
347
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
348
|
+
]
|
|
477
349
|
] = Field(default=None)
|
|
478
350
|
price_overrides: Optional[
|
|
479
351
|
List[
|
|
480
|
-
"
|
|
352
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
481
353
|
]
|
|
482
354
|
] = Field(alias="priceOverrides", default=None)
|
|
483
355
|
|
|
484
356
|
|
|
485
|
-
class
|
|
357
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
486
358
|
BaseModel
|
|
487
359
|
):
|
|
488
360
|
feature_id: str = Field(alias="featureId")
|
|
489
361
|
quantity: float
|
|
490
362
|
|
|
491
363
|
|
|
492
|
-
class
|
|
364
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
365
|
+
BaseModel
|
|
366
|
+
):
|
|
493
367
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
494
368
|
quantity: float
|
|
495
369
|
|
|
496
370
|
|
|
497
|
-
class
|
|
371
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
498
372
|
BaseModel
|
|
499
373
|
):
|
|
500
374
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -502,7 +376,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
502
376
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
503
377
|
|
|
504
378
|
|
|
505
|
-
class
|
|
379
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
506
380
|
BaseModel
|
|
507
381
|
):
|
|
508
382
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -510,87 +384,208 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
510
384
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
511
385
|
|
|
512
386
|
|
|
513
|
-
class
|
|
387
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
388
|
+
BaseModel
|
|
389
|
+
):
|
|
514
390
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
515
391
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
516
392
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
517
393
|
|
|
518
394
|
|
|
519
|
-
class
|
|
395
|
+
class CustomerResourceFragment(BaseModel):
|
|
396
|
+
resource_id: str = Field(alias="resourceId")
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
400
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
404
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
405
|
+
display_name: str = Field(alias="displayName")
|
|
406
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
407
|
+
default=None
|
|
408
|
+
)
|
|
409
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
413
|
+
pass
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
417
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
418
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
class ProductFragment(BaseModel):
|
|
422
|
+
ref_id: str = Field(alias="refId")
|
|
423
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
424
|
+
description: Optional[str] = Field(default=None)
|
|
425
|
+
additional_meta_data: Optional[Any] = Field(
|
|
426
|
+
alias="additionalMetaData", default=None
|
|
427
|
+
)
|
|
428
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
432
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
433
|
+
alias="downgradePlan", default=None
|
|
434
|
+
)
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
438
|
+
ref_id: str = Field(alias="refId")
|
|
439
|
+
display_name: str = Field(alias="displayName")
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
class PlanFragment(BaseModel):
|
|
520
443
|
id: str
|
|
521
|
-
name: Optional[str] = Field(default=None)
|
|
522
|
-
email: Optional[str] = Field(default=None)
|
|
523
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
524
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
525
444
|
ref_id: str = Field(alias="refId")
|
|
526
|
-
|
|
445
|
+
display_name: str = Field(alias="displayName")
|
|
446
|
+
description: Optional[str] = Field(default=None)
|
|
527
447
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
448
|
+
version_number: int = Field(alias="versionNumber")
|
|
528
449
|
additional_meta_data: Optional[Any] = Field(
|
|
529
450
|
alias="additionalMetaData", default=None
|
|
530
451
|
)
|
|
531
|
-
|
|
532
|
-
alias="
|
|
452
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
453
|
+
alias="hiddenFromWidgets", default=None
|
|
454
|
+
)
|
|
455
|
+
product: "PlanFragmentProduct"
|
|
456
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
457
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
458
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
459
|
+
alias="inheritedEntitlements", default=None
|
|
460
|
+
)
|
|
461
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
462
|
+
alias="compatibleAddons", default=None
|
|
463
|
+
)
|
|
464
|
+
compatible_package_groups: Optional[
|
|
465
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
466
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
467
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
468
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
469
|
+
alias="overagePrices", default=None
|
|
470
|
+
)
|
|
471
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
472
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
473
|
+
alias="defaultTrialConfig", default=None
|
|
533
474
|
)
|
|
534
475
|
|
|
535
476
|
|
|
536
|
-
class
|
|
537
|
-
|
|
538
|
-
total: "TotalPriceFragmentTotal"
|
|
477
|
+
class PlanFragmentProduct(ProductFragment):
|
|
478
|
+
pass
|
|
539
479
|
|
|
540
480
|
|
|
541
|
-
class
|
|
542
|
-
|
|
543
|
-
|
|
481
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
482
|
+
ref_id: str = Field(alias="refId")
|
|
483
|
+
display_name: str = Field(alias="displayName")
|
|
544
484
|
|
|
545
485
|
|
|
546
|
-
class
|
|
547
|
-
|
|
548
|
-
currency: Currency
|
|
486
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
487
|
+
pass
|
|
549
488
|
|
|
550
489
|
|
|
551
|
-
class
|
|
552
|
-
|
|
490
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
491
|
+
pass
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
495
|
+
pass
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
499
|
+
pass
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
class PlanFragmentPrices(PriceFragment):
|
|
503
|
+
pass
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
507
|
+
pass
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
511
|
+
duration: float
|
|
512
|
+
units: TrialPeriodUnits
|
|
513
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
514
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
515
|
+
alias="trialEndBehavior", default=None
|
|
516
|
+
)
|
|
517
|
+
|
|
518
|
+
|
|
519
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
520
|
+
limit: float
|
|
521
|
+
|
|
522
|
+
|
|
523
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
524
|
+
billing_id: str = Field(alias="billingId")
|
|
525
|
+
status: SubscriptionInvoiceStatus
|
|
526
|
+
created_at: Any = Field(alias="createdAt")
|
|
527
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
528
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
529
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
530
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
531
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
532
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
533
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
534
|
+
alias="billingReason", default=None
|
|
535
|
+
)
|
|
536
|
+
currency: Optional[str] = Field(default=None)
|
|
537
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
538
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
539
|
+
alias="subTotalExcludingTax", default=None
|
|
540
|
+
)
|
|
541
|
+
total: Optional[float] = Field(default=None)
|
|
542
|
+
total_excluding_tax: Optional[float] = Field(
|
|
543
|
+
alias="totalExcludingTax", default=None
|
|
544
|
+
)
|
|
545
|
+
tax: Optional[float] = Field(default=None)
|
|
546
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
547
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
553
548
|
|
|
554
549
|
|
|
555
|
-
class
|
|
550
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
556
551
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
557
552
|
alias="subscriptionScheduleType"
|
|
558
553
|
)
|
|
559
554
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
560
555
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
561
|
-
target_package: Optional["
|
|
556
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
562
557
|
alias="targetPackage", default=None
|
|
563
558
|
)
|
|
564
559
|
schedule_variables: Optional[
|
|
565
560
|
Annotated[
|
|
566
561
|
Union[
|
|
567
|
-
"
|
|
568
|
-
"
|
|
569
|
-
"
|
|
570
|
-
"
|
|
571
|
-
"
|
|
572
|
-
"
|
|
573
|
-
"
|
|
574
|
-
"
|
|
562
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
563
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
564
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
565
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
566
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
567
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
568
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
569
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
575
570
|
],
|
|
576
571
|
Field(discriminator="typename__"),
|
|
577
572
|
]
|
|
578
573
|
] = Field(alias="scheduleVariables", default=None)
|
|
579
574
|
|
|
580
575
|
|
|
581
|
-
class
|
|
576
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
582
577
|
id: str
|
|
583
578
|
ref_id: str = Field(alias="refId")
|
|
584
579
|
display_name: str = Field(alias="displayName")
|
|
585
580
|
|
|
586
581
|
|
|
587
|
-
class
|
|
582
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
588
583
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
589
584
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
590
585
|
new_quantity: float = Field(alias="newQuantity")
|
|
591
586
|
|
|
592
587
|
|
|
593
|
-
class
|
|
588
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
594
589
|
BaseModel
|
|
595
590
|
):
|
|
596
591
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -598,55 +593,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
598
593
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
599
594
|
|
|
600
595
|
|
|
601
|
-
class
|
|
596
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
602
597
|
BaseModel
|
|
603
598
|
):
|
|
604
599
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
605
600
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
606
601
|
|
|
607
602
|
|
|
608
|
-
class
|
|
603
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
609
604
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
610
605
|
|
|
611
606
|
|
|
612
|
-
class
|
|
613
|
-
BaseModel
|
|
614
|
-
):
|
|
607
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
615
608
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
616
609
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
617
610
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
618
611
|
billable_features: Optional[
|
|
619
612
|
List[
|
|
620
|
-
"
|
|
613
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
621
614
|
]
|
|
622
615
|
] = Field(alias="billableFeatures", default=None)
|
|
623
616
|
addons: Optional[
|
|
624
617
|
List[
|
|
625
|
-
"
|
|
618
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
626
619
|
]
|
|
627
620
|
] = Field(default=None)
|
|
628
621
|
price_overrides: Optional[
|
|
629
622
|
List[
|
|
630
|
-
"
|
|
623
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
631
624
|
]
|
|
632
625
|
] = Field(alias="priceOverrides", default=None)
|
|
633
626
|
|
|
634
627
|
|
|
635
|
-
class
|
|
628
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
636
629
|
BaseModel
|
|
637
630
|
):
|
|
638
631
|
feature_id: str = Field(alias="featureId")
|
|
639
632
|
quantity: float
|
|
640
633
|
|
|
641
634
|
|
|
642
|
-
class
|
|
635
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
643
636
|
BaseModel
|
|
644
637
|
):
|
|
645
638
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
646
639
|
quantity: float
|
|
647
640
|
|
|
648
641
|
|
|
649
|
-
class
|
|
642
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
650
643
|
BaseModel
|
|
651
644
|
):
|
|
652
645
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -654,43 +647,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
654
647
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
655
648
|
|
|
656
649
|
|
|
657
|
-
class
|
|
650
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
658
651
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
659
652
|
plan_ref_id: str = Field(alias="planRefId")
|
|
660
653
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
661
654
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
662
655
|
billable_features: Optional[
|
|
663
656
|
List[
|
|
664
|
-
"
|
|
657
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
665
658
|
]
|
|
666
659
|
] = Field(alias="billableFeatures", default=None)
|
|
667
660
|
addons: Optional[
|
|
668
|
-
List[
|
|
669
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
670
|
-
]
|
|
661
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
671
662
|
] = Field(default=None)
|
|
672
663
|
price_overrides: Optional[
|
|
673
664
|
List[
|
|
674
|
-
"
|
|
665
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
675
666
|
]
|
|
676
667
|
] = Field(alias="priceOverrides", default=None)
|
|
677
668
|
|
|
678
669
|
|
|
679
|
-
class
|
|
670
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
680
671
|
BaseModel
|
|
681
672
|
):
|
|
682
673
|
feature_id: str = Field(alias="featureId")
|
|
683
674
|
quantity: float
|
|
684
675
|
|
|
685
676
|
|
|
686
|
-
class
|
|
687
|
-
BaseModel
|
|
688
|
-
):
|
|
677
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
689
678
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
690
679
|
quantity: float
|
|
691
680
|
|
|
692
681
|
|
|
693
|
-
class
|
|
682
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
694
683
|
BaseModel
|
|
695
684
|
):
|
|
696
685
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -698,7 +687,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
698
687
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
699
688
|
|
|
700
689
|
|
|
701
|
-
class
|
|
690
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
702
691
|
BaseModel
|
|
703
692
|
):
|
|
704
693
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -706,16 +695,27 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
706
695
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
707
696
|
|
|
708
697
|
|
|
709
|
-
class
|
|
710
|
-
BaseModel
|
|
711
|
-
):
|
|
698
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
712
699
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
713
700
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
714
701
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
715
702
|
|
|
716
703
|
|
|
717
|
-
class
|
|
718
|
-
|
|
704
|
+
class SlimCustomerFragment(BaseModel):
|
|
705
|
+
id: str
|
|
706
|
+
name: Optional[str] = Field(default=None)
|
|
707
|
+
email: Optional[str] = Field(default=None)
|
|
708
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
709
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
710
|
+
ref_id: str = Field(alias="refId")
|
|
711
|
+
customer_id: str = Field(alias="customerId")
|
|
712
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
713
|
+
additional_meta_data: Optional[Any] = Field(
|
|
714
|
+
alias="additionalMetaData", default=None
|
|
715
|
+
)
|
|
716
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
717
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
718
|
+
)
|
|
719
719
|
|
|
720
720
|
|
|
721
721
|
class SubscriptionFragment(BaseModel):
|
|
@@ -987,6 +987,35 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
987
987
|
)
|
|
988
988
|
|
|
989
989
|
|
|
990
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
991
|
+
status: PromotionalEntitlementStatus
|
|
992
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
993
|
+
feature_id: str = Field(alias="featureId")
|
|
994
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
995
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
996
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
997
|
+
alias="resetPeriod", default=None
|
|
998
|
+
)
|
|
999
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1000
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1001
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1002
|
+
|
|
1003
|
+
|
|
1004
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1005
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1006
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1007
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1008
|
+
feature_units_plural: Optional[str] = Field(
|
|
1009
|
+
alias="featureUnitsPlural", default=None
|
|
1010
|
+
)
|
|
1011
|
+
display_name: str = Field(alias="displayName")
|
|
1012
|
+
description: Optional[str] = Field(default=None)
|
|
1013
|
+
ref_id: str = Field(alias="refId")
|
|
1014
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1015
|
+
alias="additionalMetaData", default=None
|
|
1016
|
+
)
|
|
1017
|
+
|
|
1018
|
+
|
|
990
1019
|
class CouponFragment(BaseModel):
|
|
991
1020
|
id: str
|
|
992
1021
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1021,35 +1050,6 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1021
1050
|
status: SyncStatus
|
|
1022
1051
|
|
|
1023
1052
|
|
|
1024
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
1025
|
-
status: PromotionalEntitlementStatus
|
|
1026
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1027
|
-
feature_id: str = Field(alias="featureId")
|
|
1028
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1029
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1030
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1031
|
-
alias="resetPeriod", default=None
|
|
1032
|
-
)
|
|
1033
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1034
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1035
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1039
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1040
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1041
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1042
|
-
feature_units_plural: Optional[str] = Field(
|
|
1043
|
-
alias="featureUnitsPlural", default=None
|
|
1044
|
-
)
|
|
1045
|
-
display_name: str = Field(alias="displayName")
|
|
1046
|
-
description: Optional[str] = Field(default=None)
|
|
1047
|
-
ref_id: str = Field(alias="refId")
|
|
1048
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1049
|
-
alias="additionalMetaData", default=None
|
|
1050
|
-
)
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
1053
|
class CustomerFragment(SlimCustomerFragment):
|
|
1054
1054
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1055
1055
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1250,6 +1250,16 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1250
1250
|
pass
|
|
1251
1251
|
|
|
1252
1252
|
|
|
1253
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1254
|
+
display_name: str = Field(alias="displayName")
|
|
1255
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1256
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1257
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1258
|
+
period: PromotionalEntitlementPeriod
|
|
1259
|
+
start_date: Any = Field(alias="startDate")
|
|
1260
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1261
|
+
|
|
1262
|
+
|
|
1253
1263
|
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1254
1264
|
addon_id: str = Field(alias="addonId")
|
|
1255
1265
|
description: Optional[str] = Field(default=None)
|
|
@@ -1549,16 +1559,6 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1549
1559
|
pass
|
|
1550
1560
|
|
|
1551
1561
|
|
|
1552
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1553
|
-
display_name: str = Field(alias="displayName")
|
|
1554
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1555
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1556
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1557
|
-
period: PromotionalEntitlementPeriod
|
|
1558
|
-
start_date: Any = Field(alias="startDate")
|
|
1559
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
1562
|
class CustomerPortalFragment(BaseModel):
|
|
1563
1563
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1564
1564
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -1786,39 +1786,6 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1786
1786
|
description: Optional[str] = Field(default=None)
|
|
1787
1787
|
|
|
1788
1788
|
|
|
1789
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1790
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1791
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1792
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1793
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1794
|
-
alias="resetPeriod", default=None
|
|
1795
|
-
)
|
|
1796
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1797
|
-
alias="hiddenFromWidgets", default=None
|
|
1798
|
-
)
|
|
1799
|
-
display_name_override: Optional[str] = Field(
|
|
1800
|
-
alias="displayNameOverride", default=None
|
|
1801
|
-
)
|
|
1802
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1803
|
-
default=None
|
|
1804
|
-
)
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1808
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1809
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1810
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1811
|
-
feature_units_plural: Optional[str] = Field(
|
|
1812
|
-
alias="featureUnitsPlural", default=None
|
|
1813
|
-
)
|
|
1814
|
-
display_name: str = Field(alias="displayName")
|
|
1815
|
-
description: Optional[str] = Field(default=None)
|
|
1816
|
-
ref_id: str = Field(alias="refId")
|
|
1817
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1818
|
-
alias="additionalMetaData", default=None
|
|
1819
|
-
)
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
1789
|
class MockPaywallPriceFragment(BaseModel):
|
|
1823
1790
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1824
1791
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1853,6 +1820,39 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1853
1820
|
display_name: str = Field(alias="displayName")
|
|
1854
1821
|
|
|
1855
1822
|
|
|
1823
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1824
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1825
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1826
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1827
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1828
|
+
alias="resetPeriod", default=None
|
|
1829
|
+
)
|
|
1830
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1831
|
+
alias="hiddenFromWidgets", default=None
|
|
1832
|
+
)
|
|
1833
|
+
display_name_override: Optional[str] = Field(
|
|
1834
|
+
alias="displayNameOverride", default=None
|
|
1835
|
+
)
|
|
1836
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1837
|
+
default=None
|
|
1838
|
+
)
|
|
1839
|
+
|
|
1840
|
+
|
|
1841
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1842
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1843
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1844
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1845
|
+
feature_units_plural: Optional[str] = Field(
|
|
1846
|
+
alias="featureUnitsPlural", default=None
|
|
1847
|
+
)
|
|
1848
|
+
display_name: str = Field(alias="displayName")
|
|
1849
|
+
description: Optional[str] = Field(default=None)
|
|
1850
|
+
ref_id: str = Field(alias="refId")
|
|
1851
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1852
|
+
alias="additionalMetaData", default=None
|
|
1853
|
+
)
|
|
1854
|
+
|
|
1855
|
+
|
|
1856
1856
|
class MockPaywallAddonFragment(BaseModel):
|
|
1857
1857
|
ref_id: str = Field(alias="refId")
|
|
1858
1858
|
display_name: str = Field(alias="displayName")
|
|
@@ -2765,19 +2765,19 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2765
2765
|
AddonDependencyFragment.model_rebuild()
|
|
2766
2766
|
PriceTierFragment.model_rebuild()
|
|
2767
2767
|
OveragePriceFragment.model_rebuild()
|
|
2768
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2769
2768
|
PriceFragment.model_rebuild()
|
|
2769
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2770
2770
|
AddonFragment.model_rebuild()
|
|
2771
|
+
TotalPriceFragment.model_rebuild()
|
|
2772
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2773
|
+
CustomerResourceFragment.model_rebuild()
|
|
2774
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2771
2775
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2772
2776
|
ProductFragment.model_rebuild()
|
|
2773
2777
|
PlanFragment.model_rebuild()
|
|
2774
2778
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2775
2779
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2776
2780
|
SlimCustomerFragment.model_rebuild()
|
|
2777
|
-
TotalPriceFragment.model_rebuild()
|
|
2778
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2779
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2780
|
-
CustomerResourceFragment.model_rebuild()
|
|
2781
2781
|
SubscriptionFragment.model_rebuild()
|
|
2782
2782
|
FeatureFragment.model_rebuild()
|
|
2783
2783
|
EntitlementFragment.model_rebuild()
|
|
@@ -2785,18 +2785,18 @@ ApplySubscriptionFragment.model_rebuild()
|
|
|
2785
2785
|
FontVariantFragment.model_rebuild()
|
|
2786
2786
|
TypographyConfigurationFragment.model_rebuild()
|
|
2787
2787
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2788
|
-
CouponFragment.model_rebuild()
|
|
2789
2788
|
PromotionalEntitlementFragment.model_rebuild()
|
|
2789
|
+
CouponFragment.model_rebuild()
|
|
2790
2790
|
CustomerFragment.model_rebuild()
|
|
2791
2791
|
CheckoutStateFragment.model_rebuild()
|
|
2792
2792
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2793
2793
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2794
2794
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2795
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2795
2796
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2796
2797
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2797
2798
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2798
2799
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2799
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2800
2800
|
CustomerPortalFragment.model_rebuild()
|
|
2801
2801
|
CustomerStatisticsFragment.model_rebuild()
|
|
2802
2802
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -2806,8 +2806,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2806
2806
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2807
2807
|
LayoutConfigurationFragment.model_rebuild()
|
|
2808
2808
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2809
|
-
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2810
2809
|
MockPaywallPriceFragment.model_rebuild()
|
|
2810
|
+
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2811
2811
|
MockPaywallAddonFragment.model_rebuild()
|
|
2812
2812
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2813
2813
|
MockPaywallPlanFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -4671,6 +4671,10 @@ class WidgetConfigurationUpdateInput(BaseModel):
|
|
|
4671
4671
|
)
|
|
4672
4672
|
|
|
4673
4673
|
|
|
4674
|
+
class WorkflowsLoginInput(BaseModel):
|
|
4675
|
+
environment_id: Optional[str] = Field(alias="environmentId", default=None)
|
|
4676
|
+
|
|
4677
|
+
|
|
4674
4678
|
class YearlyResetPeriodConfigInput(BaseModel):
|
|
4675
4679
|
according_to: YearlyAccordingTo = Field(alias="accordingTo")
|
|
4676
4680
|
|
|
@@ -106,7 +106,7 @@ stigg/_vendors/pydantic-2.6.4.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCe
|
|
|
106
106
|
stigg/_vendors/pydantic-2.6.4.dist-info/WHEEL,sha256=TJPnKdtrSue7xZ_AVGkp9YXcvDrobsjBds1du3Nx6dc,87
|
|
107
107
|
stigg/_vendors/pydantic-2.6.4.dist-info/licenses/LICENSE,sha256=qeGG88oWte74QxjnpwFyE1GgDLe4rjpDlLZ7SeNSnvM,1129
|
|
108
108
|
stigg/client.py,sha256=RWrVnxo9zHFXka8KJVE4sMgyek70ispQk0vqOINCvM0,8335
|
|
109
|
-
stigg/generated/__init__.py,sha256=
|
|
109
|
+
stigg/generated/__init__.py,sha256=kpyVQLXiTubjnYvMdZhbMEBw85kxvkcGDJgAd9SKJgo,69284
|
|
110
110
|
stigg/generated/apply_subscription.py,sha256=Vbs-QZZxN16pUpt3Hp7Jvvcc5o_8xwJK9oTLQQjH0ZA,451
|
|
111
111
|
stigg/generated/archive_customer.py,sha256=3N3iBiT2Vvzfb0ckV3o57A6lmJ_ef7JNPaMX_Jtcg6c,396
|
|
112
112
|
stigg/generated/async_base_client.py,sha256=zqd6IhYxpalyA6KQkeGhXgSurC0vXSwSWmSlM2zZ0VM,12593
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=GSE5V0OioageZfpl_XDszdROY03BerofExrP5kWa9Rg,3494
|
|
|
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=qNLHX2cFMm8NqXdTaN1AzVqGSJqnp_NbOeE7I0LOQ2A,100632
|
|
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=FUSvePwSBr-ZoNnPN2xKprQTHERpYMxr517KyQuqGbA,192411
|
|
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.334.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.334.0.dist-info/METADATA,sha256=irVntmTwkXNV-ILL81-KszwIXJ3g1nzStN7ob5Woaeg,2258
|
|
165
|
+
stigg_api_client_v2-2.334.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.334.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|