stigg-api-client-v2 3.40.0__py3-none-any.whl → 3.42.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/enums.py +1 -0
- stigg/generated/fragments.py +175 -175
- stigg/generated/input_types.py +1 -0
- {stigg_api_client_v2-3.40.0.dist-info → stigg_api_client_v2-3.42.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.40.0.dist-info → stigg_api_client_v2-3.42.0.dist-info}/RECORD +7 -7
- {stigg_api_client_v2-3.40.0.dist-info → stigg_api_client_v2-3.42.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.40.0.dist-info → stigg_api_client_v2-3.42.0.dist-info}/WHEEL +0 -0
stigg/generated/enums.py
CHANGED
stigg/generated/fragments.py
CHANGED
|
@@ -61,6 +61,41 @@ class AddonDependencyFragment(BaseModel):
|
|
|
61
61
|
description: Optional[str] = Field(default=None)
|
|
62
62
|
|
|
63
63
|
|
|
64
|
+
class PackageEntitlementFragment(BaseModel):
|
|
65
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
66
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
67
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
68
|
+
feature_id: str = Field(alias="featureId")
|
|
69
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
70
|
+
alias="resetPeriod", default=None
|
|
71
|
+
)
|
|
72
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
73
|
+
alias="hiddenFromWidgets", default=None
|
|
74
|
+
)
|
|
75
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
76
|
+
display_name_override: Optional[str] = Field(
|
|
77
|
+
alias="displayNameOverride", default=None
|
|
78
|
+
)
|
|
79
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
80
|
+
is_granted: bool = Field(alias="isGranted")
|
|
81
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
85
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
86
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
87
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
88
|
+
feature_units_plural: Optional[str] = Field(
|
|
89
|
+
alias="featureUnitsPlural", default=None
|
|
90
|
+
)
|
|
91
|
+
display_name: str = Field(alias="displayName")
|
|
92
|
+
description: Optional[str] = Field(default=None)
|
|
93
|
+
ref_id: str = Field(alias="refId")
|
|
94
|
+
additional_meta_data: Optional[Any] = Field(
|
|
95
|
+
alias="additionalMetaData", default=None
|
|
96
|
+
)
|
|
97
|
+
|
|
98
|
+
|
|
64
99
|
class PriceTierFragment(BaseModel):
|
|
65
100
|
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
66
101
|
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
@@ -113,41 +148,6 @@ class OveragePriceFragmentFeature(BaseModel):
|
|
|
113
148
|
description: Optional[str] = Field(default=None)
|
|
114
149
|
|
|
115
150
|
|
|
116
|
-
class PackageEntitlementFragment(BaseModel):
|
|
117
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
118
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
119
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
120
|
-
feature_id: str = Field(alias="featureId")
|
|
121
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
122
|
-
alias="resetPeriod", default=None
|
|
123
|
-
)
|
|
124
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
125
|
-
alias="hiddenFromWidgets", default=None
|
|
126
|
-
)
|
|
127
|
-
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
128
|
-
display_name_override: Optional[str] = Field(
|
|
129
|
-
alias="displayNameOverride", default=None
|
|
130
|
-
)
|
|
131
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
132
|
-
is_granted: bool = Field(alias="isGranted")
|
|
133
|
-
feature: "PackageEntitlementFragmentFeature"
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
class PackageEntitlementFragmentFeature(BaseModel):
|
|
137
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
138
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
139
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
140
|
-
feature_units_plural: Optional[str] = Field(
|
|
141
|
-
alias="featureUnitsPlural", default=None
|
|
142
|
-
)
|
|
143
|
-
display_name: str = Field(alias="displayName")
|
|
144
|
-
description: Optional[str] = Field(default=None)
|
|
145
|
-
ref_id: str = Field(alias="refId")
|
|
146
|
-
additional_meta_data: Optional[Any] = Field(
|
|
147
|
-
alias="additionalMetaData", default=None
|
|
148
|
-
)
|
|
149
|
-
|
|
150
|
-
|
|
151
151
|
class PriceFragment(BaseModel):
|
|
152
152
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
153
153
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -315,6 +315,70 @@ class EntitlementFragmentFeature(FeatureFragment):
|
|
|
315
315
|
pass
|
|
316
316
|
|
|
317
317
|
|
|
318
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
319
|
+
billing_id: str = Field(alias="billingId")
|
|
320
|
+
status: SubscriptionInvoiceStatus
|
|
321
|
+
created_at: Any = Field(alias="createdAt")
|
|
322
|
+
due_date: Optional[Any] = Field(alias="dueDate", default=None)
|
|
323
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
324
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
325
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
326
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
327
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
328
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
329
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
330
|
+
alias="billingReason", default=None
|
|
331
|
+
)
|
|
332
|
+
currency: Optional[str] = Field(default=None)
|
|
333
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
334
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
335
|
+
alias="subTotalExcludingTax", default=None
|
|
336
|
+
)
|
|
337
|
+
total: Optional[float] = Field(default=None)
|
|
338
|
+
total_excluding_tax: Optional[float] = Field(
|
|
339
|
+
alias="totalExcludingTax", default=None
|
|
340
|
+
)
|
|
341
|
+
tax: Optional[float] = Field(default=None)
|
|
342
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
343
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
347
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
class SlimCustomerFragment(BaseModel):
|
|
351
|
+
id: Any
|
|
352
|
+
name: Optional[str] = Field(default=None)
|
|
353
|
+
email: Optional[str] = Field(default=None)
|
|
354
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
355
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
356
|
+
ref_id: str = Field(alias="refId")
|
|
357
|
+
customer_id: str = Field(alias="customerId")
|
|
358
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
359
|
+
additional_meta_data: Optional[Any] = Field(
|
|
360
|
+
alias="additionalMetaData", default=None
|
|
361
|
+
)
|
|
362
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
363
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
364
|
+
)
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
class TotalPriceFragment(BaseModel):
|
|
368
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
369
|
+
total: "TotalPriceFragmentTotal"
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
373
|
+
amount: float
|
|
374
|
+
currency: Currency
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
378
|
+
amount: float
|
|
379
|
+
currency: Currency
|
|
380
|
+
|
|
381
|
+
|
|
318
382
|
class ProductFragment(BaseModel):
|
|
319
383
|
ref_id: str = Field(alias="refId")
|
|
320
384
|
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
@@ -435,46 +499,6 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
435
499
|
limit: float
|
|
436
500
|
|
|
437
501
|
|
|
438
|
-
class TotalPriceFragment(BaseModel):
|
|
439
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
440
|
-
total: "TotalPriceFragmentTotal"
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
444
|
-
amount: float
|
|
445
|
-
currency: Currency
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
449
|
-
amount: float
|
|
450
|
-
currency: Currency
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
class SlimCustomerFragment(BaseModel):
|
|
454
|
-
id: Any
|
|
455
|
-
name: Optional[str] = Field(default=None)
|
|
456
|
-
email: Optional[str] = Field(default=None)
|
|
457
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
458
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
459
|
-
ref_id: str = Field(alias="refId")
|
|
460
|
-
customer_id: str = Field(alias="customerId")
|
|
461
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
462
|
-
additional_meta_data: Optional[Any] = Field(
|
|
463
|
-
alias="additionalMetaData", default=None
|
|
464
|
-
)
|
|
465
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
466
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
467
|
-
)
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
class CustomerResourceFragment(BaseModel):
|
|
471
|
-
resource_id: str = Field(alias="resourceId")
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
475
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
476
|
-
|
|
477
|
-
|
|
478
502
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
479
503
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
480
504
|
alias="subscriptionScheduleType"
|
|
@@ -637,6 +661,10 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
637
661
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
638
662
|
|
|
639
663
|
|
|
664
|
+
class CustomerResourceFragment(BaseModel):
|
|
665
|
+
resource_id: str = Field(alias="resourceId")
|
|
666
|
+
|
|
667
|
+
|
|
640
668
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
641
669
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
642
670
|
alias="subscriptionScheduleType"
|
|
@@ -791,34 +819,6 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
791
819
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
792
820
|
|
|
793
821
|
|
|
794
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
795
|
-
billing_id: str = Field(alias="billingId")
|
|
796
|
-
status: SubscriptionInvoiceStatus
|
|
797
|
-
created_at: Any = Field(alias="createdAt")
|
|
798
|
-
due_date: Optional[Any] = Field(alias="dueDate", default=None)
|
|
799
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
800
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
801
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
802
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
803
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
804
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
805
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
806
|
-
alias="billingReason", default=None
|
|
807
|
-
)
|
|
808
|
-
currency: Optional[str] = Field(default=None)
|
|
809
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
810
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
811
|
-
alias="subTotalExcludingTax", default=None
|
|
812
|
-
)
|
|
813
|
-
total: Optional[float] = Field(default=None)
|
|
814
|
-
total_excluding_tax: Optional[float] = Field(
|
|
815
|
-
alias="totalExcludingTax", default=None
|
|
816
|
-
)
|
|
817
|
-
tax: Optional[float] = Field(default=None)
|
|
818
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
819
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
820
|
-
|
|
821
|
-
|
|
822
822
|
class SubscriptionFragment(BaseModel):
|
|
823
823
|
id: Any
|
|
824
824
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -1005,6 +1005,35 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
1005
1005
|
)
|
|
1006
1006
|
|
|
1007
1007
|
|
|
1008
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
1009
|
+
status: PromotionalEntitlementStatus
|
|
1010
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1011
|
+
feature_id: Any = Field(alias="featureId")
|
|
1012
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1013
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1014
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1015
|
+
alias="resetPeriod", default=None
|
|
1016
|
+
)
|
|
1017
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1018
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1019
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1020
|
+
|
|
1021
|
+
|
|
1022
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1023
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1024
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1025
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1026
|
+
feature_units_plural: Optional[str] = Field(
|
|
1027
|
+
alias="featureUnitsPlural", default=None
|
|
1028
|
+
)
|
|
1029
|
+
display_name: str = Field(alias="displayName")
|
|
1030
|
+
description: Optional[str] = Field(default=None)
|
|
1031
|
+
ref_id: str = Field(alias="refId")
|
|
1032
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1033
|
+
alias="additionalMetaData", default=None
|
|
1034
|
+
)
|
|
1035
|
+
|
|
1036
|
+
|
|
1008
1037
|
class CouponFragment(BaseModel):
|
|
1009
1038
|
id: Any
|
|
1010
1039
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1039,35 +1068,6 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1039
1068
|
status: SyncStatus
|
|
1040
1069
|
|
|
1041
1070
|
|
|
1042
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
1043
|
-
status: PromotionalEntitlementStatus
|
|
1044
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1045
|
-
feature_id: Any = Field(alias="featureId")
|
|
1046
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1047
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1048
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1049
|
-
alias="resetPeriod", default=None
|
|
1050
|
-
)
|
|
1051
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1052
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1053
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1057
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1058
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1059
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1060
|
-
feature_units_plural: Optional[str] = Field(
|
|
1061
|
-
alias="featureUnitsPlural", default=None
|
|
1062
|
-
)
|
|
1063
|
-
display_name: str = Field(alias="displayName")
|
|
1064
|
-
description: Optional[str] = Field(default=None)
|
|
1065
|
-
ref_id: str = Field(alias="refId")
|
|
1066
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1067
|
-
alias="additionalMetaData", default=None
|
|
1068
|
-
)
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
1071
|
class CustomerFragment(SlimCustomerFragment):
|
|
1072
1072
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1073
1073
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1328,41 +1328,6 @@ class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
|
1328
1328
|
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1329
1329
|
|
|
1330
1330
|
|
|
1331
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1332
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1333
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1334
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1335
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1336
|
-
default=None
|
|
1337
|
-
)
|
|
1338
|
-
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1339
|
-
alias="creditRate", default=None
|
|
1340
|
-
)
|
|
1341
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1342
|
-
default=None
|
|
1343
|
-
)
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1347
|
-
amount: float
|
|
1348
|
-
currency: Currency
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1352
|
-
amount: float
|
|
1353
|
-
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1357
|
-
id: Any
|
|
1358
|
-
ref_id: str = Field(alias="refId")
|
|
1359
|
-
display_name: str = Field(alias="displayName")
|
|
1360
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1361
|
-
feature_units_plural: Optional[str] = Field(
|
|
1362
|
-
alias="featureUnitsPlural", default=None
|
|
1363
|
-
)
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
1331
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1367
1332
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1368
1333
|
alias="subscriptionScheduleType"
|
|
@@ -1539,6 +1504,41 @@ class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
|
1539
1504
|
quantity: int
|
|
1540
1505
|
|
|
1541
1506
|
|
|
1507
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1508
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1509
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1510
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1511
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1512
|
+
default=None
|
|
1513
|
+
)
|
|
1514
|
+
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1515
|
+
alias="creditRate", default=None
|
|
1516
|
+
)
|
|
1517
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1518
|
+
default=None
|
|
1519
|
+
)
|
|
1520
|
+
|
|
1521
|
+
|
|
1522
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1523
|
+
amount: float
|
|
1524
|
+
currency: Currency
|
|
1525
|
+
|
|
1526
|
+
|
|
1527
|
+
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1528
|
+
amount: float
|
|
1529
|
+
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
1530
|
+
|
|
1531
|
+
|
|
1532
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1533
|
+
id: Any
|
|
1534
|
+
ref_id: str = Field(alias="refId")
|
|
1535
|
+
display_name: str = Field(alias="displayName")
|
|
1536
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1537
|
+
feature_units_plural: Optional[str] = Field(
|
|
1538
|
+
alias="featureUnitsPlural", default=None
|
|
1539
|
+
)
|
|
1540
|
+
|
|
1541
|
+
|
|
1542
1542
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1543
1543
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1544
1544
|
plan_id: str = Field(alias="planId")
|
|
@@ -2920,30 +2920,30 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2920
2920
|
|
|
2921
2921
|
|
|
2922
2922
|
AddonDependencyFragment.model_rebuild()
|
|
2923
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2923
2924
|
PriceTierFragment.model_rebuild()
|
|
2924
2925
|
OveragePriceFragment.model_rebuild()
|
|
2925
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2926
2926
|
PriceFragment.model_rebuild()
|
|
2927
2927
|
AddonFragment.model_rebuild()
|
|
2928
2928
|
FeatureFragment.model_rebuild()
|
|
2929
2929
|
EntitlementFragment.model_rebuild()
|
|
2930
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2931
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2932
|
+
SlimCustomerFragment.model_rebuild()
|
|
2933
|
+
TotalPriceFragment.model_rebuild()
|
|
2930
2934
|
ProductFragment.model_rebuild()
|
|
2931
2935
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2932
2936
|
PlanFragment.model_rebuild()
|
|
2933
|
-
TotalPriceFragment.model_rebuild()
|
|
2934
|
-
SlimCustomerFragment.model_rebuild()
|
|
2935
|
-
CustomerResourceFragment.model_rebuild()
|
|
2936
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2937
2937
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2938
|
+
CustomerResourceFragment.model_rebuild()
|
|
2938
2939
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2939
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2940
2940
|
SubscriptionFragment.model_rebuild()
|
|
2941
2941
|
ApplySubscriptionFragment.model_rebuild()
|
|
2942
2942
|
FontVariantFragment.model_rebuild()
|
|
2943
2943
|
TypographyConfigurationFragment.model_rebuild()
|
|
2944
2944
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2945
|
-
CouponFragment.model_rebuild()
|
|
2946
2945
|
PromotionalEntitlementFragment.model_rebuild()
|
|
2946
|
+
CouponFragment.model_rebuild()
|
|
2947
2947
|
CustomerFragment.model_rebuild()
|
|
2948
2948
|
CheckoutStateFragment.model_rebuild()
|
|
2949
2949
|
CreditGrantFragment.model_rebuild()
|
|
@@ -2952,9 +2952,9 @@ CustomerPortalBillingInformationFragment.model_rebuild()
|
|
|
2952
2952
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2953
2953
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2954
2954
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2955
|
-
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2956
2955
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2957
2956
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2957
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2958
2958
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2959
2959
|
CustomerPortalFragment.model_rebuild()
|
|
2960
2960
|
CustomerStatisticsFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -4329,6 +4329,7 @@ class SubscriptionQueryFilter(BaseModel):
|
|
|
4329
4329
|
resource_id: Optional["StringFieldComparison"] = Field(
|
|
4330
4330
|
alias="resourceId", default=None
|
|
4331
4331
|
)
|
|
4332
|
+
start_date: Optional["DateFieldComparison"] = Field(alias="startDate", default=None)
|
|
4332
4333
|
status: Optional["SubscriptionStatusFilterComparison"] = None
|
|
4333
4334
|
|
|
4334
4335
|
|
|
@@ -119,11 +119,11 @@ stigg/generated/client.py,sha256=zBvjwKMocm02W2CIXwZ4hXTv983k-xB1B3r5WWBfZ4g,179
|
|
|
119
119
|
stigg/generated/create_subscription.py,sha256=vbpBJ_daXHcQDtvU3vbwSr2E7s4VGRHxqPavyTV3Mtk,457
|
|
120
120
|
stigg/generated/delegate_subscription_to_customer.py,sha256=0TgQDO0Hk-z7X7PGtqhvciqa8IjkToK9cpiX3Kqu_UY,561
|
|
121
121
|
stigg/generated/detach_customer_payment_method.py,sha256=ACXlC2xsGaUP723OrayFZQ9SbXxe8TtVUYdG1gqcYFc,523
|
|
122
|
-
stigg/generated/enums.py,sha256=
|
|
122
|
+
stigg/generated/enums.py,sha256=tr3n3nNt4Nv69cyZSDS1odYokmoWweu4s_Lec-IFu04,37844
|
|
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=vrPLxDIQ8LYg1FGvFMddrzgABe5kHT4YAVpGU2m5RJk,106791
|
|
127
127
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
128
128
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
129
129
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -148,7 +148,7 @@ stigg/generated/grant_promotional_entitlements.py,sha256=72PRYuqecL-0SkWb7deygkh
|
|
|
148
148
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
149
149
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
150
150
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
151
|
-
stigg/generated/input_types.py,sha256=
|
|
151
|
+
stigg/generated/input_types.py,sha256=n3yy1NJBp5uwNzeqhMTRQ3MuLMBoJgADBv_51HW2hmg,205990
|
|
152
152
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
153
153
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
154
154
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -164,7 +164,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
164
164
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
165
165
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
166
166
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
167
|
-
stigg_api_client_v2-3.
|
|
168
|
-
stigg_api_client_v2-3.
|
|
169
|
-
stigg_api_client_v2-3.
|
|
170
|
-
stigg_api_client_v2-3.
|
|
167
|
+
stigg_api_client_v2-3.42.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
168
|
+
stigg_api_client_v2-3.42.0.dist-info/METADATA,sha256=wHGNqhjb5eoiqTHGIMAgMXk6lgoNqBiXjMQLuZhNYRY,2257
|
|
169
|
+
stigg_api_client_v2-3.42.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
170
|
+
stigg_api_client_v2-3.42.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|