stigg-api-client-v2 2.367.0__py3-none-any.whl → 2.379.1__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 +291 -291
- {stigg_api_client_v2-2.367.0.dist-info → stigg_api_client_v2-2.379.1.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.367.0.dist-info → stigg_api_client_v2-2.379.1.dist-info}/RECORD +5 -5
- {stigg_api_client_v2-2.367.0.dist-info → stigg_api_client_v2-2.379.1.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.367.0.dist-info → stigg_api_client_v2-2.379.1.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -60,6 +60,39 @@ class AddonDependencyFragment(BaseModel):
|
|
|
60
60
|
description: Optional[str] = Field(default=None)
|
|
61
61
|
|
|
62
62
|
|
|
63
|
+
class PackageEntitlementFragment(BaseModel):
|
|
64
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
65
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
66
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
67
|
+
feature_id: str = Field(alias="featureId")
|
|
68
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
69
|
+
alias="resetPeriod", default=None
|
|
70
|
+
)
|
|
71
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
72
|
+
alias="hiddenFromWidgets", default=None
|
|
73
|
+
)
|
|
74
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
75
|
+
display_name_override: Optional[str] = Field(
|
|
76
|
+
alias="displayNameOverride", default=None
|
|
77
|
+
)
|
|
78
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
82
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
83
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
84
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
85
|
+
feature_units_plural: Optional[str] = Field(
|
|
86
|
+
alias="featureUnitsPlural", default=None
|
|
87
|
+
)
|
|
88
|
+
display_name: str = Field(alias="displayName")
|
|
89
|
+
description: Optional[str] = Field(default=None)
|
|
90
|
+
ref_id: str = Field(alias="refId")
|
|
91
|
+
additional_meta_data: Optional[Any] = Field(
|
|
92
|
+
alias="additionalMetaData", default=None
|
|
93
|
+
)
|
|
94
|
+
|
|
95
|
+
|
|
63
96
|
class PriceTierFragment(BaseModel):
|
|
64
97
|
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
65
98
|
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
@@ -112,39 +145,6 @@ class OveragePriceFragmentFeature(BaseModel):
|
|
|
112
145
|
description: Optional[str] = Field(default=None)
|
|
113
146
|
|
|
114
147
|
|
|
115
|
-
class PackageEntitlementFragment(BaseModel):
|
|
116
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
117
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
118
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
119
|
-
feature_id: str = Field(alias="featureId")
|
|
120
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
121
|
-
alias="resetPeriod", default=None
|
|
122
|
-
)
|
|
123
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
124
|
-
alias="hiddenFromWidgets", default=None
|
|
125
|
-
)
|
|
126
|
-
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
127
|
-
display_name_override: Optional[str] = Field(
|
|
128
|
-
alias="displayNameOverride", default=None
|
|
129
|
-
)
|
|
130
|
-
feature: "PackageEntitlementFragmentFeature"
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
class PackageEntitlementFragmentFeature(BaseModel):
|
|
134
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
135
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
136
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
137
|
-
feature_units_plural: Optional[str] = Field(
|
|
138
|
-
alias="featureUnitsPlural", default=None
|
|
139
|
-
)
|
|
140
|
-
display_name: str = Field(alias="displayName")
|
|
141
|
-
description: Optional[str] = Field(default=None)
|
|
142
|
-
ref_id: str = Field(alias="refId")
|
|
143
|
-
additional_meta_data: Optional[Any] = Field(
|
|
144
|
-
alias="additionalMetaData", default=None
|
|
145
|
-
)
|
|
146
|
-
|
|
147
|
-
|
|
148
148
|
class PriceFragment(BaseModel):
|
|
149
149
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
150
150
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -216,12 +216,102 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
216
216
|
pass
|
|
217
217
|
|
|
218
218
|
|
|
219
|
-
class
|
|
220
|
-
|
|
219
|
+
class FeatureFragment(BaseModel):
|
|
220
|
+
typename__: str = Field(alias="__typename")
|
|
221
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
222
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
223
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
224
|
+
feature_units_plural: Optional[str] = Field(
|
|
225
|
+
alias="featureUnitsPlural", default=None
|
|
226
|
+
)
|
|
227
|
+
description: Optional[str] = Field(default=None)
|
|
228
|
+
display_name: str = Field(alias="displayName")
|
|
229
|
+
ref_id: str = Field(alias="refId")
|
|
230
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
231
|
+
alias="unitTransformation", default=None
|
|
232
|
+
)
|
|
221
233
|
|
|
222
234
|
|
|
223
|
-
class
|
|
224
|
-
|
|
235
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
236
|
+
divide: float
|
|
237
|
+
round: UnitTransformationRound
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
class EntitlementFragment(BaseModel):
|
|
241
|
+
typename__: str = Field(alias="__typename")
|
|
242
|
+
is_granted: bool = Field(alias="isGranted")
|
|
243
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
244
|
+
alias="accessDeniedReason", default=None
|
|
245
|
+
)
|
|
246
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
247
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
248
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
249
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
250
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
251
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
252
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
253
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
254
|
+
alias="entitlementUpdatedAt", default=None
|
|
255
|
+
)
|
|
256
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
257
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
258
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
259
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
260
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
261
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
262
|
+
alias="resetPeriod", default=None
|
|
263
|
+
)
|
|
264
|
+
reset_period_configuration: Optional[
|
|
265
|
+
Annotated[
|
|
266
|
+
Union[
|
|
267
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
268
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
269
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
270
|
+
],
|
|
271
|
+
Field(discriminator="typename__"),
|
|
272
|
+
]
|
|
273
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
274
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
278
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
279
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
280
|
+
alias="monthlyAccordingTo", default=None
|
|
281
|
+
)
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
285
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
286
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
287
|
+
alias="weeklyAccordingTo", default=None
|
|
288
|
+
)
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
292
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
293
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
294
|
+
alias="yearlyAccordingTo", default=None
|
|
295
|
+
)
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
299
|
+
pass
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
class TotalPriceFragment(BaseModel):
|
|
303
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
304
|
+
total: "TotalPriceFragmentTotal"
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
308
|
+
amount: float
|
|
309
|
+
currency: Currency
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
313
|
+
amount: float
|
|
314
|
+
currency: Currency
|
|
225
315
|
|
|
226
316
|
|
|
227
317
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
@@ -378,21 +468,6 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
378
468
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
379
469
|
|
|
380
470
|
|
|
381
|
-
class TotalPriceFragment(BaseModel):
|
|
382
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
383
|
-
total: "TotalPriceFragmentTotal"
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
387
|
-
amount: float
|
|
388
|
-
currency: Currency
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
392
|
-
amount: float
|
|
393
|
-
currency: Currency
|
|
394
|
-
|
|
395
|
-
|
|
396
471
|
class SlimCustomerFragment(BaseModel):
|
|
397
472
|
id: str
|
|
398
473
|
name: Optional[str] = Field(default=None)
|
|
@@ -410,22 +485,8 @@ class SlimCustomerFragment(BaseModel):
|
|
|
410
485
|
)
|
|
411
486
|
|
|
412
487
|
|
|
413
|
-
class
|
|
414
|
-
|
|
415
|
-
display_name: str = Field(alias="displayName")
|
|
416
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
417
|
-
default=None
|
|
418
|
-
)
|
|
419
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
423
|
-
pass
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
427
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
428
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
488
|
+
class CustomerResourceFragment(BaseModel):
|
|
489
|
+
resource_id: str = Field(alias="resourceId")
|
|
429
490
|
|
|
430
491
|
|
|
431
492
|
class ProductFragment(BaseModel):
|
|
@@ -449,6 +510,24 @@ class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
|
449
510
|
display_name: str = Field(alias="displayName")
|
|
450
511
|
|
|
451
512
|
|
|
513
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
514
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
515
|
+
display_name: str = Field(alias="displayName")
|
|
516
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
517
|
+
default=None
|
|
518
|
+
)
|
|
519
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
520
|
+
|
|
521
|
+
|
|
522
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
523
|
+
pass
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
527
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
528
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
529
|
+
|
|
530
|
+
|
|
452
531
|
class PlanFragment(BaseModel):
|
|
453
532
|
id: str
|
|
454
533
|
ref_id: str = Field(alias="refId")
|
|
@@ -530,6 +609,37 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
530
609
|
limit: float
|
|
531
610
|
|
|
532
611
|
|
|
612
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
613
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
614
|
+
|
|
615
|
+
|
|
616
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
617
|
+
billing_id: str = Field(alias="billingId")
|
|
618
|
+
status: SubscriptionInvoiceStatus
|
|
619
|
+
created_at: Any = Field(alias="createdAt")
|
|
620
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
621
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
622
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
623
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
624
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
625
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
626
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
627
|
+
alias="billingReason", default=None
|
|
628
|
+
)
|
|
629
|
+
currency: Optional[str] = Field(default=None)
|
|
630
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
631
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
632
|
+
alias="subTotalExcludingTax", default=None
|
|
633
|
+
)
|
|
634
|
+
total: Optional[float] = Field(default=None)
|
|
635
|
+
total_excluding_tax: Optional[float] = Field(
|
|
636
|
+
alias="totalExcludingTax", default=None
|
|
637
|
+
)
|
|
638
|
+
tax: Optional[float] = Field(default=None)
|
|
639
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
640
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
641
|
+
|
|
642
|
+
|
|
533
643
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
534
644
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
535
645
|
alias="subscriptionScheduleType"
|
|
@@ -692,33 +802,6 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
692
802
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
693
803
|
|
|
694
804
|
|
|
695
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
696
|
-
billing_id: str = Field(alias="billingId")
|
|
697
|
-
status: SubscriptionInvoiceStatus
|
|
698
|
-
created_at: Any = Field(alias="createdAt")
|
|
699
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
700
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
701
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
702
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
703
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
704
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
705
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
706
|
-
alias="billingReason", default=None
|
|
707
|
-
)
|
|
708
|
-
currency: Optional[str] = Field(default=None)
|
|
709
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
710
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
711
|
-
alias="subTotalExcludingTax", default=None
|
|
712
|
-
)
|
|
713
|
-
total: Optional[float] = Field(default=None)
|
|
714
|
-
total_excluding_tax: Optional[float] = Field(
|
|
715
|
-
alias="totalExcludingTax", default=None
|
|
716
|
-
)
|
|
717
|
-
tax: Optional[float] = Field(default=None)
|
|
718
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
719
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
720
|
-
|
|
721
|
-
|
|
722
805
|
class SubscriptionFragment(BaseModel):
|
|
723
806
|
id: str
|
|
724
807
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -789,125 +872,42 @@ class SubscriptionFragmentExperimentInfo(BaseModel):
|
|
|
789
872
|
id: str
|
|
790
873
|
|
|
791
874
|
|
|
792
|
-
class SubscriptionFragmentPrices(BaseModel):
|
|
793
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
794
|
-
price: Optional["SubscriptionFragmentPricesPrice"] = Field(default=None)
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
class SubscriptionFragmentPricesPrice(PriceFragment):
|
|
798
|
-
pass
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
class SubscriptionFragmentTotalPrice(TotalPriceFragment):
|
|
802
|
-
pass
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
class SubscriptionFragmentPlan(PlanFragment):
|
|
806
|
-
pass
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
class SubscriptionFragmentAddons(BaseModel):
|
|
810
|
-
id: str
|
|
811
|
-
quantity: float
|
|
812
|
-
addon: "SubscriptionFragmentAddonsAddon"
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
class SubscriptionFragmentAddonsAddon(AddonFragment):
|
|
816
|
-
pass
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
class SubscriptionFragmentScheduledUpdates(SubscriptionScheduledUpdateData):
|
|
820
|
-
pass
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
class SubscriptionFragmentFutureUpdates(SubscriptionFutureUpdateData):
|
|
824
|
-
pass
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragment):
|
|
828
|
-
pass
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
class FeatureFragment(BaseModel):
|
|
832
|
-
typename__: str = Field(alias="__typename")
|
|
833
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
834
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
835
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
836
|
-
feature_units_plural: Optional[str] = Field(
|
|
837
|
-
alias="featureUnitsPlural", default=None
|
|
838
|
-
)
|
|
839
|
-
description: Optional[str] = Field(default=None)
|
|
840
|
-
display_name: str = Field(alias="displayName")
|
|
841
|
-
ref_id: str = Field(alias="refId")
|
|
842
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
843
|
-
alias="unitTransformation", default=None
|
|
844
|
-
)
|
|
875
|
+
class SubscriptionFragmentPrices(BaseModel):
|
|
876
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
877
|
+
price: Optional["SubscriptionFragmentPricesPrice"] = Field(default=None)
|
|
845
878
|
|
|
846
879
|
|
|
847
|
-
class
|
|
848
|
-
|
|
849
|
-
round: UnitTransformationRound
|
|
880
|
+
class SubscriptionFragmentPricesPrice(PriceFragment):
|
|
881
|
+
pass
|
|
850
882
|
|
|
851
883
|
|
|
852
|
-
class
|
|
853
|
-
|
|
854
|
-
is_granted: bool = Field(alias="isGranted")
|
|
855
|
-
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
856
|
-
alias="accessDeniedReason", default=None
|
|
857
|
-
)
|
|
858
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
859
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
860
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
861
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
862
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
863
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
864
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
865
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
866
|
-
alias="entitlementUpdatedAt", default=None
|
|
867
|
-
)
|
|
868
|
-
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
869
|
-
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
870
|
-
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
871
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
872
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
873
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
874
|
-
alias="resetPeriod", default=None
|
|
875
|
-
)
|
|
876
|
-
reset_period_configuration: Optional[
|
|
877
|
-
Annotated[
|
|
878
|
-
Union[
|
|
879
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
880
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
881
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
882
|
-
],
|
|
883
|
-
Field(discriminator="typename__"),
|
|
884
|
-
]
|
|
885
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
886
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
884
|
+
class SubscriptionFragmentTotalPrice(TotalPriceFragment):
|
|
885
|
+
pass
|
|
887
886
|
|
|
888
887
|
|
|
889
|
-
class
|
|
890
|
-
|
|
891
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
892
|
-
alias="monthlyAccordingTo", default=None
|
|
893
|
-
)
|
|
888
|
+
class SubscriptionFragmentPlan(PlanFragment):
|
|
889
|
+
pass
|
|
894
890
|
|
|
895
891
|
|
|
896
|
-
class
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
)
|
|
892
|
+
class SubscriptionFragmentAddons(BaseModel):
|
|
893
|
+
id: str
|
|
894
|
+
quantity: float
|
|
895
|
+
addon: "SubscriptionFragmentAddonsAddon"
|
|
901
896
|
|
|
902
897
|
|
|
903
|
-
class
|
|
904
|
-
|
|
905
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
906
|
-
alias="yearlyAccordingTo", default=None
|
|
907
|
-
)
|
|
898
|
+
class SubscriptionFragmentAddonsAddon(AddonFragment):
|
|
899
|
+
pass
|
|
908
900
|
|
|
909
901
|
|
|
910
|
-
class
|
|
902
|
+
class SubscriptionFragmentScheduledUpdates(SubscriptionScheduledUpdateData):
|
|
903
|
+
pass
|
|
904
|
+
|
|
905
|
+
|
|
906
|
+
class SubscriptionFragmentFutureUpdates(SubscriptionFutureUpdateData):
|
|
907
|
+
pass
|
|
908
|
+
|
|
909
|
+
|
|
910
|
+
class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragment):
|
|
911
911
|
pass
|
|
912
912
|
|
|
913
913
|
|
|
@@ -1257,50 +1257,6 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1257
1257
|
pass
|
|
1258
1258
|
|
|
1259
1259
|
|
|
1260
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1261
|
-
display_name: str = Field(alias="displayName")
|
|
1262
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1263
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1264
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1265
|
-
period: PromotionalEntitlementPeriod
|
|
1266
|
-
start_date: Any = Field(alias="startDate")
|
|
1267
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1271
|
-
addon_id: str = Field(alias="addonId")
|
|
1272
|
-
description: Optional[str] = Field(default=None)
|
|
1273
|
-
display_name: str = Field(alias="displayName")
|
|
1274
|
-
quantity: int
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1278
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1279
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1280
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1281
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1282
|
-
default=None
|
|
1283
|
-
)
|
|
1284
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1285
|
-
default=None
|
|
1286
|
-
)
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1290
|
-
amount: float
|
|
1291
|
-
currency: Currency
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1295
|
-
id: str
|
|
1296
|
-
ref_id: str = Field(alias="refId")
|
|
1297
|
-
display_name: str = Field(alias="displayName")
|
|
1298
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1299
|
-
feature_units_plural: Optional[str] = Field(
|
|
1300
|
-
alias="featureUnitsPlural", default=None
|
|
1301
|
-
)
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
1260
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1305
1261
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1306
1262
|
alias="subscriptionScheduleType"
|
|
@@ -1470,6 +1426,40 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1470
1426
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1471
1427
|
|
|
1472
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
|
+
|
|
1456
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1457
|
+
addon_id: str = Field(alias="addonId")
|
|
1458
|
+
description: Optional[str] = Field(default=None)
|
|
1459
|
+
display_name: str = Field(alias="displayName")
|
|
1460
|
+
quantity: int
|
|
1461
|
+
|
|
1462
|
+
|
|
1473
1463
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1474
1464
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1475
1465
|
plan_id: str = Field(alias="planId")
|
|
@@ -1566,6 +1556,16 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1566
1556
|
pass
|
|
1567
1557
|
|
|
1568
1558
|
|
|
1559
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1560
|
+
display_name: str = Field(alias="displayName")
|
|
1561
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1562
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1563
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1564
|
+
period: PromotionalEntitlementPeriod
|
|
1565
|
+
start_date: Any = Field(alias="startDate")
|
|
1566
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1567
|
+
|
|
1568
|
+
|
|
1569
1569
|
class CustomerPortalFragment(BaseModel):
|
|
1570
1570
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1571
1571
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -1793,39 +1793,6 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1793
1793
|
description: Optional[str] = Field(default=None)
|
|
1794
1794
|
|
|
1795
1795
|
|
|
1796
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1797
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1798
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1799
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1800
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1801
|
-
alias="resetPeriod", default=None
|
|
1802
|
-
)
|
|
1803
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1804
|
-
alias="hiddenFromWidgets", default=None
|
|
1805
|
-
)
|
|
1806
|
-
display_name_override: Optional[str] = Field(
|
|
1807
|
-
alias="displayNameOverride", default=None
|
|
1808
|
-
)
|
|
1809
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1810
|
-
default=None
|
|
1811
|
-
)
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1815
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1816
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1817
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1818
|
-
feature_units_plural: Optional[str] = Field(
|
|
1819
|
-
alias="featureUnitsPlural", default=None
|
|
1820
|
-
)
|
|
1821
|
-
display_name: str = Field(alias="displayName")
|
|
1822
|
-
description: Optional[str] = Field(default=None)
|
|
1823
|
-
ref_id: str = Field(alias="refId")
|
|
1824
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1825
|
-
alias="additionalMetaData", default=None
|
|
1826
|
-
)
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
1796
|
class MockPaywallPriceFragment(BaseModel):
|
|
1830
1797
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1831
1798
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1860,6 +1827,39 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1860
1827
|
display_name: str = Field(alias="displayName")
|
|
1861
1828
|
|
|
1862
1829
|
|
|
1830
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1831
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1832
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1833
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1834
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1835
|
+
alias="resetPeriod", default=None
|
|
1836
|
+
)
|
|
1837
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1838
|
+
alias="hiddenFromWidgets", default=None
|
|
1839
|
+
)
|
|
1840
|
+
display_name_override: Optional[str] = Field(
|
|
1841
|
+
alias="displayNameOverride", default=None
|
|
1842
|
+
)
|
|
1843
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1844
|
+
default=None
|
|
1845
|
+
)
|
|
1846
|
+
|
|
1847
|
+
|
|
1848
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1849
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1850
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1851
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1852
|
+
feature_units_plural: Optional[str] = Field(
|
|
1853
|
+
alias="featureUnitsPlural", default=None
|
|
1854
|
+
)
|
|
1855
|
+
display_name: str = Field(alias="displayName")
|
|
1856
|
+
description: Optional[str] = Field(default=None)
|
|
1857
|
+
ref_id: str = Field(alias="refId")
|
|
1858
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1859
|
+
alias="additionalMetaData", default=None
|
|
1860
|
+
)
|
|
1861
|
+
|
|
1862
|
+
|
|
1863
1863
|
class MockPaywallAddonFragment(BaseModel):
|
|
1864
1864
|
ref_id: str = Field(alias="refId")
|
|
1865
1865
|
display_name: str = Field(alias="displayName")
|
|
@@ -2770,24 +2770,24 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2770
2770
|
|
|
2771
2771
|
|
|
2772
2772
|
AddonDependencyFragment.model_rebuild()
|
|
2773
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2773
2774
|
PriceTierFragment.model_rebuild()
|
|
2774
2775
|
OveragePriceFragment.model_rebuild()
|
|
2775
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2776
2776
|
PriceFragment.model_rebuild()
|
|
2777
2777
|
AddonFragment.model_rebuild()
|
|
2778
|
-
|
|
2779
|
-
|
|
2780
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2778
|
+
FeatureFragment.model_rebuild()
|
|
2779
|
+
EntitlementFragment.model_rebuild()
|
|
2781
2780
|
TotalPriceFragment.model_rebuild()
|
|
2781
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2782
2782
|
SlimCustomerFragment.model_rebuild()
|
|
2783
|
-
|
|
2783
|
+
CustomerResourceFragment.model_rebuild()
|
|
2784
2784
|
ProductFragment.model_rebuild()
|
|
2785
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2785
2786
|
PlanFragment.model_rebuild()
|
|
2786
|
-
|
|
2787
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2787
2788
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2789
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2788
2790
|
SubscriptionFragment.model_rebuild()
|
|
2789
|
-
FeatureFragment.model_rebuild()
|
|
2790
|
-
EntitlementFragment.model_rebuild()
|
|
2791
2791
|
ApplySubscriptionFragment.model_rebuild()
|
|
2792
2792
|
FontVariantFragment.model_rebuild()
|
|
2793
2793
|
TypographyConfigurationFragment.model_rebuild()
|
|
@@ -2799,11 +2799,11 @@ CheckoutStateFragment.model_rebuild()
|
|
|
2799
2799
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2800
2800
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2801
2801
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2802
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2803
|
-
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2804
|
-
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2805
2802
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2803
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2804
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2806
2805
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2806
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2807
2807
|
CustomerPortalFragment.model_rebuild()
|
|
2808
2808
|
CustomerStatisticsFragment.model_rebuild()
|
|
2809
2809
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -2813,8 +2813,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2813
2813
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2814
2814
|
LayoutConfigurationFragment.model_rebuild()
|
|
2815
2815
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2816
|
-
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2817
2816
|
MockPaywallPriceFragment.model_rebuild()
|
|
2817
|
+
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2818
2818
|
MockPaywallAddonFragment.model_rebuild()
|
|
2819
2819
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2820
2820
|
MockPaywallPlanFragment.model_rebuild()
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=t6q4y-5cKBmgLTrf_2YWXkNvmclEjnvBos1Ycd0aomI,3521
|
|
|
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=HNK-mXjo85_vaEid7jViKXjmdOBPm3ttq7KvFzcPuAk,100917
|
|
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.379.1.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.379.1.dist-info/METADATA,sha256=paWaq0MEmYfD81kqb3-RvMOOcZha4IwTNBxhraVeov8,2258
|
|
165
|
+
stigg_api_client_v2-2.379.1.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.379.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|