stigg-api-client-v2 2.325.3__py3-none-any.whl → 2.327.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.
- stigg/generated/enums.py +2 -0
- stigg/generated/fragments.py +286 -286
- {stigg_api_client_v2-2.325.3.dist-info → stigg_api_client_v2-2.327.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.325.3.dist-info → stigg_api_client_v2-2.327.0.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-2.325.3.dist-info → stigg_api_client_v2-2.327.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.325.3.dist-info → stigg_api_client_v2-2.327.0.dist-info}/WHEEL +0 -0
stigg/generated/enums.py
CHANGED
|
@@ -459,6 +459,8 @@ class ErrorCode(str, Enum):
|
|
|
459
459
|
"FreePlanCantHaveCompatiblePackageGroupError"
|
|
460
460
|
)
|
|
461
461
|
GraphQLAliasesLimitExceeded = "GraphQLAliasesLimitExceeded"
|
|
462
|
+
GraphQLBatchedOperationsLimitExceeded = "GraphQLBatchedOperationsLimitExceeded"
|
|
463
|
+
GraphQLUnsupportedDirective = "GraphQLUnsupportedDirective"
|
|
462
464
|
HubspotIntegrationError = "HubspotIntegrationError"
|
|
463
465
|
IdentityForbidden = "IdentityForbidden"
|
|
464
466
|
ImportAlreadyInProgress = "ImportAlreadyInProgress"
|
stigg/generated/fragments.py
CHANGED
|
@@ -59,6 +59,39 @@ 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
|
+
|
|
62
95
|
class PriceTierFragment(BaseModel):
|
|
63
96
|
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
64
97
|
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
@@ -147,39 +180,6 @@ class PriceFragmentFeature(BaseModel):
|
|
|
147
180
|
description: Optional[str] = Field(default=None)
|
|
148
181
|
|
|
149
182
|
|
|
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")
|
|
@@ -298,132 +298,71 @@ class EntitlementFragmentFeature(FeatureFragment):
|
|
|
298
298
|
pass
|
|
299
299
|
|
|
300
300
|
|
|
301
|
-
class
|
|
302
|
-
|
|
303
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
304
|
-
description: Optional[str] = Field(default=None)
|
|
305
|
-
additional_meta_data: Optional[Any] = Field(
|
|
306
|
-
alias="additionalMetaData", default=None
|
|
307
|
-
)
|
|
308
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
312
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
313
|
-
alias="downgradePlan", default=None
|
|
314
|
-
)
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
318
|
-
ref_id: str = Field(alias="refId")
|
|
319
|
-
display_name: str = Field(alias="displayName")
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
323
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
324
|
-
display_name: str = Field(alias="displayName")
|
|
325
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
326
|
-
default=None
|
|
327
|
-
)
|
|
328
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
332
|
-
pass
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
336
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
337
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
301
|
+
class CustomerResourceFragment(BaseModel):
|
|
302
|
+
resource_id: str = Field(alias="resourceId")
|
|
338
303
|
|
|
339
304
|
|
|
340
|
-
class
|
|
305
|
+
class SlimCustomerFragment(BaseModel):
|
|
341
306
|
id: str
|
|
307
|
+
name: Optional[str] = Field(default=None)
|
|
308
|
+
email: Optional[str] = Field(default=None)
|
|
309
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
310
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
342
311
|
ref_id: str = Field(alias="refId")
|
|
343
|
-
|
|
344
|
-
description: Optional[str] = Field(default=None)
|
|
312
|
+
customer_id: str = Field(alias="customerId")
|
|
345
313
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
346
|
-
version_number: int = Field(alias="versionNumber")
|
|
347
314
|
additional_meta_data: Optional[Any] = Field(
|
|
348
315
|
alias="additionalMetaData", default=None
|
|
349
316
|
)
|
|
350
|
-
|
|
351
|
-
alias="
|
|
352
|
-
)
|
|
353
|
-
product: "PlanFragmentProduct"
|
|
354
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
355
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
356
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
357
|
-
alias="inheritedEntitlements", default=None
|
|
358
|
-
)
|
|
359
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
360
|
-
alias="compatibleAddons", default=None
|
|
361
|
-
)
|
|
362
|
-
compatible_package_groups: Optional[
|
|
363
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
364
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
365
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
366
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
367
|
-
alias="overagePrices", default=None
|
|
368
|
-
)
|
|
369
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
370
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
371
|
-
alias="defaultTrialConfig", default=None
|
|
317
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
318
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
372
319
|
)
|
|
373
320
|
|
|
374
321
|
|
|
375
|
-
class
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
380
|
-
ref_id: str = Field(alias="refId")
|
|
381
|
-
display_name: str = Field(alias="displayName")
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
385
|
-
pass
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
389
|
-
pass
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
393
|
-
pass
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
397
|
-
pass
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
class PlanFragmentPrices(PriceFragment):
|
|
401
|
-
pass
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
405
|
-
pass
|
|
322
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
323
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
406
324
|
|
|
407
325
|
|
|
408
|
-
class
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
326
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
327
|
+
billing_id: str = Field(alias="billingId")
|
|
328
|
+
status: SubscriptionInvoiceStatus
|
|
329
|
+
created_at: Any = Field(alias="createdAt")
|
|
330
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
331
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
332
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
333
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
334
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
335
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
336
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
337
|
+
alias="billingReason", default=None
|
|
338
|
+
)
|
|
339
|
+
currency: Optional[str] = Field(default=None)
|
|
340
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
341
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
342
|
+
alias="subTotalExcludingTax", default=None
|
|
414
343
|
)
|
|
344
|
+
total: Optional[float] = Field(default=None)
|
|
345
|
+
total_excluding_tax: Optional[float] = Field(
|
|
346
|
+
alias="totalExcludingTax", default=None
|
|
347
|
+
)
|
|
348
|
+
tax: Optional[float] = Field(default=None)
|
|
349
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
350
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
415
351
|
|
|
416
352
|
|
|
417
|
-
class
|
|
418
|
-
|
|
353
|
+
class TotalPriceFragment(BaseModel):
|
|
354
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
355
|
+
total: "TotalPriceFragmentTotal"
|
|
419
356
|
|
|
420
357
|
|
|
421
|
-
class
|
|
422
|
-
|
|
358
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
359
|
+
amount: float
|
|
360
|
+
currency: Currency
|
|
423
361
|
|
|
424
362
|
|
|
425
|
-
class
|
|
426
|
-
|
|
363
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
364
|
+
amount: float
|
|
365
|
+
currency: Currency
|
|
427
366
|
|
|
428
367
|
|
|
429
368
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
@@ -742,63 +681,124 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
742
681
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
743
682
|
|
|
744
683
|
|
|
745
|
-
class
|
|
746
|
-
|
|
747
|
-
|
|
684
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
685
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
686
|
+
display_name: str = Field(alias="displayName")
|
|
687
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
688
|
+
default=None
|
|
689
|
+
)
|
|
690
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
691
|
+
|
|
692
|
+
|
|
693
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
694
|
+
pass
|
|
695
|
+
|
|
696
|
+
|
|
697
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
698
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
699
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
700
|
+
|
|
701
|
+
|
|
702
|
+
class ProductFragment(BaseModel):
|
|
703
|
+
ref_id: str = Field(alias="refId")
|
|
704
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
705
|
+
description: Optional[str] = Field(default=None)
|
|
706
|
+
additional_meta_data: Optional[Any] = Field(
|
|
707
|
+
alias="additionalMetaData", default=None
|
|
708
|
+
)
|
|
709
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
710
|
+
|
|
711
|
+
|
|
712
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
713
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
714
|
+
alias="downgradePlan", default=None
|
|
715
|
+
)
|
|
716
|
+
|
|
717
|
+
|
|
718
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
719
|
+
ref_id: str = Field(alias="refId")
|
|
720
|
+
display_name: str = Field(alias="displayName")
|
|
721
|
+
|
|
722
|
+
|
|
723
|
+
class PlanFragment(BaseModel):
|
|
724
|
+
id: str
|
|
725
|
+
ref_id: str = Field(alias="refId")
|
|
726
|
+
display_name: str = Field(alias="displayName")
|
|
727
|
+
description: Optional[str] = Field(default=None)
|
|
728
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
729
|
+
version_number: int = Field(alias="versionNumber")
|
|
730
|
+
additional_meta_data: Optional[Any] = Field(
|
|
731
|
+
alias="additionalMetaData", default=None
|
|
732
|
+
)
|
|
733
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
734
|
+
alias="hiddenFromWidgets", default=None
|
|
735
|
+
)
|
|
736
|
+
product: "PlanFragmentProduct"
|
|
737
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
738
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
739
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
740
|
+
alias="inheritedEntitlements", default=None
|
|
741
|
+
)
|
|
742
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
743
|
+
alias="compatibleAddons", default=None
|
|
744
|
+
)
|
|
745
|
+
compatible_package_groups: Optional[
|
|
746
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
747
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
748
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
749
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
750
|
+
alias="overagePrices", default=None
|
|
751
|
+
)
|
|
752
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
753
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
754
|
+
alias="defaultTrialConfig", default=None
|
|
755
|
+
)
|
|
756
|
+
|
|
757
|
+
|
|
758
|
+
class PlanFragmentProduct(ProductFragment):
|
|
759
|
+
pass
|
|
760
|
+
|
|
761
|
+
|
|
762
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
763
|
+
ref_id: str = Field(alias="refId")
|
|
764
|
+
display_name: str = Field(alias="displayName")
|
|
765
|
+
|
|
766
|
+
|
|
767
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
768
|
+
pass
|
|
769
|
+
|
|
770
|
+
|
|
771
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
772
|
+
pass
|
|
773
|
+
|
|
774
|
+
|
|
775
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
776
|
+
pass
|
|
777
|
+
|
|
778
|
+
|
|
779
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
780
|
+
pass
|
|
748
781
|
|
|
749
782
|
|
|
750
|
-
class
|
|
751
|
-
|
|
752
|
-
currency: Currency
|
|
783
|
+
class PlanFragmentPrices(PriceFragment):
|
|
784
|
+
pass
|
|
753
785
|
|
|
754
786
|
|
|
755
|
-
class
|
|
756
|
-
|
|
757
|
-
currency: Currency
|
|
787
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
788
|
+
pass
|
|
758
789
|
|
|
759
790
|
|
|
760
|
-
class
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
767
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
768
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
769
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
770
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
771
|
-
alias="billingReason", default=None
|
|
772
|
-
)
|
|
773
|
-
currency: Optional[str] = Field(default=None)
|
|
774
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
775
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
776
|
-
alias="subTotalExcludingTax", default=None
|
|
777
|
-
)
|
|
778
|
-
total: Optional[float] = Field(default=None)
|
|
779
|
-
total_excluding_tax: Optional[float] = Field(
|
|
780
|
-
alias="totalExcludingTax", default=None
|
|
791
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
792
|
+
duration: float
|
|
793
|
+
units: TrialPeriodUnits
|
|
794
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
795
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
796
|
+
alias="trialEndBehavior", default=None
|
|
781
797
|
)
|
|
782
|
-
tax: Optional[float] = Field(default=None)
|
|
783
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
784
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
785
798
|
|
|
786
799
|
|
|
787
|
-
class
|
|
788
|
-
|
|
789
|
-
name: Optional[str] = Field(default=None)
|
|
790
|
-
email: Optional[str] = Field(default=None)
|
|
791
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
792
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
793
|
-
ref_id: str = Field(alias="refId")
|
|
794
|
-
customer_id: str = Field(alias="customerId")
|
|
795
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
796
|
-
additional_meta_data: Optional[Any] = Field(
|
|
797
|
-
alias="additionalMetaData", default=None
|
|
798
|
-
)
|
|
799
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
800
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
801
|
-
)
|
|
800
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
801
|
+
limit: float
|
|
802
802
|
|
|
803
803
|
|
|
804
804
|
class SubscriptionFragment(BaseModel):
|
|
@@ -987,6 +987,35 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
987
987
|
)
|
|
988
988
|
|
|
989
989
|
|
|
990
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
991
|
+
status: PromotionalEntitlementStatus
|
|
992
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
993
|
+
feature_id: str = Field(alias="featureId")
|
|
994
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
995
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
996
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
997
|
+
alias="resetPeriod", default=None
|
|
998
|
+
)
|
|
999
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1000
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1001
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1002
|
+
|
|
1003
|
+
|
|
1004
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1005
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1006
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1007
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1008
|
+
feature_units_plural: Optional[str] = Field(
|
|
1009
|
+
alias="featureUnitsPlural", default=None
|
|
1010
|
+
)
|
|
1011
|
+
display_name: str = Field(alias="displayName")
|
|
1012
|
+
description: Optional[str] = Field(default=None)
|
|
1013
|
+
ref_id: str = Field(alias="refId")
|
|
1014
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1015
|
+
alias="additionalMetaData", default=None
|
|
1016
|
+
)
|
|
1017
|
+
|
|
1018
|
+
|
|
990
1019
|
class CouponFragment(BaseModel):
|
|
991
1020
|
id: str
|
|
992
1021
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1021,35 +1050,6 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1021
1050
|
status: SyncStatus
|
|
1022
1051
|
|
|
1023
1052
|
|
|
1024
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
1025
|
-
status: PromotionalEntitlementStatus
|
|
1026
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1027
|
-
feature_id: str = Field(alias="featureId")
|
|
1028
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1029
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1030
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1031
|
-
alias="resetPeriod", default=None
|
|
1032
|
-
)
|
|
1033
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1034
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1035
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1039
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1040
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1041
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1042
|
-
feature_units_plural: Optional[str] = Field(
|
|
1043
|
-
alias="featureUnitsPlural", default=None
|
|
1044
|
-
)
|
|
1045
|
-
display_name: str = Field(alias="displayName")
|
|
1046
|
-
description: Optional[str] = Field(default=None)
|
|
1047
|
-
ref_id: str = Field(alias="refId")
|
|
1048
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1049
|
-
alias="additionalMetaData", default=None
|
|
1050
|
-
)
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
1053
|
class CustomerFragment(SlimCustomerFragment):
|
|
1054
1054
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1055
1055
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1267,6 +1267,33 @@ class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
|
1267
1267
|
quantity: int
|
|
1268
1268
|
|
|
1269
1269
|
|
|
1270
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1271
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1272
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1273
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1274
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1275
|
+
default=None
|
|
1276
|
+
)
|
|
1277
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1278
|
+
default=None
|
|
1279
|
+
)
|
|
1280
|
+
|
|
1281
|
+
|
|
1282
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1283
|
+
amount: float
|
|
1284
|
+
currency: Currency
|
|
1285
|
+
|
|
1286
|
+
|
|
1287
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1288
|
+
id: str
|
|
1289
|
+
ref_id: str = Field(alias="refId")
|
|
1290
|
+
display_name: str = Field(alias="displayName")
|
|
1291
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1292
|
+
feature_units_plural: Optional[str] = Field(
|
|
1293
|
+
alias="featureUnitsPlural", default=None
|
|
1294
|
+
)
|
|
1295
|
+
|
|
1296
|
+
|
|
1270
1297
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1271
1298
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1272
1299
|
alias="subscriptionScheduleType"
|
|
@@ -1436,33 +1463,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1436
1463
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1437
1464
|
|
|
1438
1465
|
|
|
1439
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1440
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1441
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1442
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1443
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1444
|
-
default=None
|
|
1445
|
-
)
|
|
1446
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1447
|
-
default=None
|
|
1448
|
-
)
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1452
|
-
amount: float
|
|
1453
|
-
currency: Currency
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1457
|
-
id: str
|
|
1458
|
-
ref_id: str = Field(alias="refId")
|
|
1459
|
-
display_name: str = Field(alias="displayName")
|
|
1460
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1461
|
-
feature_units_plural: Optional[str] = Field(
|
|
1462
|
-
alias="featureUnitsPlural", default=None
|
|
1463
|
-
)
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
1466
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1467
1467
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1468
1468
|
plan_id: str = Field(alias="planId")
|
|
@@ -1786,6 +1786,39 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1786
1786
|
description: Optional[str] = Field(default=None)
|
|
1787
1787
|
|
|
1788
1788
|
|
|
1789
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1790
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1791
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1792
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1793
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1794
|
+
alias="resetPeriod", default=None
|
|
1795
|
+
)
|
|
1796
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1797
|
+
alias="hiddenFromWidgets", default=None
|
|
1798
|
+
)
|
|
1799
|
+
display_name_override: Optional[str] = Field(
|
|
1800
|
+
alias="displayNameOverride", default=None
|
|
1801
|
+
)
|
|
1802
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1803
|
+
default=None
|
|
1804
|
+
)
|
|
1805
|
+
|
|
1806
|
+
|
|
1807
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1808
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1809
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1810
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1811
|
+
feature_units_plural: Optional[str] = Field(
|
|
1812
|
+
alias="featureUnitsPlural", default=None
|
|
1813
|
+
)
|
|
1814
|
+
display_name: str = Field(alias="displayName")
|
|
1815
|
+
description: Optional[str] = Field(default=None)
|
|
1816
|
+
ref_id: str = Field(alias="refId")
|
|
1817
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1818
|
+
alias="additionalMetaData", default=None
|
|
1819
|
+
)
|
|
1820
|
+
|
|
1821
|
+
|
|
1789
1822
|
class MockPaywallPriceFragment(BaseModel):
|
|
1790
1823
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1791
1824
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1820,39 +1853,6 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1820
1853
|
display_name: str = Field(alias="displayName")
|
|
1821
1854
|
|
|
1822
1855
|
|
|
1823
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1824
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1825
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1826
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1827
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1828
|
-
alias="resetPeriod", default=None
|
|
1829
|
-
)
|
|
1830
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1831
|
-
alias="hiddenFromWidgets", default=None
|
|
1832
|
-
)
|
|
1833
|
-
display_name_override: Optional[str] = Field(
|
|
1834
|
-
alias="displayNameOverride", default=None
|
|
1835
|
-
)
|
|
1836
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1837
|
-
default=None
|
|
1838
|
-
)
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1842
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1843
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1844
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1845
|
-
feature_units_plural: Optional[str] = Field(
|
|
1846
|
-
alias="featureUnitsPlural", default=None
|
|
1847
|
-
)
|
|
1848
|
-
display_name: str = Field(alias="displayName")
|
|
1849
|
-
description: Optional[str] = Field(default=None)
|
|
1850
|
-
ref_id: str = Field(alias="refId")
|
|
1851
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1852
|
-
alias="additionalMetaData", default=None
|
|
1853
|
-
)
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
1856
|
class MockPaywallAddonFragment(BaseModel):
|
|
1857
1857
|
ref_id: str = Field(alias="refId")
|
|
1858
1858
|
display_name: str = Field(alias="displayName")
|
|
@@ -2763,30 +2763,30 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2763
2763
|
|
|
2764
2764
|
|
|
2765
2765
|
AddonDependencyFragment.model_rebuild()
|
|
2766
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2766
2767
|
PriceTierFragment.model_rebuild()
|
|
2767
2768
|
OveragePriceFragment.model_rebuild()
|
|
2768
2769
|
PriceFragment.model_rebuild()
|
|
2769
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2770
2770
|
AddonFragment.model_rebuild()
|
|
2771
2771
|
FeatureFragment.model_rebuild()
|
|
2772
2772
|
EntitlementFragment.model_rebuild()
|
|
2773
|
-
ProductFragment.model_rebuild()
|
|
2774
|
-
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2775
|
-
PlanFragment.model_rebuild()
|
|
2776
2773
|
CustomerResourceFragment.model_rebuild()
|
|
2774
|
+
SlimCustomerFragment.model_rebuild()
|
|
2777
2775
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2776
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2777
|
+
TotalPriceFragment.model_rebuild()
|
|
2778
2778
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2779
2779
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2780
|
-
|
|
2781
|
-
|
|
2782
|
-
|
|
2780
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2781
|
+
ProductFragment.model_rebuild()
|
|
2782
|
+
PlanFragment.model_rebuild()
|
|
2783
2783
|
SubscriptionFragment.model_rebuild()
|
|
2784
2784
|
ApplySubscriptionFragment.model_rebuild()
|
|
2785
2785
|
FontVariantFragment.model_rebuild()
|
|
2786
2786
|
TypographyConfigurationFragment.model_rebuild()
|
|
2787
2787
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2788
|
-
CouponFragment.model_rebuild()
|
|
2789
2788
|
PromotionalEntitlementFragment.model_rebuild()
|
|
2789
|
+
CouponFragment.model_rebuild()
|
|
2790
2790
|
CustomerFragment.model_rebuild()
|
|
2791
2791
|
CheckoutStateFragment.model_rebuild()
|
|
2792
2792
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
@@ -2794,8 +2794,8 @@ CustomerPortalConfigurationFragment.model_rebuild()
|
|
|
2794
2794
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2795
2795
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2796
2796
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2797
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2798
2797
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2798
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2799
2799
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2800
2800
|
CustomerPortalFragment.model_rebuild()
|
|
2801
2801
|
CustomerStatisticsFragment.model_rebuild()
|
|
@@ -2806,8 +2806,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2806
2806
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2807
2807
|
LayoutConfigurationFragment.model_rebuild()
|
|
2808
2808
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2809
|
-
MockPaywallPriceFragment.model_rebuild()
|
|
2810
2809
|
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2810
|
+
MockPaywallPriceFragment.model_rebuild()
|
|
2811
2811
|
MockPaywallAddonFragment.model_rebuild()
|
|
2812
2812
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2813
2813
|
MockPaywallPlanFragment.model_rebuild()
|
|
@@ -119,11 +119,11 @@ stigg/generated/client.py,sha256=AHebP8X0jl5noIxkZwMgE-EOE3e5lv-tGrCj2xDt58c,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=6i7B8VZE27gaBec4QPWIFBMWKw8V4BMfZO2wKJ8GH6Y,34822
|
|
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=uk2DLrYV0y4NdKDWNWm4Ipg61oGNJ7yCODdDC0jxP_s,100632
|
|
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
|
|
@@ -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.327.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.327.0.dist-info/METADATA,sha256=KfCvSCdKkx6QVzi0JAvJbdrrLKuL1FcidCXcuZO5b4E,2258
|
|
165
|
+
stigg_api_client_v2-2.327.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.327.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|