stigg-api-client-v2 3.108.0__py3-none-any.whl → 3.111.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of stigg-api-client-v2 might be problematic. Click here for more details.
- stigg/generated/__init__.py +2 -0
- stigg/generated/enums.py +1 -0
- stigg/generated/fragments.py +422 -422
- stigg/generated/input_types.py +60 -0
- {stigg_api_client_v2-3.108.0.dist-info → stigg_api_client_v2-3.111.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.108.0.dist-info → stigg_api_client_v2-3.111.0.dist-info}/RECORD +8 -8
- {stigg_api_client_v2-3.108.0.dist-info → stigg_api_client_v2-3.111.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.108.0.dist-info → stigg_api_client_v2-3.111.0.dist-info}/WHEEL +0 -0
stigg/generated/__init__.py
CHANGED
|
@@ -955,6 +955,7 @@ from .input_types import (
|
|
|
955
955
|
SubscriptionPriceFilterPriceFilter,
|
|
956
956
|
SubscriptionPriceSort,
|
|
957
957
|
SubscriptionQueryFilter,
|
|
958
|
+
SubscriptionQueryFilterCustomerFilter,
|
|
958
959
|
SubscriptionQuerySort,
|
|
959
960
|
SubscriptionStatusFilterComparison,
|
|
960
961
|
SubscriptionUpdateScheduleCancellationInput,
|
|
@@ -1947,6 +1948,7 @@ __all__ = [
|
|
|
1947
1948
|
"SubscriptionPriceSortFields",
|
|
1948
1949
|
"SubscriptionProrationBehavior",
|
|
1949
1950
|
"SubscriptionQueryFilter",
|
|
1951
|
+
"SubscriptionQueryFilterCustomerFilter",
|
|
1950
1952
|
"SubscriptionQueryFragment",
|
|
1951
1953
|
"SubscriptionQueryFragmentAddons",
|
|
1952
1954
|
"SubscriptionQueryFragmentAddonsAddon",
|
stigg/generated/enums.py
CHANGED
|
@@ -306,6 +306,7 @@ class CustomerResourceSortFields(str, Enum):
|
|
|
306
306
|
|
|
307
307
|
|
|
308
308
|
class CustomerSortFields(str, Enum):
|
|
309
|
+
awsMarketplaceCustomerId = "awsMarketplaceCustomerId"
|
|
309
310
|
billingId = "billingId"
|
|
310
311
|
createdAt = "createdAt"
|
|
311
312
|
crmHubspotCompanyId = "crmHubspotCompanyId"
|
stigg/generated/fragments.py
CHANGED
|
@@ -232,301 +232,6 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
232
232
|
pass
|
|
233
233
|
|
|
234
234
|
|
|
235
|
-
class FeatureFragment(BaseModel):
|
|
236
|
-
typename__: str = Field(alias="__typename")
|
|
237
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
238
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
239
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
240
|
-
feature_units_plural: Optional[str] = Field(
|
|
241
|
-
alias="featureUnitsPlural", default=None
|
|
242
|
-
)
|
|
243
|
-
description: Optional[str] = Field(default=None)
|
|
244
|
-
display_name: str = Field(alias="displayName")
|
|
245
|
-
ref_id: str = Field(alias="refId")
|
|
246
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
247
|
-
alias="unitTransformation", default=None
|
|
248
|
-
)
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
class FeatureFragmentUnitTransformation(BaseModel):
|
|
252
|
-
divide: float
|
|
253
|
-
round: UnitTransformationRound
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
class EntitlementFragment(BaseModel):
|
|
257
|
-
typename__: str = Field(alias="__typename")
|
|
258
|
-
is_granted: bool = Field(alias="isGranted")
|
|
259
|
-
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
260
|
-
alias="accessDeniedReason", default=None
|
|
261
|
-
)
|
|
262
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
263
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
264
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
265
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
266
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
267
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
268
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
269
|
-
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
270
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
271
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
272
|
-
alias="entitlementUpdatedAt", default=None
|
|
273
|
-
)
|
|
274
|
-
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
275
|
-
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
276
|
-
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
277
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
278
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
279
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
280
|
-
alias="resetPeriod", default=None
|
|
281
|
-
)
|
|
282
|
-
reset_period_configuration: Optional[
|
|
283
|
-
Annotated[
|
|
284
|
-
Union[
|
|
285
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
286
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
287
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
288
|
-
],
|
|
289
|
-
Field(discriminator="typename__"),
|
|
290
|
-
]
|
|
291
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
292
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
293
|
-
credit_rate: Optional["EntitlementFragmentCreditRate"] = Field(
|
|
294
|
-
alias="creditRate", default=None
|
|
295
|
-
)
|
|
296
|
-
valid_until: Optional[float] = Field(alias="validUntil", default=None)
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
300
|
-
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
301
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
302
|
-
alias="monthlyAccordingTo", default=None
|
|
303
|
-
)
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
307
|
-
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
308
|
-
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
309
|
-
alias="weeklyAccordingTo", default=None
|
|
310
|
-
)
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
314
|
-
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
315
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
316
|
-
alias="yearlyAccordingTo", default=None
|
|
317
|
-
)
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
class EntitlementFragmentFeature(FeatureFragment):
|
|
321
|
-
pass
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
class EntitlementFragmentCreditRate(BaseModel):
|
|
325
|
-
amount: float
|
|
326
|
-
currency_id: str = Field(alias="currencyId")
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
class TotalPriceFragment(BaseModel):
|
|
330
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
331
|
-
total: "TotalPriceFragmentTotal"
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
335
|
-
amount: float
|
|
336
|
-
currency: Currency
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
340
|
-
amount: float
|
|
341
|
-
currency: Currency
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
class SubscriptionFutureUpdateData(BaseModel):
|
|
345
|
-
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
346
|
-
alias="subscriptionScheduleType"
|
|
347
|
-
)
|
|
348
|
-
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
349
|
-
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
350
|
-
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
351
|
-
alias="targetPackage", default=None
|
|
352
|
-
)
|
|
353
|
-
schedule_variables: Optional[
|
|
354
|
-
Annotated[
|
|
355
|
-
Union[
|
|
356
|
-
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
357
|
-
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
358
|
-
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
359
|
-
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
360
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
361
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
362
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
363
|
-
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
364
|
-
],
|
|
365
|
-
Field(discriminator="typename__"),
|
|
366
|
-
]
|
|
367
|
-
] = Field(alias="scheduleVariables", default=None)
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
371
|
-
id: Any
|
|
372
|
-
ref_id: str = Field(alias="refId")
|
|
373
|
-
display_name: str = Field(alias="displayName")
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
377
|
-
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
378
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
379
|
-
new_quantity: float = Field(alias="newQuantity")
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
383
|
-
BaseModel
|
|
384
|
-
):
|
|
385
|
-
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
386
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
387
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
391
|
-
BaseModel
|
|
392
|
-
):
|
|
393
|
-
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
394
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
398
|
-
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
402
|
-
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
403
|
-
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
404
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
405
|
-
billable_features: Optional[
|
|
406
|
-
List[
|
|
407
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
408
|
-
]
|
|
409
|
-
] = Field(alias="billableFeatures", default=None)
|
|
410
|
-
addons: Optional[
|
|
411
|
-
List[
|
|
412
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
413
|
-
]
|
|
414
|
-
] = Field(default=None)
|
|
415
|
-
price_overrides: Optional[
|
|
416
|
-
List[
|
|
417
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
418
|
-
]
|
|
419
|
-
] = Field(alias="priceOverrides", default=None)
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
423
|
-
BaseModel
|
|
424
|
-
):
|
|
425
|
-
feature_id: str = Field(alias="featureId")
|
|
426
|
-
quantity: float
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
430
|
-
BaseModel
|
|
431
|
-
):
|
|
432
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
433
|
-
quantity: float
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
437
|
-
BaseModel
|
|
438
|
-
):
|
|
439
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
440
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
441
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
445
|
-
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
446
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
447
|
-
change_type: PlanChangeType = Field(alias="changeType")
|
|
448
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
449
|
-
billable_features: Optional[
|
|
450
|
-
List[
|
|
451
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
452
|
-
]
|
|
453
|
-
] = Field(alias="billableFeatures", default=None)
|
|
454
|
-
addons: Optional[
|
|
455
|
-
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
456
|
-
] = Field(default=None)
|
|
457
|
-
price_overrides: Optional[
|
|
458
|
-
List[
|
|
459
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
460
|
-
]
|
|
461
|
-
] = Field(alias="priceOverrides", default=None)
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
465
|
-
BaseModel
|
|
466
|
-
):
|
|
467
|
-
feature_id: str = Field(alias="featureId")
|
|
468
|
-
quantity: float
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
472
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
473
|
-
quantity: float
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
477
|
-
BaseModel
|
|
478
|
-
):
|
|
479
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
480
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
481
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
485
|
-
BaseModel
|
|
486
|
-
):
|
|
487
|
-
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
488
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
489
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
493
|
-
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
494
|
-
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
495
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
499
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
503
|
-
billing_id: str = Field(alias="billingId")
|
|
504
|
-
status: SubscriptionInvoiceStatus
|
|
505
|
-
created_at: Any = Field(alias="createdAt")
|
|
506
|
-
due_date: Optional[Any] = Field(alias="dueDate", default=None)
|
|
507
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
508
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
509
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
510
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
511
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
512
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
513
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
514
|
-
alias="billingReason", default=None
|
|
515
|
-
)
|
|
516
|
-
currency: Optional[str] = Field(default=None)
|
|
517
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
518
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
519
|
-
alias="subTotalExcludingTax", default=None
|
|
520
|
-
)
|
|
521
|
-
total: Optional[float] = Field(default=None)
|
|
522
|
-
total_excluding_tax: Optional[float] = Field(
|
|
523
|
-
alias="totalExcludingTax", default=None
|
|
524
|
-
)
|
|
525
|
-
tax: Optional[float] = Field(default=None)
|
|
526
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
527
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
528
|
-
|
|
529
|
-
|
|
530
235
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
531
236
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
532
237
|
alias="subscriptionScheduleType"
|
|
@@ -673,20 +378,56 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
673
378
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
674
379
|
|
|
675
380
|
|
|
676
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
677
|
-
BaseModel
|
|
678
|
-
):
|
|
679
|
-
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
680
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
681
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
381
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
382
|
+
BaseModel
|
|
383
|
+
):
|
|
384
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
385
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
386
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
390
|
+
BaseModel
|
|
391
|
+
):
|
|
392
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
393
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
394
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
398
|
+
billing_id: str = Field(alias="billingId")
|
|
399
|
+
status: SubscriptionInvoiceStatus
|
|
400
|
+
created_at: Any = Field(alias="createdAt")
|
|
401
|
+
due_date: Optional[Any] = Field(alias="dueDate", default=None)
|
|
402
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
403
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
404
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
405
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
406
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
407
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
408
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
409
|
+
alias="billingReason", default=None
|
|
410
|
+
)
|
|
411
|
+
currency: Optional[str] = Field(default=None)
|
|
412
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
413
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
414
|
+
alias="subTotalExcludingTax", default=None
|
|
415
|
+
)
|
|
416
|
+
total: Optional[float] = Field(default=None)
|
|
417
|
+
total_excluding_tax: Optional[float] = Field(
|
|
418
|
+
alias="totalExcludingTax", default=None
|
|
419
|
+
)
|
|
420
|
+
tax: Optional[float] = Field(default=None)
|
|
421
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
422
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
class CustomerResourceFragment(BaseModel):
|
|
426
|
+
resource_id: str = Field(alias="resourceId")
|
|
682
427
|
|
|
683
428
|
|
|
684
|
-
class
|
|
685
|
-
|
|
686
|
-
):
|
|
687
|
-
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
688
|
-
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
689
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
429
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
430
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
690
431
|
|
|
691
432
|
|
|
692
433
|
class SlimCustomerFragment(BaseModel):
|
|
@@ -706,8 +447,19 @@ class SlimCustomerFragment(BaseModel):
|
|
|
706
447
|
)
|
|
707
448
|
|
|
708
449
|
|
|
709
|
-
class
|
|
710
|
-
|
|
450
|
+
class TotalPriceFragment(BaseModel):
|
|
451
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
452
|
+
total: "TotalPriceFragmentTotal"
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
456
|
+
amount: float
|
|
457
|
+
currency: Currency
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
461
|
+
amount: float
|
|
462
|
+
currency: Currency
|
|
711
463
|
|
|
712
464
|
|
|
713
465
|
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
@@ -830,6 +582,160 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
830
582
|
limit: float
|
|
831
583
|
|
|
832
584
|
|
|
585
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
586
|
+
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
587
|
+
alias="subscriptionScheduleType"
|
|
588
|
+
)
|
|
589
|
+
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
590
|
+
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
591
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
592
|
+
alias="targetPackage", default=None
|
|
593
|
+
)
|
|
594
|
+
schedule_variables: Optional[
|
|
595
|
+
Annotated[
|
|
596
|
+
Union[
|
|
597
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
598
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
599
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
600
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
601
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
602
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
603
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
604
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
605
|
+
],
|
|
606
|
+
Field(discriminator="typename__"),
|
|
607
|
+
]
|
|
608
|
+
] = Field(alias="scheduleVariables", default=None)
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
612
|
+
id: Any
|
|
613
|
+
ref_id: str = Field(alias="refId")
|
|
614
|
+
display_name: str = Field(alias="displayName")
|
|
615
|
+
|
|
616
|
+
|
|
617
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
618
|
+
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
619
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
620
|
+
new_quantity: float = Field(alias="newQuantity")
|
|
621
|
+
|
|
622
|
+
|
|
623
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
624
|
+
BaseModel
|
|
625
|
+
):
|
|
626
|
+
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
627
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
628
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
629
|
+
|
|
630
|
+
|
|
631
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
632
|
+
BaseModel
|
|
633
|
+
):
|
|
634
|
+
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
635
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
636
|
+
|
|
637
|
+
|
|
638
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
639
|
+
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
640
|
+
|
|
641
|
+
|
|
642
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
643
|
+
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
644
|
+
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
645
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
646
|
+
billable_features: Optional[
|
|
647
|
+
List[
|
|
648
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
649
|
+
]
|
|
650
|
+
] = Field(alias="billableFeatures", default=None)
|
|
651
|
+
addons: Optional[
|
|
652
|
+
List[
|
|
653
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
654
|
+
]
|
|
655
|
+
] = Field(default=None)
|
|
656
|
+
price_overrides: Optional[
|
|
657
|
+
List[
|
|
658
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
659
|
+
]
|
|
660
|
+
] = Field(alias="priceOverrides", default=None)
|
|
661
|
+
|
|
662
|
+
|
|
663
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
664
|
+
BaseModel
|
|
665
|
+
):
|
|
666
|
+
feature_id: str = Field(alias="featureId")
|
|
667
|
+
quantity: float
|
|
668
|
+
|
|
669
|
+
|
|
670
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
671
|
+
BaseModel
|
|
672
|
+
):
|
|
673
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
674
|
+
quantity: float
|
|
675
|
+
|
|
676
|
+
|
|
677
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
678
|
+
BaseModel
|
|
679
|
+
):
|
|
680
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
681
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
682
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
683
|
+
|
|
684
|
+
|
|
685
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
686
|
+
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
687
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
688
|
+
change_type: PlanChangeType = Field(alias="changeType")
|
|
689
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
690
|
+
billable_features: Optional[
|
|
691
|
+
List[
|
|
692
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
693
|
+
]
|
|
694
|
+
] = Field(alias="billableFeatures", default=None)
|
|
695
|
+
addons: Optional[
|
|
696
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
697
|
+
] = Field(default=None)
|
|
698
|
+
price_overrides: Optional[
|
|
699
|
+
List[
|
|
700
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
701
|
+
]
|
|
702
|
+
] = Field(alias="priceOverrides", default=None)
|
|
703
|
+
|
|
704
|
+
|
|
705
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
706
|
+
BaseModel
|
|
707
|
+
):
|
|
708
|
+
feature_id: str = Field(alias="featureId")
|
|
709
|
+
quantity: float
|
|
710
|
+
|
|
711
|
+
|
|
712
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
713
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
714
|
+
quantity: float
|
|
715
|
+
|
|
716
|
+
|
|
717
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
718
|
+
BaseModel
|
|
719
|
+
):
|
|
720
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
721
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
722
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
723
|
+
|
|
724
|
+
|
|
725
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
726
|
+
BaseModel
|
|
727
|
+
):
|
|
728
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
729
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
730
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
731
|
+
|
|
732
|
+
|
|
733
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
734
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
735
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
736
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
737
|
+
|
|
738
|
+
|
|
833
739
|
class SubscriptionFragment(BaseModel):
|
|
834
740
|
id: Any
|
|
835
741
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -917,26 +823,120 @@ class SubscriptionFragmentPlan(PlanFragment):
|
|
|
917
823
|
pass
|
|
918
824
|
|
|
919
825
|
|
|
920
|
-
class SubscriptionFragmentAddons(BaseModel):
|
|
921
|
-
id: Any
|
|
922
|
-
quantity: float
|
|
923
|
-
addon: "SubscriptionFragmentAddonsAddon"
|
|
826
|
+
class SubscriptionFragmentAddons(BaseModel):
|
|
827
|
+
id: Any
|
|
828
|
+
quantity: float
|
|
829
|
+
addon: "SubscriptionFragmentAddonsAddon"
|
|
830
|
+
|
|
831
|
+
|
|
832
|
+
class SubscriptionFragmentAddonsAddon(AddonFragment):
|
|
833
|
+
pass
|
|
834
|
+
|
|
835
|
+
|
|
836
|
+
class SubscriptionFragmentScheduledUpdates(SubscriptionScheduledUpdateData):
|
|
837
|
+
pass
|
|
838
|
+
|
|
839
|
+
|
|
840
|
+
class SubscriptionFragmentFutureUpdates(SubscriptionFutureUpdateData):
|
|
841
|
+
pass
|
|
842
|
+
|
|
843
|
+
|
|
844
|
+
class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragment):
|
|
845
|
+
pass
|
|
846
|
+
|
|
847
|
+
|
|
848
|
+
class FeatureFragment(BaseModel):
|
|
849
|
+
typename__: str = Field(alias="__typename")
|
|
850
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
851
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
852
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
853
|
+
feature_units_plural: Optional[str] = Field(
|
|
854
|
+
alias="featureUnitsPlural", default=None
|
|
855
|
+
)
|
|
856
|
+
description: Optional[str] = Field(default=None)
|
|
857
|
+
display_name: str = Field(alias="displayName")
|
|
858
|
+
ref_id: str = Field(alias="refId")
|
|
859
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
860
|
+
alias="unitTransformation", default=None
|
|
861
|
+
)
|
|
862
|
+
|
|
863
|
+
|
|
864
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
865
|
+
divide: float
|
|
866
|
+
round: UnitTransformationRound
|
|
867
|
+
|
|
868
|
+
|
|
869
|
+
class EntitlementFragment(BaseModel):
|
|
870
|
+
typename__: str = Field(alias="__typename")
|
|
871
|
+
is_granted: bool = Field(alias="isGranted")
|
|
872
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
873
|
+
alias="accessDeniedReason", default=None
|
|
874
|
+
)
|
|
875
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
876
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
877
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
878
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
879
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
880
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
881
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
882
|
+
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
883
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
884
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
885
|
+
alias="entitlementUpdatedAt", default=None
|
|
886
|
+
)
|
|
887
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
888
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
889
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
890
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
891
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
892
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
893
|
+
alias="resetPeriod", default=None
|
|
894
|
+
)
|
|
895
|
+
reset_period_configuration: Optional[
|
|
896
|
+
Annotated[
|
|
897
|
+
Union[
|
|
898
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
899
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
900
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
901
|
+
],
|
|
902
|
+
Field(discriminator="typename__"),
|
|
903
|
+
]
|
|
904
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
905
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
906
|
+
credit_rate: Optional["EntitlementFragmentCreditRate"] = Field(
|
|
907
|
+
alias="creditRate", default=None
|
|
908
|
+
)
|
|
909
|
+
valid_until: Optional[float] = Field(alias="validUntil", default=None)
|
|
910
|
+
|
|
911
|
+
|
|
912
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
913
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
914
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
915
|
+
alias="monthlyAccordingTo", default=None
|
|
916
|
+
)
|
|
924
917
|
|
|
925
918
|
|
|
926
|
-
class
|
|
927
|
-
|
|
919
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
920
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
921
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
922
|
+
alias="weeklyAccordingTo", default=None
|
|
923
|
+
)
|
|
928
924
|
|
|
929
925
|
|
|
930
|
-
class
|
|
931
|
-
|
|
926
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
927
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
928
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
929
|
+
alias="yearlyAccordingTo", default=None
|
|
930
|
+
)
|
|
932
931
|
|
|
933
932
|
|
|
934
|
-
class
|
|
933
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
935
934
|
pass
|
|
936
935
|
|
|
937
936
|
|
|
938
|
-
class
|
|
939
|
-
|
|
937
|
+
class EntitlementFragmentCreditRate(BaseModel):
|
|
938
|
+
amount: float
|
|
939
|
+
currency_id: str = Field(alias="currencyId")
|
|
940
940
|
|
|
941
941
|
|
|
942
942
|
class ApplySubscriptionFragment(BaseModel):
|
|
@@ -1016,6 +1016,16 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
1016
1016
|
)
|
|
1017
1017
|
|
|
1018
1018
|
|
|
1019
|
+
class ZuoraCheckoutCredentialsFragment(BaseModel):
|
|
1020
|
+
publishable_key: str = Field(alias="publishableKey")
|
|
1021
|
+
|
|
1022
|
+
|
|
1023
|
+
class StripeCheckoutCredentialsFragment(BaseModel):
|
|
1024
|
+
account_id: Optional[str] = Field(alias="accountId", default=None)
|
|
1025
|
+
setup_secret: str = Field(alias="setupSecret")
|
|
1026
|
+
public_key: Optional[str] = Field(alias="publicKey", default=None)
|
|
1027
|
+
|
|
1028
|
+
|
|
1019
1029
|
class CouponFragment(BaseModel):
|
|
1020
1030
|
id: Any
|
|
1021
1031
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1137,16 +1147,6 @@ class CustomerFragmentPromotionalEntitlements(PromotionalEntitlementFragment):
|
|
|
1137
1147
|
pass
|
|
1138
1148
|
|
|
1139
1149
|
|
|
1140
|
-
class ZuoraCheckoutCredentialsFragment(BaseModel):
|
|
1141
|
-
publishable_key: str = Field(alias="publishableKey")
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
class StripeCheckoutCredentialsFragment(BaseModel):
|
|
1145
|
-
account_id: Optional[str] = Field(alias="accountId", default=None)
|
|
1146
|
-
setup_secret: str = Field(alias="setupSecret")
|
|
1147
|
-
public_key: Optional[str] = Field(alias="publicKey", default=None)
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
1150
|
class CheckoutStateFragment(BaseModel):
|
|
1151
1151
|
configuration: Optional["CheckoutStateFragmentConfiguration"] = Field(default=None)
|
|
1152
1152
|
setup_secret: str = Field(alias="setupSecret")
|
|
@@ -1435,51 +1435,6 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1435
1435
|
pass
|
|
1436
1436
|
|
|
1437
1437
|
|
|
1438
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1439
|
-
display_name: str = Field(alias="displayName")
|
|
1440
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1441
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1442
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1443
|
-
period: PromotionalEntitlementPeriod
|
|
1444
|
-
start_date: Any = Field(alias="startDate")
|
|
1445
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1449
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1450
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1451
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1452
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1453
|
-
default=None
|
|
1454
|
-
)
|
|
1455
|
-
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1456
|
-
alias="creditRate", default=None
|
|
1457
|
-
)
|
|
1458
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1459
|
-
default=None
|
|
1460
|
-
)
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1464
|
-
amount: float
|
|
1465
|
-
currency: Currency
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1469
|
-
amount: float
|
|
1470
|
-
currency_id: str = Field(alias="currencyId")
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1474
|
-
id: Any
|
|
1475
|
-
ref_id: str = Field(alias="refId")
|
|
1476
|
-
display_name: str = Field(alias="displayName")
|
|
1477
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1478
|
-
feature_units_plural: Optional[str] = Field(
|
|
1479
|
-
alias="featureUnitsPlural", default=None
|
|
1480
|
-
)
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
1438
|
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1484
1439
|
addon_id: str = Field(alias="addonId")
|
|
1485
1440
|
description: Optional[str] = Field(default=None)
|
|
@@ -1656,6 +1611,41 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1656
1611
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1657
1612
|
|
|
1658
1613
|
|
|
1614
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1615
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1616
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1617
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1618
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1619
|
+
default=None
|
|
1620
|
+
)
|
|
1621
|
+
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1622
|
+
alias="creditRate", default=None
|
|
1623
|
+
)
|
|
1624
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1625
|
+
default=None
|
|
1626
|
+
)
|
|
1627
|
+
|
|
1628
|
+
|
|
1629
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1630
|
+
amount: float
|
|
1631
|
+
currency: Currency
|
|
1632
|
+
|
|
1633
|
+
|
|
1634
|
+
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1635
|
+
amount: float
|
|
1636
|
+
currency_id: str = Field(alias="currencyId")
|
|
1637
|
+
|
|
1638
|
+
|
|
1639
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1640
|
+
id: Any
|
|
1641
|
+
ref_id: str = Field(alias="refId")
|
|
1642
|
+
display_name: str = Field(alias="displayName")
|
|
1643
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1644
|
+
feature_units_plural: Optional[str] = Field(
|
|
1645
|
+
alias="featureUnitsPlural", default=None
|
|
1646
|
+
)
|
|
1647
|
+
|
|
1648
|
+
|
|
1659
1649
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1660
1650
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1661
1651
|
plan_id: str = Field(alias="planId")
|
|
@@ -1760,6 +1750,16 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1760
1750
|
pass
|
|
1761
1751
|
|
|
1762
1752
|
|
|
1753
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1754
|
+
display_name: str = Field(alias="displayName")
|
|
1755
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1756
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1757
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1758
|
+
period: PromotionalEntitlementPeriod
|
|
1759
|
+
start_date: Any = Field(alias="startDate")
|
|
1760
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1761
|
+
|
|
1762
|
+
|
|
1763
1763
|
class CustomerPortalFragment(BaseModel):
|
|
1764
1764
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1765
1765
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -1987,6 +1987,41 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1987
1987
|
description: Optional[str] = Field(default=None)
|
|
1988
1988
|
|
|
1989
1989
|
|
|
1990
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1991
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1992
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1993
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1994
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1995
|
+
alias="resetPeriod", default=None
|
|
1996
|
+
)
|
|
1997
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1998
|
+
alias="hiddenFromWidgets", default=None
|
|
1999
|
+
)
|
|
2000
|
+
display_name_override: Optional[str] = Field(
|
|
2001
|
+
alias="displayNameOverride", default=None
|
|
2002
|
+
)
|
|
2003
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
2004
|
+
is_granted: bool = Field(alias="isGranted")
|
|
2005
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
2006
|
+
default=None
|
|
2007
|
+
)
|
|
2008
|
+
|
|
2009
|
+
|
|
2010
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
2011
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
2012
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
2013
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
2014
|
+
feature_units_plural: Optional[str] = Field(
|
|
2015
|
+
alias="featureUnitsPlural", default=None
|
|
2016
|
+
)
|
|
2017
|
+
display_name: str = Field(alias="displayName")
|
|
2018
|
+
description: Optional[str] = Field(default=None)
|
|
2019
|
+
ref_id: str = Field(alias="refId")
|
|
2020
|
+
additional_meta_data: Optional[Any] = Field(
|
|
2021
|
+
alias="additionalMetaData", default=None
|
|
2022
|
+
)
|
|
2023
|
+
|
|
2024
|
+
|
|
1990
2025
|
class MockPaywallPriceFragment(BaseModel):
|
|
1991
2026
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1992
2027
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -2029,41 +2064,6 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
2029
2064
|
display_name: str = Field(alias="displayName")
|
|
2030
2065
|
|
|
2031
2066
|
|
|
2032
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
2033
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
2034
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
2035
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
2036
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
2037
|
-
alias="resetPeriod", default=None
|
|
2038
|
-
)
|
|
2039
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
2040
|
-
alias="hiddenFromWidgets", default=None
|
|
2041
|
-
)
|
|
2042
|
-
display_name_override: Optional[str] = Field(
|
|
2043
|
-
alias="displayNameOverride", default=None
|
|
2044
|
-
)
|
|
2045
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
2046
|
-
is_granted: bool = Field(alias="isGranted")
|
|
2047
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
2048
|
-
default=None
|
|
2049
|
-
)
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
2053
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
2054
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
2055
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
2056
|
-
feature_units_plural: Optional[str] = Field(
|
|
2057
|
-
alias="featureUnitsPlural", default=None
|
|
2058
|
-
)
|
|
2059
|
-
display_name: str = Field(alias="displayName")
|
|
2060
|
-
description: Optional[str] = Field(default=None)
|
|
2061
|
-
ref_id: str = Field(alias="refId")
|
|
2062
|
-
additional_meta_data: Optional[Any] = Field(
|
|
2063
|
-
alias="additionalMetaData", default=None
|
|
2064
|
-
)
|
|
2065
|
-
|
|
2066
|
-
|
|
2067
2067
|
class MockPaywallAddonFragment(BaseModel):
|
|
2068
2068
|
ref_id: str = Field(alias="refId")
|
|
2069
2069
|
display_name: str = Field(alias="displayName")
|
|
@@ -3046,28 +3046,28 @@ OveragePriceFragment.model_rebuild()
|
|
|
3046
3046
|
PackageEntitlementFragment.model_rebuild()
|
|
3047
3047
|
PriceFragment.model_rebuild()
|
|
3048
3048
|
AddonFragment.model_rebuild()
|
|
3049
|
-
FeatureFragment.model_rebuild()
|
|
3050
|
-
EntitlementFragment.model_rebuild()
|
|
3051
|
-
TotalPriceFragment.model_rebuild()
|
|
3052
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
3053
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
3054
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
3055
3049
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
3056
|
-
|
|
3050
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
3057
3051
|
CustomerResourceFragment.model_rebuild()
|
|
3052
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
3053
|
+
SlimCustomerFragment.model_rebuild()
|
|
3054
|
+
TotalPriceFragment.model_rebuild()
|
|
3058
3055
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
3059
3056
|
ProductFragment.model_rebuild()
|
|
3060
3057
|
PlanFragment.model_rebuild()
|
|
3058
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
3061
3059
|
SubscriptionFragment.model_rebuild()
|
|
3060
|
+
FeatureFragment.model_rebuild()
|
|
3061
|
+
EntitlementFragment.model_rebuild()
|
|
3062
3062
|
ApplySubscriptionFragment.model_rebuild()
|
|
3063
3063
|
FontVariantFragment.model_rebuild()
|
|
3064
3064
|
TypographyConfigurationFragment.model_rebuild()
|
|
3065
3065
|
CheckoutConfigurationFragment.model_rebuild()
|
|
3066
|
+
ZuoraCheckoutCredentialsFragment.model_rebuild()
|
|
3067
|
+
StripeCheckoutCredentialsFragment.model_rebuild()
|
|
3066
3068
|
CouponFragment.model_rebuild()
|
|
3067
3069
|
PromotionalEntitlementFragment.model_rebuild()
|
|
3068
3070
|
CustomerFragment.model_rebuild()
|
|
3069
|
-
ZuoraCheckoutCredentialsFragment.model_rebuild()
|
|
3070
|
-
StripeCheckoutCredentialsFragment.model_rebuild()
|
|
3071
3071
|
CheckoutStateFragment.model_rebuild()
|
|
3072
3072
|
CreditBalanceFragment.model_rebuild()
|
|
3073
3073
|
CreditBalanceUpdatedPayload.model_rebuild()
|
|
@@ -3079,11 +3079,11 @@ CreditsBalanceSummaryFragment.model_rebuild()
|
|
|
3079
3079
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
3080
3080
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
3081
3081
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
3082
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
3083
|
-
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
3084
3082
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
3085
3083
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
3084
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
3086
3085
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
3086
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
3087
3087
|
CustomerPortalFragment.model_rebuild()
|
|
3088
3088
|
CustomerStatisticsFragment.model_rebuild()
|
|
3089
3089
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -3093,8 +3093,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
3093
3093
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
3094
3094
|
LayoutConfigurationFragment.model_rebuild()
|
|
3095
3095
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
3096
|
-
MockPaywallPriceFragment.model_rebuild()
|
|
3097
3096
|
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
3097
|
+
MockPaywallPriceFragment.model_rebuild()
|
|
3098
3098
|
MockPaywallAddonFragment.model_rebuild()
|
|
3099
3099
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
3100
3100
|
MockPaywallPlanFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -554,6 +554,9 @@ class CouponFilterCustomerFilter(BaseModel):
|
|
|
554
554
|
and_: Optional[List["CouponFilterCustomerFilter"]] = Field(
|
|
555
555
|
alias="and", default=None
|
|
556
556
|
)
|
|
557
|
+
aws_marketplace_customer_id: Optional["StringFieldComparison"] = Field(
|
|
558
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
559
|
+
)
|
|
557
560
|
billing_id: Optional["StringFieldComparison"] = Field(
|
|
558
561
|
alias="billingId", default=None
|
|
559
562
|
)
|
|
@@ -921,6 +924,9 @@ class CustomerBillingInfo(BaseModel):
|
|
|
921
924
|
|
|
922
925
|
class CustomerFilter(BaseModel):
|
|
923
926
|
and_: Optional[List["CustomerFilter"]] = Field(alias="and", default=None)
|
|
927
|
+
aws_marketplace_customer_id: Optional["StringFieldComparison"] = Field(
|
|
928
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
929
|
+
)
|
|
924
930
|
billing_id: Optional["StringFieldComparison"] = Field(
|
|
925
931
|
alias="billingId", default=None
|
|
926
932
|
)
|
|
@@ -1110,6 +1116,9 @@ class CustomerResourceFilterCustomerFilter(BaseModel):
|
|
|
1110
1116
|
and_: Optional[List["CustomerResourceFilterCustomerFilter"]] = Field(
|
|
1111
1117
|
alias="and", default=None
|
|
1112
1118
|
)
|
|
1119
|
+
aws_marketplace_customer_id: Optional["StringFieldComparison"] = Field(
|
|
1120
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
1121
|
+
)
|
|
1113
1122
|
billing_id: Optional["StringFieldComparison"] = Field(
|
|
1114
1123
|
alias="billingId", default=None
|
|
1115
1124
|
)
|
|
@@ -1313,6 +1322,9 @@ class CustomerSubscriptionFilterCustomerFilter(BaseModel):
|
|
|
1313
1322
|
and_: Optional[List["CustomerSubscriptionFilterCustomerFilter"]] = Field(
|
|
1314
1323
|
alias="and", default=None
|
|
1315
1324
|
)
|
|
1325
|
+
aws_marketplace_customer_id: Optional["StringFieldComparison"] = Field(
|
|
1326
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
1327
|
+
)
|
|
1316
1328
|
billing_id: Optional["StringFieldComparison"] = Field(
|
|
1317
1329
|
alias="billingId", default=None
|
|
1318
1330
|
)
|
|
@@ -1809,6 +1821,9 @@ class ExperimentFilterCustomerFilter(BaseModel):
|
|
|
1809
1821
|
and_: Optional[List["ExperimentFilterCustomerFilter"]] = Field(
|
|
1810
1822
|
alias="and", default=None
|
|
1811
1823
|
)
|
|
1824
|
+
aws_marketplace_customer_id: Optional["StringFieldComparison"] = Field(
|
|
1825
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
1826
|
+
)
|
|
1812
1827
|
billing_id: Optional["StringFieldComparison"] = Field(
|
|
1813
1828
|
alias="billingId", default=None
|
|
1814
1829
|
)
|
|
@@ -4517,6 +4532,7 @@ class SubscriptionPriceSort(BaseModel):
|
|
|
4517
4532
|
class SubscriptionQueryFilter(BaseModel):
|
|
4518
4533
|
and_: Optional[List["SubscriptionQueryFilter"]] = Field(alias="and", default=None)
|
|
4519
4534
|
created_at: Optional["DateFieldComparison"] = Field(alias="createdAt", default=None)
|
|
4535
|
+
customer: Optional["SubscriptionQueryFilterCustomerFilter"] = None
|
|
4520
4536
|
customer_id: Optional["StringFieldComparison"] = Field(
|
|
4521
4537
|
alias="customerId", default=None
|
|
4522
4538
|
)
|
|
@@ -4534,6 +4550,47 @@ class SubscriptionQueryFilter(BaseModel):
|
|
|
4534
4550
|
status: Optional["SubscriptionStatusFilterComparison"] = None
|
|
4535
4551
|
|
|
4536
4552
|
|
|
4553
|
+
class SubscriptionQueryFilterCustomerFilter(BaseModel):
|
|
4554
|
+
and_: Optional[List["SubscriptionQueryFilterCustomerFilter"]] = Field(
|
|
4555
|
+
alias="and", default=None
|
|
4556
|
+
)
|
|
4557
|
+
aws_marketplace_customer_id: Optional["StringFieldComparison"] = Field(
|
|
4558
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
4559
|
+
)
|
|
4560
|
+
billing_id: Optional["StringFieldComparison"] = Field(
|
|
4561
|
+
alias="billingId", default=None
|
|
4562
|
+
)
|
|
4563
|
+
created_at: Optional["DateFieldComparison"] = Field(alias="createdAt", default=None)
|
|
4564
|
+
crm_hubspot_company_id: Optional["StringFieldComparison"] = Field(
|
|
4565
|
+
alias="crmHubspotCompanyId", default=None
|
|
4566
|
+
)
|
|
4567
|
+
crm_hubspot_company_url: Optional["StringFieldComparison"] = Field(
|
|
4568
|
+
alias="crmHubspotCompanyUrl", default=None
|
|
4569
|
+
)
|
|
4570
|
+
crm_id: Optional["StringFieldComparison"] = Field(alias="crmId", default=None)
|
|
4571
|
+
customer_id: Optional["StringFieldComparison"] = Field(
|
|
4572
|
+
alias="customerId", default=None
|
|
4573
|
+
)
|
|
4574
|
+
deleted_at: Optional["DateFieldComparison"] = Field(alias="deletedAt", default=None)
|
|
4575
|
+
email: Optional["StringFieldComparison"] = None
|
|
4576
|
+
environment_id: Optional["UUIDFilterComparison"] = Field(
|
|
4577
|
+
alias="environmentId", default=None
|
|
4578
|
+
)
|
|
4579
|
+
id: Optional["UUIDFilterComparison"] = None
|
|
4580
|
+
name: Optional["StringFieldComparison"] = None
|
|
4581
|
+
or_: Optional[List["SubscriptionQueryFilterCustomerFilter"]] = Field(
|
|
4582
|
+
alias="or", default=None
|
|
4583
|
+
)
|
|
4584
|
+
ref_id: Optional["StringFieldComparison"] = Field(alias="refId", default=None)
|
|
4585
|
+
salesforce_id: Optional["StringFieldComparison"] = Field(
|
|
4586
|
+
alias="salesforceId", default=None
|
|
4587
|
+
)
|
|
4588
|
+
search_query: Optional["CustomerSearchQueryFilterComparison"] = Field(
|
|
4589
|
+
alias="searchQuery", default=None
|
|
4590
|
+
)
|
|
4591
|
+
updated_at: Optional["DateFieldComparison"] = Field(alias="updatedAt", default=None)
|
|
4592
|
+
|
|
4593
|
+
|
|
4537
4594
|
class SubscriptionQuerySort(BaseModel):
|
|
4538
4595
|
direction: SortDirection
|
|
4539
4596
|
field: SubscriptionQuerySortFields
|
|
@@ -5107,6 +5164,9 @@ class UsageMeasurementFilterCustomerFilter(BaseModel):
|
|
|
5107
5164
|
and_: Optional[List["UsageMeasurementFilterCustomerFilter"]] = Field(
|
|
5108
5165
|
alias="and", default=None
|
|
5109
5166
|
)
|
|
5167
|
+
aws_marketplace_customer_id: Optional["StringFieldComparison"] = Field(
|
|
5168
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
5169
|
+
)
|
|
5110
5170
|
billing_id: Optional["StringFieldComparison"] = Field(
|
|
5111
5171
|
alias="billingId", default=None
|
|
5112
5172
|
)
|
|
@@ -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=91ow7ok3KSAGs-m1TbfjSiSc3P0wc3eHcHbMi0qEmYc,78691
|
|
110
110
|
stigg/generated/apply_subscription.py,sha256=Vbs-QZZxN16pUpt3Hp7Jvvcc5o_8xwJK9oTLQQjH0ZA,451
|
|
111
111
|
stigg/generated/archive_customer.py,sha256=3N3iBiT2Vvzfb0ckV3o57A6lmJ_ef7JNPaMX_Jtcg6c,396
|
|
112
112
|
stigg/generated/async_base_client.py,sha256=zqd6IhYxpalyA6KQkeGhXgSurC0vXSwSWmSlM2zZ0VM,12593
|
|
@@ -120,11 +120,11 @@ stigg/generated/create_payment_session.py,sha256=VRPT8Bbvb_evFHMav9y_pXWHMVbkRy9
|
|
|
120
120
|
stigg/generated/create_subscription.py,sha256=vbpBJ_daXHcQDtvU3vbwSr2E7s4VGRHxqPavyTV3Mtk,457
|
|
121
121
|
stigg/generated/delegate_subscription_to_customer.py,sha256=0TgQDO0Hk-z7X7PGtqhvciqa8IjkToK9cpiX3Kqu_UY,561
|
|
122
122
|
stigg/generated/detach_customer_payment_method.py,sha256=ACXlC2xsGaUP723OrayFZQ9SbXxe8TtVUYdG1gqcYFc,523
|
|
123
|
-
stigg/generated/enums.py,sha256=
|
|
123
|
+
stigg/generated/enums.py,sha256=Z9XgOXbMjHdnVwI9E8CocPDVWx1TEFWwUzvwvnaeUOY,39855
|
|
124
124
|
stigg/generated/estimate_subscription.py,sha256=c0_vg0A_Hi8fdjeGudWZ0WziUF9jcjX5rlRitGMAMaQ,479
|
|
125
125
|
stigg/generated/estimate_subscription_update.py,sha256=ZYIFqqHHDfzhrOn95QnMmPNTXZ7JrKWRlUFzk8fWwKA,528
|
|
126
126
|
stigg/generated/exceptions.py,sha256=OQu-ZYCCV4VyMWTd1HR8gIjIK2CrA_JMlFxqOAJugWY,2411
|
|
127
|
-
stigg/generated/fragments.py,sha256=
|
|
127
|
+
stigg/generated/fragments.py,sha256=6Uogz4fzLBZGkLjnWbMT50FWo3y0JmvPoWy2jpSrIPs,111377
|
|
128
128
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
129
129
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
130
130
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -153,7 +153,7 @@ stigg/generated/grant_promotional_entitlements_group.py,sha256=iQwCd07VFaYbsN_E-
|
|
|
153
153
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
154
154
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
155
155
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
156
|
-
stigg/generated/input_types.py,sha256=
|
|
156
|
+
stigg/generated/input_types.py,sha256=jXi_nNNuNKT6kMCamchMdlPydo7U5XLsA_2J4miX0a4,217665
|
|
157
157
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
158
158
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
159
159
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -172,7 +172,7 @@ stigg/generated/unlink_promotional_entitlements_group.py,sha256=8UIRQ0CNvReRfX0L
|
|
|
172
172
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
173
173
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
174
174
|
stigg/generated/void_credit_grant.py,sha256=uQ22Xb2vwMOJfqh48GU2fhZ6Dcv9nHNIx_UJpjmJSBU,410
|
|
175
|
-
stigg_api_client_v2-3.
|
|
176
|
-
stigg_api_client_v2-3.
|
|
177
|
-
stigg_api_client_v2-3.
|
|
178
|
-
stigg_api_client_v2-3.
|
|
175
|
+
stigg_api_client_v2-3.111.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
176
|
+
stigg_api_client_v2-3.111.0.dist-info/METADATA,sha256=GYPjR3v6_RE0rI2aOEBGkHLtOm0L8UTgswYXbkmDoog,2258
|
|
177
|
+
stigg_api_client_v2-3.111.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
178
|
+
stigg_api_client_v2-3.111.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|