stigg-api-client-v2 2.310.0__py3-none-any.whl → 2.315.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 +2 -0
- stigg/generated/enums.py +1 -0
- stigg/generated/fragments.py +253 -253
- stigg/generated/input_types.py +6 -1
- {stigg_api_client_v2-2.310.0.dist-info → stigg_api_client_v2-2.315.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.310.0.dist-info → stigg_api_client_v2-2.315.0.dist-info}/RECORD +8 -8
- {stigg_api_client_v2-2.310.0.dist-info → stigg_api_client_v2-2.315.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.310.0.dist-info → stigg_api_client_v2-2.315.0.dist-info}/WHEEL +0 -0
stigg/generated/__init__.py
CHANGED
|
@@ -870,6 +870,7 @@ from .input_types import (
|
|
|
870
870
|
UpdateOnePromotionalEntitlementInput,
|
|
871
871
|
UpdatePackageEntitlementOrderInput,
|
|
872
872
|
UpdatePackageEntitlementOrderItemInput,
|
|
873
|
+
UpdateStripeCredentialsInput,
|
|
873
874
|
UpdateSubscriptionEntitlementInput,
|
|
874
875
|
UpdateSubscriptionInput,
|
|
875
876
|
UpdateUserInput,
|
|
@@ -1780,6 +1781,7 @@ __all__ = [
|
|
|
1780
1781
|
"UpdateOnePromotionalEntitlementInput",
|
|
1781
1782
|
"UpdatePackageEntitlementOrderInput",
|
|
1782
1783
|
"UpdatePackageEntitlementOrderItemInput",
|
|
1784
|
+
"UpdateStripeCredentialsInput",
|
|
1783
1785
|
"UpdateSubscription",
|
|
1784
1786
|
"UpdateSubscriptionEntitlementInput",
|
|
1785
1787
|
"UpdateSubscriptionInput",
|
stigg/generated/enums.py
CHANGED
|
@@ -436,6 +436,7 @@ class ErrorCode(str, Enum):
|
|
|
436
436
|
DraftAddonCantBeArchived = "DraftAddonCantBeArchived"
|
|
437
437
|
DraftPlanCantBeArchived = "DraftPlanCantBeArchived"
|
|
438
438
|
DuplicateAddonProvisionedError = "DuplicateAddonProvisionedError"
|
|
439
|
+
DuplicateIntegrationNotAllowed = "DuplicateIntegrationNotAllowed"
|
|
439
440
|
DuplicateProductValidationError = "DuplicateProductValidationError"
|
|
440
441
|
DuplicatedEntityNotAllowed = "DuplicatedEntityNotAllowed"
|
|
441
442
|
EditAllowedOnDraftPackageOnlyError = "EditAllowedOnDraftPackageOnlyError"
|
stigg/generated/fragments.py
CHANGED
|
@@ -115,38 +115,6 @@ class PriceFragmentFeature(BaseModel):
|
|
|
115
115
|
description: Optional[str] = Field(default=None)
|
|
116
116
|
|
|
117
117
|
|
|
118
|
-
class OveragePriceFragment(BaseModel):
|
|
119
|
-
billing_model: BillingModel = Field(alias="billingModel")
|
|
120
|
-
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
121
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
122
|
-
billing_country_code: Optional[str] = Field(
|
|
123
|
-
alias="billingCountryCode", default=None
|
|
124
|
-
)
|
|
125
|
-
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
126
|
-
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
127
|
-
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
128
|
-
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
class OveragePriceFragmentPrice(BaseModel):
|
|
132
|
-
amount: float
|
|
133
|
-
currency: Currency
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
137
|
-
pass
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
class OveragePriceFragmentFeature(BaseModel):
|
|
141
|
-
ref_id: str = Field(alias="refId")
|
|
142
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
143
|
-
feature_units_plural: Optional[str] = Field(
|
|
144
|
-
alias="featureUnitsPlural", default=None
|
|
145
|
-
)
|
|
146
|
-
display_name: str = Field(alias="displayName")
|
|
147
|
-
description: Optional[str] = Field(default=None)
|
|
148
|
-
|
|
149
|
-
|
|
150
118
|
class PackageEntitlementFragment(BaseModel):
|
|
151
119
|
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
152
120
|
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
@@ -180,6 +148,38 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
180
148
|
)
|
|
181
149
|
|
|
182
150
|
|
|
151
|
+
class OveragePriceFragment(BaseModel):
|
|
152
|
+
billing_model: BillingModel = Field(alias="billingModel")
|
|
153
|
+
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
154
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
155
|
+
billing_country_code: Optional[str] = Field(
|
|
156
|
+
alias="billingCountryCode", default=None
|
|
157
|
+
)
|
|
158
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
159
|
+
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
160
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
161
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
165
|
+
amount: float
|
|
166
|
+
currency: Currency
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
170
|
+
pass
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
174
|
+
ref_id: str = Field(alias="refId")
|
|
175
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
176
|
+
feature_units_plural: Optional[str] = Field(
|
|
177
|
+
alias="featureUnitsPlural", default=None
|
|
178
|
+
)
|
|
179
|
+
display_name: str = Field(alias="displayName")
|
|
180
|
+
description: Optional[str] = Field(default=None)
|
|
181
|
+
|
|
182
|
+
|
|
183
183
|
class AddonFragment(BaseModel):
|
|
184
184
|
id: str
|
|
185
185
|
ref_id: str = Field(alias="refId")
|
|
@@ -215,6 +215,10 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
215
215
|
pass
|
|
216
216
|
|
|
217
217
|
|
|
218
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
219
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
220
|
+
|
|
221
|
+
|
|
218
222
|
class TotalPriceFragment(BaseModel):
|
|
219
223
|
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
220
224
|
total: "TotalPriceFragmentTotal"
|
|
@@ -234,8 +238,21 @@ class CustomerResourceFragment(BaseModel):
|
|
|
234
238
|
resource_id: str = Field(alias="resourceId")
|
|
235
239
|
|
|
236
240
|
|
|
237
|
-
class
|
|
238
|
-
|
|
241
|
+
class SlimCustomerFragment(BaseModel):
|
|
242
|
+
id: str
|
|
243
|
+
name: Optional[str] = Field(default=None)
|
|
244
|
+
email: Optional[str] = Field(default=None)
|
|
245
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
246
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
247
|
+
ref_id: str = Field(alias="refId")
|
|
248
|
+
customer_id: str = Field(alias="customerId")
|
|
249
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
250
|
+
additional_meta_data: Optional[Any] = Field(
|
|
251
|
+
alias="additionalMetaData", default=None
|
|
252
|
+
)
|
|
253
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
254
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
255
|
+
)
|
|
239
256
|
|
|
240
257
|
|
|
241
258
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
@@ -400,143 +417,6 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
400
417
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
401
418
|
|
|
402
419
|
|
|
403
|
-
class ProductFragment(BaseModel):
|
|
404
|
-
ref_id: str = Field(alias="refId")
|
|
405
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
406
|
-
description: Optional[str] = Field(default=None)
|
|
407
|
-
additional_meta_data: Optional[Any] = Field(
|
|
408
|
-
alias="additionalMetaData", default=None
|
|
409
|
-
)
|
|
410
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
414
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
415
|
-
alias="downgradePlan", default=None
|
|
416
|
-
)
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
420
|
-
ref_id: str = Field(alias="refId")
|
|
421
|
-
display_name: str = Field(alias="displayName")
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
425
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
426
|
-
display_name: str = Field(alias="displayName")
|
|
427
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
428
|
-
default=None
|
|
429
|
-
)
|
|
430
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
434
|
-
pass
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
438
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
439
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
class PlanFragment(BaseModel):
|
|
443
|
-
id: str
|
|
444
|
-
ref_id: str = Field(alias="refId")
|
|
445
|
-
display_name: str = Field(alias="displayName")
|
|
446
|
-
description: Optional[str] = Field(default=None)
|
|
447
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
448
|
-
version_number: int = Field(alias="versionNumber")
|
|
449
|
-
additional_meta_data: Optional[Any] = Field(
|
|
450
|
-
alias="additionalMetaData", default=None
|
|
451
|
-
)
|
|
452
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
453
|
-
alias="hiddenFromWidgets", default=None
|
|
454
|
-
)
|
|
455
|
-
product: "PlanFragmentProduct"
|
|
456
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
457
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
458
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
459
|
-
alias="inheritedEntitlements", default=None
|
|
460
|
-
)
|
|
461
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
462
|
-
alias="compatibleAddons", default=None
|
|
463
|
-
)
|
|
464
|
-
compatible_package_groups: Optional[
|
|
465
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
466
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
467
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
468
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
469
|
-
alias="overagePrices", default=None
|
|
470
|
-
)
|
|
471
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
472
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
473
|
-
alias="defaultTrialConfig", default=None
|
|
474
|
-
)
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
class PlanFragmentProduct(ProductFragment):
|
|
478
|
-
pass
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
482
|
-
ref_id: str = Field(alias="refId")
|
|
483
|
-
display_name: str = Field(alias="displayName")
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
487
|
-
pass
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
491
|
-
pass
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
495
|
-
pass
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
499
|
-
pass
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
class PlanFragmentPrices(PriceFragment):
|
|
503
|
-
pass
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
507
|
-
pass
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
511
|
-
duration: float
|
|
512
|
-
units: TrialPeriodUnits
|
|
513
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
514
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
515
|
-
alias="trialEndBehavior", default=None
|
|
516
|
-
)
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
520
|
-
limit: float
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
class SlimCustomerFragment(BaseModel):
|
|
524
|
-
id: str
|
|
525
|
-
name: Optional[str] = Field(default=None)
|
|
526
|
-
email: Optional[str] = Field(default=None)
|
|
527
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
528
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
529
|
-
ref_id: str = Field(alias="refId")
|
|
530
|
-
customer_id: str = Field(alias="customerId")
|
|
531
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
532
|
-
additional_meta_data: Optional[Any] = Field(
|
|
533
|
-
alias="additionalMetaData", default=None
|
|
534
|
-
)
|
|
535
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
536
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
537
|
-
)
|
|
538
|
-
|
|
539
|
-
|
|
540
420
|
class SubscriptionInvoiceFragment(BaseModel):
|
|
541
421
|
billing_id: str = Field(alias="billingId")
|
|
542
422
|
status: SubscriptionInvoiceStatus
|
|
@@ -718,6 +598,126 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
718
598
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
719
599
|
|
|
720
600
|
|
|
601
|
+
class ProductFragment(BaseModel):
|
|
602
|
+
ref_id: str = Field(alias="refId")
|
|
603
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
604
|
+
description: Optional[str] = Field(default=None)
|
|
605
|
+
additional_meta_data: Optional[Any] = Field(
|
|
606
|
+
alias="additionalMetaData", default=None
|
|
607
|
+
)
|
|
608
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
612
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
613
|
+
alias="downgradePlan", default=None
|
|
614
|
+
)
|
|
615
|
+
|
|
616
|
+
|
|
617
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
618
|
+
ref_id: str = Field(alias="refId")
|
|
619
|
+
display_name: str = Field(alias="displayName")
|
|
620
|
+
|
|
621
|
+
|
|
622
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
623
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
624
|
+
display_name: str = Field(alias="displayName")
|
|
625
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
626
|
+
default=None
|
|
627
|
+
)
|
|
628
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
629
|
+
|
|
630
|
+
|
|
631
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
632
|
+
pass
|
|
633
|
+
|
|
634
|
+
|
|
635
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
636
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
637
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
638
|
+
|
|
639
|
+
|
|
640
|
+
class PlanFragment(BaseModel):
|
|
641
|
+
id: str
|
|
642
|
+
ref_id: str = Field(alias="refId")
|
|
643
|
+
display_name: str = Field(alias="displayName")
|
|
644
|
+
description: Optional[str] = Field(default=None)
|
|
645
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
646
|
+
version_number: int = Field(alias="versionNumber")
|
|
647
|
+
additional_meta_data: Optional[Any] = Field(
|
|
648
|
+
alias="additionalMetaData", default=None
|
|
649
|
+
)
|
|
650
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
651
|
+
alias="hiddenFromWidgets", default=None
|
|
652
|
+
)
|
|
653
|
+
product: "PlanFragmentProduct"
|
|
654
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
655
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
656
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
657
|
+
alias="inheritedEntitlements", default=None
|
|
658
|
+
)
|
|
659
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
660
|
+
alias="compatibleAddons", default=None
|
|
661
|
+
)
|
|
662
|
+
compatible_package_groups: Optional[
|
|
663
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
664
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
665
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
666
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
667
|
+
alias="overagePrices", default=None
|
|
668
|
+
)
|
|
669
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
670
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
671
|
+
alias="defaultTrialConfig", default=None
|
|
672
|
+
)
|
|
673
|
+
|
|
674
|
+
|
|
675
|
+
class PlanFragmentProduct(ProductFragment):
|
|
676
|
+
pass
|
|
677
|
+
|
|
678
|
+
|
|
679
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
680
|
+
ref_id: str = Field(alias="refId")
|
|
681
|
+
display_name: str = Field(alias="displayName")
|
|
682
|
+
|
|
683
|
+
|
|
684
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
685
|
+
pass
|
|
686
|
+
|
|
687
|
+
|
|
688
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
689
|
+
pass
|
|
690
|
+
|
|
691
|
+
|
|
692
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
693
|
+
pass
|
|
694
|
+
|
|
695
|
+
|
|
696
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
697
|
+
pass
|
|
698
|
+
|
|
699
|
+
|
|
700
|
+
class PlanFragmentPrices(PriceFragment):
|
|
701
|
+
pass
|
|
702
|
+
|
|
703
|
+
|
|
704
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
705
|
+
pass
|
|
706
|
+
|
|
707
|
+
|
|
708
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
709
|
+
duration: float
|
|
710
|
+
units: TrialPeriodUnits
|
|
711
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
712
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
713
|
+
alias="trialEndBehavior", default=None
|
|
714
|
+
)
|
|
715
|
+
|
|
716
|
+
|
|
717
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
718
|
+
limit: float
|
|
719
|
+
|
|
720
|
+
|
|
721
721
|
class SubscriptionFragment(BaseModel):
|
|
722
722
|
id: str
|
|
723
723
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -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")
|
|
@@ -1250,50 +1250,6 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1250
1250
|
pass
|
|
1251
1251
|
|
|
1252
1252
|
|
|
1253
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1254
|
-
display_name: str = Field(alias="displayName")
|
|
1255
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1256
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1257
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1258
|
-
period: PromotionalEntitlementPeriod
|
|
1259
|
-
start_date: Any = Field(alias="startDate")
|
|
1260
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1264
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1265
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1266
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1267
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1268
|
-
default=None
|
|
1269
|
-
)
|
|
1270
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1271
|
-
default=None
|
|
1272
|
-
)
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1276
|
-
amount: float
|
|
1277
|
-
currency: Currency
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1281
|
-
id: str
|
|
1282
|
-
ref_id: str = Field(alias="refId")
|
|
1283
|
-
display_name: str = Field(alias="displayName")
|
|
1284
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1285
|
-
feature_units_plural: Optional[str] = Field(
|
|
1286
|
-
alias="featureUnitsPlural", default=None
|
|
1287
|
-
)
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1291
|
-
addon_id: str = Field(alias="addonId")
|
|
1292
|
-
description: Optional[str] = Field(default=None)
|
|
1293
|
-
display_name: str = Field(alias="displayName")
|
|
1294
|
-
quantity: int
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
1253
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1298
1254
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1299
1255
|
alias="subscriptionScheduleType"
|
|
@@ -1463,6 +1419,40 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1463
1419
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1464
1420
|
|
|
1465
1421
|
|
|
1422
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1423
|
+
addon_id: str = Field(alias="addonId")
|
|
1424
|
+
description: Optional[str] = Field(default=None)
|
|
1425
|
+
display_name: str = Field(alias="displayName")
|
|
1426
|
+
quantity: int
|
|
1427
|
+
|
|
1428
|
+
|
|
1429
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1430
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1431
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1432
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1433
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1434
|
+
default=None
|
|
1435
|
+
)
|
|
1436
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1437
|
+
default=None
|
|
1438
|
+
)
|
|
1439
|
+
|
|
1440
|
+
|
|
1441
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1442
|
+
amount: float
|
|
1443
|
+
currency: Currency
|
|
1444
|
+
|
|
1445
|
+
|
|
1446
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1447
|
+
id: str
|
|
1448
|
+
ref_id: str = Field(alias="refId")
|
|
1449
|
+
display_name: str = Field(alias="displayName")
|
|
1450
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1451
|
+
feature_units_plural: Optional[str] = Field(
|
|
1452
|
+
alias="featureUnitsPlural", default=None
|
|
1453
|
+
)
|
|
1454
|
+
|
|
1455
|
+
|
|
1466
1456
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1467
1457
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1468
1458
|
plan_id: str = Field(alias="planId")
|
|
@@ -1559,6 +1549,16 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1559
1549
|
pass
|
|
1560
1550
|
|
|
1561
1551
|
|
|
1552
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1553
|
+
display_name: str = Field(alias="displayName")
|
|
1554
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1555
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1556
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1557
|
+
period: PromotionalEntitlementPeriod
|
|
1558
|
+
start_date: Any = Field(alias="startDate")
|
|
1559
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1560
|
+
|
|
1561
|
+
|
|
1562
1562
|
class CustomerPortalFragment(BaseModel):
|
|
1563
1563
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1564
1564
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -2765,19 +2765,19 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2765
2765
|
AddonDependencyFragment.model_rebuild()
|
|
2766
2766
|
PriceTierFragment.model_rebuild()
|
|
2767
2767
|
PriceFragment.model_rebuild()
|
|
2768
|
-
OveragePriceFragment.model_rebuild()
|
|
2769
2768
|
PackageEntitlementFragment.model_rebuild()
|
|
2769
|
+
OveragePriceFragment.model_rebuild()
|
|
2770
2770
|
AddonFragment.model_rebuild()
|
|
2771
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2771
2772
|
TotalPriceFragment.model_rebuild()
|
|
2772
2773
|
CustomerResourceFragment.model_rebuild()
|
|
2773
|
-
|
|
2774
|
+
SlimCustomerFragment.model_rebuild()
|
|
2774
2775
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2776
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2777
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2775
2778
|
ProductFragment.model_rebuild()
|
|
2776
2779
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2777
2780
|
PlanFragment.model_rebuild()
|
|
2778
|
-
SlimCustomerFragment.model_rebuild()
|
|
2779
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2780
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2781
2781
|
SubscriptionFragment.model_rebuild()
|
|
2782
2782
|
FeatureFragment.model_rebuild()
|
|
2783
2783
|
EntitlementFragment.model_rebuild()
|
|
@@ -2785,18 +2785,18 @@ 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()
|
|
2793
2793
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2794
2794
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2795
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2796
|
-
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2797
|
-
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2798
2795
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2796
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2797
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2799
2798
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2799
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2800
2800
|
CustomerPortalFragment.model_rebuild()
|
|
2801
2801
|
CustomerStatisticsFragment.model_rebuild()
|
|
2802
2802
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -3505,6 +3505,7 @@ class StringFieldComparison(BaseModel):
|
|
|
3505
3505
|
class StripeCredentialsInput(BaseModel):
|
|
3506
3506
|
account_id: Optional[str] = Field(alias="accountId", default=None)
|
|
3507
3507
|
authorization_code: str = Field(alias="authorizationCode")
|
|
3508
|
+
is_tax_enabled: Optional[bool] = Field(alias="isTaxEnabled", default=False)
|
|
3508
3509
|
is_test_mode: bool = Field(alias="isTestMode")
|
|
3509
3510
|
|
|
3510
3511
|
|
|
@@ -4341,7 +4342,7 @@ class UpdateIntegrationInput(BaseModel):
|
|
|
4341
4342
|
salesforce_credentials: Optional["SalesforceCredentialsInput"] = Field(
|
|
4342
4343
|
alias="salesforceCredentials", default=None
|
|
4343
4344
|
)
|
|
4344
|
-
stripe_credentials: Optional["
|
|
4345
|
+
stripe_credentials: Optional["UpdateStripeCredentialsInput"] = Field(
|
|
4345
4346
|
alias="stripeCredentials", default=None
|
|
4346
4347
|
)
|
|
4347
4348
|
vendor_identifier: VendorIdentifier = Field(alias="vendorIdentifier")
|
|
@@ -4391,6 +4392,10 @@ class UpdatePackageEntitlementOrderItemInput(BaseModel):
|
|
|
4391
4392
|
order: Optional[float] = None
|
|
4392
4393
|
|
|
4393
4394
|
|
|
4395
|
+
class UpdateStripeCredentialsInput(BaseModel):
|
|
4396
|
+
is_tax_enabled: Optional[bool] = Field(alias="isTaxEnabled", default=None)
|
|
4397
|
+
|
|
4398
|
+
|
|
4394
4399
|
class UpdateSubscriptionEntitlementInput(BaseModel):
|
|
4395
4400
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
4396
4401
|
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
@@ -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=cMTTW3j7zYbdixcgYh7DF9_jnCE0F5HmxI_9589RIdQ,69074
|
|
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=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=-KENNOE-xsKr2JErSh1nQWK3pBt0DrPbIM45Tg8PCGE,34476
|
|
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=bo8H-oBmmId3lZ7gIYrfDy7SXs6-GYLLAxqrf1SZLCc,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
|
|
@@ -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=Qn-I8SXseik00p3NFAnSS93os67iomhBvs_v_Si2YHY,191489
|
|
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.315.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.315.0.dist-info/METADATA,sha256=TynxC5GP_uaaq_JT4itAia5LyeV1ER_VdCPdWpb6uDQ,2258
|
|
165
|
+
stigg_api_client_v2-2.315.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.315.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|