stigg-api-client-v2 3.93.0__py3-none-any.whl → 3.96.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 +13 -0
- stigg/generated/async_client.py +33 -0
- stigg/generated/client.py +33 -0
- stigg/generated/enums.py +7 -0
- stigg/generated/fragments.py +375 -358
- stigg/generated/get_credit_usage.py +18 -0
- stigg/generated/input_types.py +11 -0
- {stigg_api_client_v2-3.93.0.dist-info → stigg_api_client_v2-3.96.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.93.0.dist-info → stigg_api_client_v2-3.96.0.dist-info}/RECORD +11 -10
- {stigg_api_client_v2-3.93.0.dist-info → stigg_api_client_v2-3.96.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.93.0.dist-info → stigg_api_client_v2-3.96.0.dist-info}/WHEEL +0 -0
stigg/generated/__init__.py
CHANGED
|
@@ -50,6 +50,7 @@ from .enums import (
|
|
|
50
50
|
CouponType,
|
|
51
51
|
CreditGrantType,
|
|
52
52
|
CreditLedgerEventType,
|
|
53
|
+
CreditUsageTimeRange,
|
|
53
54
|
Currency,
|
|
54
55
|
CustomerResourceSortFields,
|
|
55
56
|
CustomerSortFields,
|
|
@@ -199,6 +200,9 @@ from .fragments import (
|
|
|
199
200
|
CreditsBalanceSummaryFragmentBalances,
|
|
200
201
|
CreditsBalanceSummaryFragmentBalancesCurrency,
|
|
201
202
|
CreditsBalanceSummaryFragmentBalancesCurrencyUnits,
|
|
203
|
+
CreditUsageFragment,
|
|
204
|
+
CreditUsageFragmentSeries,
|
|
205
|
+
CreditUsageFragmentSeriesPoints,
|
|
202
206
|
CustomerFragment,
|
|
203
207
|
CustomerFragmentCoupon,
|
|
204
208
|
CustomerFragmentEligibleForTrial,
|
|
@@ -561,6 +565,7 @@ from .get_credit_ledger import (
|
|
|
561
565
|
GetCreditLedgerCreditsLedger,
|
|
562
566
|
GetCreditLedgerCreditsLedgerEvents,
|
|
563
567
|
)
|
|
568
|
+
from .get_credit_usage import GetCreditUsage, GetCreditUsageCreditUsage
|
|
564
569
|
from .get_customer_by_id import GetCustomerById, GetCustomerByIdGetCustomerByRefId
|
|
565
570
|
from .get_customer_portal_by_ref_id import (
|
|
566
571
|
GetCustomerPortalByRefId,
|
|
@@ -686,6 +691,7 @@ from .input_types import (
|
|
|
686
691
|
CreditGrantInput,
|
|
687
692
|
CreditLedgerInput,
|
|
688
693
|
CreditRateInput,
|
|
694
|
+
CreditUsageInput,
|
|
689
695
|
CursorPaging,
|
|
690
696
|
CustomCurrencyInput,
|
|
691
697
|
CustomerBillingInfo,
|
|
@@ -1194,6 +1200,11 @@ __all__ = [
|
|
|
1194
1200
|
"CreditLedgerFragment",
|
|
1195
1201
|
"CreditLedgerInput",
|
|
1196
1202
|
"CreditRateInput",
|
|
1203
|
+
"CreditUsageFragment",
|
|
1204
|
+
"CreditUsageFragmentSeries",
|
|
1205
|
+
"CreditUsageFragmentSeriesPoints",
|
|
1206
|
+
"CreditUsageInput",
|
|
1207
|
+
"CreditUsageTimeRange",
|
|
1197
1208
|
"CreditsBalanceSummaryFragment",
|
|
1198
1209
|
"CreditsBalanceSummaryFragmentBalances",
|
|
1199
1210
|
"CreditsBalanceSummaryFragmentBalancesCurrency",
|
|
@@ -1415,6 +1426,8 @@ __all__ = [
|
|
|
1415
1426
|
"GetCreditLedger",
|
|
1416
1427
|
"GetCreditLedgerCreditsLedger",
|
|
1417
1428
|
"GetCreditLedgerCreditsLedgerEvents",
|
|
1429
|
+
"GetCreditUsage",
|
|
1430
|
+
"GetCreditUsageCreditUsage",
|
|
1418
1431
|
"GetCustomerById",
|
|
1419
1432
|
"GetCustomerByIdGetCustomerByRefId",
|
|
1420
1433
|
"GetCustomerByRefIdInput",
|
stigg/generated/async_client.py
CHANGED
|
@@ -22,6 +22,7 @@ from .get_coupons import GetCoupons
|
|
|
22
22
|
from .get_credit_balance import GetCreditBalance
|
|
23
23
|
from .get_credit_grants import GetCreditGrants
|
|
24
24
|
from .get_credit_ledger import GetCreditLedger
|
|
25
|
+
from .get_credit_usage import GetCreditUsage
|
|
25
26
|
from .get_customer_by_id import GetCustomerById
|
|
26
27
|
from .get_customer_portal_by_ref_id import GetCustomerPortalByRefId
|
|
27
28
|
from .get_customer_statistics import GetCustomerStatistics
|
|
@@ -49,6 +50,7 @@ from .input_types import (
|
|
|
49
50
|
CreditBalanceSummaryInput,
|
|
50
51
|
CreditGrantInput,
|
|
51
52
|
CreditLedgerInput,
|
|
53
|
+
CreditUsageInput,
|
|
52
54
|
CursorPaging,
|
|
53
55
|
CustomerPortalInput,
|
|
54
56
|
DelegateSubscriptionToCustomerInput,
|
|
@@ -6809,3 +6811,34 @@ class AsyncClient(AsyncBaseClient):
|
|
|
6809
6811
|
)
|
|
6810
6812
|
data = self.get_data(response)
|
|
6811
6813
|
return GetCreditLedger.model_validate(data)
|
|
6814
|
+
|
|
6815
|
+
async def get_credit_usage(
|
|
6816
|
+
self, input: CreditUsageInput, **kwargs: Any
|
|
6817
|
+
) -> GetCreditUsage:
|
|
6818
|
+
query = gql(
|
|
6819
|
+
"""
|
|
6820
|
+
query GetCreditUsage($input: CreditUsageInput!) {
|
|
6821
|
+
creditUsage(input: $input) {
|
|
6822
|
+
...CreditUsageFragment
|
|
6823
|
+
}
|
|
6824
|
+
}
|
|
6825
|
+
|
|
6826
|
+
fragment CreditUsageFragment on CreditUsage {
|
|
6827
|
+
series {
|
|
6828
|
+
featureId
|
|
6829
|
+
featureName
|
|
6830
|
+
totalCredits
|
|
6831
|
+
points {
|
|
6832
|
+
timestamp
|
|
6833
|
+
value
|
|
6834
|
+
}
|
|
6835
|
+
}
|
|
6836
|
+
}
|
|
6837
|
+
"""
|
|
6838
|
+
)
|
|
6839
|
+
variables: Dict[str, object] = {"input": input}
|
|
6840
|
+
response = await self.execute(
|
|
6841
|
+
query=query, operation_name="GetCreditUsage", variables=variables, **kwargs
|
|
6842
|
+
)
|
|
6843
|
+
data = self.get_data(response)
|
|
6844
|
+
return GetCreditUsage.model_validate(data)
|
stigg/generated/client.py
CHANGED
|
@@ -22,6 +22,7 @@ from .get_coupons import GetCoupons
|
|
|
22
22
|
from .get_credit_balance import GetCreditBalance
|
|
23
23
|
from .get_credit_grants import GetCreditGrants
|
|
24
24
|
from .get_credit_ledger import GetCreditLedger
|
|
25
|
+
from .get_credit_usage import GetCreditUsage
|
|
25
26
|
from .get_customer_by_id import GetCustomerById
|
|
26
27
|
from .get_customer_portal_by_ref_id import GetCustomerPortalByRefId
|
|
27
28
|
from .get_customer_statistics import GetCustomerStatistics
|
|
@@ -49,6 +50,7 @@ from .input_types import (
|
|
|
49
50
|
CreditBalanceSummaryInput,
|
|
50
51
|
CreditGrantInput,
|
|
51
52
|
CreditLedgerInput,
|
|
53
|
+
CreditUsageInput,
|
|
52
54
|
CursorPaging,
|
|
53
55
|
CustomerPortalInput,
|
|
54
56
|
DelegateSubscriptionToCustomerInput,
|
|
@@ -6803,3 +6805,34 @@ class Client(BaseClient):
|
|
|
6803
6805
|
)
|
|
6804
6806
|
data = self.get_data(response)
|
|
6805
6807
|
return GetCreditLedger.model_validate(data)
|
|
6808
|
+
|
|
6809
|
+
def get_credit_usage(
|
|
6810
|
+
self, input: CreditUsageInput, **kwargs: Any
|
|
6811
|
+
) -> GetCreditUsage:
|
|
6812
|
+
query = gql(
|
|
6813
|
+
"""
|
|
6814
|
+
query GetCreditUsage($input: CreditUsageInput!) {
|
|
6815
|
+
creditUsage(input: $input) {
|
|
6816
|
+
...CreditUsageFragment
|
|
6817
|
+
}
|
|
6818
|
+
}
|
|
6819
|
+
|
|
6820
|
+
fragment CreditUsageFragment on CreditUsage {
|
|
6821
|
+
series {
|
|
6822
|
+
featureId
|
|
6823
|
+
featureName
|
|
6824
|
+
totalCredits
|
|
6825
|
+
points {
|
|
6826
|
+
timestamp
|
|
6827
|
+
value
|
|
6828
|
+
}
|
|
6829
|
+
}
|
|
6830
|
+
}
|
|
6831
|
+
"""
|
|
6832
|
+
)
|
|
6833
|
+
variables: Dict[str, object] = {"input": input}
|
|
6834
|
+
response = self.execute(
|
|
6835
|
+
query=query, operation_name="GetCreditUsage", variables=variables, **kwargs
|
|
6836
|
+
)
|
|
6837
|
+
data = self.get_data(response)
|
|
6838
|
+
return GetCreditUsage.model_validate(data)
|
stigg/generated/enums.py
CHANGED
|
@@ -172,6 +172,13 @@ class CreditLedgerEventType(str, Enum):
|
|
|
172
172
|
CREDITS_GRANTED = "CREDITS_GRANTED"
|
|
173
173
|
|
|
174
174
|
|
|
175
|
+
class CreditUsageTimeRange(str, Enum):
|
|
176
|
+
LAST_DAY = "LAST_DAY"
|
|
177
|
+
LAST_MONTH = "LAST_MONTH"
|
|
178
|
+
LAST_WEEK = "LAST_WEEK"
|
|
179
|
+
LAST_YEAR = "LAST_YEAR"
|
|
180
|
+
|
|
181
|
+
|
|
175
182
|
class Currency(str, Enum):
|
|
176
183
|
AED = "AED"
|
|
177
184
|
ALL = "ALL"
|
stigg/generated/fragments.py
CHANGED
|
@@ -231,89 +231,166 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
231
231
|
pass
|
|
232
232
|
|
|
233
233
|
|
|
234
|
-
class
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
238
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
239
|
-
feature_units_plural: Optional[str] = Field(
|
|
240
|
-
alias="featureUnitsPlural", default=None
|
|
241
|
-
)
|
|
242
|
-
description: Optional[str] = Field(default=None)
|
|
243
|
-
display_name: str = Field(alias="displayName")
|
|
244
|
-
ref_id: str = Field(alias="refId")
|
|
245
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
246
|
-
alias="unitTransformation", default=None
|
|
247
|
-
)
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
class FeatureFragmentUnitTransformation(BaseModel):
|
|
251
|
-
divide: float
|
|
252
|
-
round: UnitTransformationRound
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
class EntitlementFragment(BaseModel):
|
|
256
|
-
typename__: str = Field(alias="__typename")
|
|
257
|
-
is_granted: bool = Field(alias="isGranted")
|
|
258
|
-
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
259
|
-
alias="accessDeniedReason", default=None
|
|
260
|
-
)
|
|
261
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
262
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
263
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
264
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
265
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
266
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
267
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
268
|
-
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
269
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
270
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
271
|
-
alias="entitlementUpdatedAt", default=None
|
|
234
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
235
|
+
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
236
|
+
alias="subscriptionScheduleType"
|
|
272
237
|
)
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
278
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
279
|
-
alias="resetPeriod", default=None
|
|
238
|
+
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
239
|
+
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
240
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
241
|
+
alias="targetPackage", default=None
|
|
280
242
|
)
|
|
281
|
-
|
|
243
|
+
schedule_variables: Optional[
|
|
282
244
|
Annotated[
|
|
283
245
|
Union[
|
|
284
|
-
"
|
|
285
|
-
"
|
|
286
|
-
"
|
|
246
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
247
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
248
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
249
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
250
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
251
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
252
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
253
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
287
254
|
],
|
|
288
255
|
Field(discriminator="typename__"),
|
|
289
256
|
]
|
|
290
|
-
] = Field(alias="
|
|
291
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
257
|
+
] = Field(alias="scheduleVariables", default=None)
|
|
292
258
|
|
|
293
259
|
|
|
294
|
-
class
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
)
|
|
260
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
261
|
+
id: Any
|
|
262
|
+
ref_id: str = Field(alias="refId")
|
|
263
|
+
display_name: str = Field(alias="displayName")
|
|
299
264
|
|
|
300
265
|
|
|
301
|
-
class
|
|
302
|
-
typename__: Literal["
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
)
|
|
266
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
267
|
+
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
268
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
269
|
+
new_quantity: float = Field(alias="newQuantity")
|
|
306
270
|
|
|
307
271
|
|
|
308
|
-
class
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
)
|
|
272
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
273
|
+
BaseModel
|
|
274
|
+
):
|
|
275
|
+
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
276
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
277
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
313
278
|
|
|
314
279
|
|
|
315
|
-
class
|
|
316
|
-
|
|
280
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
281
|
+
BaseModel
|
|
282
|
+
):
|
|
283
|
+
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
284
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
288
|
+
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
292
|
+
BaseModel
|
|
293
|
+
):
|
|
294
|
+
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
295
|
+
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
296
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
297
|
+
billable_features: Optional[
|
|
298
|
+
List[
|
|
299
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
300
|
+
]
|
|
301
|
+
] = Field(alias="billableFeatures", default=None)
|
|
302
|
+
addons: Optional[
|
|
303
|
+
List[
|
|
304
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
305
|
+
]
|
|
306
|
+
] = Field(default=None)
|
|
307
|
+
price_overrides: Optional[
|
|
308
|
+
List[
|
|
309
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
310
|
+
]
|
|
311
|
+
] = Field(alias="priceOverrides", default=None)
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
315
|
+
BaseModel
|
|
316
|
+
):
|
|
317
|
+
feature_id: str = Field(alias="featureId")
|
|
318
|
+
quantity: float
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
322
|
+
BaseModel
|
|
323
|
+
):
|
|
324
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
325
|
+
quantity: float
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
329
|
+
BaseModel
|
|
330
|
+
):
|
|
331
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
332
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
333
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
337
|
+
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
338
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
339
|
+
change_type: PlanChangeType = Field(alias="changeType")
|
|
340
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
341
|
+
billable_features: Optional[
|
|
342
|
+
List[
|
|
343
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
344
|
+
]
|
|
345
|
+
] = Field(alias="billableFeatures", default=None)
|
|
346
|
+
addons: Optional[
|
|
347
|
+
List[
|
|
348
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
349
|
+
]
|
|
350
|
+
] = Field(default=None)
|
|
351
|
+
price_overrides: Optional[
|
|
352
|
+
List[
|
|
353
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
354
|
+
]
|
|
355
|
+
] = Field(alias="priceOverrides", default=None)
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
359
|
+
BaseModel
|
|
360
|
+
):
|
|
361
|
+
feature_id: str = Field(alias="featureId")
|
|
362
|
+
quantity: float
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
366
|
+
BaseModel
|
|
367
|
+
):
|
|
368
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
369
|
+
quantity: float
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
373
|
+
BaseModel
|
|
374
|
+
):
|
|
375
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
376
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
377
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
381
|
+
BaseModel
|
|
382
|
+
):
|
|
383
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
384
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
385
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
389
|
+
BaseModel
|
|
390
|
+
):
|
|
391
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
392
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
393
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
317
394
|
|
|
318
395
|
|
|
319
396
|
class SubscriptionInvoiceFragment(BaseModel):
|
|
@@ -498,27 +575,25 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
498
575
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
499
576
|
|
|
500
577
|
|
|
501
|
-
class
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
class TotalPriceFragment(BaseModel):
|
|
510
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
511
|
-
total: "TotalPriceFragmentTotal"
|
|
578
|
+
class ProductFragment(BaseModel):
|
|
579
|
+
ref_id: str = Field(alias="refId")
|
|
580
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
581
|
+
description: Optional[str] = Field(default=None)
|
|
582
|
+
additional_meta_data: Optional[Any] = Field(
|
|
583
|
+
alias="additionalMetaData", default=None
|
|
584
|
+
)
|
|
585
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
512
586
|
|
|
513
587
|
|
|
514
|
-
class
|
|
515
|
-
|
|
516
|
-
|
|
588
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
589
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
590
|
+
alias="downgradePlan", default=None
|
|
591
|
+
)
|
|
517
592
|
|
|
518
593
|
|
|
519
|
-
class
|
|
520
|
-
|
|
521
|
-
|
|
594
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
595
|
+
ref_id: str = Field(alias="refId")
|
|
596
|
+
display_name: str = Field(alias="displayName")
|
|
522
597
|
|
|
523
598
|
|
|
524
599
|
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
@@ -539,27 +614,6 @@ class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
|
539
614
|
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
540
615
|
|
|
541
616
|
|
|
542
|
-
class ProductFragment(BaseModel):
|
|
543
|
-
ref_id: str = Field(alias="refId")
|
|
544
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
545
|
-
description: Optional[str] = Field(default=None)
|
|
546
|
-
additional_meta_data: Optional[Any] = Field(
|
|
547
|
-
alias="additionalMetaData", default=None
|
|
548
|
-
)
|
|
549
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
553
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
554
|
-
alias="downgradePlan", default=None
|
|
555
|
-
)
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
559
|
-
ref_id: str = Field(alias="refId")
|
|
560
|
-
display_name: str = Field(alias="displayName")
|
|
561
|
-
|
|
562
|
-
|
|
563
617
|
class PlanFragment(BaseModel):
|
|
564
618
|
id: Any
|
|
565
619
|
ref_id: str = Field(alias="refId")
|
|
@@ -658,166 +712,27 @@ class SlimCustomerFragment(BaseModel):
|
|
|
658
712
|
)
|
|
659
713
|
|
|
660
714
|
|
|
661
|
-
class
|
|
662
|
-
|
|
663
|
-
alias="subscriptionScheduleType"
|
|
664
|
-
)
|
|
665
|
-
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
666
|
-
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
667
|
-
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
668
|
-
alias="targetPackage", default=None
|
|
669
|
-
)
|
|
670
|
-
schedule_variables: Optional[
|
|
671
|
-
Annotated[
|
|
672
|
-
Union[
|
|
673
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
674
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
675
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
676
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
677
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
678
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
679
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
680
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
681
|
-
],
|
|
682
|
-
Field(discriminator="typename__"),
|
|
683
|
-
]
|
|
684
|
-
] = Field(alias="scheduleVariables", default=None)
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
688
|
-
id: Any
|
|
689
|
-
ref_id: str = Field(alias="refId")
|
|
690
|
-
display_name: str = Field(alias="displayName")
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
694
|
-
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
695
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
696
|
-
new_quantity: float = Field(alias="newQuantity")
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
700
|
-
BaseModel
|
|
701
|
-
):
|
|
702
|
-
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
703
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
704
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
708
|
-
BaseModel
|
|
709
|
-
):
|
|
710
|
-
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
711
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
715
|
-
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
719
|
-
BaseModel
|
|
720
|
-
):
|
|
721
|
-
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
722
|
-
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
723
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
724
|
-
billable_features: Optional[
|
|
725
|
-
List[
|
|
726
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
727
|
-
]
|
|
728
|
-
] = Field(alias="billableFeatures", default=None)
|
|
729
|
-
addons: Optional[
|
|
730
|
-
List[
|
|
731
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
732
|
-
]
|
|
733
|
-
] = Field(default=None)
|
|
734
|
-
price_overrides: Optional[
|
|
735
|
-
List[
|
|
736
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
737
|
-
]
|
|
738
|
-
] = Field(alias="priceOverrides", default=None)
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
742
|
-
BaseModel
|
|
743
|
-
):
|
|
744
|
-
feature_id: str = Field(alias="featureId")
|
|
745
|
-
quantity: float
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
749
|
-
BaseModel
|
|
750
|
-
):
|
|
751
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
752
|
-
quantity: float
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
756
|
-
BaseModel
|
|
757
|
-
):
|
|
758
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
759
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
760
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
764
|
-
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
765
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
766
|
-
change_type: PlanChangeType = Field(alias="changeType")
|
|
767
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
768
|
-
billable_features: Optional[
|
|
769
|
-
List[
|
|
770
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
771
|
-
]
|
|
772
|
-
] = Field(alias="billableFeatures", default=None)
|
|
773
|
-
addons: Optional[
|
|
774
|
-
List[
|
|
775
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
776
|
-
]
|
|
777
|
-
] = Field(default=None)
|
|
778
|
-
price_overrides: Optional[
|
|
779
|
-
List[
|
|
780
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
781
|
-
]
|
|
782
|
-
] = Field(alias="priceOverrides", default=None)
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
786
|
-
BaseModel
|
|
787
|
-
):
|
|
788
|
-
feature_id: str = Field(alias="featureId")
|
|
789
|
-
quantity: float
|
|
715
|
+
class CustomerResourceFragment(BaseModel):
|
|
716
|
+
resource_id: str = Field(alias="resourceId")
|
|
790
717
|
|
|
791
718
|
|
|
792
|
-
class
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
796
|
-
quantity: float
|
|
719
|
+
class TotalPriceFragment(BaseModel):
|
|
720
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
721
|
+
total: "TotalPriceFragmentTotal"
|
|
797
722
|
|
|
798
723
|
|
|
799
|
-
class
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
803
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
804
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
724
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
725
|
+
amount: float
|
|
726
|
+
currency: Currency
|
|
805
727
|
|
|
806
728
|
|
|
807
|
-
class
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
811
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
812
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
729
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
730
|
+
amount: float
|
|
731
|
+
currency: Currency
|
|
813
732
|
|
|
814
733
|
|
|
815
|
-
class
|
|
816
|
-
|
|
817
|
-
):
|
|
818
|
-
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
819
|
-
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
820
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
734
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
735
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
821
736
|
|
|
822
737
|
|
|
823
738
|
class SubscriptionFragment(BaseModel):
|
|
@@ -903,29 +818,114 @@ class SubscriptionFragmentTotalPrice(TotalPriceFragment):
|
|
|
903
818
|
pass
|
|
904
819
|
|
|
905
820
|
|
|
906
|
-
class SubscriptionFragmentPlan(PlanFragment):
|
|
907
|
-
pass
|
|
821
|
+
class SubscriptionFragmentPlan(PlanFragment):
|
|
822
|
+
pass
|
|
823
|
+
|
|
824
|
+
|
|
825
|
+
class SubscriptionFragmentAddons(BaseModel):
|
|
826
|
+
id: Any
|
|
827
|
+
quantity: float
|
|
828
|
+
addon: "SubscriptionFragmentAddonsAddon"
|
|
829
|
+
|
|
830
|
+
|
|
831
|
+
class SubscriptionFragmentAddonsAddon(AddonFragment):
|
|
832
|
+
pass
|
|
833
|
+
|
|
834
|
+
|
|
835
|
+
class SubscriptionFragmentScheduledUpdates(SubscriptionScheduledUpdateData):
|
|
836
|
+
pass
|
|
837
|
+
|
|
838
|
+
|
|
839
|
+
class SubscriptionFragmentFutureUpdates(SubscriptionFutureUpdateData):
|
|
840
|
+
pass
|
|
841
|
+
|
|
842
|
+
|
|
843
|
+
class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragment):
|
|
844
|
+
pass
|
|
845
|
+
|
|
846
|
+
|
|
847
|
+
class FeatureFragment(BaseModel):
|
|
848
|
+
typename__: str = Field(alias="__typename")
|
|
849
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
850
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
851
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
852
|
+
feature_units_plural: Optional[str] = Field(
|
|
853
|
+
alias="featureUnitsPlural", default=None
|
|
854
|
+
)
|
|
855
|
+
description: Optional[str] = Field(default=None)
|
|
856
|
+
display_name: str = Field(alias="displayName")
|
|
857
|
+
ref_id: str = Field(alias="refId")
|
|
858
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
859
|
+
alias="unitTransformation", default=None
|
|
860
|
+
)
|
|
861
|
+
|
|
862
|
+
|
|
863
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
864
|
+
divide: float
|
|
865
|
+
round: UnitTransformationRound
|
|
908
866
|
|
|
909
867
|
|
|
910
|
-
class
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
868
|
+
class EntitlementFragment(BaseModel):
|
|
869
|
+
typename__: str = Field(alias="__typename")
|
|
870
|
+
is_granted: bool = Field(alias="isGranted")
|
|
871
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
872
|
+
alias="accessDeniedReason", default=None
|
|
873
|
+
)
|
|
874
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
875
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
876
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
877
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
878
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
879
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
880
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
881
|
+
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
882
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
883
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
884
|
+
alias="entitlementUpdatedAt", default=None
|
|
885
|
+
)
|
|
886
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
887
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
888
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
889
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
890
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
891
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
892
|
+
alias="resetPeriod", default=None
|
|
893
|
+
)
|
|
894
|
+
reset_period_configuration: Optional[
|
|
895
|
+
Annotated[
|
|
896
|
+
Union[
|
|
897
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
898
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
899
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
900
|
+
],
|
|
901
|
+
Field(discriminator="typename__"),
|
|
902
|
+
]
|
|
903
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
904
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
914
905
|
|
|
915
906
|
|
|
916
|
-
class
|
|
917
|
-
|
|
907
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
908
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
909
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
910
|
+
alias="monthlyAccordingTo", default=None
|
|
911
|
+
)
|
|
918
912
|
|
|
919
913
|
|
|
920
|
-
class
|
|
921
|
-
|
|
914
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
915
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
916
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
917
|
+
alias="weeklyAccordingTo", default=None
|
|
918
|
+
)
|
|
922
919
|
|
|
923
920
|
|
|
924
|
-
class
|
|
925
|
-
|
|
921
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
922
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
923
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
924
|
+
alias="yearlyAccordingTo", default=None
|
|
925
|
+
)
|
|
926
926
|
|
|
927
927
|
|
|
928
|
-
class
|
|
928
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
929
929
|
pass
|
|
930
930
|
|
|
931
931
|
|
|
@@ -1235,6 +1235,22 @@ class CreditLedgerFragment(BaseModel):
|
|
|
1235
1235
|
credit_currency_id: str = Field(alias="creditCurrencyId")
|
|
1236
1236
|
|
|
1237
1237
|
|
|
1238
|
+
class CreditUsageFragment(BaseModel):
|
|
1239
|
+
series: List["CreditUsageFragmentSeries"]
|
|
1240
|
+
|
|
1241
|
+
|
|
1242
|
+
class CreditUsageFragmentSeries(BaseModel):
|
|
1243
|
+
feature_id: str = Field(alias="featureId")
|
|
1244
|
+
feature_name: str = Field(alias="featureName")
|
|
1245
|
+
total_credits: float = Field(alias="totalCredits")
|
|
1246
|
+
points: List["CreditUsageFragmentSeriesPoints"]
|
|
1247
|
+
|
|
1248
|
+
|
|
1249
|
+
class CreditUsageFragmentSeriesPoints(BaseModel):
|
|
1250
|
+
timestamp: Any
|
|
1251
|
+
value: float
|
|
1252
|
+
|
|
1253
|
+
|
|
1238
1254
|
class CreditsBalanceSummaryFragment(BaseModel):
|
|
1239
1255
|
customer_id: str = Field(alias="customerId")
|
|
1240
1256
|
balances: List["CreditsBalanceSummaryFragmentBalances"]
|
|
@@ -1365,39 +1381,14 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1365
1381
|
pass
|
|
1366
1382
|
|
|
1367
1383
|
|
|
1368
|
-
class
|
|
1369
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1370
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1371
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1372
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1373
|
-
default=None
|
|
1374
|
-
)
|
|
1375
|
-
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1376
|
-
alias="creditRate", default=None
|
|
1377
|
-
)
|
|
1378
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1379
|
-
default=None
|
|
1380
|
-
)
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1384
|
-
amount: float
|
|
1385
|
-
currency: Currency
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1389
|
-
amount: float
|
|
1390
|
-
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1394
|
-
id: Any
|
|
1395
|
-
ref_id: str = Field(alias="refId")
|
|
1384
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1396
1385
|
display_name: str = Field(alias="displayName")
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1386
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1387
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1388
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1389
|
+
period: PromotionalEntitlementPeriod
|
|
1390
|
+
start_date: Any = Field(alias="startDate")
|
|
1391
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1401
1392
|
|
|
1402
1393
|
|
|
1403
1394
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
@@ -1576,6 +1567,41 @@ class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
|
1576
1567
|
quantity: int
|
|
1577
1568
|
|
|
1578
1569
|
|
|
1570
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1571
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1572
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1573
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1574
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1575
|
+
default=None
|
|
1576
|
+
)
|
|
1577
|
+
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1578
|
+
alias="creditRate", default=None
|
|
1579
|
+
)
|
|
1580
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1581
|
+
default=None
|
|
1582
|
+
)
|
|
1583
|
+
|
|
1584
|
+
|
|
1585
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1586
|
+
amount: float
|
|
1587
|
+
currency: Currency
|
|
1588
|
+
|
|
1589
|
+
|
|
1590
|
+
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1591
|
+
amount: float
|
|
1592
|
+
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
1593
|
+
|
|
1594
|
+
|
|
1595
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1596
|
+
id: Any
|
|
1597
|
+
ref_id: str = Field(alias="refId")
|
|
1598
|
+
display_name: str = Field(alias="displayName")
|
|
1599
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1600
|
+
feature_units_plural: Optional[str] = Field(
|
|
1601
|
+
alias="featureUnitsPlural", default=None
|
|
1602
|
+
)
|
|
1603
|
+
|
|
1604
|
+
|
|
1579
1605
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1580
1606
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1581
1607
|
plan_id: str = Field(alias="planId")
|
|
@@ -1680,16 +1706,6 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1680
1706
|
pass
|
|
1681
1707
|
|
|
1682
1708
|
|
|
1683
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1684
|
-
display_name: str = Field(alias="displayName")
|
|
1685
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1686
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1687
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1688
|
-
period: PromotionalEntitlementPeriod
|
|
1689
|
-
start_date: Any = Field(alias="startDate")
|
|
1690
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
1709
|
class CustomerPortalFragment(BaseModel):
|
|
1694
1710
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1695
1711
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -1917,41 +1933,6 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1917
1933
|
description: Optional[str] = Field(default=None)
|
|
1918
1934
|
|
|
1919
1935
|
|
|
1920
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1921
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1922
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1923
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1924
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1925
|
-
alias="resetPeriod", default=None
|
|
1926
|
-
)
|
|
1927
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1928
|
-
alias="hiddenFromWidgets", default=None
|
|
1929
|
-
)
|
|
1930
|
-
display_name_override: Optional[str] = Field(
|
|
1931
|
-
alias="displayNameOverride", default=None
|
|
1932
|
-
)
|
|
1933
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
1934
|
-
is_granted: bool = Field(alias="isGranted")
|
|
1935
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1936
|
-
default=None
|
|
1937
|
-
)
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1941
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1942
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1943
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1944
|
-
feature_units_plural: Optional[str] = Field(
|
|
1945
|
-
alias="featureUnitsPlural", default=None
|
|
1946
|
-
)
|
|
1947
|
-
display_name: str = Field(alias="displayName")
|
|
1948
|
-
description: Optional[str] = Field(default=None)
|
|
1949
|
-
ref_id: str = Field(alias="refId")
|
|
1950
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1951
|
-
alias="additionalMetaData", default=None
|
|
1952
|
-
)
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
1936
|
class MockPaywallPriceFragment(BaseModel):
|
|
1956
1937
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1957
1938
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1994,6 +1975,41 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1994
1975
|
display_name: str = Field(alias="displayName")
|
|
1995
1976
|
|
|
1996
1977
|
|
|
1978
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1979
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1980
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1981
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1982
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1983
|
+
alias="resetPeriod", default=None
|
|
1984
|
+
)
|
|
1985
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1986
|
+
alias="hiddenFromWidgets", default=None
|
|
1987
|
+
)
|
|
1988
|
+
display_name_override: Optional[str] = Field(
|
|
1989
|
+
alias="displayNameOverride", default=None
|
|
1990
|
+
)
|
|
1991
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
1992
|
+
is_granted: bool = Field(alias="isGranted")
|
|
1993
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1994
|
+
default=None
|
|
1995
|
+
)
|
|
1996
|
+
|
|
1997
|
+
|
|
1998
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1999
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
2000
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
2001
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
2002
|
+
feature_units_plural: Optional[str] = Field(
|
|
2003
|
+
alias="featureUnitsPlural", default=None
|
|
2004
|
+
)
|
|
2005
|
+
display_name: str = Field(alias="displayName")
|
|
2006
|
+
description: Optional[str] = Field(default=None)
|
|
2007
|
+
ref_id: str = Field(alias="refId")
|
|
2008
|
+
additional_meta_data: Optional[Any] = Field(
|
|
2009
|
+
alias="additionalMetaData", default=None
|
|
2010
|
+
)
|
|
2011
|
+
|
|
2012
|
+
|
|
1997
2013
|
class MockPaywallAddonFragment(BaseModel):
|
|
1998
2014
|
ref_id: str = Field(alias="refId")
|
|
1999
2015
|
display_name: str = Field(alias="displayName")
|
|
@@ -2976,19 +2992,19 @@ PriceFragment.model_rebuild()
|
|
|
2976
2992
|
OveragePriceFragment.model_rebuild()
|
|
2977
2993
|
PackageEntitlementFragment.model_rebuild()
|
|
2978
2994
|
AddonFragment.model_rebuild()
|
|
2979
|
-
|
|
2980
|
-
EntitlementFragment.model_rebuild()
|
|
2995
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2981
2996
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2982
2997
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2983
|
-
CustomerResourceFragment.model_rebuild()
|
|
2984
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2985
|
-
TotalPriceFragment.model_rebuild()
|
|
2986
|
-
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2987
2998
|
ProductFragment.model_rebuild()
|
|
2999
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2988
3000
|
PlanFragment.model_rebuild()
|
|
2989
3001
|
SlimCustomerFragment.model_rebuild()
|
|
2990
|
-
|
|
3002
|
+
CustomerResourceFragment.model_rebuild()
|
|
3003
|
+
TotalPriceFragment.model_rebuild()
|
|
3004
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2991
3005
|
SubscriptionFragment.model_rebuild()
|
|
3006
|
+
FeatureFragment.model_rebuild()
|
|
3007
|
+
EntitlementFragment.model_rebuild()
|
|
2992
3008
|
ApplySubscriptionFragment.model_rebuild()
|
|
2993
3009
|
FontVariantFragment.model_rebuild()
|
|
2994
3010
|
TypographyConfigurationFragment.model_rebuild()
|
|
@@ -3001,15 +3017,16 @@ StripeCheckoutCredentialsFragment.model_rebuild()
|
|
|
3001
3017
|
CheckoutStateFragment.model_rebuild()
|
|
3002
3018
|
CreditGrantFragment.model_rebuild()
|
|
3003
3019
|
CreditLedgerFragment.model_rebuild()
|
|
3020
|
+
CreditUsageFragment.model_rebuild()
|
|
3004
3021
|
CreditsBalanceSummaryFragment.model_rebuild()
|
|
3005
3022
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
3006
3023
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
3007
3024
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
3008
|
-
|
|
3025
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
3009
3026
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
3010
3027
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
3028
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
3011
3029
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
3012
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
3013
3030
|
CustomerPortalFragment.model_rebuild()
|
|
3014
3031
|
CustomerStatisticsFragment.model_rebuild()
|
|
3015
3032
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -3019,8 +3036,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
3019
3036
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
3020
3037
|
LayoutConfigurationFragment.model_rebuild()
|
|
3021
3038
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
3022
|
-
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
3023
3039
|
MockPaywallPriceFragment.model_rebuild()
|
|
3040
|
+
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
3024
3041
|
MockPaywallAddonFragment.model_rebuild()
|
|
3025
3042
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
3026
3043
|
MockPaywallPlanFragment.model_rebuild()
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Generated by ariadne-codegen
|
|
2
|
+
# Source: operations.graphql
|
|
3
|
+
|
|
4
|
+
from stigg._vendors.pydantic import Field
|
|
5
|
+
|
|
6
|
+
from .base_model import BaseModel
|
|
7
|
+
from .fragments import CreditUsageFragment
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class GetCreditUsage(BaseModel):
|
|
11
|
+
credit_usage: "GetCreditUsageCreditUsage" = Field(alias="creditUsage")
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class GetCreditUsageCreditUsage(CreditUsageFragment):
|
|
15
|
+
pass
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
GetCreditUsage.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -25,6 +25,7 @@ from .enums import (
|
|
|
25
25
|
CouponStatus,
|
|
26
26
|
CouponType,
|
|
27
27
|
CreditGrantType,
|
|
28
|
+
CreditUsageTimeRange,
|
|
28
29
|
Currency,
|
|
29
30
|
CustomerResourceSortFields,
|
|
30
31
|
CustomerSortFields,
|
|
@@ -866,6 +867,16 @@ class CreditRateInput(BaseModel):
|
|
|
866
867
|
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
867
868
|
|
|
868
869
|
|
|
870
|
+
class CreditUsageInput(BaseModel):
|
|
871
|
+
currency_id: Optional[str] = Field(alias="currencyId", default=None)
|
|
872
|
+
customer_id: str = Field(alias="customerId")
|
|
873
|
+
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
874
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
875
|
+
time_range: Optional[CreditUsageTimeRange] = Field(
|
|
876
|
+
alias="timeRange", default=CreditUsageTimeRange.LAST_MONTH
|
|
877
|
+
)
|
|
878
|
+
|
|
879
|
+
|
|
869
880
|
class CursorPaging(BaseModel):
|
|
870
881
|
after: Optional[Any] = None
|
|
871
882
|
before: Optional[Any] = None
|
|
@@ -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=dlPnjkweUhDUHkACunVlBnLWh3k0SPqLNK52IjG7BrU,77889
|
|
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=dRh9IhbtZCkQ2bRrzwRa5uq2JSXMVgO5P7rtPZsQpVE,190770
|
|
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=fr9Aeq8lbyBzpHSaZxBbcH0oq51DPiJ4Bw9mIRH8rqc,190047
|
|
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=1K6mEtm-zwrD9awYdLmovzADI6pMUzSOA2wi6_xhXQ8,39171
|
|
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=q7vCr0awaEWCIU6QxTh9LDnbZqW8sXZ_p2p30ntZG4U,109367
|
|
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
|
|
@@ -132,6 +132,7 @@ stigg/generated/get_coupons.py,sha256=KiDyZKrIWLlXCORhEfwjZWw6urYALU6Z7dUn-1xc3j
|
|
|
132
132
|
stigg/generated/get_credit_balance.py,sha256=b7PFYjOneQVXinRSgI2RQr0bvgPNmpGefljo99jZsFQ,468
|
|
133
133
|
stigg/generated/get_credit_grants.py,sha256=b7AlrlcuDmbV8flz28PvU40eRnQSCdsfZyp_rFDzOPM,944
|
|
134
134
|
stigg/generated/get_credit_ledger.py,sha256=MKfqQJCQF7ymb0d6cwTafQv6S7WrWg3-TAoKxB7JnD8,583
|
|
135
|
+
stigg/generated/get_credit_usage.py,sha256=Wpf63sR6BWCp1WFcsRwHv1TBPb4r1m0Vt11hetZxH6Q,389
|
|
135
136
|
stigg/generated/get_customer_by_id.py,sha256=g_7q4ncmz6GH4Tl9fnlRYh-bxG5vHXsf9EDPEbqvdyA,505
|
|
136
137
|
stigg/generated/get_customer_portal_by_ref_id.py,sha256=k_P5_2HA4xlr46s6KRJ3Y4wr5nLBve592BMMKWlWPTM,461
|
|
137
138
|
stigg/generated/get_customer_statistics.py,sha256=4lchx8yhXTJ_Jtjqnn1BySLrcmla46VBUAxT8Jp5NjQ,515
|
|
@@ -152,7 +153,7 @@ stigg/generated/grant_promotional_entitlements_group.py,sha256=iQwCd07VFaYbsN_E-
|
|
|
152
153
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
153
154
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
154
155
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
155
|
-
stigg/generated/input_types.py,sha256=
|
|
156
|
+
stigg/generated/input_types.py,sha256=6VQPZNcmYuS-3eyGKyvUaHZ3kwK-bCqMDQISh_t0djU,214270
|
|
156
157
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
157
158
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
158
159
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -170,7 +171,7 @@ stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9e
|
|
|
170
171
|
stigg/generated/unlink_promotional_entitlements_group.py,sha256=8UIRQ0CNvReRfX0LZmDYkRn9mMjZm9n41YG6-p7Z8qU,636
|
|
171
172
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
172
173
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
173
|
-
stigg_api_client_v2-3.
|
|
174
|
-
stigg_api_client_v2-3.
|
|
175
|
-
stigg_api_client_v2-3.
|
|
176
|
-
stigg_api_client_v2-3.
|
|
174
|
+
stigg_api_client_v2-3.96.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
175
|
+
stigg_api_client_v2-3.96.0.dist-info/METADATA,sha256=Ojgm0EK-miaAfol0rjpswScJf3lxzTq1HM30SBTZ358,2257
|
|
176
|
+
stigg_api_client_v2-3.96.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
177
|
+
stigg_api_client_v2-3.96.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|