stigg-api-client-v2 3.48.0__py3-none-any.whl → 3.54.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/fragments.py +305 -305
- {stigg_api_client_v2-3.48.0.dist-info → stigg_api_client_v2-3.54.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.48.0.dist-info → stigg_api_client_v2-3.54.0.dist-info}/RECORD +5 -5
- {stigg_api_client_v2-3.48.0.dist-info → stigg_api_client_v2-3.54.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.48.0.dist-info → stigg_api_client_v2-3.54.0.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -116,29 +116,41 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
116
116
|
currency: Currency
|
|
117
117
|
|
|
118
118
|
|
|
119
|
-
class
|
|
119
|
+
class PriceFragment(BaseModel):
|
|
120
120
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
121
121
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
122
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
122
123
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
124
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
125
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
123
126
|
billing_country_code: Optional[str] = Field(
|
|
124
127
|
alias="billingCountryCode", default=None
|
|
125
128
|
)
|
|
126
|
-
price: Optional["
|
|
129
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
130
|
+
credit_rate: Optional["PriceFragmentCreditRate"] = Field(
|
|
131
|
+
alias="creditRate", default=None
|
|
132
|
+
)
|
|
127
133
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
128
|
-
tiers: Optional[List["
|
|
129
|
-
feature: Optional["
|
|
134
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
135
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
136
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
130
137
|
|
|
131
138
|
|
|
132
|
-
class
|
|
139
|
+
class PriceFragmentPrice(BaseModel):
|
|
133
140
|
amount: float
|
|
134
141
|
currency: Currency
|
|
135
142
|
|
|
136
143
|
|
|
137
|
-
class
|
|
144
|
+
class PriceFragmentCreditRate(BaseModel):
|
|
145
|
+
amount: float
|
|
146
|
+
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
138
150
|
pass
|
|
139
151
|
|
|
140
152
|
|
|
141
|
-
class
|
|
153
|
+
class PriceFragmentFeature(BaseModel):
|
|
142
154
|
ref_id: str = Field(alias="refId")
|
|
143
155
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
144
156
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -148,41 +160,29 @@ class OveragePriceFragmentFeature(BaseModel):
|
|
|
148
160
|
description: Optional[str] = Field(default=None)
|
|
149
161
|
|
|
150
162
|
|
|
151
|
-
class
|
|
163
|
+
class OveragePriceFragment(BaseModel):
|
|
152
164
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
153
165
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
154
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
155
166
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
156
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
157
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
158
167
|
billing_country_code: Optional[str] = Field(
|
|
159
168
|
alias="billingCountryCode", default=None
|
|
160
169
|
)
|
|
161
|
-
price: Optional["
|
|
162
|
-
credit_rate: Optional["PriceFragmentCreditRate"] = Field(
|
|
163
|
-
alias="creditRate", default=None
|
|
164
|
-
)
|
|
170
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
165
171
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
166
|
-
tiers: Optional[List["
|
|
167
|
-
feature: Optional["
|
|
168
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
172
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
173
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
169
174
|
|
|
170
175
|
|
|
171
|
-
class
|
|
176
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
172
177
|
amount: float
|
|
173
178
|
currency: Currency
|
|
174
179
|
|
|
175
180
|
|
|
176
|
-
class
|
|
177
|
-
amount: float
|
|
178
|
-
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
class PriceFragmentTiers(PriceTierFragment):
|
|
181
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
182
182
|
pass
|
|
183
183
|
|
|
184
184
|
|
|
185
|
-
class
|
|
185
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
186
186
|
ref_id: str = Field(alias="refId")
|
|
187
187
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
188
188
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -230,177 +230,6 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
230
230
|
pass
|
|
231
231
|
|
|
232
232
|
|
|
233
|
-
class TotalPriceFragment(BaseModel):
|
|
234
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
235
|
-
total: "TotalPriceFragmentTotal"
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
239
|
-
amount: float
|
|
240
|
-
currency: Currency
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
244
|
-
amount: float
|
|
245
|
-
currency: Currency
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
class CustomerResourceFragment(BaseModel):
|
|
249
|
-
resource_id: str = Field(alias="resourceId")
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
253
|
-
billing_id: str = Field(alias="billingId")
|
|
254
|
-
status: SubscriptionInvoiceStatus
|
|
255
|
-
created_at: Any = Field(alias="createdAt")
|
|
256
|
-
due_date: Optional[Any] = Field(alias="dueDate", default=None)
|
|
257
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
258
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
259
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
260
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
261
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
262
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
263
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
264
|
-
alias="billingReason", default=None
|
|
265
|
-
)
|
|
266
|
-
currency: Optional[str] = Field(default=None)
|
|
267
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
268
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
269
|
-
alias="subTotalExcludingTax", default=None
|
|
270
|
-
)
|
|
271
|
-
total: Optional[float] = Field(default=None)
|
|
272
|
-
total_excluding_tax: Optional[float] = Field(
|
|
273
|
-
alias="totalExcludingTax", default=None
|
|
274
|
-
)
|
|
275
|
-
tax: Optional[float] = Field(default=None)
|
|
276
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
277
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
281
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
class ProductFragment(BaseModel):
|
|
285
|
-
ref_id: str = Field(alias="refId")
|
|
286
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
287
|
-
description: Optional[str] = Field(default=None)
|
|
288
|
-
additional_meta_data: Optional[Any] = Field(
|
|
289
|
-
alias="additionalMetaData", default=None
|
|
290
|
-
)
|
|
291
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
295
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
296
|
-
alias="downgradePlan", default=None
|
|
297
|
-
)
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
301
|
-
ref_id: str = Field(alias="refId")
|
|
302
|
-
display_name: str = Field(alias="displayName")
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
306
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
307
|
-
display_name: str = Field(alias="displayName")
|
|
308
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
309
|
-
default=None
|
|
310
|
-
)
|
|
311
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
315
|
-
pass
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
319
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
320
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
class PlanFragment(BaseModel):
|
|
324
|
-
id: Any
|
|
325
|
-
ref_id: str = Field(alias="refId")
|
|
326
|
-
display_name: str = Field(alias="displayName")
|
|
327
|
-
description: Optional[str] = Field(default=None)
|
|
328
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
329
|
-
version_number: int = Field(alias="versionNumber")
|
|
330
|
-
additional_meta_data: Optional[Any] = Field(
|
|
331
|
-
alias="additionalMetaData", default=None
|
|
332
|
-
)
|
|
333
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
334
|
-
alias="hiddenFromWidgets", default=None
|
|
335
|
-
)
|
|
336
|
-
product: "PlanFragmentProduct"
|
|
337
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
338
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
339
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
340
|
-
alias="inheritedEntitlements", default=None
|
|
341
|
-
)
|
|
342
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
343
|
-
alias="compatibleAddons", default=None
|
|
344
|
-
)
|
|
345
|
-
compatible_package_groups: Optional[
|
|
346
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
347
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
348
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
349
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
350
|
-
alias="overagePrices", default=None
|
|
351
|
-
)
|
|
352
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
353
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
354
|
-
alias="defaultTrialConfig", default=None
|
|
355
|
-
)
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
class PlanFragmentProduct(ProductFragment):
|
|
359
|
-
pass
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
363
|
-
ref_id: str = Field(alias="refId")
|
|
364
|
-
display_name: str = Field(alias="displayName")
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
368
|
-
pass
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
372
|
-
pass
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
376
|
-
pass
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
380
|
-
pass
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
class PlanFragmentPrices(PriceFragment):
|
|
384
|
-
pass
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
388
|
-
pass
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
392
|
-
duration: float
|
|
393
|
-
units: TrialPeriodUnits
|
|
394
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
395
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
396
|
-
alias="trialEndBehavior", default=None
|
|
397
|
-
)
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
401
|
-
limit: float
|
|
402
|
-
|
|
403
|
-
|
|
404
233
|
class SlimCustomerFragment(BaseModel):
|
|
405
234
|
id: Any
|
|
406
235
|
name: Optional[str] = Field(default=None)
|
|
@@ -538,38 +367,177 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel
|
|
|
538
367
|
] = Field(alias="priceOverrides", default=None)
|
|
539
368
|
|
|
540
369
|
|
|
541
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
542
|
-
BaseModel
|
|
543
|
-
):
|
|
544
|
-
feature_id: str = Field(alias="featureId")
|
|
545
|
-
quantity: float
|
|
370
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
371
|
+
BaseModel
|
|
372
|
+
):
|
|
373
|
+
feature_id: str = Field(alias="featureId")
|
|
374
|
+
quantity: float
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
378
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
379
|
+
quantity: float
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
383
|
+
BaseModel
|
|
384
|
+
):
|
|
385
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
386
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
387
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
391
|
+
BaseModel
|
|
392
|
+
):
|
|
393
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
394
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
395
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
399
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
400
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
401
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
405
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
class TotalPriceFragment(BaseModel):
|
|
409
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
410
|
+
total: "TotalPriceFragmentTotal"
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
414
|
+
amount: float
|
|
415
|
+
currency: Currency
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
419
|
+
amount: float
|
|
420
|
+
currency: Currency
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
424
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
425
|
+
display_name: str = Field(alias="displayName")
|
|
426
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
427
|
+
default=None
|
|
428
|
+
)
|
|
429
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
433
|
+
pass
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
437
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
438
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
class ProductFragment(BaseModel):
|
|
442
|
+
ref_id: str = Field(alias="refId")
|
|
443
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
444
|
+
description: Optional[str] = Field(default=None)
|
|
445
|
+
additional_meta_data: Optional[Any] = Field(
|
|
446
|
+
alias="additionalMetaData", default=None
|
|
447
|
+
)
|
|
448
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
452
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
453
|
+
alias="downgradePlan", default=None
|
|
454
|
+
)
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
458
|
+
ref_id: str = Field(alias="refId")
|
|
459
|
+
display_name: str = Field(alias="displayName")
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
class PlanFragment(BaseModel):
|
|
463
|
+
id: Any
|
|
464
|
+
ref_id: str = Field(alias="refId")
|
|
465
|
+
display_name: str = Field(alias="displayName")
|
|
466
|
+
description: Optional[str] = Field(default=None)
|
|
467
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
468
|
+
version_number: int = Field(alias="versionNumber")
|
|
469
|
+
additional_meta_data: Optional[Any] = Field(
|
|
470
|
+
alias="additionalMetaData", default=None
|
|
471
|
+
)
|
|
472
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
473
|
+
alias="hiddenFromWidgets", default=None
|
|
474
|
+
)
|
|
475
|
+
product: "PlanFragmentProduct"
|
|
476
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
477
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
478
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
479
|
+
alias="inheritedEntitlements", default=None
|
|
480
|
+
)
|
|
481
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
482
|
+
alias="compatibleAddons", default=None
|
|
483
|
+
)
|
|
484
|
+
compatible_package_groups: Optional[
|
|
485
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
486
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
487
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
488
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
489
|
+
alias="overagePrices", default=None
|
|
490
|
+
)
|
|
491
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
492
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
493
|
+
alias="defaultTrialConfig", default=None
|
|
494
|
+
)
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
class PlanFragmentProduct(ProductFragment):
|
|
498
|
+
pass
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
502
|
+
ref_id: str = Field(alias="refId")
|
|
503
|
+
display_name: str = Field(alias="displayName")
|
|
546
504
|
|
|
547
505
|
|
|
548
|
-
class
|
|
549
|
-
|
|
550
|
-
quantity: float
|
|
506
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
507
|
+
pass
|
|
551
508
|
|
|
552
509
|
|
|
553
|
-
class
|
|
554
|
-
|
|
555
|
-
):
|
|
556
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
557
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
558
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
510
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
511
|
+
pass
|
|
559
512
|
|
|
560
513
|
|
|
561
|
-
class
|
|
562
|
-
|
|
563
|
-
):
|
|
564
|
-
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
565
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
566
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
514
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
515
|
+
pass
|
|
567
516
|
|
|
568
517
|
|
|
569
|
-
class
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
518
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
519
|
+
pass
|
|
520
|
+
|
|
521
|
+
|
|
522
|
+
class PlanFragmentPrices(PriceFragment):
|
|
523
|
+
pass
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
527
|
+
pass
|
|
528
|
+
|
|
529
|
+
|
|
530
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
531
|
+
duration: float
|
|
532
|
+
units: TrialPeriodUnits
|
|
533
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
534
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
535
|
+
alias="trialEndBehavior", default=None
|
|
536
|
+
)
|
|
537
|
+
|
|
538
|
+
|
|
539
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
540
|
+
limit: float
|
|
573
541
|
|
|
574
542
|
|
|
575
543
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
@@ -734,6 +702,38 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
734
702
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
735
703
|
|
|
736
704
|
|
|
705
|
+
class CustomerResourceFragment(BaseModel):
|
|
706
|
+
resource_id: str = Field(alias="resourceId")
|
|
707
|
+
|
|
708
|
+
|
|
709
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
710
|
+
billing_id: str = Field(alias="billingId")
|
|
711
|
+
status: SubscriptionInvoiceStatus
|
|
712
|
+
created_at: Any = Field(alias="createdAt")
|
|
713
|
+
due_date: Optional[Any] = Field(alias="dueDate", default=None)
|
|
714
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
715
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
716
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
717
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
718
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
719
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
720
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
721
|
+
alias="billingReason", default=None
|
|
722
|
+
)
|
|
723
|
+
currency: Optional[str] = Field(default=None)
|
|
724
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
725
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
726
|
+
alias="subTotalExcludingTax", default=None
|
|
727
|
+
)
|
|
728
|
+
total: Optional[float] = Field(default=None)
|
|
729
|
+
total_excluding_tax: Optional[float] = Field(
|
|
730
|
+
alias="totalExcludingTax", default=None
|
|
731
|
+
)
|
|
732
|
+
tax: Optional[float] = Field(default=None)
|
|
733
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
734
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
735
|
+
|
|
736
|
+
|
|
737
737
|
class SubscriptionFragment(BaseModel):
|
|
738
738
|
id: Any
|
|
739
739
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -1005,35 +1005,6 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
1005
1005
|
)
|
|
1006
1006
|
|
|
1007
1007
|
|
|
1008
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
1009
|
-
status: PromotionalEntitlementStatus
|
|
1010
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1011
|
-
feature_id: Any = Field(alias="featureId")
|
|
1012
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1013
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1014
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1015
|
-
alias="resetPeriod", default=None
|
|
1016
|
-
)
|
|
1017
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1018
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1019
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1023
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1024
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1025
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1026
|
-
feature_units_plural: Optional[str] = Field(
|
|
1027
|
-
alias="featureUnitsPlural", default=None
|
|
1028
|
-
)
|
|
1029
|
-
display_name: str = Field(alias="displayName")
|
|
1030
|
-
description: Optional[str] = Field(default=None)
|
|
1031
|
-
ref_id: str = Field(alias="refId")
|
|
1032
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1033
|
-
alias="additionalMetaData", default=None
|
|
1034
|
-
)
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
1008
|
class CouponFragment(BaseModel):
|
|
1038
1009
|
id: Any
|
|
1039
1010
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1068,6 +1039,35 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1068
1039
|
status: SyncStatus
|
|
1069
1040
|
|
|
1070
1041
|
|
|
1042
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
1043
|
+
status: PromotionalEntitlementStatus
|
|
1044
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1045
|
+
feature_id: Any = Field(alias="featureId")
|
|
1046
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1047
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1048
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1049
|
+
alias="resetPeriod", default=None
|
|
1050
|
+
)
|
|
1051
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1052
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1053
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1054
|
+
|
|
1055
|
+
|
|
1056
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1057
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1058
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1059
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1060
|
+
feature_units_plural: Optional[str] = Field(
|
|
1061
|
+
alias="featureUnitsPlural", default=None
|
|
1062
|
+
)
|
|
1063
|
+
display_name: str = Field(alias="displayName")
|
|
1064
|
+
description: Optional[str] = Field(default=None)
|
|
1065
|
+
ref_id: str = Field(alias="refId")
|
|
1066
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1067
|
+
alias="additionalMetaData", default=None
|
|
1068
|
+
)
|
|
1069
|
+
|
|
1070
|
+
|
|
1071
1071
|
class CustomerFragment(SlimCustomerFragment):
|
|
1072
1072
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1073
1073
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1318,21 +1318,39 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1318
1318
|
pass
|
|
1319
1319
|
|
|
1320
1320
|
|
|
1321
|
-
class
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1321
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1322
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1323
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1324
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1325
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1326
|
+
default=None
|
|
1327
|
+
)
|
|
1328
|
+
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1329
|
+
alias="creditRate", default=None
|
|
1330
|
+
)
|
|
1331
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1332
|
+
default=None
|
|
1333
|
+
)
|
|
1329
1334
|
|
|
1330
1335
|
|
|
1331
|
-
class
|
|
1332
|
-
|
|
1333
|
-
|
|
1336
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1337
|
+
amount: float
|
|
1338
|
+
currency: Currency
|
|
1339
|
+
|
|
1340
|
+
|
|
1341
|
+
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1342
|
+
amount: float
|
|
1343
|
+
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
1344
|
+
|
|
1345
|
+
|
|
1346
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1347
|
+
id: Any
|
|
1348
|
+
ref_id: str = Field(alias="refId")
|
|
1334
1349
|
display_name: str = Field(alias="displayName")
|
|
1335
|
-
|
|
1350
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1351
|
+
feature_units_plural: Optional[str] = Field(
|
|
1352
|
+
alias="featureUnitsPlural", default=None
|
|
1353
|
+
)
|
|
1336
1354
|
|
|
1337
1355
|
|
|
1338
1356
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
@@ -1504,39 +1522,11 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1504
1522
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1505
1523
|
|
|
1506
1524
|
|
|
1507
|
-
class
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1511
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1512
|
-
default=None
|
|
1513
|
-
)
|
|
1514
|
-
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1515
|
-
alias="creditRate", default=None
|
|
1516
|
-
)
|
|
1517
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1518
|
-
default=None
|
|
1519
|
-
)
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1523
|
-
amount: float
|
|
1524
|
-
currency: Currency
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1528
|
-
amount: float
|
|
1529
|
-
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1533
|
-
id: Any
|
|
1534
|
-
ref_id: str = Field(alias="refId")
|
|
1525
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1526
|
+
addon_id: str = Field(alias="addonId")
|
|
1527
|
+
description: Optional[str] = Field(default=None)
|
|
1535
1528
|
display_name: str = Field(alias="displayName")
|
|
1536
|
-
|
|
1537
|
-
feature_units_plural: Optional[str] = Field(
|
|
1538
|
-
alias="featureUnitsPlural", default=None
|
|
1539
|
-
)
|
|
1529
|
+
quantity: int
|
|
1540
1530
|
|
|
1541
1531
|
|
|
1542
1532
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
@@ -1643,6 +1633,16 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1643
1633
|
pass
|
|
1644
1634
|
|
|
1645
1635
|
|
|
1636
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1637
|
+
display_name: str = Field(alias="displayName")
|
|
1638
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1639
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1640
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1641
|
+
period: PromotionalEntitlementPeriod
|
|
1642
|
+
start_date: Any = Field(alias="startDate")
|
|
1643
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1644
|
+
|
|
1645
|
+
|
|
1646
1646
|
class CustomerPortalFragment(BaseModel):
|
|
1647
1647
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1648
1648
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -2922,19 +2922,19 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2922
2922
|
AddonDependencyFragment.model_rebuild()
|
|
2923
2923
|
PackageEntitlementFragment.model_rebuild()
|
|
2924
2924
|
PriceTierFragment.model_rebuild()
|
|
2925
|
-
OveragePriceFragment.model_rebuild()
|
|
2926
2925
|
PriceFragment.model_rebuild()
|
|
2926
|
+
OveragePriceFragment.model_rebuild()
|
|
2927
2927
|
AddonFragment.model_rebuild()
|
|
2928
|
-
|
|
2929
|
-
|
|
2930
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2928
|
+
SlimCustomerFragment.model_rebuild()
|
|
2929
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2931
2930
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2932
|
-
|
|
2931
|
+
TotalPriceFragment.model_rebuild()
|
|
2933
2932
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2933
|
+
ProductFragment.model_rebuild()
|
|
2934
2934
|
PlanFragment.model_rebuild()
|
|
2935
|
-
SlimCustomerFragment.model_rebuild()
|
|
2936
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2937
2935
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2936
|
+
CustomerResourceFragment.model_rebuild()
|
|
2937
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2938
2938
|
SubscriptionFragment.model_rebuild()
|
|
2939
2939
|
FeatureFragment.model_rebuild()
|
|
2940
2940
|
EntitlementFragment.model_rebuild()
|
|
@@ -2942,8 +2942,8 @@ ApplySubscriptionFragment.model_rebuild()
|
|
|
2942
2942
|
FontVariantFragment.model_rebuild()
|
|
2943
2943
|
TypographyConfigurationFragment.model_rebuild()
|
|
2944
2944
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2945
|
-
PromotionalEntitlementFragment.model_rebuild()
|
|
2946
2945
|
CouponFragment.model_rebuild()
|
|
2946
|
+
PromotionalEntitlementFragment.model_rebuild()
|
|
2947
2947
|
CustomerFragment.model_rebuild()
|
|
2948
2948
|
CheckoutStateFragment.model_rebuild()
|
|
2949
2949
|
CreditGrantFragment.model_rebuild()
|
|
@@ -2951,11 +2951,11 @@ CreditsBalanceSummaryFragment.model_rebuild()
|
|
|
2951
2951
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2952
2952
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2953
2953
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2954
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2955
|
-
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2956
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2957
2954
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2955
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2956
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2958
2957
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2958
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2959
2959
|
CustomerPortalFragment.model_rebuild()
|
|
2960
2960
|
CustomerStatisticsFragment.model_rebuild()
|
|
2961
2961
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=4wSfEXeZZqMSjsCsSG8baVg3Si8sjzV3bp_unHWHBtQ,3800
|
|
|
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=IzB-7d_4SAEO3-OTzKPmS33rX-Wm3sbzWxRu8AYUMfc,106791
|
|
127
127
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
128
128
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
129
129
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -164,7 +164,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
164
164
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
165
165
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
166
166
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
167
|
-
stigg_api_client_v2-3.
|
|
168
|
-
stigg_api_client_v2-3.
|
|
169
|
-
stigg_api_client_v2-3.
|
|
170
|
-
stigg_api_client_v2-3.
|
|
167
|
+
stigg_api_client_v2-3.54.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
168
|
+
stigg_api_client_v2-3.54.0.dist-info/METADATA,sha256=x320ms5qroCUBvJiXIiMrBW4igDZgsm9dhOYS6RCqzw,2257
|
|
169
|
+
stigg_api_client_v2-3.54.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
170
|
+
stigg_api_client_v2-3.54.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|