stigg-api-client-v2 2.300.0__py3-none-any.whl → 2.303.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 +4 -0
- stigg/generated/enums.py +9 -0
- stigg/generated/fragments.py +293 -293
- stigg/generated/input_types.py +15 -0
- {stigg_api_client_v2-2.300.0.dist-info → stigg_api_client_v2-2.303.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.300.0.dist-info → stigg_api_client_v2-2.303.0.dist-info}/RECORD +8 -8
- {stigg_api_client_v2-2.300.0.dist-info → stigg_api_client_v2-2.303.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.300.0.dist-info → stigg_api_client_v2-2.303.0.dist-info}/WHEEL +0 -0
stigg/generated/__init__.py
CHANGED
|
@@ -130,6 +130,7 @@ from .enums import (
|
|
|
130
130
|
UsageMeasurementSortFields,
|
|
131
131
|
UsageUpdateBehavior,
|
|
132
132
|
VendorIdentifier,
|
|
133
|
+
VendorType,
|
|
133
134
|
WeeklyAccordingTo,
|
|
134
135
|
WidgetType,
|
|
135
136
|
YearlyAccordingTo,
|
|
@@ -705,6 +706,7 @@ from .input_types import (
|
|
|
705
706
|
InitAddStripeCustomerPaymentMethodInput,
|
|
706
707
|
IntegrationFilter,
|
|
707
708
|
IntegrationSort,
|
|
709
|
+
IntegrationVendorTypeFilterComparison,
|
|
708
710
|
IntFieldComparison,
|
|
709
711
|
IntFieldComparisonBetween,
|
|
710
712
|
InviteMembersInput,
|
|
@@ -1321,6 +1323,7 @@ __all__ = [
|
|
|
1321
1323
|
"IntegrationFilter",
|
|
1322
1324
|
"IntegrationSort",
|
|
1323
1325
|
"IntegrationSortFields",
|
|
1326
|
+
"IntegrationVendorTypeFilterComparison",
|
|
1324
1327
|
"InviteMembersInput",
|
|
1325
1328
|
"InvoiceLineItemType",
|
|
1326
1329
|
"LayoutConfigurationFragment",
|
|
@@ -1811,6 +1814,7 @@ __all__ = [
|
|
|
1811
1814
|
"ValidateMergeEnvironmentInput",
|
|
1812
1815
|
"VendorIdentifier",
|
|
1813
1816
|
"VendorIdentifierFilterComparison",
|
|
1817
|
+
"VendorType",
|
|
1814
1818
|
"WeeklyAccordingTo",
|
|
1815
1819
|
"WeeklyResetPeriodConfigInput",
|
|
1816
1820
|
"WidgetConfigurationUpdateInput",
|
stigg/generated/enums.py
CHANGED
|
@@ -728,6 +728,7 @@ class IntegrationSortFields(str, Enum):
|
|
|
728
728
|
environmentId = "environmentId"
|
|
729
729
|
id = "id"
|
|
730
730
|
vendorIdentifier = "vendorIdentifier"
|
|
731
|
+
vendorType = "vendorType"
|
|
731
732
|
|
|
732
733
|
|
|
733
734
|
class InvoiceLineItemType(str, Enum):
|
|
@@ -1160,6 +1161,14 @@ class VendorIdentifier(str, Enum):
|
|
|
1160
1161
|
ZUORA = "ZUORA"
|
|
1161
1162
|
|
|
1162
1163
|
|
|
1164
|
+
class VendorType(str, Enum):
|
|
1165
|
+
AUTH = "AUTH"
|
|
1166
|
+
BILLING = "BILLING"
|
|
1167
|
+
CRM = "CRM"
|
|
1168
|
+
DATA_EXPORT = "DATA_EXPORT"
|
|
1169
|
+
MARKETPLACE = "MARKETPLACE"
|
|
1170
|
+
|
|
1171
|
+
|
|
1163
1172
|
class WeeklyAccordingTo(str, Enum):
|
|
1164
1173
|
EveryFriday = "EveryFriday"
|
|
1165
1174
|
EveryMonday = "EveryMonday"
|
stigg/generated/fragments.py
CHANGED
|
@@ -59,39 +59,6 @@ class AddonDependencyFragment(BaseModel):
|
|
|
59
59
|
description: Optional[str] = Field(default=None)
|
|
60
60
|
|
|
61
61
|
|
|
62
|
-
class PackageEntitlementFragment(BaseModel):
|
|
63
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
64
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
65
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
66
|
-
feature_id: str = Field(alias="featureId")
|
|
67
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
68
|
-
alias="resetPeriod", default=None
|
|
69
|
-
)
|
|
70
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
71
|
-
alias="hiddenFromWidgets", default=None
|
|
72
|
-
)
|
|
73
|
-
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
74
|
-
display_name_override: Optional[str] = Field(
|
|
75
|
-
alias="displayNameOverride", default=None
|
|
76
|
-
)
|
|
77
|
-
feature: "PackageEntitlementFragmentFeature"
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
class PackageEntitlementFragmentFeature(BaseModel):
|
|
81
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
82
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
83
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
84
|
-
feature_units_plural: Optional[str] = Field(
|
|
85
|
-
alias="featureUnitsPlural", default=None
|
|
86
|
-
)
|
|
87
|
-
display_name: str = Field(alias="displayName")
|
|
88
|
-
description: Optional[str] = Field(default=None)
|
|
89
|
-
ref_id: str = Field(alias="refId")
|
|
90
|
-
additional_meta_data: Optional[Any] = Field(
|
|
91
|
-
alias="additionalMetaData", default=None
|
|
92
|
-
)
|
|
93
|
-
|
|
94
|
-
|
|
95
62
|
class PriceTierFragment(BaseModel):
|
|
96
63
|
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
97
64
|
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
@@ -180,6 +147,39 @@ class PriceFragmentFeature(BaseModel):
|
|
|
180
147
|
description: Optional[str] = Field(default=None)
|
|
181
148
|
|
|
182
149
|
|
|
150
|
+
class PackageEntitlementFragment(BaseModel):
|
|
151
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
152
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
153
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
154
|
+
feature_id: str = Field(alias="featureId")
|
|
155
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
156
|
+
alias="resetPeriod", default=None
|
|
157
|
+
)
|
|
158
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
159
|
+
alias="hiddenFromWidgets", default=None
|
|
160
|
+
)
|
|
161
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
162
|
+
display_name_override: Optional[str] = Field(
|
|
163
|
+
alias="displayNameOverride", default=None
|
|
164
|
+
)
|
|
165
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
169
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
170
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
171
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
172
|
+
feature_units_plural: Optional[str] = Field(
|
|
173
|
+
alias="featureUnitsPlural", default=None
|
|
174
|
+
)
|
|
175
|
+
display_name: str = Field(alias="displayName")
|
|
176
|
+
description: Optional[str] = Field(default=None)
|
|
177
|
+
ref_id: str = Field(alias="refId")
|
|
178
|
+
additional_meta_data: Optional[Any] = Field(
|
|
179
|
+
alias="additionalMetaData", default=None
|
|
180
|
+
)
|
|
181
|
+
|
|
182
|
+
|
|
183
183
|
class AddonFragment(BaseModel):
|
|
184
184
|
id: str
|
|
185
185
|
ref_id: str = Field(alias="refId")
|
|
@@ -215,107 +215,45 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
215
215
|
pass
|
|
216
216
|
|
|
217
217
|
|
|
218
|
-
class
|
|
219
|
-
resource_id: str = Field(alias="resourceId")
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
class SlimCustomerFragment(BaseModel):
|
|
223
|
-
id: str
|
|
224
|
-
name: Optional[str] = Field(default=None)
|
|
225
|
-
email: Optional[str] = Field(default=None)
|
|
226
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
227
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
228
|
-
ref_id: str = Field(alias="refId")
|
|
229
|
-
customer_id: str = Field(alias="customerId")
|
|
230
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
231
|
-
additional_meta_data: Optional[Any] = Field(
|
|
232
|
-
alias="additionalMetaData", default=None
|
|
233
|
-
)
|
|
234
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
235
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
236
|
-
)
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
class TotalPriceFragment(BaseModel):
|
|
240
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
241
|
-
total: "TotalPriceFragmentTotal"
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
245
|
-
amount: float
|
|
246
|
-
currency: Currency
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
250
|
-
amount: float
|
|
251
|
-
currency: Currency
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
255
|
-
billing_id: str = Field(alias="billingId")
|
|
256
|
-
status: SubscriptionInvoiceStatus
|
|
257
|
-
created_at: Any = Field(alias="createdAt")
|
|
258
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
259
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
260
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
261
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
262
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
263
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
264
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
265
|
-
alias="billingReason", default=None
|
|
266
|
-
)
|
|
267
|
-
currency: Optional[str] = Field(default=None)
|
|
268
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
269
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
270
|
-
alias="subTotalExcludingTax", default=None
|
|
271
|
-
)
|
|
272
|
-
total: Optional[float] = Field(default=None)
|
|
273
|
-
total_excluding_tax: Optional[float] = Field(
|
|
274
|
-
alias="totalExcludingTax", default=None
|
|
275
|
-
)
|
|
276
|
-
tax: Optional[float] = Field(default=None)
|
|
277
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
class SubscriptionFutureUpdateData(BaseModel):
|
|
218
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
281
219
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
282
220
|
alias="subscriptionScheduleType"
|
|
283
221
|
)
|
|
284
222
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
285
223
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
286
|
-
target_package: Optional["
|
|
224
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
287
225
|
alias="targetPackage", default=None
|
|
288
226
|
)
|
|
289
227
|
schedule_variables: Optional[
|
|
290
228
|
Annotated[
|
|
291
229
|
Union[
|
|
292
|
-
"
|
|
293
|
-
"
|
|
294
|
-
"
|
|
295
|
-
"
|
|
296
|
-
"
|
|
297
|
-
"
|
|
298
|
-
"
|
|
299
|
-
"
|
|
230
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
231
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
232
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
233
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
234
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
235
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
236
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
237
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
300
238
|
],
|
|
301
239
|
Field(discriminator="typename__"),
|
|
302
240
|
]
|
|
303
241
|
] = Field(alias="scheduleVariables", default=None)
|
|
304
242
|
|
|
305
243
|
|
|
306
|
-
class
|
|
244
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
307
245
|
id: str
|
|
308
246
|
ref_id: str = Field(alias="refId")
|
|
309
247
|
display_name: str = Field(alias="displayName")
|
|
310
248
|
|
|
311
249
|
|
|
312
|
-
class
|
|
250
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
313
251
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
314
252
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
315
253
|
new_quantity: float = Field(alias="newQuantity")
|
|
316
254
|
|
|
317
255
|
|
|
318
|
-
class
|
|
256
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
319
257
|
BaseModel
|
|
320
258
|
):
|
|
321
259
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -323,53 +261,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
323
261
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
324
262
|
|
|
325
263
|
|
|
326
|
-
class
|
|
264
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
327
265
|
BaseModel
|
|
328
266
|
):
|
|
329
267
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
330
268
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
331
269
|
|
|
332
270
|
|
|
333
|
-
class
|
|
271
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
334
272
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
335
273
|
|
|
336
274
|
|
|
337
|
-
class
|
|
275
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
276
|
+
BaseModel
|
|
277
|
+
):
|
|
338
278
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
339
279
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
340
280
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
341
281
|
billable_features: Optional[
|
|
342
282
|
List[
|
|
343
|
-
"
|
|
283
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
344
284
|
]
|
|
345
285
|
] = Field(alias="billableFeatures", default=None)
|
|
346
286
|
addons: Optional[
|
|
347
287
|
List[
|
|
348
|
-
"
|
|
288
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
349
289
|
]
|
|
350
290
|
] = Field(default=None)
|
|
351
291
|
price_overrides: Optional[
|
|
352
292
|
List[
|
|
353
|
-
"
|
|
293
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
354
294
|
]
|
|
355
295
|
] = Field(alias="priceOverrides", default=None)
|
|
356
296
|
|
|
357
297
|
|
|
358
|
-
class
|
|
298
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
359
299
|
BaseModel
|
|
360
300
|
):
|
|
361
301
|
feature_id: str = Field(alias="featureId")
|
|
362
302
|
quantity: float
|
|
363
303
|
|
|
364
304
|
|
|
365
|
-
class
|
|
305
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
366
306
|
BaseModel
|
|
367
307
|
):
|
|
368
308
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
369
309
|
quantity: float
|
|
370
310
|
|
|
371
311
|
|
|
372
|
-
class
|
|
312
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
373
313
|
BaseModel
|
|
374
314
|
):
|
|
375
315
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -377,39 +317,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
377
317
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
378
318
|
|
|
379
319
|
|
|
380
|
-
class
|
|
320
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
381
321
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
382
322
|
plan_ref_id: str = Field(alias="planRefId")
|
|
383
323
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
384
324
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
385
325
|
billable_features: Optional[
|
|
386
326
|
List[
|
|
387
|
-
"
|
|
327
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
388
328
|
]
|
|
389
329
|
] = Field(alias="billableFeatures", default=None)
|
|
390
330
|
addons: Optional[
|
|
391
|
-
List[
|
|
331
|
+
List[
|
|
332
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
333
|
+
]
|
|
392
334
|
] = Field(default=None)
|
|
393
335
|
price_overrides: Optional[
|
|
394
336
|
List[
|
|
395
|
-
"
|
|
337
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
396
338
|
]
|
|
397
339
|
] = Field(alias="priceOverrides", default=None)
|
|
398
340
|
|
|
399
341
|
|
|
400
|
-
class
|
|
342
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
401
343
|
BaseModel
|
|
402
344
|
):
|
|
403
345
|
feature_id: str = Field(alias="featureId")
|
|
404
346
|
quantity: float
|
|
405
347
|
|
|
406
348
|
|
|
407
|
-
class
|
|
349
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
350
|
+
BaseModel
|
|
351
|
+
):
|
|
408
352
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
409
353
|
quantity: float
|
|
410
354
|
|
|
411
355
|
|
|
412
|
-
class
|
|
356
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
413
357
|
BaseModel
|
|
414
358
|
):
|
|
415
359
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -417,7 +361,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
417
361
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
418
362
|
|
|
419
363
|
|
|
420
|
-
class
|
|
364
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
421
365
|
BaseModel
|
|
422
366
|
):
|
|
423
367
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -425,31 +369,31 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
425
369
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
426
370
|
|
|
427
371
|
|
|
428
|
-
class
|
|
372
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
373
|
+
BaseModel
|
|
374
|
+
):
|
|
429
375
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
430
376
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
431
377
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
432
378
|
|
|
433
379
|
|
|
434
|
-
class
|
|
435
|
-
|
|
436
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
437
|
-
description: Optional[str] = Field(default=None)
|
|
438
|
-
additional_meta_data: Optional[Any] = Field(
|
|
439
|
-
alias="additionalMetaData", default=None
|
|
440
|
-
)
|
|
441
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
380
|
+
class CustomerResourceFragment(BaseModel):
|
|
381
|
+
resource_id: str = Field(alias="resourceId")
|
|
442
382
|
|
|
443
383
|
|
|
444
|
-
class
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
)
|
|
384
|
+
class TotalPriceFragment(BaseModel):
|
|
385
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
386
|
+
total: "TotalPriceFragmentTotal"
|
|
448
387
|
|
|
449
388
|
|
|
450
|
-
class
|
|
451
|
-
|
|
452
|
-
|
|
389
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
390
|
+
amount: float
|
|
391
|
+
currency: Currency
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
395
|
+
amount: float
|
|
396
|
+
currency: Currency
|
|
453
397
|
|
|
454
398
|
|
|
455
399
|
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
@@ -470,6 +414,27 @@ class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
|
470
414
|
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
471
415
|
|
|
472
416
|
|
|
417
|
+
class ProductFragment(BaseModel):
|
|
418
|
+
ref_id: str = Field(alias="refId")
|
|
419
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
420
|
+
description: Optional[str] = Field(default=None)
|
|
421
|
+
additional_meta_data: Optional[Any] = Field(
|
|
422
|
+
alias="additionalMetaData", default=None
|
|
423
|
+
)
|
|
424
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
428
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
429
|
+
alias="downgradePlan", default=None
|
|
430
|
+
)
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
434
|
+
ref_id: str = Field(alias="refId")
|
|
435
|
+
display_name: str = Field(alias="displayName")
|
|
436
|
+
|
|
437
|
+
|
|
473
438
|
class PlanFragment(BaseModel):
|
|
474
439
|
id: str
|
|
475
440
|
ref_id: str = Field(alias="refId")
|
|
@@ -551,45 +516,92 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
551
516
|
limit: float
|
|
552
517
|
|
|
553
518
|
|
|
554
|
-
class
|
|
519
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
520
|
+
billing_id: str = Field(alias="billingId")
|
|
521
|
+
status: SubscriptionInvoiceStatus
|
|
522
|
+
created_at: Any = Field(alias="createdAt")
|
|
523
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
524
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
525
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
526
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
527
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
528
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
529
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
530
|
+
alias="billingReason", default=None
|
|
531
|
+
)
|
|
532
|
+
currency: Optional[str] = Field(default=None)
|
|
533
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
534
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
535
|
+
alias="subTotalExcludingTax", default=None
|
|
536
|
+
)
|
|
537
|
+
total: Optional[float] = Field(default=None)
|
|
538
|
+
total_excluding_tax: Optional[float] = Field(
|
|
539
|
+
alias="totalExcludingTax", default=None
|
|
540
|
+
)
|
|
541
|
+
tax: Optional[float] = Field(default=None)
|
|
542
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
543
|
+
|
|
544
|
+
|
|
545
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
546
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
547
|
+
|
|
548
|
+
|
|
549
|
+
class SlimCustomerFragment(BaseModel):
|
|
550
|
+
id: str
|
|
551
|
+
name: Optional[str] = Field(default=None)
|
|
552
|
+
email: Optional[str] = Field(default=None)
|
|
553
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
554
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
555
|
+
ref_id: str = Field(alias="refId")
|
|
556
|
+
customer_id: str = Field(alias="customerId")
|
|
557
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
558
|
+
additional_meta_data: Optional[Any] = Field(
|
|
559
|
+
alias="additionalMetaData", default=None
|
|
560
|
+
)
|
|
561
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
562
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
563
|
+
)
|
|
564
|
+
|
|
565
|
+
|
|
566
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
555
567
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
556
568
|
alias="subscriptionScheduleType"
|
|
557
569
|
)
|
|
558
570
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
559
571
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
560
|
-
target_package: Optional["
|
|
572
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
561
573
|
alias="targetPackage", default=None
|
|
562
574
|
)
|
|
563
575
|
schedule_variables: Optional[
|
|
564
576
|
Annotated[
|
|
565
577
|
Union[
|
|
566
|
-
"
|
|
567
|
-
"
|
|
568
|
-
"
|
|
569
|
-
"
|
|
570
|
-
"
|
|
571
|
-
"
|
|
572
|
-
"
|
|
573
|
-
"
|
|
578
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
579
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
580
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
581
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
582
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
583
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
584
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
585
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
574
586
|
],
|
|
575
587
|
Field(discriminator="typename__"),
|
|
576
588
|
]
|
|
577
589
|
] = Field(alias="scheduleVariables", default=None)
|
|
578
590
|
|
|
579
591
|
|
|
580
|
-
class
|
|
592
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
581
593
|
id: str
|
|
582
594
|
ref_id: str = Field(alias="refId")
|
|
583
595
|
display_name: str = Field(alias="displayName")
|
|
584
596
|
|
|
585
597
|
|
|
586
|
-
class
|
|
598
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
587
599
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
588
600
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
589
601
|
new_quantity: float = Field(alias="newQuantity")
|
|
590
602
|
|
|
591
603
|
|
|
592
|
-
class
|
|
604
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
593
605
|
BaseModel
|
|
594
606
|
):
|
|
595
607
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -597,55 +609,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
597
609
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
598
610
|
|
|
599
611
|
|
|
600
|
-
class
|
|
612
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
601
613
|
BaseModel
|
|
602
614
|
):
|
|
603
615
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
604
616
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
605
617
|
|
|
606
618
|
|
|
607
|
-
class
|
|
619
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
608
620
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
609
621
|
|
|
610
622
|
|
|
611
|
-
class
|
|
612
|
-
BaseModel
|
|
613
|
-
):
|
|
623
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
614
624
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
615
625
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
616
626
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
617
627
|
billable_features: Optional[
|
|
618
628
|
List[
|
|
619
|
-
"
|
|
629
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
620
630
|
]
|
|
621
631
|
] = Field(alias="billableFeatures", default=None)
|
|
622
632
|
addons: Optional[
|
|
623
633
|
List[
|
|
624
|
-
"
|
|
634
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
625
635
|
]
|
|
626
636
|
] = Field(default=None)
|
|
627
637
|
price_overrides: Optional[
|
|
628
638
|
List[
|
|
629
|
-
"
|
|
639
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
630
640
|
]
|
|
631
641
|
] = Field(alias="priceOverrides", default=None)
|
|
632
642
|
|
|
633
643
|
|
|
634
|
-
class
|
|
644
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
635
645
|
BaseModel
|
|
636
646
|
):
|
|
637
647
|
feature_id: str = Field(alias="featureId")
|
|
638
648
|
quantity: float
|
|
639
649
|
|
|
640
650
|
|
|
641
|
-
class
|
|
651
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
642
652
|
BaseModel
|
|
643
653
|
):
|
|
644
654
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
645
655
|
quantity: float
|
|
646
656
|
|
|
647
657
|
|
|
648
|
-
class
|
|
658
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
649
659
|
BaseModel
|
|
650
660
|
):
|
|
651
661
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -653,43 +663,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
653
663
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
654
664
|
|
|
655
665
|
|
|
656
|
-
class
|
|
666
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
657
667
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
658
668
|
plan_ref_id: str = Field(alias="planRefId")
|
|
659
669
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
660
670
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
661
671
|
billable_features: Optional[
|
|
662
672
|
List[
|
|
663
|
-
"
|
|
673
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
664
674
|
]
|
|
665
675
|
] = Field(alias="billableFeatures", default=None)
|
|
666
676
|
addons: Optional[
|
|
667
|
-
List[
|
|
668
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
669
|
-
]
|
|
677
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
670
678
|
] = Field(default=None)
|
|
671
679
|
price_overrides: Optional[
|
|
672
680
|
List[
|
|
673
|
-
"
|
|
681
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
674
682
|
]
|
|
675
683
|
] = Field(alias="priceOverrides", default=None)
|
|
676
684
|
|
|
677
685
|
|
|
678
|
-
class
|
|
686
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
679
687
|
BaseModel
|
|
680
688
|
):
|
|
681
689
|
feature_id: str = Field(alias="featureId")
|
|
682
690
|
quantity: float
|
|
683
691
|
|
|
684
692
|
|
|
685
|
-
class
|
|
686
|
-
BaseModel
|
|
687
|
-
):
|
|
693
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
688
694
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
689
695
|
quantity: float
|
|
690
696
|
|
|
691
697
|
|
|
692
|
-
class
|
|
698
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
693
699
|
BaseModel
|
|
694
700
|
):
|
|
695
701
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -697,7 +703,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
697
703
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
698
704
|
|
|
699
705
|
|
|
700
|
-
class
|
|
706
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
701
707
|
BaseModel
|
|
702
708
|
):
|
|
703
709
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -705,18 +711,12 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
705
711
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
706
712
|
|
|
707
713
|
|
|
708
|
-
class
|
|
709
|
-
BaseModel
|
|
710
|
-
):
|
|
714
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
711
715
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
712
716
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
713
717
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
714
718
|
|
|
715
719
|
|
|
716
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
717
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
718
|
-
|
|
719
|
-
|
|
720
720
|
class SubscriptionFragment(BaseModel):
|
|
721
721
|
id: str
|
|
722
722
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -986,35 +986,6 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
986
986
|
)
|
|
987
987
|
|
|
988
988
|
|
|
989
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
990
|
-
status: PromotionalEntitlementStatus
|
|
991
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
992
|
-
feature_id: str = Field(alias="featureId")
|
|
993
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
994
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
995
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
996
|
-
alias="resetPeriod", default=None
|
|
997
|
-
)
|
|
998
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
999
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1000
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1004
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1005
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1006
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1007
|
-
feature_units_plural: Optional[str] = Field(
|
|
1008
|
-
alias="featureUnitsPlural", default=None
|
|
1009
|
-
)
|
|
1010
|
-
display_name: str = Field(alias="displayName")
|
|
1011
|
-
description: Optional[str] = Field(default=None)
|
|
1012
|
-
ref_id: str = Field(alias="refId")
|
|
1013
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1014
|
-
alias="additionalMetaData", default=None
|
|
1015
|
-
)
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
989
|
class CouponFragment(BaseModel):
|
|
1019
990
|
id: str
|
|
1020
991
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1049,6 +1020,35 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1049
1020
|
status: SyncStatus
|
|
1050
1021
|
|
|
1051
1022
|
|
|
1023
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
1024
|
+
status: PromotionalEntitlementStatus
|
|
1025
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1026
|
+
feature_id: str = Field(alias="featureId")
|
|
1027
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1028
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1029
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1030
|
+
alias="resetPeriod", default=None
|
|
1031
|
+
)
|
|
1032
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1033
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1034
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1035
|
+
|
|
1036
|
+
|
|
1037
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1038
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1039
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1040
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1041
|
+
feature_units_plural: Optional[str] = Field(
|
|
1042
|
+
alias="featureUnitsPlural", default=None
|
|
1043
|
+
)
|
|
1044
|
+
display_name: str = Field(alias="displayName")
|
|
1045
|
+
description: Optional[str] = Field(default=None)
|
|
1046
|
+
ref_id: str = Field(alias="refId")
|
|
1047
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1048
|
+
alias="additionalMetaData", default=None
|
|
1049
|
+
)
|
|
1050
|
+
|
|
1051
|
+
|
|
1052
1052
|
class CustomerFragment(SlimCustomerFragment):
|
|
1053
1053
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1054
1054
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1249,31 +1249,21 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1249
1249
|
pass
|
|
1250
1250
|
|
|
1251
1251
|
|
|
1252
|
-
class
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
)
|
|
1259
|
-
|
|
1260
|
-
default=None
|
|
1261
|
-
)
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1265
|
-
amount: float
|
|
1266
|
-
currency: Currency
|
|
1252
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1253
|
+
display_name: str = Field(alias="displayName")
|
|
1254
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1255
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1256
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1257
|
+
period: PromotionalEntitlementPeriod
|
|
1258
|
+
start_date: Any = Field(alias="startDate")
|
|
1259
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1267
1260
|
|
|
1268
1261
|
|
|
1269
|
-
class
|
|
1270
|
-
|
|
1271
|
-
|
|
1262
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1263
|
+
addon_id: str = Field(alias="addonId")
|
|
1264
|
+
description: Optional[str] = Field(default=None)
|
|
1272
1265
|
display_name: str = Field(alias="displayName")
|
|
1273
|
-
|
|
1274
|
-
feature_units_plural: Optional[str] = Field(
|
|
1275
|
-
alias="featureUnitsPlural", default=None
|
|
1276
|
-
)
|
|
1266
|
+
quantity: int
|
|
1277
1267
|
|
|
1278
1268
|
|
|
1279
1269
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
@@ -1445,11 +1435,31 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1445
1435
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1446
1436
|
|
|
1447
1437
|
|
|
1448
|
-
class
|
|
1449
|
-
|
|
1450
|
-
|
|
1438
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1439
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1440
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1441
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1442
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1443
|
+
default=None
|
|
1444
|
+
)
|
|
1445
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1446
|
+
default=None
|
|
1447
|
+
)
|
|
1448
|
+
|
|
1449
|
+
|
|
1450
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1451
|
+
amount: float
|
|
1452
|
+
currency: Currency
|
|
1453
|
+
|
|
1454
|
+
|
|
1455
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1456
|
+
id: str
|
|
1457
|
+
ref_id: str = Field(alias="refId")
|
|
1451
1458
|
display_name: str = Field(alias="displayName")
|
|
1452
|
-
|
|
1459
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1460
|
+
feature_units_plural: Optional[str] = Field(
|
|
1461
|
+
alias="featureUnitsPlural", default=None
|
|
1462
|
+
)
|
|
1453
1463
|
|
|
1454
1464
|
|
|
1455
1465
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
@@ -1548,16 +1558,6 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1548
1558
|
pass
|
|
1549
1559
|
|
|
1550
1560
|
|
|
1551
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1552
|
-
display_name: str = Field(alias="displayName")
|
|
1553
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1554
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1555
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1556
|
-
period: PromotionalEntitlementPeriod
|
|
1557
|
-
start_date: Any = Field(alias="startDate")
|
|
1558
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
1561
|
class CustomerPortalFragment(BaseModel):
|
|
1562
1562
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1563
1563
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -1785,39 +1785,6 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1785
1785
|
description: Optional[str] = Field(default=None)
|
|
1786
1786
|
|
|
1787
1787
|
|
|
1788
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1789
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1790
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1791
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1792
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1793
|
-
alias="resetPeriod", default=None
|
|
1794
|
-
)
|
|
1795
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1796
|
-
alias="hiddenFromWidgets", default=None
|
|
1797
|
-
)
|
|
1798
|
-
display_name_override: Optional[str] = Field(
|
|
1799
|
-
alias="displayNameOverride", default=None
|
|
1800
|
-
)
|
|
1801
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1802
|
-
default=None
|
|
1803
|
-
)
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1807
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1808
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1809
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1810
|
-
feature_units_plural: Optional[str] = Field(
|
|
1811
|
-
alias="featureUnitsPlural", default=None
|
|
1812
|
-
)
|
|
1813
|
-
display_name: str = Field(alias="displayName")
|
|
1814
|
-
description: Optional[str] = Field(default=None)
|
|
1815
|
-
ref_id: str = Field(alias="refId")
|
|
1816
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1817
|
-
alias="additionalMetaData", default=None
|
|
1818
|
-
)
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
1788
|
class MockPaywallPriceFragment(BaseModel):
|
|
1822
1789
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1823
1790
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1852,6 +1819,39 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1852
1819
|
display_name: str = Field(alias="displayName")
|
|
1853
1820
|
|
|
1854
1821
|
|
|
1822
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1823
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1824
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1825
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1826
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1827
|
+
alias="resetPeriod", default=None
|
|
1828
|
+
)
|
|
1829
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1830
|
+
alias="hiddenFromWidgets", default=None
|
|
1831
|
+
)
|
|
1832
|
+
display_name_override: Optional[str] = Field(
|
|
1833
|
+
alias="displayNameOverride", default=None
|
|
1834
|
+
)
|
|
1835
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1836
|
+
default=None
|
|
1837
|
+
)
|
|
1838
|
+
|
|
1839
|
+
|
|
1840
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1841
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1842
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1843
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1844
|
+
feature_units_plural: Optional[str] = Field(
|
|
1845
|
+
alias="featureUnitsPlural", default=None
|
|
1846
|
+
)
|
|
1847
|
+
display_name: str = Field(alias="displayName")
|
|
1848
|
+
description: Optional[str] = Field(default=None)
|
|
1849
|
+
ref_id: str = Field(alias="refId")
|
|
1850
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1851
|
+
alias="additionalMetaData", default=None
|
|
1852
|
+
)
|
|
1853
|
+
|
|
1854
|
+
|
|
1855
1855
|
class MockPaywallAddonFragment(BaseModel):
|
|
1856
1856
|
ref_id: str = Field(alias="refId")
|
|
1857
1857
|
display_name: str = Field(alias="displayName")
|
|
@@ -2762,21 +2762,21 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2762
2762
|
|
|
2763
2763
|
|
|
2764
2764
|
AddonDependencyFragment.model_rebuild()
|
|
2765
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2766
2765
|
PriceTierFragment.model_rebuild()
|
|
2767
2766
|
OveragePriceFragment.model_rebuild()
|
|
2768
2767
|
PriceFragment.model_rebuild()
|
|
2768
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2769
2769
|
AddonFragment.model_rebuild()
|
|
2770
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2770
2771
|
CustomerResourceFragment.model_rebuild()
|
|
2771
|
-
SlimCustomerFragment.model_rebuild()
|
|
2772
2772
|
TotalPriceFragment.model_rebuild()
|
|
2773
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2774
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2775
|
-
ProductFragment.model_rebuild()
|
|
2776
2773
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2774
|
+
ProductFragment.model_rebuild()
|
|
2777
2775
|
PlanFragment.model_rebuild()
|
|
2778
|
-
|
|
2776
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2779
2777
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2778
|
+
SlimCustomerFragment.model_rebuild()
|
|
2779
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2780
2780
|
SubscriptionFragment.model_rebuild()
|
|
2781
2781
|
FeatureFragment.model_rebuild()
|
|
2782
2782
|
EntitlementFragment.model_rebuild()
|
|
@@ -2784,18 +2784,18 @@ ApplySubscriptionFragment.model_rebuild()
|
|
|
2784
2784
|
FontVariantFragment.model_rebuild()
|
|
2785
2785
|
TypographyConfigurationFragment.model_rebuild()
|
|
2786
2786
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2787
|
-
PromotionalEntitlementFragment.model_rebuild()
|
|
2788
2787
|
CouponFragment.model_rebuild()
|
|
2788
|
+
PromotionalEntitlementFragment.model_rebuild()
|
|
2789
2789
|
CustomerFragment.model_rebuild()
|
|
2790
2790
|
CheckoutStateFragment.model_rebuild()
|
|
2791
2791
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2792
2792
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2793
2793
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2794
|
-
|
|
2795
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2794
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2796
2795
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2796
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2797
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2797
2798
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2798
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2799
2799
|
CustomerPortalFragment.model_rebuild()
|
|
2800
2800
|
CustomerStatisticsFragment.model_rebuild()
|
|
2801
2801
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -2805,8 +2805,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2805
2805
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2806
2806
|
LayoutConfigurationFragment.model_rebuild()
|
|
2807
2807
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2808
|
-
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2809
2808
|
MockPaywallPriceFragment.model_rebuild()
|
|
2809
|
+
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2810
2810
|
MockPaywallAddonFragment.model_rebuild()
|
|
2811
2811
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2812
2812
|
MockPaywallPlanFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -92,6 +92,7 @@ from .enums import (
|
|
|
92
92
|
UsageMeasurementSortFields,
|
|
93
93
|
UsageUpdateBehavior,
|
|
94
94
|
VendorIdentifier,
|
|
95
|
+
VendorType,
|
|
95
96
|
WeeklyAccordingTo,
|
|
96
97
|
WidgetType,
|
|
97
98
|
YearlyAccordingTo,
|
|
@@ -664,6 +665,8 @@ class CreateIntegrationInput(BaseModel):
|
|
|
664
665
|
hubspot_credentials: Optional["HubspotCredentialsInput"] = Field(
|
|
665
666
|
alias="hubspotCredentials", default=None
|
|
666
667
|
)
|
|
668
|
+
integration_id: Optional[str] = Field(alias="integrationId", default=None)
|
|
669
|
+
is_default: Optional[bool] = Field(alias="isDefault", default=None)
|
|
667
670
|
open_fga_credentials: Optional["OpenFGACredentialsInput"] = Field(
|
|
668
671
|
alias="openFGACredentials", default=None
|
|
669
672
|
)
|
|
@@ -2068,6 +2071,9 @@ class IntegrationFilter(BaseModel):
|
|
|
2068
2071
|
vendor_identifier: Optional["VendorIdentifierFilterComparison"] = Field(
|
|
2069
2072
|
alias="vendorIdentifier", default=None
|
|
2070
2073
|
)
|
|
2074
|
+
vendor_type: Optional["IntegrationVendorTypeFilterComparison"] = Field(
|
|
2075
|
+
alias="vendorType", default=None
|
|
2076
|
+
)
|
|
2071
2077
|
|
|
2072
2078
|
|
|
2073
2079
|
class IntegrationSort(BaseModel):
|
|
@@ -2076,6 +2082,13 @@ class IntegrationSort(BaseModel):
|
|
|
2076
2082
|
nulls: Optional[SortNulls] = None
|
|
2077
2083
|
|
|
2078
2084
|
|
|
2085
|
+
class IntegrationVendorTypeFilterComparison(BaseModel):
|
|
2086
|
+
eq: Optional[VendorType] = None
|
|
2087
|
+
in_: Optional[List[VendorType]] = Field(alias="in", default=None)
|
|
2088
|
+
neq: Optional[VendorType] = None
|
|
2089
|
+
not_in: Optional[List[VendorType]] = Field(alias="notIn", default=None)
|
|
2090
|
+
|
|
2091
|
+
|
|
2079
2092
|
class InviteMembersInput(BaseModel):
|
|
2080
2093
|
account_role: Optional[AccountAccessRole] = Field(alias="accountRole", default=None)
|
|
2081
2094
|
invites: List[str]
|
|
@@ -4319,6 +4332,8 @@ class UpdateIntegrationInput(BaseModel):
|
|
|
4319
4332
|
auth_0_credentials: Optional["Auth0CredentialsInput"] = Field(
|
|
4320
4333
|
alias="auth0Credentials", default=None
|
|
4321
4334
|
)
|
|
4335
|
+
integration_id: Optional[str] = Field(alias="integrationId", default=None)
|
|
4336
|
+
is_default: Optional[bool] = Field(alias="isDefault", default=None)
|
|
4322
4337
|
open_fga_credentials: Optional["OpenFGACredentialsInput"] = Field(
|
|
4323
4338
|
alias="openFGACredentials", default=None
|
|
4324
4339
|
)
|
|
@@ -106,7 +106,7 @@ stigg/_vendors/pydantic-2.6.4.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCe
|
|
|
106
106
|
stigg/_vendors/pydantic-2.6.4.dist-info/WHEEL,sha256=TJPnKdtrSue7xZ_AVGkp9YXcvDrobsjBds1du3Nx6dc,87
|
|
107
107
|
stigg/_vendors/pydantic-2.6.4.dist-info/licenses/LICENSE,sha256=qeGG88oWte74QxjnpwFyE1GgDLe4rjpDlLZ7SeNSnvM,1129
|
|
108
108
|
stigg/client.py,sha256=RWrVnxo9zHFXka8KJVE4sMgyek70ispQk0vqOINCvM0,8335
|
|
109
|
-
stigg/generated/__init__.py,sha256=
|
|
109
|
+
stigg/generated/__init__.py,sha256=FxJlqh8IEwKzJECAEGOCLD_sSnKX9mKD4btTX9JS3aA,69004
|
|
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
|
|
@@ -119,11 +119,11 @@ stigg/generated/client.py,sha256=kyCBdkWtzkXjq7jXseqxl41-UAAne0jJiFvcXlCmNzo,169
|
|
|
119
119
|
stigg/generated/create_subscription.py,sha256=vbpBJ_daXHcQDtvU3vbwSr2E7s4VGRHxqPavyTV3Mtk,457
|
|
120
120
|
stigg/generated/delegate_subscription_to_customer.py,sha256=0TgQDO0Hk-z7X7PGtqhvciqa8IjkToK9cpiX3Kqu_UY,561
|
|
121
121
|
stigg/generated/detach_customer_payment_method.py,sha256=ACXlC2xsGaUP723OrayFZQ9SbXxe8TtVUYdG1gqcYFc,523
|
|
122
|
-
stigg/generated/enums.py,sha256=
|
|
122
|
+
stigg/generated/enums.py,sha256=pc9LCxX-JHp05iOwlZI6QCpzXH5kinzBRAvgTHMBXyE,34336
|
|
123
123
|
stigg/generated/estimate_subscription.py,sha256=c0_vg0A_Hi8fdjeGudWZ0WziUF9jcjX5rlRitGMAMaQ,479
|
|
124
124
|
stigg/generated/estimate_subscription_update.py,sha256=ZYIFqqHHDfzhrOn95QnMmPNTXZ7JrKWRlUFzk8fWwKA,528
|
|
125
125
|
stigg/generated/exceptions.py,sha256=OQu-ZYCCV4VyMWTd1HR8gIjIK2CrA_JMlFxqOAJugWY,2411
|
|
126
|
-
stigg/generated/fragments.py,sha256=
|
|
126
|
+
stigg/generated/fragments.py,sha256=SbuJkcxrTCDiop_kx250Dy6_c6O5lv27SQccylnUFKs,100553
|
|
127
127
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
128
128
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
129
129
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -144,7 +144,7 @@ stigg/generated/grant_promotional_entitlements.py,sha256=72PRYuqecL-0SkWb7deygkh
|
|
|
144
144
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
145
145
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
146
146
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
147
|
-
stigg/generated/input_types.py,sha256=
|
|
147
|
+
stigg/generated/input_types.py,sha256=5qbyq8kDEoYPGCkd9xUiH2vKAkzS8wq2OHa5Gohtwl8,191124
|
|
148
148
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
149
149
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
150
150
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -160,7 +160,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
160
160
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
161
161
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
162
162
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
163
|
-
stigg_api_client_v2-2.
|
|
164
|
-
stigg_api_client_v2-2.
|
|
165
|
-
stigg_api_client_v2-2.
|
|
166
|
-
stigg_api_client_v2-2.
|
|
163
|
+
stigg_api_client_v2-2.303.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.303.0.dist-info/METADATA,sha256=jLlXLqOYrT72g6h9GAWa_YOnJsLX7ma5QkUZITADNEI,2258
|
|
165
|
+
stigg_api_client_v2-2.303.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.303.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|