stigg-api-client-v2 2.354.2__py3-none-any.whl → 2.359.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- stigg/generated/enums.py +2 -0
- stigg/generated/fragments.py +323 -323
- {stigg_api_client_v2-2.354.2.dist-info → stigg_api_client_v2-2.359.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.354.2.dist-info → stigg_api_client_v2-2.359.0.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-2.354.2.dist-info → stigg_api_client_v2-2.359.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.354.2.dist-info → stigg_api_client_v2-2.359.0.dist-info}/WHEEL +0 -0
stigg/generated/enums.py
CHANGED
|
@@ -71,6 +71,7 @@ class ApiKeyType(str, Enum):
|
|
|
71
71
|
CLIENT = "CLIENT"
|
|
72
72
|
SALESFORCE = "SALESFORCE"
|
|
73
73
|
SERVER = "SERVER"
|
|
74
|
+
WORKFLOW = "WORKFLOW"
|
|
74
75
|
|
|
75
76
|
|
|
76
77
|
class Auth0ApplicationType(str, Enum):
|
|
@@ -573,6 +574,7 @@ class EventActor(str, Enum):
|
|
|
573
574
|
SUPPORT = "SUPPORT"
|
|
574
575
|
SYSTEM = "SYSTEM"
|
|
575
576
|
USER = "USER"
|
|
577
|
+
WORKFLOW = "WORKFLOW"
|
|
576
578
|
|
|
577
579
|
|
|
578
580
|
class EventEntityType(str, Enum):
|
stigg/generated/fragments.py
CHANGED
|
@@ -216,106 +216,170 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
216
216
|
pass
|
|
217
217
|
|
|
218
218
|
|
|
219
|
-
class
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
219
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
220
|
+
billing_id: str = Field(alias="billingId")
|
|
221
|
+
status: SubscriptionInvoiceStatus
|
|
222
|
+
created_at: Any = Field(alias="createdAt")
|
|
223
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
224
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
225
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
226
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
227
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
228
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
229
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
230
|
+
alias="billingReason", default=None
|
|
226
231
|
)
|
|
232
|
+
currency: Optional[str] = Field(default=None)
|
|
233
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
234
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
235
|
+
alias="subTotalExcludingTax", default=None
|
|
236
|
+
)
|
|
237
|
+
total: Optional[float] = Field(default=None)
|
|
238
|
+
total_excluding_tax: Optional[float] = Field(
|
|
239
|
+
alias="totalExcludingTax", default=None
|
|
240
|
+
)
|
|
241
|
+
tax: Optional[float] = Field(default=None)
|
|
242
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
243
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
class CustomerResourceFragment(BaseModel):
|
|
247
|
+
resource_id: str = Field(alias="resourceId")
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
class TotalPriceFragment(BaseModel):
|
|
251
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
252
|
+
total: "TotalPriceFragmentTotal"
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
256
|
+
amount: float
|
|
257
|
+
currency: Currency
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
261
|
+
amount: float
|
|
262
|
+
currency: Currency
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
class ProductFragment(BaseModel):
|
|
266
|
+
ref_id: str = Field(alias="refId")
|
|
267
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
227
268
|
description: Optional[str] = Field(default=None)
|
|
228
|
-
|
|
269
|
+
additional_meta_data: Optional[Any] = Field(
|
|
270
|
+
alias="additionalMetaData", default=None
|
|
271
|
+
)
|
|
272
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
276
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
277
|
+
alias="downgradePlan", default=None
|
|
278
|
+
)
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
229
282
|
ref_id: str = Field(alias="refId")
|
|
230
|
-
|
|
231
|
-
|
|
283
|
+
display_name: str = Field(alias="displayName")
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
287
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
288
|
+
display_name: str = Field(alias="displayName")
|
|
289
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
290
|
+
default=None
|
|
232
291
|
)
|
|
292
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
233
293
|
|
|
234
294
|
|
|
235
|
-
class
|
|
236
|
-
|
|
237
|
-
round: UnitTransformationRound
|
|
295
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
296
|
+
pass
|
|
238
297
|
|
|
239
298
|
|
|
240
|
-
class
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
299
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
300
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
301
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
class PlanFragment(BaseModel):
|
|
305
|
+
id: str
|
|
306
|
+
ref_id: str = Field(alias="refId")
|
|
307
|
+
display_name: str = Field(alias="displayName")
|
|
308
|
+
description: Optional[str] = Field(default=None)
|
|
309
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
310
|
+
version_number: int = Field(alias="versionNumber")
|
|
311
|
+
additional_meta_data: Optional[Any] = Field(
|
|
312
|
+
alias="additionalMetaData", default=None
|
|
245
313
|
)
|
|
246
|
-
|
|
247
|
-
|
|
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
|
|
314
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
315
|
+
alias="hiddenFromWidgets", default=None
|
|
255
316
|
)
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
317
|
+
product: "PlanFragmentProduct"
|
|
318
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
319
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
320
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
321
|
+
alias="inheritedEntitlements", default=None
|
|
322
|
+
)
|
|
323
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
324
|
+
alias="compatibleAddons", default=None
|
|
325
|
+
)
|
|
326
|
+
compatible_package_groups: Optional[
|
|
327
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
328
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
329
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
330
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
331
|
+
alias="overagePrices", default=None
|
|
332
|
+
)
|
|
333
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
334
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
335
|
+
alias="defaultTrialConfig", default=None
|
|
263
336
|
)
|
|
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
337
|
|
|
276
338
|
|
|
277
|
-
class
|
|
278
|
-
|
|
279
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
280
|
-
alias="monthlyAccordingTo", default=None
|
|
281
|
-
)
|
|
339
|
+
class PlanFragmentProduct(ProductFragment):
|
|
340
|
+
pass
|
|
282
341
|
|
|
283
342
|
|
|
284
|
-
class
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
alias="weeklyAccordingTo", default=None
|
|
288
|
-
)
|
|
343
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
344
|
+
ref_id: str = Field(alias="refId")
|
|
345
|
+
display_name: str = Field(alias="displayName")
|
|
289
346
|
|
|
290
347
|
|
|
291
|
-
class
|
|
292
|
-
|
|
293
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
294
|
-
alias="yearlyAccordingTo", default=None
|
|
295
|
-
)
|
|
348
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
349
|
+
pass
|
|
296
350
|
|
|
297
351
|
|
|
298
|
-
class
|
|
352
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
299
353
|
pass
|
|
300
354
|
|
|
301
355
|
|
|
302
|
-
class
|
|
303
|
-
|
|
356
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
357
|
+
pass
|
|
304
358
|
|
|
305
359
|
|
|
306
|
-
class
|
|
307
|
-
|
|
308
|
-
total: "TotalPriceFragmentTotal"
|
|
360
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
361
|
+
pass
|
|
309
362
|
|
|
310
363
|
|
|
311
|
-
class
|
|
312
|
-
|
|
313
|
-
currency: Currency
|
|
364
|
+
class PlanFragmentPrices(PriceFragment):
|
|
365
|
+
pass
|
|
314
366
|
|
|
315
367
|
|
|
316
|
-
class
|
|
317
|
-
|
|
318
|
-
|
|
368
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
369
|
+
pass
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
373
|
+
duration: float
|
|
374
|
+
units: TrialPeriodUnits
|
|
375
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
376
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
377
|
+
alias="trialEndBehavior", default=None
|
|
378
|
+
)
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
382
|
+
limit: float
|
|
319
383
|
|
|
320
384
|
|
|
321
385
|
class SlimCustomerFragment(BaseModel):
|
|
@@ -489,151 +553,8 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
489
553
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
490
554
|
|
|
491
555
|
|
|
492
|
-
class
|
|
493
|
-
|
|
494
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
495
|
-
description: Optional[str] = Field(default=None)
|
|
496
|
-
additional_meta_data: Optional[Any] = Field(
|
|
497
|
-
alias="additionalMetaData", default=None
|
|
498
|
-
)
|
|
499
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
503
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
504
|
-
alias="downgradePlan", default=None
|
|
505
|
-
)
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
509
|
-
ref_id: str = Field(alias="refId")
|
|
510
|
-
display_name: str = Field(alias="displayName")
|
|
511
|
-
|
|
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
|
-
|
|
531
|
-
class PlanFragment(BaseModel):
|
|
532
|
-
id: str
|
|
533
|
-
ref_id: str = Field(alias="refId")
|
|
534
|
-
display_name: str = Field(alias="displayName")
|
|
535
|
-
description: Optional[str] = Field(default=None)
|
|
536
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
537
|
-
version_number: int = Field(alias="versionNumber")
|
|
538
|
-
additional_meta_data: Optional[Any] = Field(
|
|
539
|
-
alias="additionalMetaData", default=None
|
|
540
|
-
)
|
|
541
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
542
|
-
alias="hiddenFromWidgets", default=None
|
|
543
|
-
)
|
|
544
|
-
product: "PlanFragmentProduct"
|
|
545
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
546
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
547
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
548
|
-
alias="inheritedEntitlements", default=None
|
|
549
|
-
)
|
|
550
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
551
|
-
alias="compatibleAddons", default=None
|
|
552
|
-
)
|
|
553
|
-
compatible_package_groups: Optional[
|
|
554
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
555
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
556
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
557
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
558
|
-
alias="overagePrices", default=None
|
|
559
|
-
)
|
|
560
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
561
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
562
|
-
alias="defaultTrialConfig", default=None
|
|
563
|
-
)
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
class PlanFragmentProduct(ProductFragment):
|
|
567
|
-
pass
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
571
|
-
ref_id: str = Field(alias="refId")
|
|
572
|
-
display_name: str = Field(alias="displayName")
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
576
|
-
pass
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
580
|
-
pass
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
584
|
-
pass
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
588
|
-
pass
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
class PlanFragmentPrices(PriceFragment):
|
|
592
|
-
pass
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
596
|
-
pass
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
600
|
-
duration: float
|
|
601
|
-
units: TrialPeriodUnits
|
|
602
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
603
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
604
|
-
alias="trialEndBehavior", default=None
|
|
605
|
-
)
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
609
|
-
limit: float
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
613
|
-
billing_id: str = Field(alias="billingId")
|
|
614
|
-
status: SubscriptionInvoiceStatus
|
|
615
|
-
created_at: Any = Field(alias="createdAt")
|
|
616
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
617
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
618
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
619
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
620
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
621
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
622
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
623
|
-
alias="billingReason", default=None
|
|
624
|
-
)
|
|
625
|
-
currency: Optional[str] = Field(default=None)
|
|
626
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
627
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
628
|
-
alias="subTotalExcludingTax", default=None
|
|
629
|
-
)
|
|
630
|
-
total: Optional[float] = Field(default=None)
|
|
631
|
-
total_excluding_tax: Optional[float] = Field(
|
|
632
|
-
alias="totalExcludingTax", default=None
|
|
633
|
-
)
|
|
634
|
-
tax: Optional[float] = Field(default=None)
|
|
635
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
636
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
556
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
557
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
637
558
|
|
|
638
559
|
|
|
639
560
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
@@ -798,10 +719,6 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
798
719
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
799
720
|
|
|
800
721
|
|
|
801
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
802
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
803
|
-
|
|
804
|
-
|
|
805
722
|
class SubscriptionFragment(BaseModel):
|
|
806
723
|
id: str
|
|
807
724
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -885,29 +802,112 @@ class SubscriptionFragmentTotalPrice(TotalPriceFragment):
|
|
|
885
802
|
pass
|
|
886
803
|
|
|
887
804
|
|
|
888
|
-
class SubscriptionFragmentPlan(PlanFragment):
|
|
889
|
-
pass
|
|
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
|
+
)
|
|
845
|
+
|
|
846
|
+
|
|
847
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
848
|
+
divide: float
|
|
849
|
+
round: UnitTransformationRound
|
|
890
850
|
|
|
891
851
|
|
|
892
|
-
class
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
852
|
+
class EntitlementFragment(BaseModel):
|
|
853
|
+
typename__: str = Field(alias="__typename")
|
|
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)
|
|
896
887
|
|
|
897
888
|
|
|
898
|
-
class
|
|
899
|
-
|
|
889
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
890
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
891
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
892
|
+
alias="monthlyAccordingTo", default=None
|
|
893
|
+
)
|
|
900
894
|
|
|
901
895
|
|
|
902
|
-
class
|
|
903
|
-
|
|
896
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
897
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
898
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
899
|
+
alias="weeklyAccordingTo", default=None
|
|
900
|
+
)
|
|
904
901
|
|
|
905
902
|
|
|
906
|
-
class
|
|
907
|
-
|
|
903
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
904
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
905
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
906
|
+
alias="yearlyAccordingTo", default=None
|
|
907
|
+
)
|
|
908
908
|
|
|
909
909
|
|
|
910
|
-
class
|
|
910
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
911
911
|
pass
|
|
912
912
|
|
|
913
913
|
|
|
@@ -988,35 +988,6 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
988
988
|
)
|
|
989
989
|
|
|
990
990
|
|
|
991
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
992
|
-
status: PromotionalEntitlementStatus
|
|
993
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
994
|
-
feature_id: str = Field(alias="featureId")
|
|
995
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
996
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
997
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
998
|
-
alias="resetPeriod", default=None
|
|
999
|
-
)
|
|
1000
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1001
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1002
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1006
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1007
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1008
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1009
|
-
feature_units_plural: Optional[str] = Field(
|
|
1010
|
-
alias="featureUnitsPlural", default=None
|
|
1011
|
-
)
|
|
1012
|
-
display_name: str = Field(alias="displayName")
|
|
1013
|
-
description: Optional[str] = Field(default=None)
|
|
1014
|
-
ref_id: str = Field(alias="refId")
|
|
1015
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1016
|
-
alias="additionalMetaData", default=None
|
|
1017
|
-
)
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
991
|
class CouponFragment(BaseModel):
|
|
1021
992
|
id: str
|
|
1022
993
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1051,6 +1022,35 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1051
1022
|
status: SyncStatus
|
|
1052
1023
|
|
|
1053
1024
|
|
|
1025
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
1026
|
+
status: PromotionalEntitlementStatus
|
|
1027
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1028
|
+
feature_id: str = Field(alias="featureId")
|
|
1029
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1030
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1031
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1032
|
+
alias="resetPeriod", default=None
|
|
1033
|
+
)
|
|
1034
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1035
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1036
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1037
|
+
|
|
1038
|
+
|
|
1039
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1040
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1041
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1042
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1043
|
+
feature_units_plural: Optional[str] = Field(
|
|
1044
|
+
alias="featureUnitsPlural", default=None
|
|
1045
|
+
)
|
|
1046
|
+
display_name: str = Field(alias="displayName")
|
|
1047
|
+
description: Optional[str] = Field(default=None)
|
|
1048
|
+
ref_id: str = Field(alias="refId")
|
|
1049
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1050
|
+
alias="additionalMetaData", default=None
|
|
1051
|
+
)
|
|
1052
|
+
|
|
1053
|
+
|
|
1054
1054
|
class CustomerFragment(SlimCustomerFragment):
|
|
1055
1055
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1056
1056
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1257,6 +1257,23 @@ 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
|
+
|
|
1260
1277
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1261
1278
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1262
1279
|
alias="subscriptionScheduleType"
|
|
@@ -1453,13 +1470,6 @@ class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
|
1453
1470
|
)
|
|
1454
1471
|
|
|
1455
1472
|
|
|
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
|
-
|
|
1463
1473
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1464
1474
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1465
1475
|
plan_id: str = Field(alias="planId")
|
|
@@ -1556,16 +1566,6 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1556
1566
|
pass
|
|
1557
1567
|
|
|
1558
1568
|
|
|
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")
|
|
@@ -2775,35 +2775,35 @@ OveragePriceFragment.model_rebuild()
|
|
|
2775
2775
|
PriceFragment.model_rebuild()
|
|
2776
2776
|
PackageEntitlementFragment.model_rebuild()
|
|
2777
2777
|
AddonFragment.model_rebuild()
|
|
2778
|
-
|
|
2779
|
-
EntitlementFragment.model_rebuild()
|
|
2778
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2780
2779
|
CustomerResourceFragment.model_rebuild()
|
|
2781
2780
|
TotalPriceFragment.model_rebuild()
|
|
2782
|
-
SlimCustomerFragment.model_rebuild()
|
|
2783
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2784
2781
|
ProductFragment.model_rebuild()
|
|
2785
2782
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2786
2783
|
PlanFragment.model_rebuild()
|
|
2787
|
-
|
|
2788
|
-
|
|
2784
|
+
SlimCustomerFragment.model_rebuild()
|
|
2785
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2789
2786
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2787
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2790
2788
|
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()
|
|
2794
2794
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2795
|
-
PromotionalEntitlementFragment.model_rebuild()
|
|
2796
2795
|
CouponFragment.model_rebuild()
|
|
2796
|
+
PromotionalEntitlementFragment.model_rebuild()
|
|
2797
2797
|
CustomerFragment.model_rebuild()
|
|
2798
2798
|
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()
|
|
2802
2804
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2803
2805
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2804
|
-
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2805
2806
|
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()
|
|
@@ -119,11 +119,11 @@ stigg/generated/client.py,sha256=NgGx0jZs30ZsxuITO15EVz6K4LjJE5XocrwRuGcjm8w,169
|
|
|
119
119
|
stigg/generated/create_subscription.py,sha256=vbpBJ_daXHcQDtvU3vbwSr2E7s4VGRHxqPavyTV3Mtk,457
|
|
120
120
|
stigg/generated/delegate_subscription_to_customer.py,sha256=0TgQDO0Hk-z7X7PGtqhvciqa8IjkToK9cpiX3Kqu_UY,561
|
|
121
121
|
stigg/generated/detach_customer_payment_method.py,sha256=ACXlC2xsGaUP723OrayFZQ9SbXxe8TtVUYdG1gqcYFc,523
|
|
122
|
-
stigg/generated/enums.py,sha256=
|
|
122
|
+
stigg/generated/enums.py,sha256=t6q4y-5cKBmgLTrf_2YWXkNvmclEjnvBos1Ycd0aomI,35212
|
|
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=q31Ps5AO5yBjyFX1cpzJgu55YUnY1qh0eG-gjFmALeg,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.359.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.359.0.dist-info/METADATA,sha256=C4thaFXgH71ZEhipaVCNX99eA2aaXJ42FISnxBOt7Ik,2258
|
|
165
|
+
stigg_api_client_v2-2.359.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.359.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|