stigg-api-client-v2 3.39.0__py3-none-any.whl → 3.42.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.

@@ -876,6 +876,7 @@ class AsyncClient(AsyncBaseClient):
876
876
  isCustom
877
877
  displayNameOverride
878
878
  enumValues
879
+ isGranted
879
880
  feature {
880
881
  featureType
881
882
  meterType
@@ -3087,6 +3088,7 @@ class AsyncClient(AsyncBaseClient):
3087
3088
  isCustom
3088
3089
  displayNameOverride
3089
3090
  enumValues
3091
+ isGranted
3090
3092
  feature {
3091
3093
  featureType
3092
3094
  meterType
@@ -3548,6 +3550,7 @@ class AsyncClient(AsyncBaseClient):
3548
3550
  isCustom
3549
3551
  displayNameOverride
3550
3552
  enumValues
3553
+ isGranted
3551
3554
  feature {
3552
3555
  featureType
3553
3556
  meterType
@@ -4089,6 +4092,7 @@ class AsyncClient(AsyncBaseClient):
4089
4092
  isCustom
4090
4093
  displayNameOverride
4091
4094
  enumValues
4095
+ isGranted
4092
4096
  feature {
4093
4097
  featureType
4094
4098
  meterType
@@ -4610,6 +4614,7 @@ class AsyncClient(AsyncBaseClient):
4610
4614
  isCustom
4611
4615
  displayNameOverride
4612
4616
  enumValues
4617
+ isGranted
4613
4618
  feature {
4614
4619
  featureType
4615
4620
  meterType
@@ -5744,6 +5749,7 @@ class AsyncClient(AsyncBaseClient):
5744
5749
  isCustom
5745
5750
  displayNameOverride
5746
5751
  enumValues
5752
+ isGranted
5747
5753
  feature {
5748
5754
  featureType
5749
5755
  meterType
@@ -6177,6 +6183,7 @@ class AsyncClient(AsyncBaseClient):
6177
6183
  hiddenFromWidgets
6178
6184
  displayNameOverride
6179
6185
  enumValues
6186
+ isGranted
6180
6187
  feature {
6181
6188
  featureType
6182
6189
  meterType
stigg/generated/client.py CHANGED
@@ -876,6 +876,7 @@ class Client(BaseClient):
876
876
  isCustom
877
877
  displayNameOverride
878
878
  enumValues
879
+ isGranted
879
880
  feature {
880
881
  featureType
881
882
  meterType
@@ -3083,6 +3084,7 @@ class Client(BaseClient):
3083
3084
  isCustom
3084
3085
  displayNameOverride
3085
3086
  enumValues
3087
+ isGranted
3086
3088
  feature {
3087
3089
  featureType
3088
3090
  meterType
@@ -3544,6 +3546,7 @@ class Client(BaseClient):
3544
3546
  isCustom
3545
3547
  displayNameOverride
3546
3548
  enumValues
3549
+ isGranted
3547
3550
  feature {
3548
3551
  featureType
3549
3552
  meterType
@@ -4085,6 +4088,7 @@ class Client(BaseClient):
4085
4088
  isCustom
4086
4089
  displayNameOverride
4087
4090
  enumValues
4091
+ isGranted
4088
4092
  feature {
4089
4093
  featureType
4090
4094
  meterType
@@ -4606,6 +4610,7 @@ class Client(BaseClient):
4606
4610
  isCustom
4607
4611
  displayNameOverride
4608
4612
  enumValues
4613
+ isGranted
4609
4614
  feature {
4610
4615
  featureType
4611
4616
  meterType
@@ -5740,6 +5745,7 @@ class Client(BaseClient):
5740
5745
  isCustom
5741
5746
  displayNameOverride
5742
5747
  enumValues
5748
+ isGranted
5743
5749
  feature {
5744
5750
  featureType
5745
5751
  meterType
@@ -6171,6 +6177,7 @@ class Client(BaseClient):
6171
6177
  hiddenFromWidgets
6172
6178
  displayNameOverride
6173
6179
  enumValues
6180
+ isGranted
6174
6181
  feature {
6175
6182
  featureType
6176
6183
  meterType
stigg/generated/enums.py CHANGED
@@ -1130,6 +1130,7 @@ class SubscriptionQuerySortFields(str, Enum):
1130
1130
  environmentId = "environmentId"
1131
1131
  productId = "productId"
1132
1132
  resourceId = "resourceId"
1133
+ startDate = "startDate"
1133
1134
  status = "status"
1134
1135
 
1135
1136
 
@@ -61,6 +61,41 @@ class AddonDependencyFragment(BaseModel):
61
61
  description: Optional[str] = Field(default=None)
62
62
 
63
63
 
64
+ class PackageEntitlementFragment(BaseModel):
65
+ usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
66
+ has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
67
+ has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
68
+ feature_id: str = Field(alias="featureId")
69
+ reset_period: Optional[EntitlementResetPeriod] = Field(
70
+ alias="resetPeriod", default=None
71
+ )
72
+ hidden_from_widgets: Optional[List[WidgetType]] = Field(
73
+ alias="hiddenFromWidgets", default=None
74
+ )
75
+ is_custom: Optional[bool] = Field(alias="isCustom", default=None)
76
+ display_name_override: Optional[str] = Field(
77
+ alias="displayNameOverride", default=None
78
+ )
79
+ enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
80
+ is_granted: bool = Field(alias="isGranted")
81
+ feature: "PackageEntitlementFragmentFeature"
82
+
83
+
84
+ class PackageEntitlementFragmentFeature(BaseModel):
85
+ feature_type: FeatureType = Field(alias="featureType")
86
+ meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
87
+ feature_units: Optional[str] = Field(alias="featureUnits", default=None)
88
+ feature_units_plural: Optional[str] = Field(
89
+ alias="featureUnitsPlural", default=None
90
+ )
91
+ display_name: str = Field(alias="displayName")
92
+ description: Optional[str] = Field(default=None)
93
+ ref_id: str = Field(alias="refId")
94
+ additional_meta_data: Optional[Any] = Field(
95
+ alias="additionalMetaData", default=None
96
+ )
97
+
98
+
64
99
  class PriceTierFragment(BaseModel):
65
100
  up_to: Optional[float] = Field(alias="upTo", default=None)
66
101
  unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
@@ -81,41 +116,29 @@ class PriceTierFragmentFlatPrice(BaseModel):
81
116
  currency: Currency
82
117
 
83
118
 
84
- class PriceFragment(BaseModel):
119
+ class OveragePriceFragment(BaseModel):
85
120
  billing_model: BillingModel = Field(alias="billingModel")
86
121
  billing_period: BillingPeriod = Field(alias="billingPeriod")
87
- billing_cadence: BillingCadence = Field(alias="billingCadence")
88
122
  billing_id: Optional[str] = Field(alias="billingId", default=None)
89
- min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
90
- max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
91
123
  billing_country_code: Optional[str] = Field(
92
124
  alias="billingCountryCode", default=None
93
125
  )
94
- price: Optional["PriceFragmentPrice"] = Field(default=None)
95
- credit_rate: Optional["PriceFragmentCreditRate"] = Field(
96
- alias="creditRate", default=None
97
- )
126
+ price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
98
127
  tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
99
- tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
100
- feature: Optional["PriceFragmentFeature"] = Field(default=None)
101
- block_size: Optional[float] = Field(alias="blockSize", default=None)
128
+ tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
129
+ feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
102
130
 
103
131
 
104
- class PriceFragmentPrice(BaseModel):
132
+ class OveragePriceFragmentPrice(BaseModel):
105
133
  amount: float
106
134
  currency: Currency
107
135
 
108
136
 
109
- class PriceFragmentCreditRate(BaseModel):
110
- amount: float
111
- custom_currency_id: Any = Field(alias="customCurrencyId")
112
-
113
-
114
- class PriceFragmentTiers(PriceTierFragment):
137
+ class OveragePriceFragmentTiers(PriceTierFragment):
115
138
  pass
116
139
 
117
140
 
118
- class PriceFragmentFeature(BaseModel):
141
+ class OveragePriceFragmentFeature(BaseModel):
119
142
  ref_id: str = Field(alias="refId")
120
143
  feature_units: Optional[str] = Field(alias="featureUnits", default=None)
121
144
  feature_units_plural: Optional[str] = Field(
@@ -125,70 +148,48 @@ class PriceFragmentFeature(BaseModel):
125
148
  description: Optional[str] = Field(default=None)
126
149
 
127
150
 
128
- class OveragePriceFragment(BaseModel):
151
+ class PriceFragment(BaseModel):
129
152
  billing_model: BillingModel = Field(alias="billingModel")
130
153
  billing_period: BillingPeriod = Field(alias="billingPeriod")
154
+ billing_cadence: BillingCadence = Field(alias="billingCadence")
131
155
  billing_id: Optional[str] = Field(alias="billingId", default=None)
156
+ min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
157
+ max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
132
158
  billing_country_code: Optional[str] = Field(
133
159
  alias="billingCountryCode", default=None
134
160
  )
135
- price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
161
+ price: Optional["PriceFragmentPrice"] = Field(default=None)
162
+ credit_rate: Optional["PriceFragmentCreditRate"] = Field(
163
+ alias="creditRate", default=None
164
+ )
136
165
  tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
137
- tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
138
- feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
166
+ tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
167
+ feature: Optional["PriceFragmentFeature"] = Field(default=None)
168
+ block_size: Optional[float] = Field(alias="blockSize", default=None)
139
169
 
140
170
 
141
- class OveragePriceFragmentPrice(BaseModel):
171
+ class PriceFragmentPrice(BaseModel):
142
172
  amount: float
143
173
  currency: Currency
144
174
 
145
175
 
146
- class OveragePriceFragmentTiers(PriceTierFragment):
147
- pass
148
-
149
-
150
- class OveragePriceFragmentFeature(BaseModel):
151
- ref_id: str = Field(alias="refId")
152
- feature_units: Optional[str] = Field(alias="featureUnits", default=None)
153
- feature_units_plural: Optional[str] = Field(
154
- alias="featureUnitsPlural", default=None
155
- )
156
- display_name: str = Field(alias="displayName")
157
- description: Optional[str] = Field(default=None)
176
+ class PriceFragmentCreditRate(BaseModel):
177
+ amount: float
178
+ custom_currency_id: Any = Field(alias="customCurrencyId")
158
179
 
159
180
 
160
- class PackageEntitlementFragment(BaseModel):
161
- usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
162
- has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
163
- has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
164
- feature_id: str = Field(alias="featureId")
165
- reset_period: Optional[EntitlementResetPeriod] = Field(
166
- alias="resetPeriod", default=None
167
- )
168
- hidden_from_widgets: Optional[List[WidgetType]] = Field(
169
- alias="hiddenFromWidgets", default=None
170
- )
171
- is_custom: Optional[bool] = Field(alias="isCustom", default=None)
172
- display_name_override: Optional[str] = Field(
173
- alias="displayNameOverride", default=None
174
- )
175
- enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
176
- feature: "PackageEntitlementFragmentFeature"
181
+ class PriceFragmentTiers(PriceTierFragment):
182
+ pass
177
183
 
178
184
 
179
- class PackageEntitlementFragmentFeature(BaseModel):
180
- feature_type: FeatureType = Field(alias="featureType")
181
- meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
185
+ class PriceFragmentFeature(BaseModel):
186
+ ref_id: str = Field(alias="refId")
182
187
  feature_units: Optional[str] = Field(alias="featureUnits", default=None)
183
188
  feature_units_plural: Optional[str] = Field(
184
189
  alias="featureUnitsPlural", default=None
185
190
  )
186
191
  display_name: str = Field(alias="displayName")
187
192
  description: Optional[str] = Field(default=None)
188
- ref_id: str = Field(alias="refId")
189
- additional_meta_data: Optional[Any] = Field(
190
- alias="additionalMetaData", default=None
191
- )
192
193
 
193
194
 
194
195
  class AddonFragment(BaseModel):
@@ -314,42 +315,6 @@ class EntitlementFragmentFeature(FeatureFragment):
314
315
  pass
315
316
 
316
317
 
317
- class TotalPriceFragment(BaseModel):
318
- sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
319
- total: "TotalPriceFragmentTotal"
320
-
321
-
322
- class TotalPriceFragmentSubTotal(BaseModel):
323
- amount: float
324
- currency: Currency
325
-
326
-
327
- class TotalPriceFragmentTotal(BaseModel):
328
- amount: float
329
- currency: Currency
330
-
331
-
332
- class SlimCustomerFragment(BaseModel):
333
- id: Any
334
- name: Optional[str] = Field(default=None)
335
- email: Optional[str] = Field(default=None)
336
- created_at: Optional[Any] = Field(alias="createdAt", default=None)
337
- updated_at: Any = Field(alias="updatedAt")
338
- ref_id: str = Field(alias="refId")
339
- customer_id: str = Field(alias="customerId")
340
- billing_id: Optional[str] = Field(alias="billingId", default=None)
341
- additional_meta_data: Optional[Any] = Field(
342
- alias="additionalMetaData", default=None
343
- )
344
- aws_marketplace_customer_id: Optional[str] = Field(
345
- alias="awsMarketplaceCustomerId", default=None
346
- )
347
-
348
-
349
- class SubscriptionTrialConfigurationFragment(BaseModel):
350
- trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
351
-
352
-
353
318
  class SubscriptionInvoiceFragment(BaseModel):
354
319
  billing_id: str = Field(alias="billingId")
355
320
  status: SubscriptionInvoiceStatus
@@ -378,158 +343,40 @@ class SubscriptionInvoiceFragment(BaseModel):
378
343
  attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
379
344
 
380
345
 
381
- class SubscriptionFutureUpdateData(BaseModel):
382
- subscription_schedule_type: SubscriptionScheduleType = Field(
383
- alias="subscriptionScheduleType"
384
- )
385
- schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
386
- scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
387
- target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
388
- alias="targetPackage", default=None
389
- )
390
- schedule_variables: Optional[
391
- Annotated[
392
- Union[
393
- "SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
394
- "SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
395
- "SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
396
- "SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
397
- "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
398
- "SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
399
- "SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
400
- "SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
401
- ],
402
- Field(discriminator="typename__"),
403
- ]
404
- ] = Field(alias="scheduleVariables", default=None)
346
+ class SubscriptionTrialConfigurationFragment(BaseModel):
347
+ trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
405
348
 
406
349
 
407
- class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
350
+ class SlimCustomerFragment(BaseModel):
408
351
  id: Any
352
+ name: Optional[str] = Field(default=None)
353
+ email: Optional[str] = Field(default=None)
354
+ created_at: Optional[Any] = Field(alias="createdAt", default=None)
355
+ updated_at: Any = Field(alias="updatedAt")
409
356
  ref_id: str = Field(alias="refId")
410
- display_name: str = Field(alias="displayName")
411
-
412
-
413
- class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
414
- typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
415
- addon_ref_id: str = Field(alias="addonRefId")
416
- new_quantity: float = Field(alias="newQuantity")
417
-
418
-
419
- class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
420
- BaseModel
421
- ):
422
- typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
423
- addon_ref_id: str = Field(alias="addonRefId")
424
- feature_id: Optional[str] = Field(alias="featureId", default=None)
425
-
426
-
427
- class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
428
- BaseModel
429
- ):
430
- typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
431
- billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
432
-
433
-
434
- class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
435
- typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
436
-
437
-
438
- class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
439
- typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
440
- downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
441
- billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
442
- billable_features: Optional[
443
- List[
444
- "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
445
- ]
446
- ] = Field(alias="billableFeatures", default=None)
447
- addons: Optional[
448
- List[
449
- "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
450
- ]
451
- ] = Field(default=None)
452
- price_overrides: Optional[
453
- List[
454
- "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
455
- ]
456
- ] = Field(alias="priceOverrides", default=None)
457
-
458
-
459
- class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
460
- BaseModel
461
- ):
462
- feature_id: str = Field(alias="featureId")
463
- quantity: float
464
-
465
-
466
- class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
467
- BaseModel
468
- ):
469
- addon_ref_id: str = Field(alias="addonRefId")
470
- quantity: float
471
-
472
-
473
- class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
474
- BaseModel
475
- ):
476
- plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
477
- addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
478
- feature_id: Optional[str] = Field(alias="featureId", default=None)
479
-
480
-
481
- class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
482
- typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
483
- plan_ref_id: str = Field(alias="planRefId")
484
- change_type: PlanChangeType = Field(alias="changeType")
485
- billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
486
- billable_features: Optional[
487
- List[
488
- "SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
489
- ]
490
- ] = Field(alias="billableFeatures", default=None)
491
- addons: Optional[
492
- List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
493
- ] = Field(default=None)
494
- price_overrides: Optional[
495
- List[
496
- "SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
497
- ]
498
- ] = Field(alias="priceOverrides", default=None)
499
-
500
-
501
- class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
502
- BaseModel
503
- ):
504
- feature_id: str = Field(alias="featureId")
505
- quantity: float
506
-
507
-
508
- class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
509
- addon_ref_id: str = Field(alias="addonRefId")
510
- quantity: float
357
+ customer_id: str = Field(alias="customerId")
358
+ billing_id: Optional[str] = Field(alias="billingId", default=None)
359
+ additional_meta_data: Optional[Any] = Field(
360
+ alias="additionalMetaData", default=None
361
+ )
362
+ aws_marketplace_customer_id: Optional[str] = Field(
363
+ alias="awsMarketplaceCustomerId", default=None
364
+ )
511
365
 
512
366
 
513
- class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
514
- BaseModel
515
- ):
516
- plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
517
- addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
518
- feature_id: Optional[str] = Field(alias="featureId", default=None)
367
+ class TotalPriceFragment(BaseModel):
368
+ sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
369
+ total: "TotalPriceFragmentTotal"
519
370
 
520
371
 
521
- class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
522
- BaseModel
523
- ):
524
- typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
525
- plan_ref_id: str = Field(alias="planRefId")
526
- feature_id: Optional[str] = Field(alias="featureId", default=None)
372
+ class TotalPriceFragmentSubTotal(BaseModel):
373
+ amount: float
374
+ currency: Currency
527
375
 
528
376
 
529
- class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
530
- typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
531
- new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
532
- feature_id: Optional[str] = Field(alias="featureId", default=None)
377
+ class TotalPriceFragmentTotal(BaseModel):
378
+ amount: float
379
+ currency: Currency
533
380
 
534
381
 
535
382
  class ProductFragment(BaseModel):
@@ -818,6 +665,160 @@ class CustomerResourceFragment(BaseModel):
818
665
  resource_id: str = Field(alias="resourceId")
819
666
 
820
667
 
668
+ class SubscriptionFutureUpdateData(BaseModel):
669
+ subscription_schedule_type: SubscriptionScheduleType = Field(
670
+ alias="subscriptionScheduleType"
671
+ )
672
+ schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
673
+ scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
674
+ target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
675
+ alias="targetPackage", default=None
676
+ )
677
+ schedule_variables: Optional[
678
+ Annotated[
679
+ Union[
680
+ "SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
681
+ "SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
682
+ "SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
683
+ "SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
684
+ "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
685
+ "SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
686
+ "SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
687
+ "SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
688
+ ],
689
+ Field(discriminator="typename__"),
690
+ ]
691
+ ] = Field(alias="scheduleVariables", default=None)
692
+
693
+
694
+ class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
695
+ id: Any
696
+ ref_id: str = Field(alias="refId")
697
+ display_name: str = Field(alias="displayName")
698
+
699
+
700
+ class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
701
+ typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
702
+ addon_ref_id: str = Field(alias="addonRefId")
703
+ new_quantity: float = Field(alias="newQuantity")
704
+
705
+
706
+ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
707
+ BaseModel
708
+ ):
709
+ typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
710
+ addon_ref_id: str = Field(alias="addonRefId")
711
+ feature_id: Optional[str] = Field(alias="featureId", default=None)
712
+
713
+
714
+ class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
715
+ BaseModel
716
+ ):
717
+ typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
718
+ billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
719
+
720
+
721
+ class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
722
+ typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
723
+
724
+
725
+ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
726
+ typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
727
+ downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
728
+ billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
729
+ billable_features: Optional[
730
+ List[
731
+ "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
732
+ ]
733
+ ] = Field(alias="billableFeatures", default=None)
734
+ addons: Optional[
735
+ List[
736
+ "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
737
+ ]
738
+ ] = Field(default=None)
739
+ price_overrides: Optional[
740
+ List[
741
+ "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
742
+ ]
743
+ ] = Field(alias="priceOverrides", default=None)
744
+
745
+
746
+ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
747
+ BaseModel
748
+ ):
749
+ feature_id: str = Field(alias="featureId")
750
+ quantity: float
751
+
752
+
753
+ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
754
+ BaseModel
755
+ ):
756
+ addon_ref_id: str = Field(alias="addonRefId")
757
+ quantity: float
758
+
759
+
760
+ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
761
+ BaseModel
762
+ ):
763
+ plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
764
+ addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
765
+ feature_id: Optional[str] = Field(alias="featureId", default=None)
766
+
767
+
768
+ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
769
+ typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
770
+ plan_ref_id: str = Field(alias="planRefId")
771
+ change_type: PlanChangeType = Field(alias="changeType")
772
+ billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
773
+ billable_features: Optional[
774
+ List[
775
+ "SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
776
+ ]
777
+ ] = Field(alias="billableFeatures", default=None)
778
+ addons: Optional[
779
+ List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
780
+ ] = Field(default=None)
781
+ price_overrides: Optional[
782
+ List[
783
+ "SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
784
+ ]
785
+ ] = Field(alias="priceOverrides", default=None)
786
+
787
+
788
+ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
789
+ BaseModel
790
+ ):
791
+ feature_id: str = Field(alias="featureId")
792
+ quantity: float
793
+
794
+
795
+ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
796
+ addon_ref_id: str = Field(alias="addonRefId")
797
+ quantity: float
798
+
799
+
800
+ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
801
+ BaseModel
802
+ ):
803
+ plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
804
+ addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
805
+ feature_id: Optional[str] = Field(alias="featureId", default=None)
806
+
807
+
808
+ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
809
+ BaseModel
810
+ ):
811
+ typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
812
+ plan_ref_id: str = Field(alias="planRefId")
813
+ feature_id: Optional[str] = Field(alias="featureId", default=None)
814
+
815
+
816
+ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
817
+ typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
818
+ new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
819
+ feature_id: Optional[str] = Field(alias="featureId", default=None)
820
+
821
+
821
822
  class SubscriptionFragment(BaseModel):
822
823
  id: Any
823
824
  subscription_id: str = Field(alias="subscriptionId")
@@ -1496,6 +1497,13 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
1496
1497
  feature_id: Optional[str] = Field(alias="featureId", default=None)
1497
1498
 
1498
1499
 
1500
+ class CustomerPortalSubscriptionAddonFragment(BaseModel):
1501
+ addon_id: str = Field(alias="addonId")
1502
+ description: Optional[str] = Field(default=None)
1503
+ display_name: str = Field(alias="displayName")
1504
+ quantity: int
1505
+
1506
+
1499
1507
  class CustomerPortalSubscriptionPriceFragment(BaseModel):
1500
1508
  billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
1501
1509
  billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
@@ -1531,13 +1539,6 @@ class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
1531
1539
  )
1532
1540
 
1533
1541
 
1534
- class CustomerPortalSubscriptionAddonFragment(BaseModel):
1535
- addon_id: str = Field(alias="addonId")
1536
- description: Optional[str] = Field(default=None)
1537
- display_name: str = Field(alias="displayName")
1538
- quantity: int
1539
-
1540
-
1541
1542
  class CustomerPortalSubscriptionFragment(BaseModel):
1542
1543
  subscription_id: str = Field(alias="subscriptionId")
1543
1544
  plan_id: str = Field(alias="planId")
@@ -1869,40 +1870,6 @@ class MockPaywallAddonDependencyFragment(BaseModel):
1869
1870
  description: Optional[str] = Field(default=None)
1870
1871
 
1871
1872
 
1872
- class MockPaywallPackageEntitlementFragment(BaseModel):
1873
- usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
1874
- has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
1875
- has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
1876
- reset_period: Optional[EntitlementResetPeriod] = Field(
1877
- alias="resetPeriod", default=None
1878
- )
1879
- hidden_from_widgets: Optional[List[WidgetType]] = Field(
1880
- alias="hiddenFromWidgets", default=None
1881
- )
1882
- display_name_override: Optional[str] = Field(
1883
- alias="displayNameOverride", default=None
1884
- )
1885
- enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
1886
- feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
1887
- default=None
1888
- )
1889
-
1890
-
1891
- class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
1892
- feature_type: FeatureType = Field(alias="featureType")
1893
- meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
1894
- feature_units: Optional[str] = Field(alias="featureUnits", default=None)
1895
- feature_units_plural: Optional[str] = Field(
1896
- alias="featureUnitsPlural", default=None
1897
- )
1898
- display_name: str = Field(alias="displayName")
1899
- description: Optional[str] = Field(default=None)
1900
- ref_id: str = Field(alias="refId")
1901
- additional_meta_data: Optional[Any] = Field(
1902
- alias="additionalMetaData", default=None
1903
- )
1904
-
1905
-
1906
1873
  class MockPaywallPriceFragment(BaseModel):
1907
1874
  billing_model: BillingModel = Field(alias="billingModel")
1908
1875
  billing_period: BillingPeriod = Field(alias="billingPeriod")
@@ -1945,6 +1912,41 @@ class MockPaywallPriceFragmentFeature(BaseModel):
1945
1912
  display_name: str = Field(alias="displayName")
1946
1913
 
1947
1914
 
1915
+ class MockPaywallPackageEntitlementFragment(BaseModel):
1916
+ usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
1917
+ has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
1918
+ has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
1919
+ reset_period: Optional[EntitlementResetPeriod] = Field(
1920
+ alias="resetPeriod", default=None
1921
+ )
1922
+ hidden_from_widgets: Optional[List[WidgetType]] = Field(
1923
+ alias="hiddenFromWidgets", default=None
1924
+ )
1925
+ display_name_override: Optional[str] = Field(
1926
+ alias="displayNameOverride", default=None
1927
+ )
1928
+ enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
1929
+ is_granted: bool = Field(alias="isGranted")
1930
+ feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
1931
+ default=None
1932
+ )
1933
+
1934
+
1935
+ class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
1936
+ feature_type: FeatureType = Field(alias="featureType")
1937
+ meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
1938
+ feature_units: Optional[str] = Field(alias="featureUnits", default=None)
1939
+ feature_units_plural: Optional[str] = Field(
1940
+ alias="featureUnitsPlural", default=None
1941
+ )
1942
+ display_name: str = Field(alias="displayName")
1943
+ description: Optional[str] = Field(default=None)
1944
+ ref_id: str = Field(alias="refId")
1945
+ additional_meta_data: Optional[Any] = Field(
1946
+ alias="additionalMetaData", default=None
1947
+ )
1948
+
1949
+
1948
1950
  class MockPaywallAddonFragment(BaseModel):
1949
1951
  ref_id: str = Field(alias="refId")
1950
1952
  display_name: str = Field(alias="displayName")
@@ -2918,23 +2920,23 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
2918
2920
 
2919
2921
 
2920
2922
  AddonDependencyFragment.model_rebuild()
2923
+ PackageEntitlementFragment.model_rebuild()
2921
2924
  PriceTierFragment.model_rebuild()
2922
- PriceFragment.model_rebuild()
2923
2925
  OveragePriceFragment.model_rebuild()
2924
- PackageEntitlementFragment.model_rebuild()
2926
+ PriceFragment.model_rebuild()
2925
2927
  AddonFragment.model_rebuild()
2926
2928
  FeatureFragment.model_rebuild()
2927
2929
  EntitlementFragment.model_rebuild()
2928
- TotalPriceFragment.model_rebuild()
2929
- SlimCustomerFragment.model_rebuild()
2930
- SubscriptionTrialConfigurationFragment.model_rebuild()
2931
2930
  SubscriptionInvoiceFragment.model_rebuild()
2932
- SubscriptionFutureUpdateData.model_rebuild()
2931
+ SubscriptionTrialConfigurationFragment.model_rebuild()
2932
+ SlimCustomerFragment.model_rebuild()
2933
+ TotalPriceFragment.model_rebuild()
2933
2934
  ProductFragment.model_rebuild()
2934
2935
  PlanCompatiblePackageGroupsFragment.model_rebuild()
2935
2936
  PlanFragment.model_rebuild()
2936
2937
  SubscriptionScheduledUpdateData.model_rebuild()
2937
2938
  CustomerResourceFragment.model_rebuild()
2939
+ SubscriptionFutureUpdateData.model_rebuild()
2938
2940
  SubscriptionFragment.model_rebuild()
2939
2941
  ApplySubscriptionFragment.model_rebuild()
2940
2942
  FontVariantFragment.model_rebuild()
@@ -2951,8 +2953,8 @@ CustomerPortalConfigurationFragment.model_rebuild()
2951
2953
  CustomerPortalEntitlementFragment.model_rebuild()
2952
2954
  CustomerPortalPromotionalEntitlementFragment.model_rebuild()
2953
2955
  CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
2954
- CustomerPortalSubscriptionPriceFragment.model_rebuild()
2955
2956
  CustomerPortalSubscriptionAddonFragment.model_rebuild()
2957
+ CustomerPortalSubscriptionPriceFragment.model_rebuild()
2956
2958
  CustomerPortalSubscriptionFragment.model_rebuild()
2957
2959
  CustomerPortalFragment.model_rebuild()
2958
2960
  CustomerStatisticsFragment.model_rebuild()
@@ -2963,8 +2965,8 @@ EntitlementsUpdatedPayload.model_rebuild()
2963
2965
  ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
2964
2966
  LayoutConfigurationFragment.model_rebuild()
2965
2967
  MockPaywallAddonDependencyFragment.model_rebuild()
2966
- MockPaywallPackageEntitlementFragment.model_rebuild()
2967
2968
  MockPaywallPriceFragment.model_rebuild()
2969
+ MockPaywallPackageEntitlementFragment.model_rebuild()
2968
2970
  MockPaywallAddonFragment.model_rebuild()
2969
2971
  MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
2970
2972
  MockPaywallPlanFragment.model_rebuild()
@@ -4329,6 +4329,7 @@ class SubscriptionQueryFilter(BaseModel):
4329
4329
  resource_id: Optional["StringFieldComparison"] = Field(
4330
4330
  alias="resourceId", default=None
4331
4331
  )
4332
+ start_date: Optional["DateFieldComparison"] = Field(alias="startDate", default=None)
4332
4333
  status: Optional["SubscriptionStatusFilterComparison"] = None
4333
4334
 
4334
4335
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stigg-api-client-v2
3
- Version: 3.39.0
3
+ Version: 3.42.0
4
4
  Summary:
5
5
  License: STIGG SDK LICENSE
6
6
  Author: Stigg
@@ -110,20 +110,20 @@ stigg/generated/__init__.py,sha256=hLdgKGz4fpmi3uPgV3Cqa9PUJKmyHmxaWSQx9DrwspI,7
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
113
- stigg/generated/async_client.py,sha256=7z92sg368Mhk6qGtyvzUtrJLK18tKn3H3luPZspZ04w,179477
113
+ stigg/generated/async_client.py,sha256=_gbW7HPK1DYZdytT7tfkJVrFfziM-GrB7S29uwSEjGg,179645
114
114
  stigg/generated/base_client.py,sha256=nAto-nOqrOHFTLqdRy2ZDpT1afgsqCzf6hTeBh5MyPQ,6674
115
115
  stigg/generated/base_model.py,sha256=0rs99bmZqPbltlPVMfhExeA5zD6ATQFaNZVsxGNonI4,635
116
116
  stigg/generated/cancel_subscription.py,sha256=pKrMFmKjGIuWvnVCYQ8brWQO9_JeTnfScgGQjztuN-o,457
117
117
  stigg/generated/cancel_subscription_updates.py,sha256=T1C9vyppzZi_91pEnIGkHUL3GEsvtf5EMwr1f01tjbM,241
118
- stigg/generated/client.py,sha256=QgPQpe2QpTR2aYiq0IBtSh-fPTQQub2e5pzyT2uHlDE,178838
118
+ stigg/generated/client.py,sha256=zBvjwKMocm02W2CIXwZ4hXTv983k-xB1B3r5WWBfZ4g,179006
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=cNEhlwd9Vi1-qLpN1-Ru4bSqQli5ND3Yo3VPa6poRsM,37816
122
+ stigg/generated/enums.py,sha256=tr3n3nNt4Nv69cyZSDS1odYokmoWweu4s_Lec-IFu04,37844
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=0opsghgNRas9AUSzPqtsY6-TkDUQ_cQhq4Lt66aUX8o,106695
126
+ stigg/generated/fragments.py,sha256=vrPLxDIQ8LYg1FGvFMddrzgABe5kHT4YAVpGU2m5RJk,106791
127
127
  stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
128
128
  stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
129
129
  stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
@@ -148,7 +148,7 @@ stigg/generated/grant_promotional_entitlements.py,sha256=72PRYuqecL-0SkWb7deygkh
148
148
  stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
149
149
  stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
150
150
  stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
151
- stigg/generated/input_types.py,sha256=qK5WhLTLKNT-7oG0mrVx03-ZYVp10DqzLi-kGKJ9jmU,205901
151
+ stigg/generated/input_types.py,sha256=n3yy1NJBp5uwNzeqhMTRQ3MuLMBoJgADBv_51HW2hmg,205990
152
152
  stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
153
153
  stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
154
154
  stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
@@ -164,7 +164,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
164
164
  stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
165
165
  stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
166
166
  stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
167
- stigg_api_client_v2-3.39.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
168
- stigg_api_client_v2-3.39.0.dist-info/METADATA,sha256=JVoAoGkyDoMymqqo1iNBxq6tLcJ28V6ekap48vJ3PUw,2257
169
- stigg_api_client_v2-3.39.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
170
- stigg_api_client_v2-3.39.0.dist-info/RECORD,,
167
+ stigg_api_client_v2-3.42.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
168
+ stigg_api_client_v2-3.42.0.dist-info/METADATA,sha256=wHGNqhjb5eoiqTHGIMAgMXk6lgoNqBiXjMQLuZhNYRY,2257
169
+ stigg_api_client_v2-3.42.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
170
+ stigg_api_client_v2-3.42.0.dist-info/RECORD,,