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

@@ -45,6 +45,7 @@ from .enums import (
45
45
  CouponStatus,
46
46
  CouponType,
47
47
  CreditGrantType,
48
+ CreditLedgerEventType,
48
49
  Currency,
49
50
  CustomerResourceSortFields,
50
51
  CustomerSortFields,
@@ -646,6 +647,7 @@ from .input_types import (
646
647
  CreateWorkflowTriggerInput,
647
648
  CreditBalanceSummaryInput,
648
649
  CreditGrantInput,
650
+ CreditLedgerInput,
649
651
  CreditRateInput,
650
652
  CursorPaging,
651
653
  CustomCurrencyInput,
@@ -1122,6 +1124,8 @@ __all__ = [
1122
1124
  "CreditGrantFragmentCost",
1123
1125
  "CreditGrantInput",
1124
1126
  "CreditGrantType",
1127
+ "CreditLedgerEventType",
1128
+ "CreditLedgerInput",
1125
1129
  "CreditRateInput",
1126
1130
  "CreditsBalanceSummaryFragment",
1127
1131
  "CreditsBalanceSummaryFragmentBalances",
stigg/generated/enums.py CHANGED
@@ -165,6 +165,12 @@ class CreditGrantType(str, Enum):
165
165
  PROMOTIONAL = "PROMOTIONAL"
166
166
 
167
167
 
168
+ class CreditLedgerEventType(str, Enum):
169
+ CREDITS_CONSUMED = "CREDITS_CONSUMED"
170
+ CREDITS_EXPIRED = "CREDITS_EXPIRED"
171
+ CREDITS_GRANTED = "CREDITS_GRANTED"
172
+
173
+
168
174
  class Currency(str, Enum):
169
175
  AED = "AED"
170
176
  ALL = "ALL"
@@ -230,89 +230,23 @@ class AddonFragmentDependencies(AddonDependencyFragment):
230
230
  pass
231
231
 
232
232
 
233
- class FeatureFragment(BaseModel):
234
- typename__: str = Field(alias="__typename")
235
- feature_type: FeatureType = Field(alias="featureType")
236
- meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
237
- feature_units: Optional[str] = Field(alias="featureUnits", default=None)
238
- feature_units_plural: Optional[str] = Field(
239
- alias="featureUnitsPlural", default=None
240
- )
241
- description: Optional[str] = Field(default=None)
242
- display_name: str = Field(alias="displayName")
243
- ref_id: str = Field(alias="refId")
244
- unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
245
- alias="unitTransformation", default=None
246
- )
247
-
248
-
249
- class FeatureFragmentUnitTransformation(BaseModel):
250
- divide: float
251
- round: UnitTransformationRound
252
-
253
-
254
- class EntitlementFragment(BaseModel):
255
- typename__: str = Field(alias="__typename")
256
- is_granted: bool = Field(alias="isGranted")
257
- access_denied_reason: Optional[AccessDeniedReason] = Field(
258
- alias="accessDeniedReason", default=None
259
- )
260
- customer_id: Optional[str] = Field(alias="customerId", default=None)
261
- resource_id: Optional[str] = Field(alias="resourceId", default=None)
262
- usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
263
- has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
264
- has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
265
- current_usage: Optional[float] = Field(alias="currentUsage", default=None)
266
- requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
267
- requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
268
- enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
269
- entitlement_updated_at: Optional[Any] = Field(
270
- alias="entitlementUpdatedAt", default=None
271
- )
272
- usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
273
- usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
274
- usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
275
- usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
276
- next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
277
- reset_period: Optional[EntitlementResetPeriod] = Field(
278
- alias="resetPeriod", default=None
279
- )
280
- reset_period_configuration: Optional[
281
- Annotated[
282
- Union[
283
- "EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
284
- "EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
285
- "EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
286
- ],
287
- Field(discriminator="typename__"),
288
- ]
289
- ] = Field(alias="resetPeriodConfiguration", default=None)
290
- feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
291
-
292
-
293
- class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
294
- typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
295
- monthly_according_to: Optional[MonthlyAccordingTo] = Field(
296
- alias="monthlyAccordingTo", default=None
297
- )
233
+ class TotalPriceFragment(BaseModel):
234
+ sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
235
+ total: "TotalPriceFragmentTotal"
298
236
 
299
237
 
300
- class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
301
- typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
302
- weekly_according_to: Optional[WeeklyAccordingTo] = Field(
303
- alias="weeklyAccordingTo", default=None
304
- )
238
+ class TotalPriceFragmentSubTotal(BaseModel):
239
+ amount: float
240
+ currency: Currency
305
241
 
306
242
 
307
- class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
308
- typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
309
- yearly_according_to: Optional[YearlyAccordingTo] = Field(
310
- alias="yearlyAccordingTo", default=None
311
- )
243
+ class TotalPriceFragmentTotal(BaseModel):
244
+ amount: float
245
+ currency: Currency
312
246
 
313
247
 
314
- class EntitlementFragmentFeature(FeatureFragment):
315
- pass
248
+ class CustomerResourceFragment(BaseModel):
249
+ resource_id: str = Field(alias="resourceId")
316
250
 
317
251
 
318
252
  class SubscriptionInvoiceFragment(BaseModel):
@@ -347,38 +281,6 @@ class SubscriptionTrialConfigurationFragment(BaseModel):
347
281
  trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
348
282
 
349
283
 
350
- class SlimCustomerFragment(BaseModel):
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")
356
- ref_id: str = Field(alias="refId")
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
- )
365
-
366
-
367
- class TotalPriceFragment(BaseModel):
368
- sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
369
- total: "TotalPriceFragmentTotal"
370
-
371
-
372
- class TotalPriceFragmentSubTotal(BaseModel):
373
- amount: float
374
- currency: Currency
375
-
376
-
377
- class TotalPriceFragmentTotal(BaseModel):
378
- amount: float
379
- currency: Currency
380
-
381
-
382
284
  class ProductFragment(BaseModel):
383
285
  ref_id: str = Field(alias="refId")
384
286
  display_name: Optional[str] = Field(alias="displayName", default=None)
@@ -499,45 +401,62 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
499
401
  limit: float
500
402
 
501
403
 
502
- class SubscriptionScheduledUpdateData(BaseModel):
404
+ class SlimCustomerFragment(BaseModel):
405
+ id: Any
406
+ name: Optional[str] = Field(default=None)
407
+ email: Optional[str] = Field(default=None)
408
+ created_at: Optional[Any] = Field(alias="createdAt", default=None)
409
+ updated_at: Any = Field(alias="updatedAt")
410
+ ref_id: str = Field(alias="refId")
411
+ customer_id: str = Field(alias="customerId")
412
+ billing_id: Optional[str] = Field(alias="billingId", default=None)
413
+ additional_meta_data: Optional[Any] = Field(
414
+ alias="additionalMetaData", default=None
415
+ )
416
+ aws_marketplace_customer_id: Optional[str] = Field(
417
+ alias="awsMarketplaceCustomerId", default=None
418
+ )
419
+
420
+
421
+ class SubscriptionFutureUpdateData(BaseModel):
503
422
  subscription_schedule_type: SubscriptionScheduleType = Field(
504
423
  alias="subscriptionScheduleType"
505
424
  )
506
425
  schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
507
426
  scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
508
- target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
427
+ target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
509
428
  alias="targetPackage", default=None
510
429
  )
511
430
  schedule_variables: Optional[
512
431
  Annotated[
513
432
  Union[
514
- "SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
515
- "SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
516
- "SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
517
- "SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
518
- "SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
519
- "SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
520
- "SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
521
- "SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
433
+ "SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
434
+ "SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
435
+ "SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
436
+ "SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
437
+ "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
438
+ "SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
439
+ "SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
440
+ "SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
522
441
  ],
523
442
  Field(discriminator="typename__"),
524
443
  ]
525
444
  ] = Field(alias="scheduleVariables", default=None)
526
445
 
527
446
 
528
- class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
447
+ class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
529
448
  id: Any
530
449
  ref_id: str = Field(alias="refId")
531
450
  display_name: str = Field(alias="displayName")
532
451
 
533
452
 
534
- class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
453
+ class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
535
454
  typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
536
455
  addon_ref_id: str = Field(alias="addonRefId")
537
456
  new_quantity: float = Field(alias="newQuantity")
538
457
 
539
458
 
540
- class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
459
+ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
541
460
  BaseModel
542
461
  ):
543
462
  typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
@@ -545,55 +464,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
545
464
  feature_id: Optional[str] = Field(alias="featureId", default=None)
546
465
 
547
466
 
548
- class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
467
+ class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
549
468
  BaseModel
550
469
  ):
551
470
  typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
552
471
  billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
553
472
 
554
473
 
555
- class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
474
+ class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
556
475
  typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
557
476
 
558
477
 
559
- class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
560
- BaseModel
561
- ):
478
+ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
562
479
  typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
563
480
  downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
564
481
  billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
565
482
  billable_features: Optional[
566
483
  List[
567
- "SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
484
+ "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
568
485
  ]
569
486
  ] = Field(alias="billableFeatures", default=None)
570
487
  addons: Optional[
571
488
  List[
572
- "SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
489
+ "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
573
490
  ]
574
491
  ] = Field(default=None)
575
492
  price_overrides: Optional[
576
493
  List[
577
- "SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
494
+ "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
578
495
  ]
579
496
  ] = Field(alias="priceOverrides", default=None)
580
497
 
581
498
 
582
- class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
499
+ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
583
500
  BaseModel
584
501
  ):
585
502
  feature_id: str = Field(alias="featureId")
586
503
  quantity: float
587
504
 
588
505
 
589
- class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
506
+ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
590
507
  BaseModel
591
508
  ):
592
509
  addon_ref_id: str = Field(alias="addonRefId")
593
510
  quantity: float
594
511
 
595
512
 
596
- class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
513
+ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
597
514
  BaseModel
598
515
  ):
599
516
  plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
@@ -601,43 +518,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
601
518
  feature_id: Optional[str] = Field(alias="featureId", default=None)
602
519
 
603
520
 
604
- class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
521
+ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
605
522
  typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
606
523
  plan_ref_id: str = Field(alias="planRefId")
607
524
  change_type: PlanChangeType = Field(alias="changeType")
608
525
  billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
609
526
  billable_features: Optional[
610
527
  List[
611
- "SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
528
+ "SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
612
529
  ]
613
530
  ] = Field(alias="billableFeatures", default=None)
614
531
  addons: Optional[
615
- List[
616
- "SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
617
- ]
532
+ List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
618
533
  ] = Field(default=None)
619
534
  price_overrides: Optional[
620
535
  List[
621
- "SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
536
+ "SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
622
537
  ]
623
538
  ] = Field(alias="priceOverrides", default=None)
624
539
 
625
540
 
626
- class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
541
+ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
627
542
  BaseModel
628
543
  ):
629
544
  feature_id: str = Field(alias="featureId")
630
545
  quantity: float
631
546
 
632
547
 
633
- class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
634
- BaseModel
635
- ):
548
+ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
636
549
  addon_ref_id: str = Field(alias="addonRefId")
637
550
  quantity: float
638
551
 
639
552
 
640
- class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
553
+ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
641
554
  BaseModel
642
555
  ):
643
556
  plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
@@ -645,7 +558,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
645
558
  feature_id: Optional[str] = Field(alias="featureId", default=None)
646
559
 
647
560
 
648
- class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
561
+ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
649
562
  BaseModel
650
563
  ):
651
564
  typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
@@ -653,57 +566,51 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
653
566
  feature_id: Optional[str] = Field(alias="featureId", default=None)
654
567
 
655
568
 
656
- class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
657
- BaseModel
658
- ):
569
+ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
659
570
  typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
660
571
  new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
661
572
  feature_id: Optional[str] = Field(alias="featureId", default=None)
662
573
 
663
574
 
664
- class CustomerResourceFragment(BaseModel):
665
- resource_id: str = Field(alias="resourceId")
666
-
667
-
668
- class SubscriptionFutureUpdateData(BaseModel):
575
+ class SubscriptionScheduledUpdateData(BaseModel):
669
576
  subscription_schedule_type: SubscriptionScheduleType = Field(
670
577
  alias="subscriptionScheduleType"
671
578
  )
672
579
  schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
673
580
  scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
674
- target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
581
+ target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
675
582
  alias="targetPackage", default=None
676
583
  )
677
584
  schedule_variables: Optional[
678
585
  Annotated[
679
586
  Union[
680
- "SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
681
- "SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
682
- "SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
683
- "SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
684
- "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
685
- "SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
686
- "SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
687
- "SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
587
+ "SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
588
+ "SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
589
+ "SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
590
+ "SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
591
+ "SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
592
+ "SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
593
+ "SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
594
+ "SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
688
595
  ],
689
596
  Field(discriminator="typename__"),
690
597
  ]
691
598
  ] = Field(alias="scheduleVariables", default=None)
692
599
 
693
600
 
694
- class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
601
+ class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
695
602
  id: Any
696
603
  ref_id: str = Field(alias="refId")
697
604
  display_name: str = Field(alias="displayName")
698
605
 
699
606
 
700
- class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
607
+ class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
701
608
  typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
702
609
  addon_ref_id: str = Field(alias="addonRefId")
703
610
  new_quantity: float = Field(alias="newQuantity")
704
611
 
705
612
 
706
- class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
613
+ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
707
614
  BaseModel
708
615
  ):
709
616
  typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
@@ -711,53 +618,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
711
618
  feature_id: Optional[str] = Field(alias="featureId", default=None)
712
619
 
713
620
 
714
- class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
621
+ class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
715
622
  BaseModel
716
623
  ):
717
624
  typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
718
625
  billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
719
626
 
720
627
 
721
- class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
628
+ class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
722
629
  typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
723
630
 
724
631
 
725
- class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
632
+ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
633
+ BaseModel
634
+ ):
726
635
  typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
727
636
  downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
728
637
  billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
729
638
  billable_features: Optional[
730
639
  List[
731
- "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
640
+ "SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
732
641
  ]
733
642
  ] = Field(alias="billableFeatures", default=None)
734
643
  addons: Optional[
735
644
  List[
736
- "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
645
+ "SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
737
646
  ]
738
647
  ] = Field(default=None)
739
648
  price_overrides: Optional[
740
649
  List[
741
- "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
650
+ "SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
742
651
  ]
743
652
  ] = Field(alias="priceOverrides", default=None)
744
653
 
745
654
 
746
- class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
655
+ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
747
656
  BaseModel
748
657
  ):
749
658
  feature_id: str = Field(alias="featureId")
750
659
  quantity: float
751
660
 
752
661
 
753
- class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
662
+ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
754
663
  BaseModel
755
664
  ):
756
665
  addon_ref_id: str = Field(alias="addonRefId")
757
666
  quantity: float
758
667
 
759
668
 
760
- class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
669
+ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
761
670
  BaseModel
762
671
  ):
763
672
  plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
@@ -765,39 +674,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
765
674
  feature_id: Optional[str] = Field(alias="featureId", default=None)
766
675
 
767
676
 
768
- class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
677
+ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
769
678
  typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
770
679
  plan_ref_id: str = Field(alias="planRefId")
771
680
  change_type: PlanChangeType = Field(alias="changeType")
772
681
  billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
773
682
  billable_features: Optional[
774
683
  List[
775
- "SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
684
+ "SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
776
685
  ]
777
686
  ] = Field(alias="billableFeatures", default=None)
778
687
  addons: Optional[
779
- List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
688
+ List[
689
+ "SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
690
+ ]
780
691
  ] = Field(default=None)
781
692
  price_overrides: Optional[
782
693
  List[
783
- "SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
694
+ "SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
784
695
  ]
785
696
  ] = Field(alias="priceOverrides", default=None)
786
697
 
787
698
 
788
- class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
699
+ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
789
700
  BaseModel
790
701
  ):
791
702
  feature_id: str = Field(alias="featureId")
792
703
  quantity: float
793
704
 
794
705
 
795
- class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
706
+ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
707
+ BaseModel
708
+ ):
796
709
  addon_ref_id: str = Field(alias="addonRefId")
797
710
  quantity: float
798
711
 
799
712
 
800
- class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
713
+ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
801
714
  BaseModel
802
715
  ):
803
716
  plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
@@ -805,7 +718,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
805
718
  feature_id: Optional[str] = Field(alias="featureId", default=None)
806
719
 
807
720
 
808
- class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
721
+ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
809
722
  BaseModel
810
723
  ):
811
724
  typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
@@ -813,7 +726,9 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
813
726
  feature_id: Optional[str] = Field(alias="featureId", default=None)
814
727
 
815
728
 
816
- class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
729
+ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
730
+ BaseModel
731
+ ):
817
732
  typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
818
733
  new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
819
734
  feature_id: Optional[str] = Field(alias="featureId", default=None)
@@ -928,6 +843,91 @@ class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragm
928
843
  pass
929
844
 
930
845
 
846
+ class FeatureFragment(BaseModel):
847
+ typename__: str = Field(alias="__typename")
848
+ feature_type: FeatureType = Field(alias="featureType")
849
+ meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
850
+ feature_units: Optional[str] = Field(alias="featureUnits", default=None)
851
+ feature_units_plural: Optional[str] = Field(
852
+ alias="featureUnitsPlural", default=None
853
+ )
854
+ description: Optional[str] = Field(default=None)
855
+ display_name: str = Field(alias="displayName")
856
+ ref_id: str = Field(alias="refId")
857
+ unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
858
+ alias="unitTransformation", default=None
859
+ )
860
+
861
+
862
+ class FeatureFragmentUnitTransformation(BaseModel):
863
+ divide: float
864
+ round: UnitTransformationRound
865
+
866
+
867
+ class EntitlementFragment(BaseModel):
868
+ typename__: str = Field(alias="__typename")
869
+ is_granted: bool = Field(alias="isGranted")
870
+ access_denied_reason: Optional[AccessDeniedReason] = Field(
871
+ alias="accessDeniedReason", default=None
872
+ )
873
+ customer_id: Optional[str] = Field(alias="customerId", default=None)
874
+ resource_id: Optional[str] = Field(alias="resourceId", default=None)
875
+ usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
876
+ has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
877
+ has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
878
+ current_usage: Optional[float] = Field(alias="currentUsage", default=None)
879
+ requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
880
+ requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
881
+ enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
882
+ entitlement_updated_at: Optional[Any] = Field(
883
+ alias="entitlementUpdatedAt", default=None
884
+ )
885
+ usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
886
+ usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
887
+ usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
888
+ usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
889
+ next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
890
+ reset_period: Optional[EntitlementResetPeriod] = Field(
891
+ alias="resetPeriod", default=None
892
+ )
893
+ reset_period_configuration: Optional[
894
+ Annotated[
895
+ Union[
896
+ "EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
897
+ "EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
898
+ "EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
899
+ ],
900
+ Field(discriminator="typename__"),
901
+ ]
902
+ ] = Field(alias="resetPeriodConfiguration", default=None)
903
+ feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
904
+
905
+
906
+ class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
907
+ typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
908
+ monthly_according_to: Optional[MonthlyAccordingTo] = Field(
909
+ alias="monthlyAccordingTo", default=None
910
+ )
911
+
912
+
913
+ class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
914
+ typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
915
+ weekly_according_to: Optional[WeeklyAccordingTo] = Field(
916
+ alias="weeklyAccordingTo", default=None
917
+ )
918
+
919
+
920
+ class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
921
+ typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
922
+ yearly_according_to: Optional[YearlyAccordingTo] = Field(
923
+ alias="yearlyAccordingTo", default=None
924
+ )
925
+
926
+
927
+ class EntitlementFragmentFeature(FeatureFragment):
928
+ pass
929
+
930
+
931
931
  class ApplySubscriptionFragment(BaseModel):
932
932
  subscription: Optional["ApplySubscriptionFragmentSubscription"] = Field(
933
933
  default=None
@@ -1328,6 +1328,13 @@ class CustomerPortalPromotionalEntitlementFragment(BaseModel):
1328
1328
  end_date: Optional[Any] = Field(alias="endDate", default=None)
1329
1329
 
1330
1330
 
1331
+ class CustomerPortalSubscriptionAddonFragment(BaseModel):
1332
+ addon_id: str = Field(alias="addonId")
1333
+ description: Optional[str] = Field(default=None)
1334
+ display_name: str = Field(alias="displayName")
1335
+ quantity: int
1336
+
1337
+
1331
1338
  class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
1332
1339
  subscription_schedule_type: SubscriptionScheduleType = Field(
1333
1340
  alias="subscriptionScheduleType"
@@ -1497,13 +1504,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
1497
1504
  feature_id: Optional[str] = Field(alias="featureId", default=None)
1498
1505
 
1499
1506
 
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
-
1507
1507
  class CustomerPortalSubscriptionPriceFragment(BaseModel):
1508
1508
  billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
1509
1509
  billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
@@ -2925,19 +2925,19 @@ PriceTierFragment.model_rebuild()
2925
2925
  OveragePriceFragment.model_rebuild()
2926
2926
  PriceFragment.model_rebuild()
2927
2927
  AddonFragment.model_rebuild()
2928
- FeatureFragment.model_rebuild()
2929
- EntitlementFragment.model_rebuild()
2928
+ TotalPriceFragment.model_rebuild()
2929
+ CustomerResourceFragment.model_rebuild()
2930
2930
  SubscriptionInvoiceFragment.model_rebuild()
2931
2931
  SubscriptionTrialConfigurationFragment.model_rebuild()
2932
- SlimCustomerFragment.model_rebuild()
2933
- TotalPriceFragment.model_rebuild()
2934
2932
  ProductFragment.model_rebuild()
2935
2933
  PlanCompatiblePackageGroupsFragment.model_rebuild()
2936
2934
  PlanFragment.model_rebuild()
2937
- SubscriptionScheduledUpdateData.model_rebuild()
2938
- CustomerResourceFragment.model_rebuild()
2935
+ SlimCustomerFragment.model_rebuild()
2939
2936
  SubscriptionFutureUpdateData.model_rebuild()
2937
+ SubscriptionScheduledUpdateData.model_rebuild()
2940
2938
  SubscriptionFragment.model_rebuild()
2939
+ FeatureFragment.model_rebuild()
2940
+ EntitlementFragment.model_rebuild()
2941
2941
  ApplySubscriptionFragment.model_rebuild()
2942
2942
  FontVariantFragment.model_rebuild()
2943
2943
  TypographyConfigurationFragment.model_rebuild()
@@ -2952,8 +2952,8 @@ CustomerPortalBillingInformationFragment.model_rebuild()
2952
2952
  CustomerPortalConfigurationFragment.model_rebuild()
2953
2953
  CustomerPortalEntitlementFragment.model_rebuild()
2954
2954
  CustomerPortalPromotionalEntitlementFragment.model_rebuild()
2955
- CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
2956
2955
  CustomerPortalSubscriptionAddonFragment.model_rebuild()
2956
+ CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
2957
2957
  CustomerPortalSubscriptionPriceFragment.model_rebuild()
2958
2958
  CustomerPortalSubscriptionFragment.model_rebuild()
2959
2959
  CustomerPortalFragment.model_rebuild()
@@ -818,6 +818,12 @@ class CreditGrantInput(BaseModel):
818
818
  resource_id: Optional[str] = Field(alias="resourceId", default=None)
819
819
 
820
820
 
821
+ class CreditLedgerInput(BaseModel):
822
+ customer_id: str = Field(alias="customerId")
823
+ environment_id: Optional[Any] = Field(alias="environmentId", default=None)
824
+ resource_id: Optional[str] = Field(alias="resourceId", default=None)
825
+
826
+
821
827
  class CreditRateInput(BaseModel):
822
828
  amount: float
823
829
  custom_currency_id: Any = Field(alias="customCurrencyId")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stigg-api-client-v2
3
- Version: 3.42.0
3
+ Version: 3.48.0
4
4
  Summary:
5
5
  License: STIGG SDK LICENSE
6
6
  Author: Stigg
@@ -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=hLdgKGz4fpmi3uPgV3Cqa9PUJKmyHmxaWSQx9DrwspI,73646
109
+ stigg/generated/__init__.py,sha256=4DMrNBFLD5CYn1gjBIJSaKTnoenq6H8YbtYRVqjtCys,73750
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=zBvjwKMocm02W2CIXwZ4hXTv983k-xB1B3r5WWBfZ4g,179
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=tr3n3nNt4Nv69cyZSDS1odYokmoWweu4s_Lec-IFu04,37844
122
+ stigg/generated/enums.py,sha256=4wSfEXeZZqMSjsCsSG8baVg3Si8sjzV3bp_unHWHBtQ,38008
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=vrPLxDIQ8LYg1FGvFMddrzgABe5kHT4YAVpGU2m5RJk,106791
126
+ stigg/generated/fragments.py,sha256=d4vKoooIhgOT9N_d58nUZyKuqHJ7zeoMycUCdjO35Mo,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=n3yy1NJBp5uwNzeqhMTRQ3MuLMBoJgADBv_51HW2hmg,205990
151
+ stigg/generated/input_types.py,sha256=0mdVfdD_93PNOIycmcrkDXm3YIfhxx7APLIhTSKWpx4,206229
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.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,,
167
+ stigg_api_client_v2-3.48.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
168
+ stigg_api_client_v2-3.48.0.dist-info/METADATA,sha256=M3jWh1yYXam2IWQM2cGB2O4Q28vRxMfgCPIg2iaiIDA,2257
169
+ stigg_api_client_v2-3.48.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
170
+ stigg_api_client_v2-3.48.0.dist-info/RECORD,,