stigg-api-client-v2 3.80.0__py3-none-any.whl → 3.84.1__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 +10 -0
- stigg/generated/async_client.py +82 -0
- stigg/generated/client.py +82 -0
- stigg/generated/enums.py +13 -2
- stigg/generated/fragments.py +326 -326
- stigg/generated/get_entitlements_state.py +31 -0
- {stigg_api_client_v2-3.80.0.dist-info → stigg_api_client_v2-3.84.1.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.80.0.dist-info → stigg_api_client_v2-3.84.1.dist-info}/RECORD +10 -9
- {stigg_api_client_v2-3.80.0.dist-info → stigg_api_client_v2-3.84.1.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.80.0.dist-info → stigg_api_client_v2-3.84.1.dist-info}/WHEEL +0 -0
stigg/generated/__init__.py
CHANGED
|
@@ -59,6 +59,7 @@ from .enums import (
|
|
|
59
59
|
DiscountType,
|
|
60
60
|
EntitlementBehavior,
|
|
61
61
|
EntitlementResetPeriod,
|
|
62
|
+
EntitlementsStateAccessDeniedReason,
|
|
62
63
|
EntitySelectionMode,
|
|
63
64
|
EnvironmentAccessRole,
|
|
64
65
|
EnvironmentProvisionStatus,
|
|
@@ -559,6 +560,11 @@ from .get_customer_statistics import (
|
|
|
559
560
|
)
|
|
560
561
|
from .get_entitlement import GetEntitlement, GetEntitlementEntitlement
|
|
561
562
|
from .get_entitlements import GetEntitlements, GetEntitlementsEntitlements
|
|
563
|
+
from .get_entitlements_state import (
|
|
564
|
+
GetEntitlementsState,
|
|
565
|
+
GetEntitlementsStateEntitlementsState,
|
|
566
|
+
GetEntitlementsStateEntitlementsStateEntitlements,
|
|
567
|
+
)
|
|
562
568
|
from .get_mock_paywall import (
|
|
563
569
|
GetMockPaywall,
|
|
564
570
|
GetMockPaywallMockPaywall,
|
|
@@ -1311,6 +1317,7 @@ __all__ = [
|
|
|
1311
1317
|
"EntitlementUsageUpdated",
|
|
1312
1318
|
"EntitlementUsageUpdatedEntitlement",
|
|
1313
1319
|
"EntitlementUsageUpdatedUsage",
|
|
1320
|
+
"EntitlementsStateAccessDeniedReason",
|
|
1314
1321
|
"EntitlementsUpdatedPayload",
|
|
1315
1322
|
"EntitlementsUpdatedPayloadEntitlements",
|
|
1316
1323
|
"EntitySelectionMode",
|
|
@@ -1400,6 +1407,9 @@ __all__ = [
|
|
|
1400
1407
|
"GetEntitlementEntitlement",
|
|
1401
1408
|
"GetEntitlements",
|
|
1402
1409
|
"GetEntitlementsEntitlements",
|
|
1410
|
+
"GetEntitlementsState",
|
|
1411
|
+
"GetEntitlementsStateEntitlementsState",
|
|
1412
|
+
"GetEntitlementsStateEntitlementsStateEntitlements",
|
|
1403
1413
|
"GetMockPaywall",
|
|
1404
1414
|
"GetMockPaywallMockPaywall",
|
|
1405
1415
|
"GetMockPaywallMockPaywallConfiguration",
|
stigg/generated/async_client.py
CHANGED
|
@@ -26,6 +26,7 @@ from .get_customer_portal_by_ref_id import GetCustomerPortalByRefId
|
|
|
26
26
|
from .get_customer_statistics import GetCustomerStatistics
|
|
27
27
|
from .get_entitlement import GetEntitlement
|
|
28
28
|
from .get_entitlements import GetEntitlements
|
|
29
|
+
from .get_entitlements_state import GetEntitlementsState
|
|
29
30
|
from .get_mock_paywall import GetMockPaywall
|
|
30
31
|
from .get_paywall import GetPaywall
|
|
31
32
|
from .get_products import GetProducts
|
|
@@ -5286,6 +5287,87 @@ class AsyncClient(AsyncBaseClient):
|
|
|
5286
5287
|
data = self.get_data(response)
|
|
5287
5288
|
return GetEntitlements.model_validate(data)
|
|
5288
5289
|
|
|
5290
|
+
async def get_entitlements_state(
|
|
5291
|
+
self, input: FetchEntitlementsQuery, **kwargs: Any
|
|
5292
|
+
) -> GetEntitlementsState:
|
|
5293
|
+
_query = gql(
|
|
5294
|
+
"""
|
|
5295
|
+
query GetEntitlementsState($query: FetchEntitlementsQuery!) {
|
|
5296
|
+
entitlementsState(query: $query) {
|
|
5297
|
+
entitlements {
|
|
5298
|
+
...EntitlementFragment
|
|
5299
|
+
}
|
|
5300
|
+
accessDeniedReason
|
|
5301
|
+
}
|
|
5302
|
+
}
|
|
5303
|
+
|
|
5304
|
+
fragment EntitlementFragment on Entitlement {
|
|
5305
|
+
__typename
|
|
5306
|
+
isGranted
|
|
5307
|
+
accessDeniedReason
|
|
5308
|
+
customerId
|
|
5309
|
+
resourceId
|
|
5310
|
+
usageLimit
|
|
5311
|
+
hasUnlimitedUsage
|
|
5312
|
+
hasSoftLimit
|
|
5313
|
+
currentUsage
|
|
5314
|
+
requestedUsage
|
|
5315
|
+
requestedValues
|
|
5316
|
+
enumValues
|
|
5317
|
+
entitlementUpdatedAt
|
|
5318
|
+
usageUpdatedAt
|
|
5319
|
+
usagePeriodAnchor
|
|
5320
|
+
usagePeriodStart
|
|
5321
|
+
usagePeriodEnd
|
|
5322
|
+
nextResetDate
|
|
5323
|
+
resetPeriod
|
|
5324
|
+
resetPeriodConfiguration {
|
|
5325
|
+
...ResetPeriodConfigurationFragment
|
|
5326
|
+
}
|
|
5327
|
+
feature {
|
|
5328
|
+
...FeatureFragment
|
|
5329
|
+
}
|
|
5330
|
+
}
|
|
5331
|
+
|
|
5332
|
+
fragment FeatureFragment on EntitlementFeature {
|
|
5333
|
+
__typename
|
|
5334
|
+
featureType
|
|
5335
|
+
meterType
|
|
5336
|
+
featureUnits
|
|
5337
|
+
featureUnitsPlural
|
|
5338
|
+
description
|
|
5339
|
+
displayName
|
|
5340
|
+
refId
|
|
5341
|
+
unitTransformation {
|
|
5342
|
+
divide
|
|
5343
|
+
round
|
|
5344
|
+
}
|
|
5345
|
+
}
|
|
5346
|
+
|
|
5347
|
+
fragment ResetPeriodConfigurationFragment on ResetPeriodConfiguration {
|
|
5348
|
+
__typename
|
|
5349
|
+
... on YearlyResetPeriodConfig {
|
|
5350
|
+
yearlyAccordingTo
|
|
5351
|
+
}
|
|
5352
|
+
... on MonthlyResetPeriodConfig {
|
|
5353
|
+
monthlyAccordingTo
|
|
5354
|
+
}
|
|
5355
|
+
... on WeeklyResetPeriodConfig {
|
|
5356
|
+
weeklyAccordingTo
|
|
5357
|
+
}
|
|
5358
|
+
}
|
|
5359
|
+
"""
|
|
5360
|
+
)
|
|
5361
|
+
variables: Dict[str, object] = {"query": input}
|
|
5362
|
+
response = await self.execute(
|
|
5363
|
+
query=_query,
|
|
5364
|
+
operation_name="GetEntitlementsState",
|
|
5365
|
+
variables=variables,
|
|
5366
|
+
**kwargs
|
|
5367
|
+
)
|
|
5368
|
+
data = self.get_data(response)
|
|
5369
|
+
return GetEntitlementsState.model_validate(data)
|
|
5370
|
+
|
|
5289
5371
|
async def get_entitlement(
|
|
5290
5372
|
self, input: FetchEntitlementQuery, **kwargs: Any
|
|
5291
5373
|
) -> GetEntitlement:
|
stigg/generated/client.py
CHANGED
|
@@ -26,6 +26,7 @@ from .get_customer_portal_by_ref_id import GetCustomerPortalByRefId
|
|
|
26
26
|
from .get_customer_statistics import GetCustomerStatistics
|
|
27
27
|
from .get_entitlement import GetEntitlement
|
|
28
28
|
from .get_entitlements import GetEntitlements
|
|
29
|
+
from .get_entitlements_state import GetEntitlementsState
|
|
29
30
|
from .get_mock_paywall import GetMockPaywall
|
|
30
31
|
from .get_paywall import GetPaywall
|
|
31
32
|
from .get_products import GetProducts
|
|
@@ -5282,6 +5283,87 @@ class Client(BaseClient):
|
|
|
5282
5283
|
data = self.get_data(response)
|
|
5283
5284
|
return GetEntitlements.model_validate(data)
|
|
5284
5285
|
|
|
5286
|
+
def get_entitlements_state(
|
|
5287
|
+
self, input: FetchEntitlementsQuery, **kwargs: Any
|
|
5288
|
+
) -> GetEntitlementsState:
|
|
5289
|
+
_query = gql(
|
|
5290
|
+
"""
|
|
5291
|
+
query GetEntitlementsState($query: FetchEntitlementsQuery!) {
|
|
5292
|
+
entitlementsState(query: $query) {
|
|
5293
|
+
entitlements {
|
|
5294
|
+
...EntitlementFragment
|
|
5295
|
+
}
|
|
5296
|
+
accessDeniedReason
|
|
5297
|
+
}
|
|
5298
|
+
}
|
|
5299
|
+
|
|
5300
|
+
fragment EntitlementFragment on Entitlement {
|
|
5301
|
+
__typename
|
|
5302
|
+
isGranted
|
|
5303
|
+
accessDeniedReason
|
|
5304
|
+
customerId
|
|
5305
|
+
resourceId
|
|
5306
|
+
usageLimit
|
|
5307
|
+
hasUnlimitedUsage
|
|
5308
|
+
hasSoftLimit
|
|
5309
|
+
currentUsage
|
|
5310
|
+
requestedUsage
|
|
5311
|
+
requestedValues
|
|
5312
|
+
enumValues
|
|
5313
|
+
entitlementUpdatedAt
|
|
5314
|
+
usageUpdatedAt
|
|
5315
|
+
usagePeriodAnchor
|
|
5316
|
+
usagePeriodStart
|
|
5317
|
+
usagePeriodEnd
|
|
5318
|
+
nextResetDate
|
|
5319
|
+
resetPeriod
|
|
5320
|
+
resetPeriodConfiguration {
|
|
5321
|
+
...ResetPeriodConfigurationFragment
|
|
5322
|
+
}
|
|
5323
|
+
feature {
|
|
5324
|
+
...FeatureFragment
|
|
5325
|
+
}
|
|
5326
|
+
}
|
|
5327
|
+
|
|
5328
|
+
fragment FeatureFragment on EntitlementFeature {
|
|
5329
|
+
__typename
|
|
5330
|
+
featureType
|
|
5331
|
+
meterType
|
|
5332
|
+
featureUnits
|
|
5333
|
+
featureUnitsPlural
|
|
5334
|
+
description
|
|
5335
|
+
displayName
|
|
5336
|
+
refId
|
|
5337
|
+
unitTransformation {
|
|
5338
|
+
divide
|
|
5339
|
+
round
|
|
5340
|
+
}
|
|
5341
|
+
}
|
|
5342
|
+
|
|
5343
|
+
fragment ResetPeriodConfigurationFragment on ResetPeriodConfiguration {
|
|
5344
|
+
__typename
|
|
5345
|
+
... on YearlyResetPeriodConfig {
|
|
5346
|
+
yearlyAccordingTo
|
|
5347
|
+
}
|
|
5348
|
+
... on MonthlyResetPeriodConfig {
|
|
5349
|
+
monthlyAccordingTo
|
|
5350
|
+
}
|
|
5351
|
+
... on WeeklyResetPeriodConfig {
|
|
5352
|
+
weeklyAccordingTo
|
|
5353
|
+
}
|
|
5354
|
+
}
|
|
5355
|
+
"""
|
|
5356
|
+
)
|
|
5357
|
+
variables: Dict[str, object] = {"query": input}
|
|
5358
|
+
response = self.execute(
|
|
5359
|
+
query=_query,
|
|
5360
|
+
operation_name="GetEntitlementsState",
|
|
5361
|
+
variables=variables,
|
|
5362
|
+
**kwargs
|
|
5363
|
+
)
|
|
5364
|
+
data = self.get_data(response)
|
|
5365
|
+
return GetEntitlementsState.model_validate(data)
|
|
5366
|
+
|
|
5285
5367
|
def get_entitlement(
|
|
5286
5368
|
self, input: FetchEntitlementQuery, **kwargs: Any
|
|
5287
5369
|
) -> GetEntitlement:
|
stigg/generated/enums.py
CHANGED
|
@@ -377,6 +377,11 @@ class EntitlementResetPeriod(str, Enum):
|
|
|
377
377
|
YEAR = "YEAR"
|
|
378
378
|
|
|
379
379
|
|
|
380
|
+
class EntitlementsStateAccessDeniedReason(str, Enum):
|
|
381
|
+
CustomerNotFound = "CustomerNotFound"
|
|
382
|
+
NoActiveSubscription = "NoActiveSubscription"
|
|
383
|
+
|
|
384
|
+
|
|
380
385
|
class EntitySelectionMode(str, Enum):
|
|
381
386
|
BLACK_LIST = "BLACK_LIST"
|
|
382
387
|
WHITE_LIST = "WHITE_LIST"
|
|
@@ -621,6 +626,7 @@ class EventActor(str, Enum):
|
|
|
621
626
|
class EventEntityType(str, Enum):
|
|
622
627
|
ADDON = "ADDON"
|
|
623
628
|
COUPON = "COUPON"
|
|
629
|
+
CREDIT = "CREDIT"
|
|
624
630
|
CUSTOMER = "CUSTOMER"
|
|
625
631
|
ENTITLEMENT = "ENTITLEMENT"
|
|
626
632
|
FEATURE = "FEATURE"
|
|
@@ -652,8 +658,13 @@ class EventLogType(str, Enum):
|
|
|
652
658
|
COUPON_CREATED = "COUPON_CREATED"
|
|
653
659
|
COUPON_UPDATED = "COUPON_UPDATED"
|
|
654
660
|
CREATE_SUBSCRIPTION_FAILED = "CREATE_SUBSCRIPTION_FAILED"
|
|
655
|
-
|
|
656
|
-
|
|
661
|
+
CREDITS_BALANCE_DEPLETED = "CREDITS_BALANCE_DEPLETED"
|
|
662
|
+
CREDITS_BALANCE_USAGE_LOW = "CREDITS_BALANCE_USAGE_LOW"
|
|
663
|
+
CREDITS_GRANT_DEPLETED = "CREDITS_GRANT_DEPLETED"
|
|
664
|
+
CREDITS_GRANT_EXPIRED = "CREDITS_GRANT_EXPIRED"
|
|
665
|
+
CREDITS_GRANT_GRANTED = "CREDITS_GRANT_GRANTED"
|
|
666
|
+
CREDITS_GRANT_UPDATED = "CREDITS_GRANT_UPDATED"
|
|
667
|
+
CREDITS_GRANT_USAGE_LOW = "CREDITS_GRANT_USAGE_LOW"
|
|
657
668
|
CUSTOMER_CREATED = "CUSTOMER_CREATED"
|
|
658
669
|
CUSTOMER_DELETED = "CUSTOMER_DELETED"
|
|
659
670
|
CUSTOMER_ENTITLEMENT_CALCULATION_TRIGGERED = (
|
stigg/generated/fragments.py
CHANGED
|
@@ -61,41 +61,6 @@ 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
|
-
|
|
99
64
|
class PriceTierFragment(BaseModel):
|
|
100
65
|
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
101
66
|
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
@@ -148,6 +113,41 @@ class OveragePriceFragmentFeature(BaseModel):
|
|
|
148
113
|
description: Optional[str] = Field(default=None)
|
|
149
114
|
|
|
150
115
|
|
|
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,23 +315,49 @@ class EntitlementFragmentFeature(FeatureFragment):
|
|
|
315
315
|
pass
|
|
316
316
|
|
|
317
317
|
|
|
318
|
-
class
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
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)
|
|
330
344
|
|
|
331
345
|
|
|
332
|
-
class
|
|
333
|
-
|
|
334
|
-
|
|
346
|
+
class SlimCustomerFragment(BaseModel):
|
|
347
|
+
id: Any
|
|
348
|
+
name: Optional[str] = Field(default=None)
|
|
349
|
+
email: Optional[str] = Field(default=None)
|
|
350
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
351
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
352
|
+
ref_id: str = Field(alias="refId")
|
|
353
|
+
customer_id: str = Field(alias="customerId")
|
|
354
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
355
|
+
additional_meta_data: Optional[Any] = Field(
|
|
356
|
+
alias="additionalMetaData", default=None
|
|
357
|
+
)
|
|
358
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
359
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
360
|
+
)
|
|
335
361
|
|
|
336
362
|
|
|
337
363
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
@@ -496,6 +522,126 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
496
522
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
497
523
|
|
|
498
524
|
|
|
525
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
526
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
527
|
+
display_name: str = Field(alias="displayName")
|
|
528
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
529
|
+
default=None
|
|
530
|
+
)
|
|
531
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
532
|
+
|
|
533
|
+
|
|
534
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
535
|
+
pass
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
539
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
540
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
541
|
+
|
|
542
|
+
|
|
543
|
+
class ProductFragment(BaseModel):
|
|
544
|
+
ref_id: str = Field(alias="refId")
|
|
545
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
546
|
+
description: Optional[str] = Field(default=None)
|
|
547
|
+
additional_meta_data: Optional[Any] = Field(
|
|
548
|
+
alias="additionalMetaData", default=None
|
|
549
|
+
)
|
|
550
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
551
|
+
|
|
552
|
+
|
|
553
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
554
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
555
|
+
alias="downgradePlan", default=None
|
|
556
|
+
)
|
|
557
|
+
|
|
558
|
+
|
|
559
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
560
|
+
ref_id: str = Field(alias="refId")
|
|
561
|
+
display_name: str = Field(alias="displayName")
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
class PlanFragment(BaseModel):
|
|
565
|
+
id: Any
|
|
566
|
+
ref_id: str = Field(alias="refId")
|
|
567
|
+
display_name: str = Field(alias="displayName")
|
|
568
|
+
description: Optional[str] = Field(default=None)
|
|
569
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
570
|
+
version_number: int = Field(alias="versionNumber")
|
|
571
|
+
additional_meta_data: Optional[Any] = Field(
|
|
572
|
+
alias="additionalMetaData", default=None
|
|
573
|
+
)
|
|
574
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
575
|
+
alias="hiddenFromWidgets", default=None
|
|
576
|
+
)
|
|
577
|
+
product: "PlanFragmentProduct"
|
|
578
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
579
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
580
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
581
|
+
alias="inheritedEntitlements", default=None
|
|
582
|
+
)
|
|
583
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
584
|
+
alias="compatibleAddons", default=None
|
|
585
|
+
)
|
|
586
|
+
compatible_package_groups: Optional[
|
|
587
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
588
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
589
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
590
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
591
|
+
alias="overagePrices", default=None
|
|
592
|
+
)
|
|
593
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
594
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
595
|
+
alias="defaultTrialConfig", default=None
|
|
596
|
+
)
|
|
597
|
+
|
|
598
|
+
|
|
599
|
+
class PlanFragmentProduct(ProductFragment):
|
|
600
|
+
pass
|
|
601
|
+
|
|
602
|
+
|
|
603
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
604
|
+
ref_id: str = Field(alias="refId")
|
|
605
|
+
display_name: str = Field(alias="displayName")
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
609
|
+
pass
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
613
|
+
pass
|
|
614
|
+
|
|
615
|
+
|
|
616
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
617
|
+
pass
|
|
618
|
+
|
|
619
|
+
|
|
620
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
621
|
+
pass
|
|
622
|
+
|
|
623
|
+
|
|
624
|
+
class PlanFragmentPrices(PriceFragment):
|
|
625
|
+
pass
|
|
626
|
+
|
|
627
|
+
|
|
628
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
629
|
+
pass
|
|
630
|
+
|
|
631
|
+
|
|
632
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
633
|
+
duration: float
|
|
634
|
+
units: TrialPeriodUnits
|
|
635
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
636
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
637
|
+
alias="trialEndBehavior", default=None
|
|
638
|
+
)
|
|
639
|
+
|
|
640
|
+
|
|
641
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
642
|
+
limit: float
|
|
643
|
+
|
|
644
|
+
|
|
499
645
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
500
646
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
501
647
|
alias="subscriptionScheduleType"
|
|
@@ -608,215 +754,69 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel
|
|
|
608
754
|
] = Field(alias="billableFeatures", default=None)
|
|
609
755
|
addons: Optional[
|
|
610
756
|
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
611
|
-
] = Field(default=None)
|
|
612
|
-
price_overrides: Optional[
|
|
613
|
-
List[
|
|
614
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
615
|
-
]
|
|
616
|
-
] = Field(alias="priceOverrides", default=None)
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
620
|
-
BaseModel
|
|
621
|
-
):
|
|
622
|
-
feature_id: str = Field(alias="featureId")
|
|
623
|
-
quantity: float
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
627
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
628
|
-
quantity: float
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
632
|
-
BaseModel
|
|
633
|
-
):
|
|
634
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
635
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
636
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
640
|
-
BaseModel
|
|
641
|
-
):
|
|
642
|
-
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
643
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
644
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
648
|
-
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
649
|
-
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
650
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
class CustomerResourceFragment(BaseModel):
|
|
654
|
-
resource_id: str = Field(alias="resourceId")
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
658
|
-
billing_id: str = Field(alias="billingId")
|
|
659
|
-
status: SubscriptionInvoiceStatus
|
|
660
|
-
created_at: Any = Field(alias="createdAt")
|
|
661
|
-
due_date: Optional[Any] = Field(alias="dueDate", default=None)
|
|
662
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
663
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
664
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
665
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
666
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
667
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
668
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
669
|
-
alias="billingReason", default=None
|
|
670
|
-
)
|
|
671
|
-
currency: Optional[str] = Field(default=None)
|
|
672
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
673
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
674
|
-
alias="subTotalExcludingTax", default=None
|
|
675
|
-
)
|
|
676
|
-
total: Optional[float] = Field(default=None)
|
|
677
|
-
total_excluding_tax: Optional[float] = Field(
|
|
678
|
-
alias="totalExcludingTax", default=None
|
|
679
|
-
)
|
|
680
|
-
tax: Optional[float] = Field(default=None)
|
|
681
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
682
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
class ProductFragment(BaseModel):
|
|
686
|
-
ref_id: str = Field(alias="refId")
|
|
687
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
688
|
-
description: Optional[str] = Field(default=None)
|
|
689
|
-
additional_meta_data: Optional[Any] = Field(
|
|
690
|
-
alias="additionalMetaData", default=None
|
|
691
|
-
)
|
|
692
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
696
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
697
|
-
alias="downgradePlan", default=None
|
|
698
|
-
)
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
702
|
-
ref_id: str = Field(alias="refId")
|
|
703
|
-
display_name: str = Field(alias="displayName")
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
707
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
708
|
-
display_name: str = Field(alias="displayName")
|
|
709
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
710
|
-
default=None
|
|
711
|
-
)
|
|
712
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
716
|
-
pass
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
720
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
721
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
class PlanFragment(BaseModel):
|
|
725
|
-
id: Any
|
|
726
|
-
ref_id: str = Field(alias="refId")
|
|
727
|
-
display_name: str = Field(alias="displayName")
|
|
728
|
-
description: Optional[str] = Field(default=None)
|
|
729
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
730
|
-
version_number: int = Field(alias="versionNumber")
|
|
731
|
-
additional_meta_data: Optional[Any] = Field(
|
|
732
|
-
alias="additionalMetaData", default=None
|
|
733
|
-
)
|
|
734
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
735
|
-
alias="hiddenFromWidgets", default=None
|
|
736
|
-
)
|
|
737
|
-
product: "PlanFragmentProduct"
|
|
738
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
739
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
740
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
741
|
-
alias="inheritedEntitlements", default=None
|
|
742
|
-
)
|
|
743
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
744
|
-
alias="compatibleAddons", default=None
|
|
745
|
-
)
|
|
746
|
-
compatible_package_groups: Optional[
|
|
747
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
748
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
749
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
750
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
751
|
-
alias="overagePrices", default=None
|
|
752
|
-
)
|
|
753
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
754
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
755
|
-
alias="defaultTrialConfig", default=None
|
|
756
|
-
)
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
class PlanFragmentProduct(ProductFragment):
|
|
760
|
-
pass
|
|
757
|
+
] = Field(default=None)
|
|
758
|
+
price_overrides: Optional[
|
|
759
|
+
List[
|
|
760
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
761
|
+
]
|
|
762
|
+
] = Field(alias="priceOverrides", default=None)
|
|
761
763
|
|
|
762
764
|
|
|
763
|
-
class
|
|
764
|
-
|
|
765
|
-
|
|
765
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
766
|
+
BaseModel
|
|
767
|
+
):
|
|
768
|
+
feature_id: str = Field(alias="featureId")
|
|
769
|
+
quantity: float
|
|
766
770
|
|
|
767
771
|
|
|
768
|
-
class
|
|
769
|
-
|
|
772
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
773
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
774
|
+
quantity: float
|
|
770
775
|
|
|
771
776
|
|
|
772
|
-
class
|
|
773
|
-
|
|
777
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
778
|
+
BaseModel
|
|
779
|
+
):
|
|
780
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
781
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
782
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
774
783
|
|
|
775
784
|
|
|
776
|
-
class
|
|
777
|
-
|
|
785
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
786
|
+
BaseModel
|
|
787
|
+
):
|
|
788
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
789
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
790
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
778
791
|
|
|
779
792
|
|
|
780
|
-
class
|
|
781
|
-
|
|
793
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
794
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
795
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
796
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
782
797
|
|
|
783
798
|
|
|
784
|
-
class
|
|
785
|
-
|
|
799
|
+
class CustomerResourceFragment(BaseModel):
|
|
800
|
+
resource_id: str = Field(alias="resourceId")
|
|
786
801
|
|
|
787
802
|
|
|
788
|
-
class
|
|
789
|
-
|
|
803
|
+
class TotalPriceFragment(BaseModel):
|
|
804
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
805
|
+
total: "TotalPriceFragmentTotal"
|
|
790
806
|
|
|
791
807
|
|
|
792
|
-
class
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
796
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
797
|
-
alias="trialEndBehavior", default=None
|
|
798
|
-
)
|
|
808
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
809
|
+
amount: float
|
|
810
|
+
currency: Currency
|
|
799
811
|
|
|
800
812
|
|
|
801
|
-
class
|
|
802
|
-
|
|
813
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
814
|
+
amount: float
|
|
815
|
+
currency: Currency
|
|
803
816
|
|
|
804
817
|
|
|
805
|
-
class
|
|
806
|
-
|
|
807
|
-
name: Optional[str] = Field(default=None)
|
|
808
|
-
email: Optional[str] = Field(default=None)
|
|
809
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
810
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
811
|
-
ref_id: str = Field(alias="refId")
|
|
812
|
-
customer_id: str = Field(alias="customerId")
|
|
813
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
814
|
-
additional_meta_data: Optional[Any] = Field(
|
|
815
|
-
alias="additionalMetaData", default=None
|
|
816
|
-
)
|
|
817
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
818
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
819
|
-
)
|
|
818
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
819
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
820
820
|
|
|
821
821
|
|
|
822
822
|
class SubscriptionFragment(BaseModel):
|
|
@@ -1005,12 +1005,45 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
1005
1005
|
)
|
|
1006
1006
|
|
|
1007
1007
|
|
|
1008
|
+
class ZuoraCheckoutCredentialsFragment(BaseModel):
|
|
1009
|
+
publishable_key: str = Field(alias="publishableKey")
|
|
1010
|
+
|
|
1011
|
+
|
|
1008
1012
|
class StripeCheckoutCredentialsFragment(BaseModel):
|
|
1009
1013
|
account_id: Optional[str] = Field(alias="accountId", default=None)
|
|
1010
1014
|
setup_secret: str = Field(alias="setupSecret")
|
|
1011
1015
|
public_key: Optional[str] = Field(alias="publicKey", default=None)
|
|
1012
1016
|
|
|
1013
1017
|
|
|
1018
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
1019
|
+
status: PromotionalEntitlementStatus
|
|
1020
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1021
|
+
feature_id: Any = Field(alias="featureId")
|
|
1022
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1023
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1024
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1025
|
+
alias="resetPeriod", default=None
|
|
1026
|
+
)
|
|
1027
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1028
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1029
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1030
|
+
|
|
1031
|
+
|
|
1032
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1033
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1034
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1035
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1036
|
+
feature_units_plural: Optional[str] = Field(
|
|
1037
|
+
alias="featureUnitsPlural", default=None
|
|
1038
|
+
)
|
|
1039
|
+
display_name: str = Field(alias="displayName")
|
|
1040
|
+
description: Optional[str] = Field(default=None)
|
|
1041
|
+
ref_id: str = Field(alias="refId")
|
|
1042
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1043
|
+
alias="additionalMetaData", default=None
|
|
1044
|
+
)
|
|
1045
|
+
|
|
1046
|
+
|
|
1014
1047
|
class CouponFragment(BaseModel):
|
|
1015
1048
|
id: Any
|
|
1016
1049
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1045,35 +1078,6 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1045
1078
|
status: SyncStatus
|
|
1046
1079
|
|
|
1047
1080
|
|
|
1048
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
1049
|
-
status: PromotionalEntitlementStatus
|
|
1050
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1051
|
-
feature_id: Any = Field(alias="featureId")
|
|
1052
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1053
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1054
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1055
|
-
alias="resetPeriod", default=None
|
|
1056
|
-
)
|
|
1057
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1058
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1059
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1063
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1064
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1065
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1066
|
-
feature_units_plural: Optional[str] = Field(
|
|
1067
|
-
alias="featureUnitsPlural", default=None
|
|
1068
|
-
)
|
|
1069
|
-
display_name: str = Field(alias="displayName")
|
|
1070
|
-
description: Optional[str] = Field(default=None)
|
|
1071
|
-
ref_id: str = Field(alias="refId")
|
|
1072
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1073
|
-
alias="additionalMetaData", default=None
|
|
1074
|
-
)
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
1081
|
class CustomerFragment(SlimCustomerFragment):
|
|
1078
1082
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1079
1083
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1132,10 +1136,6 @@ class CustomerFragmentPromotionalEntitlements(PromotionalEntitlementFragment):
|
|
|
1132
1136
|
pass
|
|
1133
1137
|
|
|
1134
1138
|
|
|
1135
|
-
class ZuoraCheckoutCredentialsFragment(BaseModel):
|
|
1136
|
-
publishable_key: str = Field(alias="publishableKey")
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
1139
|
class CheckoutStateFragment(BaseModel):
|
|
1140
1140
|
configuration: Optional["CheckoutStateFragmentConfiguration"] = Field(default=None)
|
|
1141
1141
|
setup_secret: str = Field(alias="setupSecret")
|
|
@@ -1521,13 +1521,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1521
1521
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1522
1522
|
|
|
1523
1523
|
|
|
1524
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1525
|
-
addon_id: str = Field(alias="addonId")
|
|
1526
|
-
description: Optional[str] = Field(default=None)
|
|
1527
|
-
display_name: str = Field(alias="displayName")
|
|
1528
|
-
quantity: int
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
1524
|
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1532
1525
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1533
1526
|
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
@@ -1563,6 +1556,13 @@ class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
|
1563
1556
|
)
|
|
1564
1557
|
|
|
1565
1558
|
|
|
1559
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1560
|
+
addon_id: str = Field(alias="addonId")
|
|
1561
|
+
description: Optional[str] = Field(default=None)
|
|
1562
|
+
display_name: str = Field(alias="displayName")
|
|
1563
|
+
quantity: int
|
|
1564
|
+
|
|
1565
|
+
|
|
1566
1566
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1567
1567
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1568
1568
|
plan_id: str = Field(alias="planId")
|
|
@@ -1904,41 +1904,6 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1904
1904
|
description: Optional[str] = Field(default=None)
|
|
1905
1905
|
|
|
1906
1906
|
|
|
1907
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1908
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1909
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1910
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1911
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1912
|
-
alias="resetPeriod", default=None
|
|
1913
|
-
)
|
|
1914
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1915
|
-
alias="hiddenFromWidgets", default=None
|
|
1916
|
-
)
|
|
1917
|
-
display_name_override: Optional[str] = Field(
|
|
1918
|
-
alias="displayNameOverride", default=None
|
|
1919
|
-
)
|
|
1920
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
1921
|
-
is_granted: bool = Field(alias="isGranted")
|
|
1922
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1923
|
-
default=None
|
|
1924
|
-
)
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1928
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1929
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1930
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1931
|
-
feature_units_plural: Optional[str] = Field(
|
|
1932
|
-
alias="featureUnitsPlural", default=None
|
|
1933
|
-
)
|
|
1934
|
-
display_name: str = Field(alias="displayName")
|
|
1935
|
-
description: Optional[str] = Field(default=None)
|
|
1936
|
-
ref_id: str = Field(alias="refId")
|
|
1937
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1938
|
-
alias="additionalMetaData", default=None
|
|
1939
|
-
)
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
1907
|
class MockPaywallPriceFragment(BaseModel):
|
|
1943
1908
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1944
1909
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1981,6 +1946,41 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1981
1946
|
display_name: str = Field(alias="displayName")
|
|
1982
1947
|
|
|
1983
1948
|
|
|
1949
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1950
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1951
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1952
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1953
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1954
|
+
alias="resetPeriod", default=None
|
|
1955
|
+
)
|
|
1956
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1957
|
+
alias="hiddenFromWidgets", default=None
|
|
1958
|
+
)
|
|
1959
|
+
display_name_override: Optional[str] = Field(
|
|
1960
|
+
alias="displayNameOverride", default=None
|
|
1961
|
+
)
|
|
1962
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
1963
|
+
is_granted: bool = Field(alias="isGranted")
|
|
1964
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1965
|
+
default=None
|
|
1966
|
+
)
|
|
1967
|
+
|
|
1968
|
+
|
|
1969
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1970
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1971
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1972
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1973
|
+
feature_units_plural: Optional[str] = Field(
|
|
1974
|
+
alias="featureUnitsPlural", default=None
|
|
1975
|
+
)
|
|
1976
|
+
display_name: str = Field(alias="displayName")
|
|
1977
|
+
description: Optional[str] = Field(default=None)
|
|
1978
|
+
ref_id: str = Field(alias="refId")
|
|
1979
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1980
|
+
alias="additionalMetaData", default=None
|
|
1981
|
+
)
|
|
1982
|
+
|
|
1983
|
+
|
|
1984
1984
|
class MockPaywallAddonFragment(BaseModel):
|
|
1985
1985
|
ref_id: str = Field(alias="refId")
|
|
1986
1986
|
display_name: str = Field(alias="displayName")
|
|
@@ -2958,33 +2958,33 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2958
2958
|
|
|
2959
2959
|
|
|
2960
2960
|
AddonDependencyFragment.model_rebuild()
|
|
2961
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2962
2961
|
PriceTierFragment.model_rebuild()
|
|
2963
2962
|
OveragePriceFragment.model_rebuild()
|
|
2963
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2964
2964
|
PriceFragment.model_rebuild()
|
|
2965
2965
|
AddonFragment.model_rebuild()
|
|
2966
2966
|
FeatureFragment.model_rebuild()
|
|
2967
2967
|
EntitlementFragment.model_rebuild()
|
|
2968
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2969
|
-
TotalPriceFragment.model_rebuild()
|
|
2970
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2971
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2972
|
-
CustomerResourceFragment.model_rebuild()
|
|
2973
2968
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2974
|
-
|
|
2969
|
+
SlimCustomerFragment.model_rebuild()
|
|
2970
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2975
2971
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2972
|
+
ProductFragment.model_rebuild()
|
|
2976
2973
|
PlanFragment.model_rebuild()
|
|
2977
|
-
|
|
2974
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2975
|
+
CustomerResourceFragment.model_rebuild()
|
|
2976
|
+
TotalPriceFragment.model_rebuild()
|
|
2977
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2978
2978
|
SubscriptionFragment.model_rebuild()
|
|
2979
2979
|
ApplySubscriptionFragment.model_rebuild()
|
|
2980
2980
|
FontVariantFragment.model_rebuild()
|
|
2981
2981
|
TypographyConfigurationFragment.model_rebuild()
|
|
2982
2982
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2983
|
+
ZuoraCheckoutCredentialsFragment.model_rebuild()
|
|
2983
2984
|
StripeCheckoutCredentialsFragment.model_rebuild()
|
|
2984
|
-
CouponFragment.model_rebuild()
|
|
2985
2985
|
PromotionalEntitlementFragment.model_rebuild()
|
|
2986
|
+
CouponFragment.model_rebuild()
|
|
2986
2987
|
CustomerFragment.model_rebuild()
|
|
2987
|
-
ZuoraCheckoutCredentialsFragment.model_rebuild()
|
|
2988
2988
|
CheckoutStateFragment.model_rebuild()
|
|
2989
2989
|
CreditGrantFragment.model_rebuild()
|
|
2990
2990
|
CreditsBalanceSummaryFragment.model_rebuild()
|
|
@@ -2992,8 +2992,8 @@ CustomerPortalBillingInformationFragment.model_rebuild()
|
|
|
2992
2992
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2993
2993
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2994
2994
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2995
|
-
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2996
2995
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2996
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2997
2997
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2998
2998
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2999
2999
|
CustomerPortalFragment.model_rebuild()
|
|
@@ -3005,8 +3005,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
3005
3005
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
3006
3006
|
LayoutConfigurationFragment.model_rebuild()
|
|
3007
3007
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
3008
|
-
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
3009
3008
|
MockPaywallPriceFragment.model_rebuild()
|
|
3009
|
+
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
3010
3010
|
MockPaywallAddonFragment.model_rebuild()
|
|
3011
3011
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
3012
3012
|
MockPaywallPlanFragment.model_rebuild()
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Generated by ariadne-codegen
|
|
2
|
+
# Source: operations.graphql
|
|
3
|
+
|
|
4
|
+
from typing import List, Optional
|
|
5
|
+
|
|
6
|
+
from stigg._vendors.pydantic import Field
|
|
7
|
+
|
|
8
|
+
from .base_model import BaseModel
|
|
9
|
+
from .enums import EntitlementsStateAccessDeniedReason
|
|
10
|
+
from .fragments import EntitlementFragment
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class GetEntitlementsState(BaseModel):
|
|
14
|
+
entitlements_state: "GetEntitlementsStateEntitlementsState" = Field(
|
|
15
|
+
alias="entitlementsState"
|
|
16
|
+
)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
class GetEntitlementsStateEntitlementsState(BaseModel):
|
|
20
|
+
entitlements: List["GetEntitlementsStateEntitlementsStateEntitlements"]
|
|
21
|
+
access_denied_reason: Optional[EntitlementsStateAccessDeniedReason] = Field(
|
|
22
|
+
alias="accessDeniedReason"
|
|
23
|
+
)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
class GetEntitlementsStateEntitlementsStateEntitlements(EntitlementFragment):
|
|
27
|
+
pass
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
GetEntitlementsState.model_rebuild()
|
|
31
|
+
GetEntitlementsStateEntitlementsState.model_rebuild()
|
|
@@ -106,25 +106,25 @@ 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=a2uqgR2h76C6ESmJ8Q6dkxKUNZZwmE8ps7-wCQ8Nwck,76924
|
|
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
|
|
113
|
-
stigg/generated/async_client.py,sha256=
|
|
113
|
+
stigg/generated/async_client.py,sha256=YYS6C8Xy1X-zyM5TIYWKpsyInRq31GH1WR8dUjBaFQo,188348
|
|
114
114
|
stigg/generated/base_client.py,sha256=nAto-nOqrOHFTLqdRy2ZDpT1afgsqCzf6hTeBh5MyPQ,6674
|
|
115
115
|
stigg/generated/base_model.py,sha256=0rs99bmZqPbltlPVMfhExeA5zD6ATQFaNZVsxGNonI4,635
|
|
116
116
|
stigg/generated/cancel_subscription.py,sha256=pKrMFmKjGIuWvnVCYQ8brWQO9_JeTnfScgGQjztuN-o,457
|
|
117
117
|
stigg/generated/cancel_subscription_updates.py,sha256=T1C9vyppzZi_91pEnIGkHUL3GEsvtf5EMwr1f01tjbM,241
|
|
118
|
-
stigg/generated/client.py,sha256=
|
|
118
|
+
stigg/generated/client.py,sha256=gImxn-q8RfJ4_MTDJhSr2JjCRKWVvHgEm5ofvZdUHEM,187649
|
|
119
119
|
stigg/generated/create_payment_session.py,sha256=VRPT8Bbvb_evFHMav9y_pXWHMVbkRy9csf5SJCCUARk,470
|
|
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=uz0ELcMolFbn8vz4GbOy1HyzaoIrFkGfJ6t9tcyklmA,39018
|
|
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=q7F9pkVGhN2OYFIoJKiXLL0v36LAbA5DvT2jQm1DUXA,108321
|
|
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
|
|
@@ -136,6 +136,7 @@ stigg/generated/get_customer_portal_by_ref_id.py,sha256=k_P5_2HA4xlr46s6KRJ3Y4wr
|
|
|
136
136
|
stigg/generated/get_customer_statistics.py,sha256=4lchx8yhXTJ_Jtjqnn1BySLrcmla46VBUAxT8Jp5NjQ,515
|
|
137
137
|
stigg/generated/get_entitlement.py,sha256=gWJdx41Qu9eYc0ktxkb-r0dtfmdiZJABzPyp2RVHA4w,316
|
|
138
138
|
stigg/generated/get_entitlements.py,sha256=wnCoYCrWWZVgVSpfsXHYgS3agVJADMaZWcUwV7jb3NI,354
|
|
139
|
+
stigg/generated/get_entitlements_state.py,sha256=6sp2qshAXO7FnjXAOVWSxDdp9e7YRdldctIFjLumIuo,863
|
|
139
140
|
stigg/generated/get_mock_paywall.py,sha256=tAI7sp2LWZm850kmHqKWZKfgGNTa1iChl3BIxKq_JvI,762
|
|
140
141
|
stigg/generated/get_paywall.py,sha256=kfgwz9cfpgg4FAcAAhXxOOe5OjAQQraufWNabnAgW5E,280
|
|
141
142
|
stigg/generated/get_products.py,sha256=Zzq8FAAsml-X14PISP9BcS0E8B8J7N5IDSCrnH2vD1g,568
|
|
@@ -168,7 +169,7 @@ stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9e
|
|
|
168
169
|
stigg/generated/unlink_promotional_entitlements_group.py,sha256=8UIRQ0CNvReRfX0LZmDYkRn9mMjZm9n41YG6-p7Z8qU,636
|
|
169
170
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
170
171
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
171
|
-
stigg_api_client_v2-3.
|
|
172
|
-
stigg_api_client_v2-3.
|
|
173
|
-
stigg_api_client_v2-3.
|
|
174
|
-
stigg_api_client_v2-3.
|
|
172
|
+
stigg_api_client_v2-3.84.1.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
173
|
+
stigg_api_client_v2-3.84.1.dist-info/METADATA,sha256=XnoAaHXCrAR3Il56-yqV6ruDmFTByk-xaCsAdhMLZug,2257
|
|
174
|
+
stigg_api_client_v2-3.84.1.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
175
|
+
stigg_api_client_v2-3.84.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|