stigg-api-client-v2 0.579.8__py3-none-any.whl → 5.9.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/_edge_utils.py +58 -0
- stigg/client.py +97 -21
- stigg/generated/__init__.py +777 -44
- stigg/generated/apply_subscription.py +4 -12
- stigg/generated/archive_customer.py +2 -3
- stigg/generated/async_base_client.py +187 -29
- stigg/generated/async_client.py +3701 -587
- stigg/generated/base_client.py +144 -23
- stigg/generated/base_model.py +16 -47
- stigg/generated/cancel_subscription.py +2 -3
- stigg/generated/cancel_subscription_updates.py +1 -4
- stigg/generated/client.py +3703 -585
- stigg/generated/create_payment_session.py +20 -0
- stigg/generated/create_subscription.py +2 -3
- stigg/generated/delegate_subscription_to_customer.py +22 -0
- stigg/generated/detach_customer_payment_method.py +20 -0
- stigg/generated/enums.py +449 -7
- stigg/generated/estimate_subscription.py +2 -3
- stigg/generated/estimate_subscription_update.py +2 -3
- stigg/generated/exceptions.py +9 -5
- stigg/generated/fragments.py +1983 -788
- stigg/generated/get_active_subscriptions.py +2 -3
- stigg/generated/get_active_subscriptions_list.py +22 -0
- stigg/generated/get_checkout_state.py +2 -3
- stigg/generated/get_coupons.py +4 -5
- stigg/generated/get_credit_balance.py +20 -0
- stigg/generated/get_credit_grants.py +36 -0
- stigg/generated/get_credit_ledger.py +25 -0
- stigg/generated/get_credit_usage.py +18 -0
- stigg/generated/get_customer_by_id.py +2 -3
- stigg/generated/get_customer_portal_by_ref_id.py +2 -3
- stigg/generated/get_customer_statistics.py +22 -0
- stigg/generated/get_entitlement.py +2 -3
- stigg/generated/get_entitlements.py +2 -3
- stigg/generated/get_entitlements_state.py +31 -0
- stigg/generated/get_mock_paywall.py +3 -5
- stigg/generated/get_paywall.py +2 -3
- stigg/generated/get_products.py +4 -5
- stigg/generated/get_sdk_configuration.py +3 -3
- stigg/generated/get_subscription.py +18 -0
- stigg/generated/get_subscriptions.py +35 -0
- stigg/generated/get_usage_history.py +2 -3
- stigg/generated/get_usage_history_v_2.py +18 -0
- stigg/generated/grant_credits.py +20 -0
- stigg/generated/grant_promotional_entitlements.py +2 -3
- stigg/generated/grant_promotional_entitlements_group.py +24 -0
- stigg/generated/import_customer.py +2 -3
- stigg/generated/import_customer_bulk.py +1 -4
- stigg/generated/import_subscriptions_bulk.py +1 -4
- stigg/generated/input_types.py +3950 -1825
- stigg/generated/migrate_subscription_to_latest.py +2 -3
- stigg/generated/preview_next_invoice.py +20 -0
- stigg/generated/preview_subscription.py +2 -3
- stigg/generated/provision_customer.py +4 -22
- stigg/generated/provision_subscription.py +4 -15
- stigg/generated/report_entitlement_check_requested.py +1 -4
- stigg/generated/report_event.py +1 -4
- stigg/generated/report_usage.py +6 -13
- stigg/generated/report_usage_bulk.py +22 -0
- stigg/generated/revoke_promotional_entitlement.py +5 -4
- stigg/generated/revoke_promotional_entitlements_group.py +24 -0
- stigg/generated/transfer_subscription.py +2 -3
- stigg/generated/transfer_subscription_to_resource.py +22 -0
- stigg/generated/unarchive_customer.py +20 -0
- stigg/generated/unlink_promotional_entitlements_group.py +24 -0
- stigg/generated/update_customer.py +2 -3
- stigg/generated/update_subscription.py +2 -3
- stigg/generated/void_credit_grant.py +18 -0
- stigg_api_client_v2-5.9.0.dist-info/LICENSE +14 -0
- {stigg_api_client_v2-0.579.8.dist-info → stigg_api_client_v2-5.9.0.dist-info}/METADATA +5 -2
- stigg_api_client_v2-5.9.0.dist-info/RECORD +73 -0
- stigg/edge_utils.py +0 -28
- stigg/generated/scalars.py +0 -6
- stigg_api_client_v2-0.579.8.dist-info/RECORD +0 -51
- {stigg_api_client_v2-0.579.8.dist-info → stigg_api_client_v2-5.9.0.dist-info}/WHEEL +0 -0
stigg/generated/__init__.py
CHANGED
|
@@ -1,40 +1,56 @@
|
|
|
1
|
-
# Generated by ariadne-codegen
|
|
1
|
+
# Generated by ariadne-codegen
|
|
2
2
|
|
|
3
|
-
from .apply_subscription import
|
|
4
|
-
ApplySubscription,
|
|
5
|
-
ApplySubscriptionApplySubscription,
|
|
6
|
-
ApplySubscriptionApplySubscriptionSubscription,
|
|
7
|
-
)
|
|
3
|
+
from .apply_subscription import ApplySubscription, ApplySubscriptionApplySubscription
|
|
8
4
|
from .archive_customer import ArchiveCustomer, ArchiveCustomerArchiveCustomer
|
|
9
5
|
from .async_base_client import AsyncBaseClient
|
|
10
6
|
from .async_client import AsyncClient
|
|
11
|
-
from .base_model import BaseModel
|
|
7
|
+
from .base_model import BaseModel, Upload
|
|
12
8
|
from .cancel_subscription import (
|
|
13
9
|
CancelSubscription,
|
|
14
10
|
CancelSubscriptionCancelSubscription,
|
|
15
11
|
)
|
|
16
12
|
from .cancel_subscription_updates import CancelSubscriptionUpdates
|
|
13
|
+
from .create_payment_session import (
|
|
14
|
+
CreatePaymentSession,
|
|
15
|
+
CreatePaymentSessionCreatePaymentSession,
|
|
16
|
+
)
|
|
17
17
|
from .create_subscription import (
|
|
18
18
|
CreateSubscription,
|
|
19
19
|
CreateSubscriptionCreateSubscription,
|
|
20
20
|
)
|
|
21
|
+
from .delegate_subscription_to_customer import (
|
|
22
|
+
DelegateSubscriptionToCustomer,
|
|
23
|
+
DelegateSubscriptionToCustomerDelegateSubscriptionToCustomer,
|
|
24
|
+
)
|
|
25
|
+
from .detach_customer_payment_method import (
|
|
26
|
+
DetachCustomerPaymentMethod,
|
|
27
|
+
DetachCustomerPaymentMethodDetachCustomerPaymentMethod,
|
|
28
|
+
)
|
|
21
29
|
from .enums import (
|
|
22
30
|
AccessDeniedReason,
|
|
31
|
+
AccountAccessMethod,
|
|
32
|
+
AccountAccessRole,
|
|
23
33
|
AccountStatus,
|
|
24
34
|
AddonSortFields,
|
|
25
35
|
AggregationFunction,
|
|
26
36
|
Alignment,
|
|
27
37
|
ApiKeySortFields,
|
|
28
38
|
ApiKeyType,
|
|
39
|
+
Auth0ApplicationType,
|
|
29
40
|
BillingAnchor,
|
|
41
|
+
BillingCadence,
|
|
30
42
|
BillingModel,
|
|
31
43
|
BillingPeriod,
|
|
32
44
|
BillingVendorIdentifier,
|
|
33
45
|
ChangeType,
|
|
34
46
|
ConditionOperation,
|
|
35
47
|
CouponSortFields,
|
|
48
|
+
CouponSource,
|
|
36
49
|
CouponStatus,
|
|
37
50
|
CouponType,
|
|
51
|
+
CreditGrantType,
|
|
52
|
+
CreditLedgerEventType,
|
|
53
|
+
CreditUsageTimeRange,
|
|
38
54
|
Currency,
|
|
39
55
|
CustomerResourceSortFields,
|
|
40
56
|
CustomerSortFields,
|
|
@@ -42,14 +58,23 @@ from .enums import (
|
|
|
42
58
|
Department,
|
|
43
59
|
DiscountDurationType,
|
|
44
60
|
DiscountType,
|
|
61
|
+
EntitlementBehavior,
|
|
45
62
|
EntitlementResetPeriod,
|
|
63
|
+
EntitlementsStateAccessDeniedReason,
|
|
46
64
|
EntitySelectionMode,
|
|
65
|
+
EnvironmentAccessRole,
|
|
47
66
|
EnvironmentProvisionStatus,
|
|
48
67
|
EnvironmentSortFields,
|
|
68
|
+
EnvironmentType,
|
|
49
69
|
ErrorCode,
|
|
70
|
+
EventActor,
|
|
71
|
+
EventEntityType,
|
|
72
|
+
EventLogSortFields,
|
|
50
73
|
EventLogType,
|
|
51
74
|
ExperimentSortFields,
|
|
52
75
|
ExperimentStatus,
|
|
76
|
+
FeatureGroupSortFields,
|
|
77
|
+
FeatureGroupStatus,
|
|
53
78
|
FeatureSortFields,
|
|
54
79
|
FeatureStatus,
|
|
55
80
|
FeatureType,
|
|
@@ -58,15 +83,23 @@ from .enums import (
|
|
|
58
83
|
HookStatus,
|
|
59
84
|
ImportIntegrationTaskSortFields,
|
|
60
85
|
IntegrationSortFields,
|
|
86
|
+
InvoiceLineItemType,
|
|
61
87
|
MemberSortFields,
|
|
62
88
|
MemberStatus,
|
|
63
89
|
MeterType,
|
|
64
90
|
MonthlyAccordingTo,
|
|
91
|
+
OfferSortFields,
|
|
92
|
+
OfferStatus,
|
|
93
|
+
OverageBillingPeriod,
|
|
65
94
|
PackageDTOSortFields,
|
|
66
95
|
PackageEntitlementSortFields,
|
|
96
|
+
PackageGroupSortFields,
|
|
97
|
+
PackageGroupStatus,
|
|
67
98
|
PackageStatus,
|
|
68
99
|
PaymentCollection,
|
|
100
|
+
PaymentCollectionMethod,
|
|
69
101
|
PaymentMethodType,
|
|
102
|
+
PlanChangeType,
|
|
70
103
|
PlanSortFields,
|
|
71
104
|
PriceSortFields,
|
|
72
105
|
PricingType,
|
|
@@ -77,6 +110,7 @@ from .enums import (
|
|
|
77
110
|
ProrationBehavior,
|
|
78
111
|
ProvisionSubscriptionStatus,
|
|
79
112
|
PublishMigrationType,
|
|
113
|
+
ScheduleStrategy,
|
|
80
114
|
SortDirection,
|
|
81
115
|
SortNulls,
|
|
82
116
|
SourceType,
|
|
@@ -84,27 +118,37 @@ from .enums import (
|
|
|
84
118
|
SubscriptionCancellationAction,
|
|
85
119
|
SubscriptionCancellationTime,
|
|
86
120
|
SubscriptionCancelReason,
|
|
121
|
+
SubscriptionCouponStatus,
|
|
87
122
|
SubscriptionDecisionStrategy,
|
|
88
123
|
SubscriptionEndSetup,
|
|
89
124
|
SubscriptionEntitlementSortFields,
|
|
125
|
+
SubscriptionInvoiceBillingReason,
|
|
90
126
|
SubscriptionInvoiceStatus,
|
|
91
127
|
SubscriptionMigrationTaskSortFields,
|
|
92
128
|
SubscriptionMigrationTime,
|
|
93
129
|
SubscriptionPriceSortFields,
|
|
130
|
+
SubscriptionProrationBehavior,
|
|
131
|
+
SubscriptionQuerySortFields,
|
|
94
132
|
SubscriptionScheduleStatus,
|
|
95
133
|
SubscriptionScheduleType,
|
|
96
134
|
SubscriptionStartSetup,
|
|
97
135
|
SubscriptionStatus,
|
|
136
|
+
SubscriptionUpdateUsageCutoffBehavior,
|
|
98
137
|
SyncStatus,
|
|
99
138
|
TaskStatus,
|
|
100
139
|
TaskType,
|
|
101
140
|
TiersMode,
|
|
141
|
+
TrialEndBehavior,
|
|
102
142
|
TrialPeriodUnits,
|
|
143
|
+
UnitTransformationRound,
|
|
144
|
+
UsageMarkerType,
|
|
103
145
|
UsageMeasurementSortFields,
|
|
104
146
|
UsageUpdateBehavior,
|
|
105
147
|
VendorIdentifier,
|
|
148
|
+
VendorType,
|
|
106
149
|
WeeklyAccordingTo,
|
|
107
150
|
WidgetType,
|
|
151
|
+
YearlyAccordingTo,
|
|
108
152
|
experimentGroupType,
|
|
109
153
|
)
|
|
110
154
|
from .estimate_subscription import (
|
|
@@ -120,12 +164,18 @@ from .exceptions import (
|
|
|
120
164
|
GraphQLClientGraphQLError,
|
|
121
165
|
GraphQLClientGraphQLMultiError,
|
|
122
166
|
GraphQLClientHttpError,
|
|
123
|
-
|
|
167
|
+
GraphQLClientInvalidResponseError,
|
|
124
168
|
)
|
|
125
169
|
from .fragments import (
|
|
170
|
+
AddonDependencyFragment,
|
|
126
171
|
AddonFragment,
|
|
172
|
+
AddonFragmentDependencies,
|
|
127
173
|
AddonFragmentEntitlements,
|
|
174
|
+
AddonFragmentOveragePrices,
|
|
128
175
|
AddonFragmentPrices,
|
|
176
|
+
ApplySubscriptionFragment,
|
|
177
|
+
ApplySubscriptionFragmentEntitlements,
|
|
178
|
+
ApplySubscriptionFragmentSubscription,
|
|
129
179
|
CheckoutConfigurationFragment,
|
|
130
180
|
CheckoutConfigurationFragmentContent,
|
|
131
181
|
CheckoutConfigurationFragmentPalette,
|
|
@@ -133,14 +183,31 @@ from .fragments import (
|
|
|
133
183
|
CheckoutStateFragment,
|
|
134
184
|
CheckoutStateFragmentActiveSubscription,
|
|
135
185
|
CheckoutStateFragmentBillingIntegration,
|
|
186
|
+
CheckoutStateFragmentBillingIntegrationBillingCredentialsStripeCheckoutCredentials,
|
|
187
|
+
CheckoutStateFragmentBillingIntegrationBillingCredentialsZuoraCheckoutCredentials,
|
|
136
188
|
CheckoutStateFragmentBillingIntegrationCredentials,
|
|
137
189
|
CheckoutStateFragmentConfiguration,
|
|
138
190
|
CheckoutStateFragmentCustomer,
|
|
139
191
|
CheckoutStateFragmentPlan,
|
|
140
192
|
CheckoutStateFragmentResource,
|
|
141
193
|
CouponFragment,
|
|
142
|
-
|
|
194
|
+
CouponFragmentAmountsOff,
|
|
143
195
|
CouponFragmentSyncStates,
|
|
196
|
+
CreditBalanceFragment,
|
|
197
|
+
CreditBalanceFragmentCurrency,
|
|
198
|
+
CreditBalanceFragmentCurrencyUnits,
|
|
199
|
+
CreditBalanceUpdatedPayload,
|
|
200
|
+
CreditBalanceUpdatedPayloadCurrency,
|
|
201
|
+
CreditBalanceUpdatedPayloadCurrencyUnits,
|
|
202
|
+
CreditGrantFragment,
|
|
203
|
+
CreditGrantFragmentCost,
|
|
204
|
+
CreditLedgerFragment,
|
|
205
|
+
CreditsBalanceSummaryFragment,
|
|
206
|
+
CreditsBalanceSummaryFragmentBalances,
|
|
207
|
+
CreditUsageFragment,
|
|
208
|
+
CreditUsageFragmentCurrency,
|
|
209
|
+
CreditUsageFragmentSeries,
|
|
210
|
+
CreditUsageFragmentSeriesPoints,
|
|
144
211
|
CustomerFragment,
|
|
145
212
|
CustomerFragmentCoupon,
|
|
146
213
|
CustomerFragmentEligibleForTrial,
|
|
@@ -155,6 +222,7 @@ from .fragments import (
|
|
|
155
222
|
CustomerPortalEntitlementFragmentFeature,
|
|
156
223
|
CustomerPortalEntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig,
|
|
157
224
|
CustomerPortalEntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig,
|
|
225
|
+
CustomerPortalEntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig,
|
|
158
226
|
CustomerPortalFragment,
|
|
159
227
|
CustomerPortalFragmentBillingInformation,
|
|
160
228
|
CustomerPortalFragmentConfiguration,
|
|
@@ -169,6 +237,7 @@ from .fragments import (
|
|
|
169
237
|
CustomerPortalSubscriptionFragmentBillingPeriodRange,
|
|
170
238
|
CustomerPortalSubscriptionFragmentPrices,
|
|
171
239
|
CustomerPortalSubscriptionFragmentPricing,
|
|
240
|
+
CustomerPortalSubscriptionFragmentPricingCreditRate,
|
|
172
241
|
CustomerPortalSubscriptionFragmentPricingFeature,
|
|
173
242
|
CustomerPortalSubscriptionFragmentPricingPrice,
|
|
174
243
|
CustomerPortalSubscriptionFragmentScheduledUpdates,
|
|
@@ -177,27 +246,44 @@ from .fragments import (
|
|
|
177
246
|
CustomerPortalSubscriptionFragmentTotalPriceSubTotal,
|
|
178
247
|
CustomerPortalSubscriptionFragmentTotalPriceTotal,
|
|
179
248
|
CustomerPortalSubscriptionPriceFragment,
|
|
249
|
+
CustomerPortalSubscriptionPriceFragmentCreditRate,
|
|
180
250
|
CustomerPortalSubscriptionPriceFragmentFeature,
|
|
181
251
|
CustomerPortalSubscriptionPriceFragmentPrice,
|
|
182
252
|
CustomerPortalSubscriptionScheduledUpdateDataFragment,
|
|
183
253
|
CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesAddonChangeVariables,
|
|
254
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesAddonPriceOverrideChangeVariables,
|
|
184
255
|
CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesBillingPeriodChangeVariables,
|
|
256
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesCouponChangeVariables,
|
|
185
257
|
CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesDowngradeChangeVariables,
|
|
258
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesDowngradeChangeVariablesAddons,
|
|
259
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesDowngradeChangeVariablesBillableFeatures,
|
|
260
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesDowngradeChangeVariablesPriceOverrides,
|
|
261
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesPlanChangeVariables,
|
|
262
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesPlanChangeVariablesAddons,
|
|
263
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesPlanChangeVariablesBillableFeatures,
|
|
264
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesPlanChangeVariablesPriceOverrides,
|
|
265
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesPlanPriceOverrideChangeVariables,
|
|
186
266
|
CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnitAmountChangeVariables,
|
|
187
267
|
CustomerPortalSubscriptionScheduledUpdateDataFragmentTargetPackage,
|
|
188
268
|
CustomerResourceFragment,
|
|
269
|
+
CustomerStatisticsFragment,
|
|
270
|
+
CustomerStatisticsFragmentStatistics,
|
|
271
|
+
CustomerStatisticsFragmentStatisticsActiveSubscriptionsByPricingType,
|
|
189
272
|
CustomerWithSubscriptionsFragment,
|
|
190
273
|
CustomerWithSubscriptionsFragmentSubscriptions,
|
|
191
274
|
EntitlementFragment,
|
|
275
|
+
EntitlementFragmentCreditRate,
|
|
192
276
|
EntitlementFragmentFeature,
|
|
193
277
|
EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig,
|
|
194
278
|
EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig,
|
|
279
|
+
EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig,
|
|
195
280
|
EntitlementsUpdatedPayload,
|
|
196
281
|
EntitlementsUpdatedPayloadEntitlements,
|
|
197
282
|
EntitlementUsageUpdated,
|
|
198
283
|
EntitlementUsageUpdatedEntitlement,
|
|
199
284
|
EntitlementUsageUpdatedUsage,
|
|
200
285
|
FeatureFragment,
|
|
286
|
+
FeatureFragmentUnitTransformation,
|
|
201
287
|
FontVariantFragment,
|
|
202
288
|
ImmediateSubscriptionPreviewInvoiceFragment,
|
|
203
289
|
ImmediateSubscriptionPreviewInvoiceFragmentCredits,
|
|
@@ -216,25 +302,40 @@ from .fragments import (
|
|
|
216
302
|
ImmediateSubscriptionPreviewInvoiceFragmentTotal,
|
|
217
303
|
ImmediateSubscriptionPreviewInvoiceFragmentTotalExcludingTax,
|
|
218
304
|
LayoutConfigurationFragment,
|
|
305
|
+
MockPaywallAddonDependencyFragment,
|
|
219
306
|
MockPaywallAddonFragment,
|
|
307
|
+
MockPaywallAddonFragmentDependencies,
|
|
220
308
|
MockPaywallAddonFragmentEntitlements,
|
|
221
309
|
MockPaywallAddonFragmentPrices,
|
|
222
310
|
MockPaywallPackageEntitlementFragment,
|
|
223
311
|
MockPaywallPackageEntitlementFragmentFeature,
|
|
312
|
+
MockPaywallPlanCompatiblePackageGroupsFragment,
|
|
313
|
+
MockPaywallPlanCompatiblePackageGroupsFragmentAddons,
|
|
314
|
+
MockPaywallPlanCompatiblePackageGroupsFragmentOptions,
|
|
224
315
|
MockPaywallPlanFragment,
|
|
225
316
|
MockPaywallPlanFragmentBasePlan,
|
|
226
317
|
MockPaywallPlanFragmentCompatibleAddons,
|
|
318
|
+
MockPaywallPlanFragmentCompatiblePackageGroups,
|
|
227
319
|
MockPaywallPlanFragmentDefaultTrialConfig,
|
|
320
|
+
MockPaywallPlanFragmentDefaultTrialConfigBudget,
|
|
228
321
|
MockPaywallPlanFragmentEntitlements,
|
|
229
322
|
MockPaywallPlanFragmentInheritedEntitlements,
|
|
230
323
|
MockPaywallPlanFragmentPrices,
|
|
231
324
|
MockPaywallPlanFragmentProduct,
|
|
232
325
|
MockPaywallPriceFragment,
|
|
326
|
+
MockPaywallPriceFragmentCreditRate,
|
|
233
327
|
MockPaywallPriceFragmentFeature,
|
|
234
328
|
MockPaywallPriceFragmentPrice,
|
|
235
329
|
MockPaywallPriceFragmentTiers,
|
|
330
|
+
OveragePriceFragment,
|
|
331
|
+
OveragePriceFragmentFeature,
|
|
332
|
+
OveragePriceFragmentPrice,
|
|
333
|
+
OveragePriceFragmentTiers,
|
|
236
334
|
PackageEntitlementFragment,
|
|
237
335
|
PackageEntitlementFragmentFeature,
|
|
336
|
+
PackagePublishedPayload,
|
|
337
|
+
PageInfoFragment,
|
|
338
|
+
PaymentSessionFragment,
|
|
238
339
|
PaywallCalculatedPricePointsFragment,
|
|
239
340
|
PaywallCalculatedPricePointsFragmentFeature,
|
|
240
341
|
PaywallConfigurationFragment,
|
|
@@ -250,25 +351,43 @@ from .fragments import (
|
|
|
250
351
|
PaywallFragmentPaywallCalculatedPricePoints,
|
|
251
352
|
PaywallFragmentPlans,
|
|
252
353
|
PaywallFragmentResource,
|
|
354
|
+
PlanCompatiblePackageGroupsFragment,
|
|
355
|
+
PlanCompatiblePackageGroupsFragmentAddons,
|
|
356
|
+
PlanCompatiblePackageGroupsFragmentOptions,
|
|
253
357
|
PlanFragment,
|
|
254
358
|
PlanFragmentBasePlan,
|
|
255
359
|
PlanFragmentCompatibleAddons,
|
|
360
|
+
PlanFragmentCompatiblePackageGroups,
|
|
256
361
|
PlanFragmentDefaultTrialConfig,
|
|
362
|
+
PlanFragmentDefaultTrialConfigBudget,
|
|
257
363
|
PlanFragmentEntitlements,
|
|
258
364
|
PlanFragmentInheritedEntitlements,
|
|
365
|
+
PlanFragmentOveragePrices,
|
|
259
366
|
PlanFragmentPrices,
|
|
260
367
|
PlanFragmentProduct,
|
|
261
368
|
PriceFragment,
|
|
369
|
+
PriceFragmentCreditRate,
|
|
262
370
|
PriceFragmentFeature,
|
|
263
371
|
PriceFragmentPrice,
|
|
264
372
|
PriceFragmentTiers,
|
|
265
373
|
PriceTierFragment,
|
|
374
|
+
PriceTierFragmentFlatPrice,
|
|
266
375
|
PriceTierFragmentUnitPrice,
|
|
267
376
|
ProductFragment,
|
|
268
377
|
ProductFragmentProductSettings,
|
|
269
378
|
ProductFragmentProductSettingsDowngradePlan,
|
|
270
379
|
PromotionalEntitlementFragment,
|
|
271
380
|
PromotionalEntitlementFragmentFeature,
|
|
381
|
+
ProvisionCustomerFragment,
|
|
382
|
+
ProvisionCustomerFragmentCustomer,
|
|
383
|
+
ProvisionCustomerFragmentEntitlements,
|
|
384
|
+
ProvisionCustomerFragmentSubscription,
|
|
385
|
+
ProvisionSubscriptionFragment,
|
|
386
|
+
ProvisionSubscriptionFragmentEntitlements,
|
|
387
|
+
ProvisionSubscriptionFragmentSubscription,
|
|
388
|
+
ReportUsageFragment,
|
|
389
|
+
SlimCustomCurrencyFragment,
|
|
390
|
+
SlimCustomCurrencyFragmentUnits,
|
|
272
391
|
SlimCustomerFragment,
|
|
273
392
|
SlimSubscriptionFragment,
|
|
274
393
|
SlimSubscriptionFragmentAddons,
|
|
@@ -281,25 +400,67 @@ from .fragments import (
|
|
|
281
400
|
SlimSubscriptionFragmentPricesPrice,
|
|
282
401
|
SlimSubscriptionFragmentResource,
|
|
283
402
|
SlimSubscriptionFragmentTotalPrice,
|
|
403
|
+
SlimSubscriptionFragmentV2,
|
|
404
|
+
SlimSubscriptionFragmentV2Addons,
|
|
405
|
+
SlimSubscriptionFragmentV2AddonsAddon,
|
|
406
|
+
SlimSubscriptionFragmentV2Customer,
|
|
407
|
+
SlimSubscriptionFragmentV2PayingCustomer,
|
|
408
|
+
SlimSubscriptionFragmentV2Plan,
|
|
409
|
+
SlimSubscriptionFragmentV2Resource,
|
|
410
|
+
SlimSubscriptionFragmentV2TrialConfiguration,
|
|
411
|
+
StripeCheckoutCredentialsFragment,
|
|
284
412
|
SubscriptionFragment,
|
|
285
413
|
SubscriptionFragmentAddons,
|
|
286
414
|
SubscriptionFragmentAddonsAddon,
|
|
287
415
|
SubscriptionFragmentExperimentInfo,
|
|
288
416
|
SubscriptionFragmentFutureUpdates,
|
|
289
417
|
SubscriptionFragmentLatestInvoice,
|
|
418
|
+
SubscriptionFragmentPayingCustomer,
|
|
290
419
|
SubscriptionFragmentPlan,
|
|
291
420
|
SubscriptionFragmentPrices,
|
|
292
421
|
SubscriptionFragmentPricesPrice,
|
|
293
422
|
SubscriptionFragmentResource,
|
|
294
423
|
SubscriptionFragmentScheduledUpdates,
|
|
295
424
|
SubscriptionFragmentTotalPrice,
|
|
425
|
+
SubscriptionFragmentTrialConfiguration,
|
|
296
426
|
SubscriptionFutureUpdateData,
|
|
297
427
|
SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables,
|
|
428
|
+
SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables,
|
|
298
429
|
SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables,
|
|
430
|
+
SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables,
|
|
299
431
|
SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables,
|
|
432
|
+
SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons,
|
|
433
|
+
SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures,
|
|
434
|
+
SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides,
|
|
435
|
+
SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables,
|
|
436
|
+
SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons,
|
|
437
|
+
SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures,
|
|
438
|
+
SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides,
|
|
439
|
+
SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables,
|
|
300
440
|
SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables,
|
|
301
441
|
SubscriptionFutureUpdateDataTargetPackage,
|
|
302
442
|
SubscriptionInvoiceFragment,
|
|
443
|
+
SubscriptionInvoicePreviewFragment,
|
|
444
|
+
SubscriptionInvoicePreviewFragmentAmountDue,
|
|
445
|
+
SubscriptionInvoicePreviewFragmentCredits,
|
|
446
|
+
SubscriptionInvoicePreviewFragmentCreditsInitial,
|
|
447
|
+
SubscriptionInvoicePreviewFragmentCreditsRemaining,
|
|
448
|
+
SubscriptionInvoicePreviewFragmentCreditsUsed,
|
|
449
|
+
SubscriptionInvoicePreviewFragmentDiscount,
|
|
450
|
+
SubscriptionInvoicePreviewFragmentDiscountDetails,
|
|
451
|
+
SubscriptionInvoicePreviewFragmentLines,
|
|
452
|
+
SubscriptionInvoicePreviewFragmentLinesAmount,
|
|
453
|
+
SubscriptionInvoicePreviewFragmentLinesLines,
|
|
454
|
+
SubscriptionInvoicePreviewFragmentLinesPeriod,
|
|
455
|
+
SubscriptionInvoicePreviewFragmentLinesPrice,
|
|
456
|
+
SubscriptionInvoicePreviewFragmentLinesUnitPrice,
|
|
457
|
+
SubscriptionInvoicePreviewFragmentMinimumSpendAdjustment,
|
|
458
|
+
SubscriptionInvoicePreviewFragmentSubTotal,
|
|
459
|
+
SubscriptionInvoicePreviewFragmentSubTotalExcludingTax,
|
|
460
|
+
SubscriptionInvoicePreviewFragmentTax,
|
|
461
|
+
SubscriptionInvoicePreviewFragmentTaxDetails,
|
|
462
|
+
SubscriptionInvoicePreviewFragmentTotal,
|
|
463
|
+
SubscriptionInvoicePreviewFragmentTotalExcludingTax,
|
|
303
464
|
SubscriptionPreviewFragment,
|
|
304
465
|
SubscriptionPreviewFragmentBillingPeriodRange,
|
|
305
466
|
SubscriptionPreviewFragmentCredits,
|
|
@@ -337,12 +498,31 @@ from .fragments import (
|
|
|
337
498
|
SubscriptionPreviewV2FragmentBillingPeriodRange,
|
|
338
499
|
SubscriptionPreviewV2FragmentImmediateInvoice,
|
|
339
500
|
SubscriptionPreviewV2FragmentRecurringInvoice,
|
|
501
|
+
SubscriptionQueryFragment,
|
|
502
|
+
SubscriptionQueryFragmentAddons,
|
|
503
|
+
SubscriptionQueryFragmentAddonsAddon,
|
|
504
|
+
SubscriptionQueryFragmentCustomer,
|
|
505
|
+
SubscriptionQueryFragmentPayingCustomer,
|
|
506
|
+
SubscriptionQueryFragmentPlan,
|
|
507
|
+
SubscriptionQueryFragmentResource,
|
|
508
|
+
SubscriptionQueryFragmentTrialConfiguration,
|
|
340
509
|
SubscriptionScheduledUpdateData,
|
|
341
510
|
SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables,
|
|
511
|
+
SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables,
|
|
342
512
|
SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables,
|
|
513
|
+
SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables,
|
|
343
514
|
SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables,
|
|
515
|
+
SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons,
|
|
516
|
+
SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures,
|
|
517
|
+
SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides,
|
|
518
|
+
SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables,
|
|
519
|
+
SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons,
|
|
520
|
+
SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures,
|
|
521
|
+
SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides,
|
|
522
|
+
SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables,
|
|
344
523
|
SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables,
|
|
345
524
|
SubscriptionScheduledUpdateDataTargetPackage,
|
|
525
|
+
SubscriptionTrialConfigurationFragment,
|
|
346
526
|
TotalPriceFragment,
|
|
347
527
|
TotalPriceFragmentSubTotal,
|
|
348
528
|
TotalPriceFragmentTotal,
|
|
@@ -352,13 +532,27 @@ from .fragments import (
|
|
|
352
532
|
TypographyConfigurationFragmentH2,
|
|
353
533
|
TypographyConfigurationFragmentH3,
|
|
354
534
|
UsageHistoryFragment,
|
|
535
|
+
UsageHistoryFragmentGroups,
|
|
536
|
+
UsageHistoryFragmentGroupsGroupInfo,
|
|
537
|
+
UsageHistoryFragmentGroupsUsageMeasurements,
|
|
538
|
+
UsageHistoryFragmentMarkers,
|
|
355
539
|
UsageHistoryFragmentUsageMeasurements,
|
|
540
|
+
UsageHistoryV2Fragment,
|
|
541
|
+
UsageHistoryV2FragmentMarkers,
|
|
542
|
+
UsageHistoryV2FragmentSeries,
|
|
543
|
+
UsageHistoryV2FragmentSeriesPoints,
|
|
544
|
+
UsageHistoryV2FragmentSeriesTags,
|
|
356
545
|
UsageUpdatedFragment,
|
|
546
|
+
ZuoraCheckoutCredentialsFragment,
|
|
357
547
|
)
|
|
358
548
|
from .get_active_subscriptions import (
|
|
359
549
|
GetActiveSubscriptions,
|
|
360
550
|
GetActiveSubscriptionsGetActiveSubscriptions,
|
|
361
551
|
)
|
|
552
|
+
from .get_active_subscriptions_list import (
|
|
553
|
+
GetActiveSubscriptionsList,
|
|
554
|
+
GetActiveSubscriptionsListGetActiveSubscriptions,
|
|
555
|
+
)
|
|
362
556
|
from .get_checkout_state import GetCheckoutState, GetCheckoutStateCheckoutState
|
|
363
557
|
from .get_coupons import (
|
|
364
558
|
GetCoupons,
|
|
@@ -366,13 +560,36 @@ from .get_coupons import (
|
|
|
366
560
|
GetCouponsCouponsEdges,
|
|
367
561
|
GetCouponsCouponsEdgesNode,
|
|
368
562
|
)
|
|
563
|
+
from .get_credit_balance import GetCreditBalance, GetCreditBalanceCreditBalanceSummary
|
|
564
|
+
from .get_credit_grants import (
|
|
565
|
+
GetCreditGrants,
|
|
566
|
+
GetCreditGrantsCreditGrants,
|
|
567
|
+
GetCreditGrantsCreditGrantsEdges,
|
|
568
|
+
GetCreditGrantsCreditGrantsEdgesNode,
|
|
569
|
+
GetCreditGrantsCreditGrantsPageInfo,
|
|
570
|
+
)
|
|
571
|
+
from .get_credit_ledger import (
|
|
572
|
+
GetCreditLedger,
|
|
573
|
+
GetCreditLedgerCreditsLedger,
|
|
574
|
+
GetCreditLedgerCreditsLedgerEvents,
|
|
575
|
+
)
|
|
576
|
+
from .get_credit_usage import GetCreditUsage, GetCreditUsageCreditUsage
|
|
369
577
|
from .get_customer_by_id import GetCustomerById, GetCustomerByIdGetCustomerByRefId
|
|
370
578
|
from .get_customer_portal_by_ref_id import (
|
|
371
579
|
GetCustomerPortalByRefId,
|
|
372
580
|
GetCustomerPortalByRefIdCustomerPortal,
|
|
373
581
|
)
|
|
582
|
+
from .get_customer_statistics import (
|
|
583
|
+
GetCustomerStatistics,
|
|
584
|
+
GetCustomerStatisticsGetCustomerByRefId,
|
|
585
|
+
)
|
|
374
586
|
from .get_entitlement import GetEntitlement, GetEntitlementEntitlement
|
|
375
587
|
from .get_entitlements import GetEntitlements, GetEntitlementsEntitlements
|
|
588
|
+
from .get_entitlements_state import (
|
|
589
|
+
GetEntitlementsState,
|
|
590
|
+
GetEntitlementsStateEntitlementsState,
|
|
591
|
+
GetEntitlementsStateEntitlementsStateEntitlements,
|
|
592
|
+
)
|
|
376
593
|
from .get_mock_paywall import (
|
|
377
594
|
GetMockPaywall,
|
|
378
595
|
GetMockPaywallMockPaywall,
|
|
@@ -390,19 +607,37 @@ from .get_sdk_configuration import (
|
|
|
390
607
|
GetSdkConfiguration,
|
|
391
608
|
GetSdkConfigurationSdkConfiguration,
|
|
392
609
|
)
|
|
610
|
+
from .get_subscription import GetSubscription, GetSubscriptionGetSubscription
|
|
611
|
+
from .get_subscriptions import (
|
|
612
|
+
GetSubscriptions,
|
|
613
|
+
GetSubscriptionsSubscriptions,
|
|
614
|
+
GetSubscriptionsSubscriptionsEdges,
|
|
615
|
+
GetSubscriptionsSubscriptionsEdgesNode,
|
|
616
|
+
GetSubscriptionsSubscriptionsPageInfo,
|
|
617
|
+
)
|
|
393
618
|
from .get_usage_history import GetUsageHistory, GetUsageHistoryUsageHistory
|
|
619
|
+
from .get_usage_history_v_2 import GetUsageHistoryV2, GetUsageHistoryV2UsageHistoryV2
|
|
620
|
+
from .grant_credits import GrantCredits, GrantCreditsCreateCreditGrant
|
|
394
621
|
from .grant_promotional_entitlements import (
|
|
395
622
|
GrantPromotionalEntitlements,
|
|
396
623
|
GrantPromotionalEntitlementsGrantPromotionalEntitlements,
|
|
397
624
|
)
|
|
625
|
+
from .grant_promotional_entitlements_group import (
|
|
626
|
+
GrantPromotionalEntitlementsGroup,
|
|
627
|
+
GrantPromotionalEntitlementsGroupGrantPromotionalEntitlementsGroup,
|
|
628
|
+
)
|
|
398
629
|
from .import_customer import ImportCustomer, ImportCustomerImportCustomer
|
|
399
630
|
from .import_customer_bulk import ImportCustomerBulk
|
|
400
631
|
from .import_subscriptions_bulk import ImportSubscriptionsBulk
|
|
401
632
|
from .input_types import (
|
|
402
633
|
AddCompatibleAddonsToPlanInput,
|
|
634
|
+
AddonArchiveInput,
|
|
635
|
+
AddonAssociatedEntitiesInput,
|
|
403
636
|
AddonCreateInput,
|
|
404
637
|
AddonFilter,
|
|
638
|
+
AddonFilterOfferFilter,
|
|
405
639
|
AddonSort,
|
|
640
|
+
AddonUnArchiveInput,
|
|
406
641
|
AddonUpdateInput,
|
|
407
642
|
Address,
|
|
408
643
|
AggregatedEventsByCustomerInput,
|
|
@@ -411,13 +646,24 @@ from .input_types import (
|
|
|
411
646
|
ApplySubscriptionInput,
|
|
412
647
|
ArchiveCouponInput,
|
|
413
648
|
ArchiveCustomerInput,
|
|
649
|
+
ArchiveEnvironmentInput,
|
|
650
|
+
ArchiveFeatureGroupInput,
|
|
651
|
+
ArchiveFeatureInput,
|
|
652
|
+
ArchivePackageGroup,
|
|
414
653
|
ArchivePlanInput,
|
|
415
654
|
AttachCustomerPaymentMethodInput,
|
|
655
|
+
Auth0CredentialsInput,
|
|
656
|
+
AutoCancellationRuleInput,
|
|
657
|
+
AwsMarketplaceCredentialsInput,
|
|
658
|
+
BigQueryCredentialsInput,
|
|
416
659
|
BillableFeatureInput,
|
|
417
660
|
BillingAddress,
|
|
661
|
+
BillingCadenceFilterComparison,
|
|
418
662
|
BillingModelFilterComparison,
|
|
419
663
|
BillingPeriodFilterComparison,
|
|
420
664
|
BooleanFieldComparison,
|
|
665
|
+
BudgetConfigurationInput,
|
|
666
|
+
ChargeSubscriptionUsageInput,
|
|
421
667
|
CheckoutConfigurationInput,
|
|
422
668
|
CheckoutContentInput,
|
|
423
669
|
CheckoutOptions,
|
|
@@ -427,23 +673,35 @@ from .input_types import (
|
|
|
427
673
|
CouponFilter,
|
|
428
674
|
CouponFilterCustomerFilter,
|
|
429
675
|
CouponSort,
|
|
676
|
+
CouponSourceFilterComparison,
|
|
430
677
|
CouponStatusFilterComparison,
|
|
431
678
|
CouponTypeFilterComparison,
|
|
432
679
|
CreateCouponInput,
|
|
433
680
|
CreateEnvironment,
|
|
434
681
|
CreateEnvironmentOptions,
|
|
435
682
|
CreateExperimentInput,
|
|
683
|
+
CreateFeatureGroupInput,
|
|
436
684
|
CreateHook,
|
|
437
685
|
CreateIntegrationInput,
|
|
438
686
|
CreateManyPackageEntitlementsInput,
|
|
439
687
|
CreateManyPromotionalEntitlementsInput,
|
|
440
688
|
CreateMeter,
|
|
689
|
+
CreateOfferDraftInput,
|
|
690
|
+
CreateOfferInput,
|
|
441
691
|
CreateOneEnvironmentInput,
|
|
442
|
-
CreateOneFeatureInput,
|
|
443
692
|
CreateOneHookInput,
|
|
444
693
|
CreateOneIntegrationInput,
|
|
445
694
|
CreateOneProductInput,
|
|
695
|
+
CreateOrUpdateAwsMarketplaceProductInput,
|
|
696
|
+
CreatePackageGroup,
|
|
697
|
+
CreateWorkflowTriggerInput,
|
|
698
|
+
CreditBalanceSummaryInput,
|
|
699
|
+
CreditGrantInput,
|
|
700
|
+
CreditLedgerInput,
|
|
701
|
+
CreditRateInput,
|
|
702
|
+
CreditUsageInput,
|
|
446
703
|
CursorPaging,
|
|
704
|
+
CustomCurrencyInput,
|
|
447
705
|
CustomerBillingInfo,
|
|
448
706
|
CustomerFilter,
|
|
449
707
|
CustomerFilterCustomerSubscriptionFilter,
|
|
@@ -468,32 +726,55 @@ from .input_types import (
|
|
|
468
726
|
CustomerSubscriptionSort,
|
|
469
727
|
DateFieldComparison,
|
|
470
728
|
DateFieldComparisonBetween,
|
|
729
|
+
DefaultSSORolesInput,
|
|
471
730
|
DefaultTrialConfigInputDTO,
|
|
731
|
+
DelegateSubscriptionToCustomerInput,
|
|
472
732
|
DeleteFeatureInput,
|
|
473
|
-
DeleteOneAddonInput,
|
|
474
|
-
DeleteOneEnvironmentInput,
|
|
475
733
|
DeleteOneHookInput,
|
|
476
734
|
DeleteOneIntegrationInput,
|
|
477
735
|
DeleteOnePackageEntitlementInput,
|
|
478
736
|
DeleteOnePriceInput,
|
|
479
737
|
DeleteOneProductInput,
|
|
480
738
|
DeleteOnePromotionalEntitlementInput,
|
|
739
|
+
DeleteWorkflowTriggerInput,
|
|
740
|
+
DetachCustomerPaymentMethodInput,
|
|
741
|
+
DimensionsMappingInput,
|
|
481
742
|
DiscardPackageDraftInput,
|
|
743
|
+
DoesFeatureExist,
|
|
744
|
+
DumpEnvironmentForForMergeComparisonInput,
|
|
745
|
+
DumpEnvironmentProductCatalogInput,
|
|
746
|
+
DuplicateProductInput,
|
|
747
|
+
EditPackageGroupDetailsInput,
|
|
482
748
|
EntitlementCheckRequested,
|
|
483
749
|
EntitlementCheckResult,
|
|
484
750
|
EntitlementOptions,
|
|
751
|
+
EnumConfigurationEntityInput,
|
|
485
752
|
EnvironmentFilter,
|
|
486
753
|
EnvironmentInput,
|
|
754
|
+
EnvironmentMergeConfigurationInput,
|
|
487
755
|
EnvironmentSort,
|
|
488
756
|
EstimateSubscriptionInput,
|
|
489
757
|
EstimateSubscriptionUpdateInput,
|
|
758
|
+
EventLogCreatedAtFilterComparison,
|
|
759
|
+
EventLogEntityIdFilterComparison,
|
|
760
|
+
EventLogEnvironmentIdFilterComparison,
|
|
761
|
+
EventLogEventLogTypeFilterComparison,
|
|
762
|
+
EventLogFilter,
|
|
763
|
+
EventLogIdFilterComparison,
|
|
764
|
+
EventLogParentEntityIdFilterComparison,
|
|
765
|
+
EventLogSort,
|
|
490
766
|
EventsFieldsInput,
|
|
491
767
|
ExperimentFilter,
|
|
492
768
|
ExperimentFilterCustomerFilter,
|
|
493
769
|
ExperimentSort,
|
|
494
770
|
ExperimentStatsQuery,
|
|
495
771
|
ExperimentStatusFilterComparison,
|
|
772
|
+
FeatureAssociatedLatestPackages,
|
|
496
773
|
FeatureFilter,
|
|
774
|
+
FeatureGroupAssociatedLatestPackagesInput,
|
|
775
|
+
FeatureGroupFilter,
|
|
776
|
+
FeatureGroupSort,
|
|
777
|
+
FeatureGroupStatusFilterComparison,
|
|
497
778
|
FeatureInput,
|
|
498
779
|
FeatureSort,
|
|
499
780
|
FeatureStatusFilterComparison,
|
|
@@ -502,40 +783,64 @@ from .input_types import (
|
|
|
502
783
|
FetchEntitlementsQuery,
|
|
503
784
|
FontVariantInput,
|
|
504
785
|
GetActiveSubscriptionsInput,
|
|
786
|
+
GetAuth0ApplicationsInput,
|
|
787
|
+
GetCreditGrantsInput,
|
|
505
788
|
GetCustomerByRefIdInput,
|
|
789
|
+
GetOfferInput,
|
|
506
790
|
GetPackageByRefIdInput,
|
|
791
|
+
GetPackageGroup,
|
|
507
792
|
GetPaywallInput,
|
|
793
|
+
GetSubscriptionInput,
|
|
508
794
|
GetWidgetConfigurationInput,
|
|
795
|
+
GetWorkflowTriggersInput,
|
|
509
796
|
GrantPromotionalEntitlementInput,
|
|
797
|
+
GrantPromotionalEntitlementsGroupInput,
|
|
510
798
|
GrantPromotionalEntitlementsInput,
|
|
511
799
|
HookFilter,
|
|
512
800
|
HookSort,
|
|
513
801
|
HookStatusFilterComparison,
|
|
514
802
|
HubspotCredentialsInput,
|
|
515
|
-
|
|
803
|
+
ImportCustomerBulkInput,
|
|
516
804
|
ImportCustomerInput,
|
|
517
805
|
ImportIntegrationCatalogInput,
|
|
518
806
|
ImportIntegrationCustomersInput,
|
|
519
807
|
ImportIntegrationTaskFilter,
|
|
520
808
|
ImportIntegrationTaskSort,
|
|
521
809
|
ImportSubscriptionInput,
|
|
522
|
-
|
|
810
|
+
ImportSubscriptionsBulkInput,
|
|
523
811
|
InitAddStripeCustomerPaymentMethodInput,
|
|
524
812
|
IntegrationFilter,
|
|
525
813
|
IntegrationSort,
|
|
814
|
+
IntegrationVendorTypeFilterComparison,
|
|
526
815
|
IntFieldComparison,
|
|
527
816
|
IntFieldComparisonBetween,
|
|
817
|
+
InviteMembersInput,
|
|
818
|
+
LinkFeatureGroupToPackageInput,
|
|
819
|
+
ListAwsProductDimensionsInput,
|
|
820
|
+
ListAwsProductsInput,
|
|
821
|
+
MarkInvoiceAsPaidInput,
|
|
528
822
|
MemberFilter,
|
|
823
|
+
MemberFilterUserFilter,
|
|
529
824
|
MemberSort,
|
|
825
|
+
MergeEnvironmentInput,
|
|
530
826
|
MeterAggregation,
|
|
531
827
|
MeterConditionInput,
|
|
532
828
|
MeterFilterDefinitionInput,
|
|
533
829
|
MeterTypeFilterComparison,
|
|
830
|
+
MigratePackageFeatureGroupsToLatestInput,
|
|
831
|
+
MinimumSpendInput,
|
|
534
832
|
MoneyInputDTO,
|
|
535
833
|
MonthlyResetPeriodConfigInput,
|
|
536
834
|
NumberFieldComparison,
|
|
537
835
|
NumberFieldComparisonBetween,
|
|
836
|
+
OfferFilter,
|
|
837
|
+
OfferSort,
|
|
838
|
+
OfferStatusFilterComparison,
|
|
839
|
+
OpenFGACredentialsInput,
|
|
840
|
+
OverageEntitlementCreateInput,
|
|
841
|
+
OveragePricingModelCreateInput,
|
|
538
842
|
PackageDTOFilter,
|
|
843
|
+
PackageDTOFilterOfferFilter,
|
|
539
844
|
PackageDTOSort,
|
|
540
845
|
PackageEntitlementFilter,
|
|
541
846
|
PackageEntitlementFilterFeatureFilter,
|
|
@@ -543,22 +848,31 @@ from .input_types import (
|
|
|
543
848
|
PackageEntitlementInput,
|
|
544
849
|
PackageEntitlementSort,
|
|
545
850
|
PackageEntitlementUpdateInput,
|
|
851
|
+
PackageGroupFilter,
|
|
852
|
+
PackageGroupFilterProductFilter,
|
|
853
|
+
PackageGroupSort,
|
|
854
|
+
PackageGroupStatusFilterComparison,
|
|
546
855
|
PackagePricingInput,
|
|
547
856
|
PackagePublishInput,
|
|
548
857
|
PackageStatusFilterComparison,
|
|
549
858
|
PaymentCollectionFilterComparison,
|
|
859
|
+
PaymentSessionInput,
|
|
550
860
|
PaywallColorsPaletteInput,
|
|
551
861
|
PaywallConfigurationInput,
|
|
552
862
|
PaywallLayoutConfigurationInput,
|
|
553
863
|
PlanCreateInput,
|
|
554
864
|
PlanFilter,
|
|
555
865
|
PlanFilterAddonFilter,
|
|
866
|
+
PlanFilterOfferFilter,
|
|
556
867
|
PlanFilterProductFilter,
|
|
557
868
|
PlanSort,
|
|
558
869
|
PlanUpdateInput,
|
|
870
|
+
PreparePaymentMethodFormInput,
|
|
871
|
+
PreviewNextInvoiceInput,
|
|
559
872
|
PreviewSubscriptionInput,
|
|
560
873
|
PriceFilter,
|
|
561
874
|
PriceFilterPackageDTOFilter,
|
|
875
|
+
PriceOverrideInput,
|
|
562
876
|
PricePeriodInput,
|
|
563
877
|
PriceSort,
|
|
564
878
|
PriceTierInput,
|
|
@@ -579,22 +893,35 @@ from .input_types import (
|
|
|
579
893
|
ProvisionSandboxInput,
|
|
580
894
|
ProvisionSubscription,
|
|
581
895
|
ProvisionSubscriptionInput,
|
|
896
|
+
PublishOfferInput,
|
|
582
897
|
RecalculateEntitlementsInput,
|
|
898
|
+
RecalculateEntitlementsSideEffectsOptionsInput,
|
|
583
899
|
RemoveBasePlanFromPlanInput,
|
|
584
900
|
RemoveCompatibleAddonsFromPlanInput,
|
|
585
901
|
RemoveCouponFromCustomerInput,
|
|
586
|
-
RemoveCouponFromCustomerSubscriptionInput,
|
|
587
902
|
RemoveExperimentFromCustomerInput,
|
|
588
903
|
RemoveExperimentFromCustomerSubscriptionInput,
|
|
904
|
+
RemoveFeatureGroupFromPackageInput,
|
|
905
|
+
RemoveOfferDraftInput,
|
|
906
|
+
ReportUsageBaseInput,
|
|
907
|
+
ReportUsageBulkInput,
|
|
589
908
|
ReportUsageInput,
|
|
590
909
|
ResyncIntegrationInput,
|
|
591
910
|
RevokePromotionalEntitlementInput,
|
|
911
|
+
RevokePromotionalEntitlementsGroupInput,
|
|
912
|
+
SalesforceCredentialsInput,
|
|
913
|
+
SetAccessRolesInput,
|
|
592
914
|
SetBasePlanOnPlanInput,
|
|
593
915
|
SetCompatibleAddonsOnPlanInput,
|
|
594
916
|
SetCouponOnCustomerInput,
|
|
595
|
-
|
|
917
|
+
SetDefaultOfferInput,
|
|
596
918
|
SetExperimentOnCustomerInput,
|
|
597
919
|
SetExperimentOnCustomerSubscriptionInput,
|
|
920
|
+
SetPackageGroupAddons,
|
|
921
|
+
SetPlanCompatiblePackageGroup,
|
|
922
|
+
SetPlanCompatiblePackageGroupOptions,
|
|
923
|
+
SetPlanCompatiblePackageGroups,
|
|
924
|
+
SnowflakeCredentialsInput,
|
|
598
925
|
StartExperimentInput,
|
|
599
926
|
StopExperimentInput,
|
|
600
927
|
StringFieldComparison,
|
|
@@ -603,7 +930,6 @@ from .input_types import (
|
|
|
603
930
|
StripeProductSearchInput,
|
|
604
931
|
StripeSubscriptionSearchInput,
|
|
605
932
|
SubscriptionAddonFilter,
|
|
606
|
-
SubscriptionAddonFilterAddonFilter,
|
|
607
933
|
SubscriptionAddonFilterCustomerSubscriptionFilter,
|
|
608
934
|
SubscriptionAddonFilterPriceFilter,
|
|
609
935
|
SubscriptionAddonInput,
|
|
@@ -611,6 +937,9 @@ from .input_types import (
|
|
|
611
937
|
SubscriptionBillingInfo,
|
|
612
938
|
SubscriptionCancellationInput,
|
|
613
939
|
SubscriptionCancelReasonFilterComparison,
|
|
940
|
+
SubscriptionCouponConfigurationInput,
|
|
941
|
+
SubscriptionCouponDiscountInput,
|
|
942
|
+
SubscriptionCouponInput,
|
|
614
943
|
SubscriptionEntitlementFilter,
|
|
615
944
|
SubscriptionEntitlementFilterCustomerSubscriptionFilter,
|
|
616
945
|
SubscriptionEntitlementFilterFeatureFilter,
|
|
@@ -620,30 +949,54 @@ from .input_types import (
|
|
|
620
949
|
SubscriptionMigrationInput,
|
|
621
950
|
SubscriptionMigrationTaskFilter,
|
|
622
951
|
SubscriptionMigrationTaskSort,
|
|
952
|
+
SubscriptionMinimumSpendValueInput,
|
|
623
953
|
SubscriptionPriceFilter,
|
|
624
954
|
SubscriptionPriceFilterCustomerSubscriptionFilter,
|
|
625
955
|
SubscriptionPriceFilterPriceFilter,
|
|
626
956
|
SubscriptionPriceSort,
|
|
957
|
+
SubscriptionQueryFilter,
|
|
958
|
+
SubscriptionQueryFilterCustomerFilter,
|
|
959
|
+
SubscriptionQueryFilterCustomerResourceFilter,
|
|
960
|
+
SubscriptionQueryFilterPlanFilter,
|
|
961
|
+
SubscriptionQuerySort,
|
|
627
962
|
SubscriptionStatusFilterComparison,
|
|
628
963
|
SubscriptionUpdateScheduleCancellationInput,
|
|
964
|
+
SubscriptionUpdateUsageResetCutoffRuleInput,
|
|
629
965
|
SyncTaxRatesInput,
|
|
630
966
|
TaskStatusFilterComparison,
|
|
631
967
|
TaskTypeFilterComparison,
|
|
632
968
|
TaxExempt,
|
|
633
969
|
TestHookInput,
|
|
970
|
+
TestWorkflowInput,
|
|
634
971
|
TiersModeFilterComparison,
|
|
635
972
|
TransferSubscriptionInput,
|
|
973
|
+
TransferSubscriptionToResourceInput,
|
|
974
|
+
TrialOverrideConfigurationInput,
|
|
975
|
+
TriggerSubscriptionBillingMonthEndsSoonWebhookInput,
|
|
976
|
+
TriggerSubscriptionMigrationInput,
|
|
977
|
+
TriggerSubscriptionUsageSyncInput,
|
|
978
|
+
TriggerWorkflowInput,
|
|
636
979
|
TypographyConfigurationInput,
|
|
980
|
+
UnarchiveCustomerInput,
|
|
981
|
+
UnarchiveEnvironmentInput,
|
|
982
|
+
UnArchiveFeatureGroupInput,
|
|
983
|
+
UnArchiveFeatureInput,
|
|
984
|
+
UnArchivePlanInput,
|
|
985
|
+
UnitsInput,
|
|
986
|
+
UnitTransformationInput,
|
|
987
|
+
UnlinkFeatureGroupFromPackageInput,
|
|
988
|
+
UnlinkPromotionalEntitlementsGroupInput,
|
|
637
989
|
UpdateAccountInput,
|
|
638
990
|
UpdateCouponInput,
|
|
991
|
+
UpdateCreditGrantInput,
|
|
992
|
+
UpdateCustomCurrencyInput,
|
|
639
993
|
UpdateCustomerInput,
|
|
640
994
|
UpdateExperimentInput,
|
|
641
|
-
UpdateFeature,
|
|
642
995
|
UpdateFeatureInput,
|
|
643
996
|
UpdateHook,
|
|
644
997
|
UpdateIntegrationInput,
|
|
998
|
+
UpdateOfferInput,
|
|
645
999
|
UpdateOneEnvironmentInput,
|
|
646
|
-
UpdateOneFeatureInput,
|
|
647
1000
|
UpdateOneHookInput,
|
|
648
1001
|
UpdateOneIntegrationInput,
|
|
649
1002
|
UpdateOnePackageEntitlementInput,
|
|
@@ -651,6 +1004,7 @@ from .input_types import (
|
|
|
651
1004
|
UpdateOnePromotionalEntitlementInput,
|
|
652
1005
|
UpdatePackageEntitlementOrderInput,
|
|
653
1006
|
UpdatePackageEntitlementOrderItemInput,
|
|
1007
|
+
UpdateStripeCredentialsInput,
|
|
654
1008
|
UpdateSubscriptionEntitlementInput,
|
|
655
1009
|
UpdateSubscriptionInput,
|
|
656
1010
|
UpdateUserInput,
|
|
@@ -658,63 +1012,91 @@ from .input_types import (
|
|
|
658
1012
|
UsageEventsInput,
|
|
659
1013
|
UsageEventsReportInput,
|
|
660
1014
|
UsageHistoryInput,
|
|
1015
|
+
UsageHistoryV2Input,
|
|
661
1016
|
UsageMeasurementCreateInput,
|
|
662
1017
|
UsageMeasurementFilter,
|
|
663
1018
|
UsageMeasurementFilterCustomerFilter,
|
|
664
1019
|
UsageMeasurementFilterFeatureFilter,
|
|
665
1020
|
UsageMeasurementSort,
|
|
1021
|
+
UUIDFilterComparison,
|
|
1022
|
+
ValidateMergeEnvironmentInput,
|
|
666
1023
|
VendorIdentifierFilterComparison,
|
|
1024
|
+
VoidCreditGrantInput,
|
|
667
1025
|
WeeklyResetPeriodConfigInput,
|
|
668
1026
|
WidgetConfigurationUpdateInput,
|
|
1027
|
+
WorkflowsLoginInput,
|
|
1028
|
+
YearlyResetPeriodConfigInput,
|
|
669
1029
|
ZuoraCredentialsInput,
|
|
670
1030
|
)
|
|
671
1031
|
from .migrate_subscription_to_latest import (
|
|
672
1032
|
MigrateSubscriptionToLatest,
|
|
673
1033
|
MigrateSubscriptionToLatestMigrateSubscriptionToLatest,
|
|
674
1034
|
)
|
|
1035
|
+
from .preview_next_invoice import (
|
|
1036
|
+
PreviewNextInvoice,
|
|
1037
|
+
PreviewNextInvoicePreviewNextInvoice,
|
|
1038
|
+
)
|
|
675
1039
|
from .preview_subscription import (
|
|
676
1040
|
PreviewSubscription,
|
|
677
1041
|
PreviewSubscriptionPreviewSubscription,
|
|
678
1042
|
)
|
|
679
|
-
from .provision_customer import
|
|
680
|
-
ProvisionCustomer,
|
|
681
|
-
ProvisionCustomerProvisionCustomer,
|
|
682
|
-
ProvisionCustomerProvisionCustomerCustomer,
|
|
683
|
-
ProvisionCustomerProvisionCustomerSubscription,
|
|
684
|
-
)
|
|
1043
|
+
from .provision_customer import ProvisionCustomer, ProvisionCustomerProvisionCustomer
|
|
685
1044
|
from .provision_subscription import (
|
|
686
1045
|
ProvisionSubscription,
|
|
687
1046
|
ProvisionSubscriptionProvisionSubscription,
|
|
688
|
-
ProvisionSubscriptionProvisionSubscriptionSubscription,
|
|
689
1047
|
)
|
|
690
1048
|
from .report_entitlement_check_requested import ReportEntitlementCheckRequested
|
|
691
1049
|
from .report_event import ReportEvent
|
|
692
|
-
from .report_usage import ReportUsage,
|
|
1050
|
+
from .report_usage import ReportUsage, ReportUsageReportUsage
|
|
1051
|
+
from .report_usage_bulk import ReportUsageBulk, ReportUsageBulkReportUsageBulk
|
|
693
1052
|
from .revoke_promotional_entitlement import (
|
|
694
1053
|
RevokePromotionalEntitlement,
|
|
695
1054
|
RevokePromotionalEntitlementRevokePromotionalEntitlement,
|
|
696
1055
|
)
|
|
1056
|
+
from .revoke_promotional_entitlements_group import (
|
|
1057
|
+
RevokePromotionalEntitlementsGroup,
|
|
1058
|
+
RevokePromotionalEntitlementsGroupRevokePromotionalEntitlementsGroup,
|
|
1059
|
+
)
|
|
697
1060
|
from .transfer_subscription import (
|
|
698
1061
|
TransferSubscription,
|
|
699
1062
|
TransferSubscriptionTransferSubscription,
|
|
700
1063
|
)
|
|
1064
|
+
from .transfer_subscription_to_resource import (
|
|
1065
|
+
TransferSubscriptionToResource,
|
|
1066
|
+
TransferSubscriptionToResourceTransferSubscriptionToResource,
|
|
1067
|
+
)
|
|
1068
|
+
from .unarchive_customer import UnarchiveCustomer, UnarchiveCustomerUnarchiveCustomer
|
|
1069
|
+
from .unlink_promotional_entitlements_group import (
|
|
1070
|
+
UnlinkPromotionalEntitlementsGroup,
|
|
1071
|
+
UnlinkPromotionalEntitlementsGroupUnlinkPromotionalEntitlementsGroup,
|
|
1072
|
+
)
|
|
701
1073
|
from .update_customer import UpdateCustomer, UpdateCustomerUpdateCustomer
|
|
702
1074
|
from .update_subscription import (
|
|
703
1075
|
UpdateSubscription,
|
|
704
1076
|
UpdateSubscriptionUpdateSubscription,
|
|
705
1077
|
)
|
|
1078
|
+
from .void_credit_grant import VoidCreditGrant, VoidCreditGrantVoidCreditGrant
|
|
706
1079
|
|
|
707
1080
|
__all__ = [
|
|
708
1081
|
"AccessDeniedReason",
|
|
1082
|
+
"AccountAccessMethod",
|
|
1083
|
+
"AccountAccessRole",
|
|
709
1084
|
"AccountStatus",
|
|
710
1085
|
"AddCompatibleAddonsToPlanInput",
|
|
1086
|
+
"AddonArchiveInput",
|
|
1087
|
+
"AddonAssociatedEntitiesInput",
|
|
711
1088
|
"AddonCreateInput",
|
|
1089
|
+
"AddonDependencyFragment",
|
|
712
1090
|
"AddonFilter",
|
|
1091
|
+
"AddonFilterOfferFilter",
|
|
713
1092
|
"AddonFragment",
|
|
1093
|
+
"AddonFragmentDependencies",
|
|
714
1094
|
"AddonFragmentEntitlements",
|
|
1095
|
+
"AddonFragmentOveragePrices",
|
|
715
1096
|
"AddonFragmentPrices",
|
|
716
1097
|
"AddonSort",
|
|
717
1098
|
"AddonSortFields",
|
|
1099
|
+
"AddonUnArchiveInput",
|
|
718
1100
|
"AddonUpdateInput",
|
|
719
1101
|
"Address",
|
|
720
1102
|
"AggregatedEventsByCustomerInput",
|
|
@@ -726,30 +1108,45 @@ __all__ = [
|
|
|
726
1108
|
"ApiKeyType",
|
|
727
1109
|
"ApplySubscription",
|
|
728
1110
|
"ApplySubscriptionApplySubscription",
|
|
729
|
-
"
|
|
1111
|
+
"ApplySubscriptionFragment",
|
|
1112
|
+
"ApplySubscriptionFragmentEntitlements",
|
|
1113
|
+
"ApplySubscriptionFragmentSubscription",
|
|
730
1114
|
"ApplySubscriptionInput",
|
|
731
1115
|
"ArchiveCouponInput",
|
|
732
1116
|
"ArchiveCustomer",
|
|
733
1117
|
"ArchiveCustomerArchiveCustomer",
|
|
734
1118
|
"ArchiveCustomerInput",
|
|
1119
|
+
"ArchiveEnvironmentInput",
|
|
1120
|
+
"ArchiveFeatureGroupInput",
|
|
1121
|
+
"ArchiveFeatureInput",
|
|
1122
|
+
"ArchivePackageGroup",
|
|
735
1123
|
"ArchivePlanInput",
|
|
736
1124
|
"AsyncBaseClient",
|
|
737
1125
|
"AsyncClient",
|
|
738
1126
|
"AttachCustomerPaymentMethodInput",
|
|
1127
|
+
"Auth0ApplicationType",
|
|
1128
|
+
"Auth0CredentialsInput",
|
|
1129
|
+
"AutoCancellationRuleInput",
|
|
1130
|
+
"AwsMarketplaceCredentialsInput",
|
|
739
1131
|
"BaseModel",
|
|
1132
|
+
"BigQueryCredentialsInput",
|
|
740
1133
|
"BillableFeatureInput",
|
|
741
1134
|
"BillingAddress",
|
|
742
1135
|
"BillingAnchor",
|
|
1136
|
+
"BillingCadence",
|
|
1137
|
+
"BillingCadenceFilterComparison",
|
|
743
1138
|
"BillingModel",
|
|
744
1139
|
"BillingModelFilterComparison",
|
|
745
1140
|
"BillingPeriod",
|
|
746
1141
|
"BillingPeriodFilterComparison",
|
|
747
1142
|
"BillingVendorIdentifier",
|
|
748
1143
|
"BooleanFieldComparison",
|
|
1144
|
+
"BudgetConfigurationInput",
|
|
749
1145
|
"CancelSubscription",
|
|
750
1146
|
"CancelSubscriptionCancelSubscription",
|
|
751
1147
|
"CancelSubscriptionUpdates",
|
|
752
1148
|
"ChangeType",
|
|
1149
|
+
"ChargeSubscriptionUsageInput",
|
|
753
1150
|
"CheckoutConfigurationFragment",
|
|
754
1151
|
"CheckoutConfigurationFragmentContent",
|
|
755
1152
|
"CheckoutConfigurationFragmentPalette",
|
|
@@ -761,6 +1158,8 @@ __all__ = [
|
|
|
761
1158
|
"CheckoutStateFragment",
|
|
762
1159
|
"CheckoutStateFragmentActiveSubscription",
|
|
763
1160
|
"CheckoutStateFragmentBillingIntegration",
|
|
1161
|
+
"CheckoutStateFragmentBillingIntegrationBillingCredentialsStripeCheckoutCredentials",
|
|
1162
|
+
"CheckoutStateFragmentBillingIntegrationBillingCredentialsZuoraCheckoutCredentials",
|
|
764
1163
|
"CheckoutStateFragmentBillingIntegrationCredentials",
|
|
765
1164
|
"CheckoutStateFragmentConfiguration",
|
|
766
1165
|
"CheckoutStateFragmentCustomer",
|
|
@@ -772,10 +1171,12 @@ __all__ = [
|
|
|
772
1171
|
"CouponFilter",
|
|
773
1172
|
"CouponFilterCustomerFilter",
|
|
774
1173
|
"CouponFragment",
|
|
775
|
-
"
|
|
1174
|
+
"CouponFragmentAmountsOff",
|
|
776
1175
|
"CouponFragmentSyncStates",
|
|
777
1176
|
"CouponSort",
|
|
778
1177
|
"CouponSortFields",
|
|
1178
|
+
"CouponSource",
|
|
1179
|
+
"CouponSourceFilterComparison",
|
|
779
1180
|
"CouponStatus",
|
|
780
1181
|
"CouponStatusFilterComparison",
|
|
781
1182
|
"CouponType",
|
|
@@ -784,20 +1185,51 @@ __all__ = [
|
|
|
784
1185
|
"CreateEnvironment",
|
|
785
1186
|
"CreateEnvironmentOptions",
|
|
786
1187
|
"CreateExperimentInput",
|
|
1188
|
+
"CreateFeatureGroupInput",
|
|
787
1189
|
"CreateHook",
|
|
788
1190
|
"CreateIntegrationInput",
|
|
789
1191
|
"CreateManyPackageEntitlementsInput",
|
|
790
1192
|
"CreateManyPromotionalEntitlementsInput",
|
|
791
1193
|
"CreateMeter",
|
|
1194
|
+
"CreateOfferDraftInput",
|
|
1195
|
+
"CreateOfferInput",
|
|
792
1196
|
"CreateOneEnvironmentInput",
|
|
793
|
-
"CreateOneFeatureInput",
|
|
794
1197
|
"CreateOneHookInput",
|
|
795
1198
|
"CreateOneIntegrationInput",
|
|
796
1199
|
"CreateOneProductInput",
|
|
1200
|
+
"CreateOrUpdateAwsMarketplaceProductInput",
|
|
1201
|
+
"CreatePackageGroup",
|
|
1202
|
+
"CreatePaymentSession",
|
|
1203
|
+
"CreatePaymentSessionCreatePaymentSession",
|
|
797
1204
|
"CreateSubscription",
|
|
798
1205
|
"CreateSubscriptionCreateSubscription",
|
|
1206
|
+
"CreateWorkflowTriggerInput",
|
|
1207
|
+
"CreditBalanceFragment",
|
|
1208
|
+
"CreditBalanceFragmentCurrency",
|
|
1209
|
+
"CreditBalanceFragmentCurrencyUnits",
|
|
1210
|
+
"CreditBalanceSummaryInput",
|
|
1211
|
+
"CreditBalanceUpdatedPayload",
|
|
1212
|
+
"CreditBalanceUpdatedPayloadCurrency",
|
|
1213
|
+
"CreditBalanceUpdatedPayloadCurrencyUnits",
|
|
1214
|
+
"CreditGrantFragment",
|
|
1215
|
+
"CreditGrantFragmentCost",
|
|
1216
|
+
"CreditGrantInput",
|
|
1217
|
+
"CreditGrantType",
|
|
1218
|
+
"CreditLedgerEventType",
|
|
1219
|
+
"CreditLedgerFragment",
|
|
1220
|
+
"CreditLedgerInput",
|
|
1221
|
+
"CreditRateInput",
|
|
1222
|
+
"CreditUsageFragment",
|
|
1223
|
+
"CreditUsageFragmentCurrency",
|
|
1224
|
+
"CreditUsageFragmentSeries",
|
|
1225
|
+
"CreditUsageFragmentSeriesPoints",
|
|
1226
|
+
"CreditUsageInput",
|
|
1227
|
+
"CreditUsageTimeRange",
|
|
1228
|
+
"CreditsBalanceSummaryFragment",
|
|
1229
|
+
"CreditsBalanceSummaryFragmentBalances",
|
|
799
1230
|
"Currency",
|
|
800
1231
|
"CursorPaging",
|
|
1232
|
+
"CustomCurrencyInput",
|
|
801
1233
|
"CustomerBillingInfo",
|
|
802
1234
|
"CustomerFilter",
|
|
803
1235
|
"CustomerFilterCustomerSubscriptionFilter",
|
|
@@ -819,6 +1251,7 @@ __all__ = [
|
|
|
819
1251
|
"CustomerPortalEntitlementFragmentFeature",
|
|
820
1252
|
"CustomerPortalEntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
821
1253
|
"CustomerPortalEntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
1254
|
+
"CustomerPortalEntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
822
1255
|
"CustomerPortalFragment",
|
|
823
1256
|
"CustomerPortalFragmentBillingInformation",
|
|
824
1257
|
"CustomerPortalFragmentConfiguration",
|
|
@@ -834,6 +1267,7 @@ __all__ = [
|
|
|
834
1267
|
"CustomerPortalSubscriptionFragmentBillingPeriodRange",
|
|
835
1268
|
"CustomerPortalSubscriptionFragmentPrices",
|
|
836
1269
|
"CustomerPortalSubscriptionFragmentPricing",
|
|
1270
|
+
"CustomerPortalSubscriptionFragmentPricingCreditRate",
|
|
837
1271
|
"CustomerPortalSubscriptionFragmentPricingFeature",
|
|
838
1272
|
"CustomerPortalSubscriptionFragmentPricingPrice",
|
|
839
1273
|
"CustomerPortalSubscriptionFragmentScheduledUpdates",
|
|
@@ -842,12 +1276,23 @@ __all__ = [
|
|
|
842
1276
|
"CustomerPortalSubscriptionFragmentTotalPriceSubTotal",
|
|
843
1277
|
"CustomerPortalSubscriptionFragmentTotalPriceTotal",
|
|
844
1278
|
"CustomerPortalSubscriptionPriceFragment",
|
|
1279
|
+
"CustomerPortalSubscriptionPriceFragmentCreditRate",
|
|
845
1280
|
"CustomerPortalSubscriptionPriceFragmentFeature",
|
|
846
1281
|
"CustomerPortalSubscriptionPriceFragmentPrice",
|
|
847
1282
|
"CustomerPortalSubscriptionScheduledUpdateDataFragment",
|
|
848
1283
|
"CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesAddonChangeVariables",
|
|
1284
|
+
"CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
849
1285
|
"CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesBillingPeriodChangeVariables",
|
|
1286
|
+
"CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesCouponChangeVariables",
|
|
850
1287
|
"CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesDowngradeChangeVariables",
|
|
1288
|
+
"CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesDowngradeChangeVariablesAddons",
|
|
1289
|
+
"CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesDowngradeChangeVariablesBillableFeatures",
|
|
1290
|
+
"CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesDowngradeChangeVariablesPriceOverrides",
|
|
1291
|
+
"CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesPlanChangeVariables",
|
|
1292
|
+
"CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesPlanChangeVariablesAddons",
|
|
1293
|
+
"CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesPlanChangeVariablesBillableFeatures",
|
|
1294
|
+
"CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesPlanChangeVariablesPriceOverrides",
|
|
1295
|
+
"CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
851
1296
|
"CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnitAmountChangeVariables",
|
|
852
1297
|
"CustomerPortalSubscriptionScheduledUpdateDataFragmentTargetPackage",
|
|
853
1298
|
"CustomerResourceFilter",
|
|
@@ -859,6 +1304,9 @@ __all__ = [
|
|
|
859
1304
|
"CustomerSearchQueryFilterComparison",
|
|
860
1305
|
"CustomerSort",
|
|
861
1306
|
"CustomerSortFields",
|
|
1307
|
+
"CustomerStatisticsFragment",
|
|
1308
|
+
"CustomerStatisticsFragmentStatistics",
|
|
1309
|
+
"CustomerStatisticsFragmentStatisticsActiveSubscriptionsByPricingType",
|
|
862
1310
|
"CustomerSubscriptionFilter",
|
|
863
1311
|
"CustomerSubscriptionFilterCustomerFilter",
|
|
864
1312
|
"CustomerSubscriptionFilterCustomerResourceFilter",
|
|
@@ -872,39 +1320,59 @@ __all__ = [
|
|
|
872
1320
|
"CustomerWithSubscriptionsFragmentSubscriptions",
|
|
873
1321
|
"DateFieldComparison",
|
|
874
1322
|
"DateFieldComparisonBetween",
|
|
1323
|
+
"DefaultSSORolesInput",
|
|
875
1324
|
"DefaultTrialConfigInputDTO",
|
|
1325
|
+
"DelegateSubscriptionToCustomer",
|
|
1326
|
+
"DelegateSubscriptionToCustomerDelegateSubscriptionToCustomer",
|
|
1327
|
+
"DelegateSubscriptionToCustomerInput",
|
|
876
1328
|
"DeleteFeatureInput",
|
|
877
|
-
"DeleteOneAddonInput",
|
|
878
|
-
"DeleteOneEnvironmentInput",
|
|
879
1329
|
"DeleteOneHookInput",
|
|
880
1330
|
"DeleteOneIntegrationInput",
|
|
881
1331
|
"DeleteOnePackageEntitlementInput",
|
|
882
1332
|
"DeleteOnePriceInput",
|
|
883
1333
|
"DeleteOneProductInput",
|
|
884
1334
|
"DeleteOnePromotionalEntitlementInput",
|
|
1335
|
+
"DeleteWorkflowTriggerInput",
|
|
885
1336
|
"Department",
|
|
1337
|
+
"DetachCustomerPaymentMethod",
|
|
1338
|
+
"DetachCustomerPaymentMethodDetachCustomerPaymentMethod",
|
|
1339
|
+
"DetachCustomerPaymentMethodInput",
|
|
1340
|
+
"DimensionsMappingInput",
|
|
886
1341
|
"DiscardPackageDraftInput",
|
|
887
1342
|
"DiscountDurationType",
|
|
888
1343
|
"DiscountType",
|
|
1344
|
+
"DoesFeatureExist",
|
|
1345
|
+
"DumpEnvironmentForForMergeComparisonInput",
|
|
1346
|
+
"DumpEnvironmentProductCatalogInput",
|
|
1347
|
+
"DuplicateProductInput",
|
|
1348
|
+
"EditPackageGroupDetailsInput",
|
|
1349
|
+
"EntitlementBehavior",
|
|
889
1350
|
"EntitlementCheckRequested",
|
|
890
1351
|
"EntitlementCheckResult",
|
|
891
1352
|
"EntitlementFragment",
|
|
1353
|
+
"EntitlementFragmentCreditRate",
|
|
892
1354
|
"EntitlementFragmentFeature",
|
|
893
1355
|
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
894
1356
|
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
1357
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
895
1358
|
"EntitlementOptions",
|
|
896
1359
|
"EntitlementResetPeriod",
|
|
897
1360
|
"EntitlementUsageUpdated",
|
|
898
1361
|
"EntitlementUsageUpdatedEntitlement",
|
|
899
1362
|
"EntitlementUsageUpdatedUsage",
|
|
1363
|
+
"EntitlementsStateAccessDeniedReason",
|
|
900
1364
|
"EntitlementsUpdatedPayload",
|
|
901
1365
|
"EntitlementsUpdatedPayloadEntitlements",
|
|
902
1366
|
"EntitySelectionMode",
|
|
1367
|
+
"EnumConfigurationEntityInput",
|
|
1368
|
+
"EnvironmentAccessRole",
|
|
903
1369
|
"EnvironmentFilter",
|
|
904
1370
|
"EnvironmentInput",
|
|
1371
|
+
"EnvironmentMergeConfigurationInput",
|
|
905
1372
|
"EnvironmentProvisionStatus",
|
|
906
1373
|
"EnvironmentSort",
|
|
907
1374
|
"EnvironmentSortFields",
|
|
1375
|
+
"EnvironmentType",
|
|
908
1376
|
"ErrorCode",
|
|
909
1377
|
"EstimateSubscription",
|
|
910
1378
|
"EstimateSubscriptionEstimateSubscription",
|
|
@@ -912,6 +1380,17 @@ __all__ = [
|
|
|
912
1380
|
"EstimateSubscriptionUpdate",
|
|
913
1381
|
"EstimateSubscriptionUpdateEstimateSubscriptionUpdate",
|
|
914
1382
|
"EstimateSubscriptionUpdateInput",
|
|
1383
|
+
"EventActor",
|
|
1384
|
+
"EventEntityType",
|
|
1385
|
+
"EventLogCreatedAtFilterComparison",
|
|
1386
|
+
"EventLogEntityIdFilterComparison",
|
|
1387
|
+
"EventLogEnvironmentIdFilterComparison",
|
|
1388
|
+
"EventLogEventLogTypeFilterComparison",
|
|
1389
|
+
"EventLogFilter",
|
|
1390
|
+
"EventLogIdFilterComparison",
|
|
1391
|
+
"EventLogParentEntityIdFilterComparison",
|
|
1392
|
+
"EventLogSort",
|
|
1393
|
+
"EventLogSortFields",
|
|
915
1394
|
"EventLogType",
|
|
916
1395
|
"EventsFieldsInput",
|
|
917
1396
|
"ExperimentFilter",
|
|
@@ -921,8 +1400,16 @@ __all__ = [
|
|
|
921
1400
|
"ExperimentStatsQuery",
|
|
922
1401
|
"ExperimentStatus",
|
|
923
1402
|
"ExperimentStatusFilterComparison",
|
|
1403
|
+
"FeatureAssociatedLatestPackages",
|
|
924
1404
|
"FeatureFilter",
|
|
925
1405
|
"FeatureFragment",
|
|
1406
|
+
"FeatureFragmentUnitTransformation",
|
|
1407
|
+
"FeatureGroupAssociatedLatestPackagesInput",
|
|
1408
|
+
"FeatureGroupFilter",
|
|
1409
|
+
"FeatureGroupSort",
|
|
1410
|
+
"FeatureGroupSortFields",
|
|
1411
|
+
"FeatureGroupStatus",
|
|
1412
|
+
"FeatureGroupStatusFilterComparison",
|
|
926
1413
|
"FeatureInput",
|
|
927
1414
|
"FeatureSort",
|
|
928
1415
|
"FeatureSortFields",
|
|
@@ -938,26 +1425,49 @@ __all__ = [
|
|
|
938
1425
|
"GetActiveSubscriptions",
|
|
939
1426
|
"GetActiveSubscriptionsGetActiveSubscriptions",
|
|
940
1427
|
"GetActiveSubscriptionsInput",
|
|
1428
|
+
"GetActiveSubscriptionsList",
|
|
1429
|
+
"GetActiveSubscriptionsListGetActiveSubscriptions",
|
|
1430
|
+
"GetAuth0ApplicationsInput",
|
|
941
1431
|
"GetCheckoutState",
|
|
942
1432
|
"GetCheckoutStateCheckoutState",
|
|
943
1433
|
"GetCoupons",
|
|
944
1434
|
"GetCouponsCoupons",
|
|
945
1435
|
"GetCouponsCouponsEdges",
|
|
946
1436
|
"GetCouponsCouponsEdgesNode",
|
|
1437
|
+
"GetCreditBalance",
|
|
1438
|
+
"GetCreditBalanceCreditBalanceSummary",
|
|
1439
|
+
"GetCreditGrants",
|
|
1440
|
+
"GetCreditGrantsCreditGrants",
|
|
1441
|
+
"GetCreditGrantsCreditGrantsEdges",
|
|
1442
|
+
"GetCreditGrantsCreditGrantsEdgesNode",
|
|
1443
|
+
"GetCreditGrantsCreditGrantsPageInfo",
|
|
1444
|
+
"GetCreditGrantsInput",
|
|
1445
|
+
"GetCreditLedger",
|
|
1446
|
+
"GetCreditLedgerCreditsLedger",
|
|
1447
|
+
"GetCreditLedgerCreditsLedgerEvents",
|
|
1448
|
+
"GetCreditUsage",
|
|
1449
|
+
"GetCreditUsageCreditUsage",
|
|
947
1450
|
"GetCustomerById",
|
|
948
1451
|
"GetCustomerByIdGetCustomerByRefId",
|
|
949
1452
|
"GetCustomerByRefIdInput",
|
|
950
1453
|
"GetCustomerPortalByRefId",
|
|
951
1454
|
"GetCustomerPortalByRefIdCustomerPortal",
|
|
1455
|
+
"GetCustomerStatistics",
|
|
1456
|
+
"GetCustomerStatisticsGetCustomerByRefId",
|
|
952
1457
|
"GetEntitlement",
|
|
953
1458
|
"GetEntitlementEntitlement",
|
|
954
1459
|
"GetEntitlements",
|
|
955
1460
|
"GetEntitlementsEntitlements",
|
|
1461
|
+
"GetEntitlementsState",
|
|
1462
|
+
"GetEntitlementsStateEntitlementsState",
|
|
1463
|
+
"GetEntitlementsStateEntitlementsStateEntitlements",
|
|
956
1464
|
"GetMockPaywall",
|
|
957
1465
|
"GetMockPaywallMockPaywall",
|
|
958
1466
|
"GetMockPaywallMockPaywallConfiguration",
|
|
959
1467
|
"GetMockPaywallMockPaywallPlans",
|
|
1468
|
+
"GetOfferInput",
|
|
960
1469
|
"GetPackageByRefIdInput",
|
|
1470
|
+
"GetPackageGroup",
|
|
961
1471
|
"GetPaywall",
|
|
962
1472
|
"GetPaywallInput",
|
|
963
1473
|
"GetPaywallPaywall",
|
|
@@ -967,18 +1477,34 @@ __all__ = [
|
|
|
967
1477
|
"GetProductsProductsEdgesNode",
|
|
968
1478
|
"GetSdkConfiguration",
|
|
969
1479
|
"GetSdkConfigurationSdkConfiguration",
|
|
1480
|
+
"GetSubscription",
|
|
1481
|
+
"GetSubscriptionGetSubscription",
|
|
1482
|
+
"GetSubscriptionInput",
|
|
1483
|
+
"GetSubscriptions",
|
|
1484
|
+
"GetSubscriptionsSubscriptions",
|
|
1485
|
+
"GetSubscriptionsSubscriptionsEdges",
|
|
1486
|
+
"GetSubscriptionsSubscriptionsEdgesNode",
|
|
1487
|
+
"GetSubscriptionsSubscriptionsPageInfo",
|
|
970
1488
|
"GetUsageHistory",
|
|
971
1489
|
"GetUsageHistoryUsageHistory",
|
|
1490
|
+
"GetUsageHistoryV2",
|
|
1491
|
+
"GetUsageHistoryV2UsageHistoryV2",
|
|
972
1492
|
"GetWidgetConfigurationInput",
|
|
1493
|
+
"GetWorkflowTriggersInput",
|
|
1494
|
+
"GrantCredits",
|
|
1495
|
+
"GrantCreditsCreateCreditGrant",
|
|
973
1496
|
"GrantPromotionalEntitlementInput",
|
|
974
1497
|
"GrantPromotionalEntitlements",
|
|
975
1498
|
"GrantPromotionalEntitlementsGrantPromotionalEntitlements",
|
|
1499
|
+
"GrantPromotionalEntitlementsGroup",
|
|
1500
|
+
"GrantPromotionalEntitlementsGroupGrantPromotionalEntitlementsGroup",
|
|
1501
|
+
"GrantPromotionalEntitlementsGroupInput",
|
|
976
1502
|
"GrantPromotionalEntitlementsInput",
|
|
977
1503
|
"GraphQLClientError",
|
|
978
1504
|
"GraphQLClientGraphQLError",
|
|
979
1505
|
"GraphQLClientGraphQLMultiError",
|
|
980
1506
|
"GraphQLClientHttpError",
|
|
981
|
-
"
|
|
1507
|
+
"GraphQLClientInvalidResponseError",
|
|
982
1508
|
"HookFilter",
|
|
983
1509
|
"HookSort",
|
|
984
1510
|
"HookSortFields",
|
|
@@ -1003,7 +1529,7 @@ __all__ = [
|
|
|
1003
1529
|
"ImmediateSubscriptionPreviewInvoiceFragmentTotalExcludingTax",
|
|
1004
1530
|
"ImportCustomer",
|
|
1005
1531
|
"ImportCustomerBulk",
|
|
1006
|
-
"
|
|
1532
|
+
"ImportCustomerBulkInput",
|
|
1007
1533
|
"ImportCustomerImportCustomer",
|
|
1008
1534
|
"ImportCustomerInput",
|
|
1009
1535
|
"ImportIntegrationCatalogInput",
|
|
@@ -1013,39 +1539,58 @@ __all__ = [
|
|
|
1013
1539
|
"ImportIntegrationTaskSortFields",
|
|
1014
1540
|
"ImportSubscriptionInput",
|
|
1015
1541
|
"ImportSubscriptionsBulk",
|
|
1016
|
-
"
|
|
1542
|
+
"ImportSubscriptionsBulkInput",
|
|
1017
1543
|
"InitAddStripeCustomerPaymentMethodInput",
|
|
1018
1544
|
"IntFieldComparison",
|
|
1019
1545
|
"IntFieldComparisonBetween",
|
|
1020
1546
|
"IntegrationFilter",
|
|
1021
1547
|
"IntegrationSort",
|
|
1022
1548
|
"IntegrationSortFields",
|
|
1549
|
+
"IntegrationVendorTypeFilterComparison",
|
|
1550
|
+
"InviteMembersInput",
|
|
1551
|
+
"InvoiceLineItemType",
|
|
1023
1552
|
"LayoutConfigurationFragment",
|
|
1553
|
+
"LinkFeatureGroupToPackageInput",
|
|
1554
|
+
"ListAwsProductDimensionsInput",
|
|
1555
|
+
"ListAwsProductsInput",
|
|
1556
|
+
"MarkInvoiceAsPaidInput",
|
|
1024
1557
|
"MemberFilter",
|
|
1558
|
+
"MemberFilterUserFilter",
|
|
1025
1559
|
"MemberSort",
|
|
1026
1560
|
"MemberSortFields",
|
|
1027
1561
|
"MemberStatus",
|
|
1562
|
+
"MergeEnvironmentInput",
|
|
1028
1563
|
"MeterAggregation",
|
|
1029
1564
|
"MeterConditionInput",
|
|
1030
1565
|
"MeterFilterDefinitionInput",
|
|
1031
1566
|
"MeterType",
|
|
1032
1567
|
"MeterTypeFilterComparison",
|
|
1568
|
+
"MigratePackageFeatureGroupsToLatestInput",
|
|
1033
1569
|
"MigrateSubscriptionToLatest",
|
|
1034
1570
|
"MigrateSubscriptionToLatestMigrateSubscriptionToLatest",
|
|
1571
|
+
"MinimumSpendInput",
|
|
1572
|
+
"MockPaywallAddonDependencyFragment",
|
|
1035
1573
|
"MockPaywallAddonFragment",
|
|
1574
|
+
"MockPaywallAddonFragmentDependencies",
|
|
1036
1575
|
"MockPaywallAddonFragmentEntitlements",
|
|
1037
1576
|
"MockPaywallAddonFragmentPrices",
|
|
1038
1577
|
"MockPaywallPackageEntitlementFragment",
|
|
1039
1578
|
"MockPaywallPackageEntitlementFragmentFeature",
|
|
1579
|
+
"MockPaywallPlanCompatiblePackageGroupsFragment",
|
|
1580
|
+
"MockPaywallPlanCompatiblePackageGroupsFragmentAddons",
|
|
1581
|
+
"MockPaywallPlanCompatiblePackageGroupsFragmentOptions",
|
|
1040
1582
|
"MockPaywallPlanFragment",
|
|
1041
1583
|
"MockPaywallPlanFragmentBasePlan",
|
|
1042
1584
|
"MockPaywallPlanFragmentCompatibleAddons",
|
|
1585
|
+
"MockPaywallPlanFragmentCompatiblePackageGroups",
|
|
1043
1586
|
"MockPaywallPlanFragmentDefaultTrialConfig",
|
|
1587
|
+
"MockPaywallPlanFragmentDefaultTrialConfigBudget",
|
|
1044
1588
|
"MockPaywallPlanFragmentEntitlements",
|
|
1045
1589
|
"MockPaywallPlanFragmentInheritedEntitlements",
|
|
1046
1590
|
"MockPaywallPlanFragmentPrices",
|
|
1047
1591
|
"MockPaywallPlanFragmentProduct",
|
|
1048
1592
|
"MockPaywallPriceFragment",
|
|
1593
|
+
"MockPaywallPriceFragmentCreditRate",
|
|
1049
1594
|
"MockPaywallPriceFragmentFeature",
|
|
1050
1595
|
"MockPaywallPriceFragmentPrice",
|
|
1051
1596
|
"MockPaywallPriceFragmentTiers",
|
|
@@ -1054,7 +1599,21 @@ __all__ = [
|
|
|
1054
1599
|
"MonthlyResetPeriodConfigInput",
|
|
1055
1600
|
"NumberFieldComparison",
|
|
1056
1601
|
"NumberFieldComparisonBetween",
|
|
1602
|
+
"OfferFilter",
|
|
1603
|
+
"OfferSort",
|
|
1604
|
+
"OfferSortFields",
|
|
1605
|
+
"OfferStatus",
|
|
1606
|
+
"OfferStatusFilterComparison",
|
|
1607
|
+
"OpenFGACredentialsInput",
|
|
1608
|
+
"OverageBillingPeriod",
|
|
1609
|
+
"OverageEntitlementCreateInput",
|
|
1610
|
+
"OveragePriceFragment",
|
|
1611
|
+
"OveragePriceFragmentFeature",
|
|
1612
|
+
"OveragePriceFragmentPrice",
|
|
1613
|
+
"OveragePriceFragmentTiers",
|
|
1614
|
+
"OveragePricingModelCreateInput",
|
|
1057
1615
|
"PackageDTOFilter",
|
|
1616
|
+
"PackageDTOFilterOfferFilter",
|
|
1058
1617
|
"PackageDTOSort",
|
|
1059
1618
|
"PackageDTOSortFields",
|
|
1060
1619
|
"PackageEntitlementFilter",
|
|
@@ -1066,13 +1625,24 @@ __all__ = [
|
|
|
1066
1625
|
"PackageEntitlementSort",
|
|
1067
1626
|
"PackageEntitlementSortFields",
|
|
1068
1627
|
"PackageEntitlementUpdateInput",
|
|
1628
|
+
"PackageGroupFilter",
|
|
1629
|
+
"PackageGroupFilterProductFilter",
|
|
1630
|
+
"PackageGroupSort",
|
|
1631
|
+
"PackageGroupSortFields",
|
|
1632
|
+
"PackageGroupStatus",
|
|
1633
|
+
"PackageGroupStatusFilterComparison",
|
|
1069
1634
|
"PackagePricingInput",
|
|
1070
1635
|
"PackagePublishInput",
|
|
1636
|
+
"PackagePublishedPayload",
|
|
1071
1637
|
"PackageStatus",
|
|
1072
1638
|
"PackageStatusFilterComparison",
|
|
1639
|
+
"PageInfoFragment",
|
|
1073
1640
|
"PaymentCollection",
|
|
1074
1641
|
"PaymentCollectionFilterComparison",
|
|
1642
|
+
"PaymentCollectionMethod",
|
|
1075
1643
|
"PaymentMethodType",
|
|
1644
|
+
"PaymentSessionFragment",
|
|
1645
|
+
"PaymentSessionInput",
|
|
1076
1646
|
"PaywallCalculatedPricePointsFragment",
|
|
1077
1647
|
"PaywallCalculatedPricePointsFragmentFeature",
|
|
1078
1648
|
"PaywallColorsPaletteInput",
|
|
@@ -1091,34 +1661,49 @@ __all__ = [
|
|
|
1091
1661
|
"PaywallFragmentPlans",
|
|
1092
1662
|
"PaywallFragmentResource",
|
|
1093
1663
|
"PaywallLayoutConfigurationInput",
|
|
1664
|
+
"PlanChangeType",
|
|
1665
|
+
"PlanCompatiblePackageGroupsFragment",
|
|
1666
|
+
"PlanCompatiblePackageGroupsFragmentAddons",
|
|
1667
|
+
"PlanCompatiblePackageGroupsFragmentOptions",
|
|
1094
1668
|
"PlanCreateInput",
|
|
1095
1669
|
"PlanFilter",
|
|
1096
1670
|
"PlanFilterAddonFilter",
|
|
1671
|
+
"PlanFilterOfferFilter",
|
|
1097
1672
|
"PlanFilterProductFilter",
|
|
1098
1673
|
"PlanFragment",
|
|
1099
1674
|
"PlanFragmentBasePlan",
|
|
1100
1675
|
"PlanFragmentCompatibleAddons",
|
|
1676
|
+
"PlanFragmentCompatiblePackageGroups",
|
|
1101
1677
|
"PlanFragmentDefaultTrialConfig",
|
|
1678
|
+
"PlanFragmentDefaultTrialConfigBudget",
|
|
1102
1679
|
"PlanFragmentEntitlements",
|
|
1103
1680
|
"PlanFragmentInheritedEntitlements",
|
|
1681
|
+
"PlanFragmentOveragePrices",
|
|
1104
1682
|
"PlanFragmentPrices",
|
|
1105
1683
|
"PlanFragmentProduct",
|
|
1106
1684
|
"PlanSort",
|
|
1107
1685
|
"PlanSortFields",
|
|
1108
1686
|
"PlanUpdateInput",
|
|
1687
|
+
"PreparePaymentMethodFormInput",
|
|
1688
|
+
"PreviewNextInvoice",
|
|
1689
|
+
"PreviewNextInvoiceInput",
|
|
1690
|
+
"PreviewNextInvoicePreviewNextInvoice",
|
|
1109
1691
|
"PreviewSubscription",
|
|
1110
1692
|
"PreviewSubscriptionInput",
|
|
1111
1693
|
"PreviewSubscriptionPreviewSubscription",
|
|
1112
1694
|
"PriceFilter",
|
|
1113
1695
|
"PriceFilterPackageDTOFilter",
|
|
1114
1696
|
"PriceFragment",
|
|
1697
|
+
"PriceFragmentCreditRate",
|
|
1115
1698
|
"PriceFragmentFeature",
|
|
1116
1699
|
"PriceFragmentPrice",
|
|
1117
1700
|
"PriceFragmentTiers",
|
|
1701
|
+
"PriceOverrideInput",
|
|
1118
1702
|
"PricePeriodInput",
|
|
1119
1703
|
"PriceSort",
|
|
1120
1704
|
"PriceSortFields",
|
|
1121
1705
|
"PriceTierFragment",
|
|
1706
|
+
"PriceTierFragmentFlatPrice",
|
|
1122
1707
|
"PriceTierFragmentUnitPrice",
|
|
1123
1708
|
"PriceTierInput",
|
|
1124
1709
|
"PricingModelCreateInput",
|
|
@@ -1145,41 +1730,65 @@ __all__ = [
|
|
|
1145
1730
|
"PromotionalEntitlementUpdateInput",
|
|
1146
1731
|
"ProrationBehavior",
|
|
1147
1732
|
"ProvisionCustomer",
|
|
1733
|
+
"ProvisionCustomerFragment",
|
|
1734
|
+
"ProvisionCustomerFragmentCustomer",
|
|
1735
|
+
"ProvisionCustomerFragmentEntitlements",
|
|
1736
|
+
"ProvisionCustomerFragmentSubscription",
|
|
1148
1737
|
"ProvisionCustomerInput",
|
|
1149
1738
|
"ProvisionCustomerProvisionCustomer",
|
|
1150
|
-
"ProvisionCustomerProvisionCustomerCustomer",
|
|
1151
|
-
"ProvisionCustomerProvisionCustomerSubscription",
|
|
1152
1739
|
"ProvisionCustomerSubscriptionInput",
|
|
1153
1740
|
"ProvisionSandboxInput",
|
|
1154
1741
|
"ProvisionSubscription",
|
|
1155
1742
|
"ProvisionSubscription",
|
|
1743
|
+
"ProvisionSubscriptionFragment",
|
|
1744
|
+
"ProvisionSubscriptionFragmentEntitlements",
|
|
1745
|
+
"ProvisionSubscriptionFragmentSubscription",
|
|
1156
1746
|
"ProvisionSubscriptionInput",
|
|
1157
1747
|
"ProvisionSubscriptionProvisionSubscription",
|
|
1158
|
-
"ProvisionSubscriptionProvisionSubscriptionSubscription",
|
|
1159
1748
|
"ProvisionSubscriptionStatus",
|
|
1160
1749
|
"PublishMigrationType",
|
|
1750
|
+
"PublishOfferInput",
|
|
1161
1751
|
"RecalculateEntitlementsInput",
|
|
1752
|
+
"RecalculateEntitlementsSideEffectsOptionsInput",
|
|
1162
1753
|
"RemoveBasePlanFromPlanInput",
|
|
1163
1754
|
"RemoveCompatibleAddonsFromPlanInput",
|
|
1164
1755
|
"RemoveCouponFromCustomerInput",
|
|
1165
|
-
"RemoveCouponFromCustomerSubscriptionInput",
|
|
1166
1756
|
"RemoveExperimentFromCustomerInput",
|
|
1167
1757
|
"RemoveExperimentFromCustomerSubscriptionInput",
|
|
1758
|
+
"RemoveFeatureGroupFromPackageInput",
|
|
1759
|
+
"RemoveOfferDraftInput",
|
|
1168
1760
|
"ReportEntitlementCheckRequested",
|
|
1169
1761
|
"ReportEvent",
|
|
1170
1762
|
"ReportUsage",
|
|
1171
|
-
"
|
|
1763
|
+
"ReportUsageBaseInput",
|
|
1764
|
+
"ReportUsageBulk",
|
|
1765
|
+
"ReportUsageBulkInput",
|
|
1766
|
+
"ReportUsageBulkReportUsageBulk",
|
|
1767
|
+
"ReportUsageFragment",
|
|
1172
1768
|
"ReportUsageInput",
|
|
1769
|
+
"ReportUsageReportUsage",
|
|
1173
1770
|
"ResyncIntegrationInput",
|
|
1174
1771
|
"RevokePromotionalEntitlement",
|
|
1175
1772
|
"RevokePromotionalEntitlementInput",
|
|
1176
1773
|
"RevokePromotionalEntitlementRevokePromotionalEntitlement",
|
|
1774
|
+
"RevokePromotionalEntitlementsGroup",
|
|
1775
|
+
"RevokePromotionalEntitlementsGroupInput",
|
|
1776
|
+
"RevokePromotionalEntitlementsGroupRevokePromotionalEntitlementsGroup",
|
|
1777
|
+
"SalesforceCredentialsInput",
|
|
1778
|
+
"ScheduleStrategy",
|
|
1779
|
+
"SetAccessRolesInput",
|
|
1177
1780
|
"SetBasePlanOnPlanInput",
|
|
1178
1781
|
"SetCompatibleAddonsOnPlanInput",
|
|
1179
1782
|
"SetCouponOnCustomerInput",
|
|
1180
|
-
"
|
|
1783
|
+
"SetDefaultOfferInput",
|
|
1181
1784
|
"SetExperimentOnCustomerInput",
|
|
1182
1785
|
"SetExperimentOnCustomerSubscriptionInput",
|
|
1786
|
+
"SetPackageGroupAddons",
|
|
1787
|
+
"SetPlanCompatiblePackageGroup",
|
|
1788
|
+
"SetPlanCompatiblePackageGroupOptions",
|
|
1789
|
+
"SetPlanCompatiblePackageGroups",
|
|
1790
|
+
"SlimCustomCurrencyFragment",
|
|
1791
|
+
"SlimCustomCurrencyFragmentUnits",
|
|
1183
1792
|
"SlimCustomerFragment",
|
|
1184
1793
|
"SlimSubscriptionFragment",
|
|
1185
1794
|
"SlimSubscriptionFragmentAddons",
|
|
@@ -1192,18 +1801,27 @@ __all__ = [
|
|
|
1192
1801
|
"SlimSubscriptionFragmentPricesPrice",
|
|
1193
1802
|
"SlimSubscriptionFragmentResource",
|
|
1194
1803
|
"SlimSubscriptionFragmentTotalPrice",
|
|
1804
|
+
"SlimSubscriptionFragmentV2",
|
|
1805
|
+
"SlimSubscriptionFragmentV2Addons",
|
|
1806
|
+
"SlimSubscriptionFragmentV2AddonsAddon",
|
|
1807
|
+
"SlimSubscriptionFragmentV2Customer",
|
|
1808
|
+
"SlimSubscriptionFragmentV2PayingCustomer",
|
|
1809
|
+
"SlimSubscriptionFragmentV2Plan",
|
|
1810
|
+
"SlimSubscriptionFragmentV2Resource",
|
|
1811
|
+
"SlimSubscriptionFragmentV2TrialConfiguration",
|
|
1812
|
+
"SnowflakeCredentialsInput",
|
|
1195
1813
|
"SortDirection",
|
|
1196
1814
|
"SortNulls",
|
|
1197
1815
|
"SourceType",
|
|
1198
1816
|
"StartExperimentInput",
|
|
1199
1817
|
"StopExperimentInput",
|
|
1200
1818
|
"StringFieldComparison",
|
|
1819
|
+
"StripeCheckoutCredentialsFragment",
|
|
1201
1820
|
"StripeCredentialsInput",
|
|
1202
1821
|
"StripeCustomerSearchInput",
|
|
1203
1822
|
"StripeProductSearchInput",
|
|
1204
1823
|
"StripeSubscriptionSearchInput",
|
|
1205
1824
|
"SubscriptionAddonFilter",
|
|
1206
|
-
"SubscriptionAddonFilterAddonFilter",
|
|
1207
1825
|
"SubscriptionAddonFilterCustomerSubscriptionFilter",
|
|
1208
1826
|
"SubscriptionAddonFilterPriceFilter",
|
|
1209
1827
|
"SubscriptionAddonInput",
|
|
@@ -1215,6 +1833,10 @@ __all__ = [
|
|
|
1215
1833
|
"SubscriptionCancellationAction",
|
|
1216
1834
|
"SubscriptionCancellationInput",
|
|
1217
1835
|
"SubscriptionCancellationTime",
|
|
1836
|
+
"SubscriptionCouponConfigurationInput",
|
|
1837
|
+
"SubscriptionCouponDiscountInput",
|
|
1838
|
+
"SubscriptionCouponInput",
|
|
1839
|
+
"SubscriptionCouponStatus",
|
|
1218
1840
|
"SubscriptionDecisionStrategy",
|
|
1219
1841
|
"SubscriptionEndSetup",
|
|
1220
1842
|
"SubscriptionEntitlementFilter",
|
|
@@ -1229,26 +1851,61 @@ __all__ = [
|
|
|
1229
1851
|
"SubscriptionFragmentExperimentInfo",
|
|
1230
1852
|
"SubscriptionFragmentFutureUpdates",
|
|
1231
1853
|
"SubscriptionFragmentLatestInvoice",
|
|
1854
|
+
"SubscriptionFragmentPayingCustomer",
|
|
1232
1855
|
"SubscriptionFragmentPlan",
|
|
1233
1856
|
"SubscriptionFragmentPrices",
|
|
1234
1857
|
"SubscriptionFragmentPricesPrice",
|
|
1235
1858
|
"SubscriptionFragmentResource",
|
|
1236
1859
|
"SubscriptionFragmentScheduledUpdates",
|
|
1237
1860
|
"SubscriptionFragmentTotalPrice",
|
|
1861
|
+
"SubscriptionFragmentTrialConfiguration",
|
|
1238
1862
|
"SubscriptionFutureUpdateData",
|
|
1239
1863
|
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
1864
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
1240
1865
|
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
1866
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
1241
1867
|
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
1868
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons",
|
|
1869
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures",
|
|
1870
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides",
|
|
1871
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
1872
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons",
|
|
1873
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures",
|
|
1874
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides",
|
|
1875
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
1242
1876
|
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
1243
1877
|
"SubscriptionFutureUpdateDataTargetPackage",
|
|
1244
1878
|
"SubscriptionInput",
|
|
1879
|
+
"SubscriptionInvoiceBillingReason",
|
|
1245
1880
|
"SubscriptionInvoiceFragment",
|
|
1881
|
+
"SubscriptionInvoicePreviewFragment",
|
|
1882
|
+
"SubscriptionInvoicePreviewFragmentAmountDue",
|
|
1883
|
+
"SubscriptionInvoicePreviewFragmentCredits",
|
|
1884
|
+
"SubscriptionInvoicePreviewFragmentCreditsInitial",
|
|
1885
|
+
"SubscriptionInvoicePreviewFragmentCreditsRemaining",
|
|
1886
|
+
"SubscriptionInvoicePreviewFragmentCreditsUsed",
|
|
1887
|
+
"SubscriptionInvoicePreviewFragmentDiscount",
|
|
1888
|
+
"SubscriptionInvoicePreviewFragmentDiscountDetails",
|
|
1889
|
+
"SubscriptionInvoicePreviewFragmentLines",
|
|
1890
|
+
"SubscriptionInvoicePreviewFragmentLinesAmount",
|
|
1891
|
+
"SubscriptionInvoicePreviewFragmentLinesLines",
|
|
1892
|
+
"SubscriptionInvoicePreviewFragmentLinesPeriod",
|
|
1893
|
+
"SubscriptionInvoicePreviewFragmentLinesPrice",
|
|
1894
|
+
"SubscriptionInvoicePreviewFragmentLinesUnitPrice",
|
|
1895
|
+
"SubscriptionInvoicePreviewFragmentMinimumSpendAdjustment",
|
|
1896
|
+
"SubscriptionInvoicePreviewFragmentSubTotal",
|
|
1897
|
+
"SubscriptionInvoicePreviewFragmentSubTotalExcludingTax",
|
|
1898
|
+
"SubscriptionInvoicePreviewFragmentTax",
|
|
1899
|
+
"SubscriptionInvoicePreviewFragmentTaxDetails",
|
|
1900
|
+
"SubscriptionInvoicePreviewFragmentTotal",
|
|
1901
|
+
"SubscriptionInvoicePreviewFragmentTotalExcludingTax",
|
|
1246
1902
|
"SubscriptionInvoiceStatus",
|
|
1247
1903
|
"SubscriptionMigrationInput",
|
|
1248
1904
|
"SubscriptionMigrationTaskFilter",
|
|
1249
1905
|
"SubscriptionMigrationTaskSort",
|
|
1250
1906
|
"SubscriptionMigrationTaskSortFields",
|
|
1251
1907
|
"SubscriptionMigrationTime",
|
|
1908
|
+
"SubscriptionMinimumSpendValueInput",
|
|
1252
1909
|
"SubscriptionPreviewFragment",
|
|
1253
1910
|
"SubscriptionPreviewFragmentBillingPeriodRange",
|
|
1254
1911
|
"SubscriptionPreviewFragmentCredits",
|
|
@@ -1291,18 +1948,46 @@ __all__ = [
|
|
|
1291
1948
|
"SubscriptionPriceFilterPriceFilter",
|
|
1292
1949
|
"SubscriptionPriceSort",
|
|
1293
1950
|
"SubscriptionPriceSortFields",
|
|
1951
|
+
"SubscriptionProrationBehavior",
|
|
1952
|
+
"SubscriptionQueryFilter",
|
|
1953
|
+
"SubscriptionQueryFilterCustomerFilter",
|
|
1954
|
+
"SubscriptionQueryFilterCustomerResourceFilter",
|
|
1955
|
+
"SubscriptionQueryFilterPlanFilter",
|
|
1956
|
+
"SubscriptionQueryFragment",
|
|
1957
|
+
"SubscriptionQueryFragmentAddons",
|
|
1958
|
+
"SubscriptionQueryFragmentAddonsAddon",
|
|
1959
|
+
"SubscriptionQueryFragmentCustomer",
|
|
1960
|
+
"SubscriptionQueryFragmentPayingCustomer",
|
|
1961
|
+
"SubscriptionQueryFragmentPlan",
|
|
1962
|
+
"SubscriptionQueryFragmentResource",
|
|
1963
|
+
"SubscriptionQueryFragmentTrialConfiguration",
|
|
1964
|
+
"SubscriptionQuerySort",
|
|
1965
|
+
"SubscriptionQuerySortFields",
|
|
1294
1966
|
"SubscriptionScheduleStatus",
|
|
1295
1967
|
"SubscriptionScheduleType",
|
|
1296
1968
|
"SubscriptionScheduledUpdateData",
|
|
1297
1969
|
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
1970
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
1298
1971
|
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
1972
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
1299
1973
|
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
1974
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons",
|
|
1975
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures",
|
|
1976
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides",
|
|
1977
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
1978
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons",
|
|
1979
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures",
|
|
1980
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides",
|
|
1981
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
1300
1982
|
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
1301
1983
|
"SubscriptionScheduledUpdateDataTargetPackage",
|
|
1302
1984
|
"SubscriptionStartSetup",
|
|
1303
1985
|
"SubscriptionStatus",
|
|
1304
1986
|
"SubscriptionStatusFilterComparison",
|
|
1987
|
+
"SubscriptionTrialConfigurationFragment",
|
|
1305
1988
|
"SubscriptionUpdateScheduleCancellationInput",
|
|
1989
|
+
"SubscriptionUpdateUsageCutoffBehavior",
|
|
1990
|
+
"SubscriptionUpdateUsageResetCutoffRuleInput",
|
|
1306
1991
|
"SyncStatus",
|
|
1307
1992
|
"SyncTaxRatesInput",
|
|
1308
1993
|
"TaskStatus",
|
|
@@ -1311,6 +1996,7 @@ __all__ = [
|
|
|
1311
1996
|
"TaskTypeFilterComparison",
|
|
1312
1997
|
"TaxExempt",
|
|
1313
1998
|
"TestHookInput",
|
|
1999
|
+
"TestWorkflowInput",
|
|
1314
2000
|
"TiersMode",
|
|
1315
2001
|
"TiersModeFilterComparison",
|
|
1316
2002
|
"TotalPriceFragment",
|
|
@@ -1318,26 +2004,51 @@ __all__ = [
|
|
|
1318
2004
|
"TotalPriceFragmentTotal",
|
|
1319
2005
|
"TransferSubscription",
|
|
1320
2006
|
"TransferSubscriptionInput",
|
|
2007
|
+
"TransferSubscriptionToResource",
|
|
2008
|
+
"TransferSubscriptionToResourceInput",
|
|
2009
|
+
"TransferSubscriptionToResourceTransferSubscriptionToResource",
|
|
1321
2010
|
"TransferSubscriptionTransferSubscription",
|
|
2011
|
+
"TrialEndBehavior",
|
|
2012
|
+
"TrialOverrideConfigurationInput",
|
|
1322
2013
|
"TrialPeriodUnits",
|
|
2014
|
+
"TriggerSubscriptionBillingMonthEndsSoonWebhookInput",
|
|
2015
|
+
"TriggerSubscriptionMigrationInput",
|
|
2016
|
+
"TriggerSubscriptionUsageSyncInput",
|
|
2017
|
+
"TriggerWorkflowInput",
|
|
1323
2018
|
"TypographyConfigurationFragment",
|
|
1324
2019
|
"TypographyConfigurationFragmentBody",
|
|
1325
2020
|
"TypographyConfigurationFragmentH1",
|
|
1326
2021
|
"TypographyConfigurationFragmentH2",
|
|
1327
2022
|
"TypographyConfigurationFragmentH3",
|
|
1328
2023
|
"TypographyConfigurationInput",
|
|
2024
|
+
"UUIDFilterComparison",
|
|
2025
|
+
"UnArchiveFeatureGroupInput",
|
|
2026
|
+
"UnArchiveFeatureInput",
|
|
2027
|
+
"UnArchivePlanInput",
|
|
2028
|
+
"UnarchiveCustomer",
|
|
2029
|
+
"UnarchiveCustomerInput",
|
|
2030
|
+
"UnarchiveCustomerUnarchiveCustomer",
|
|
2031
|
+
"UnarchiveEnvironmentInput",
|
|
2032
|
+
"UnitTransformationInput",
|
|
2033
|
+
"UnitTransformationRound",
|
|
2034
|
+
"UnitsInput",
|
|
2035
|
+
"UnlinkFeatureGroupFromPackageInput",
|
|
2036
|
+
"UnlinkPromotionalEntitlementsGroup",
|
|
2037
|
+
"UnlinkPromotionalEntitlementsGroupInput",
|
|
2038
|
+
"UnlinkPromotionalEntitlementsGroupUnlinkPromotionalEntitlementsGroup",
|
|
1329
2039
|
"UpdateAccountInput",
|
|
1330
2040
|
"UpdateCouponInput",
|
|
2041
|
+
"UpdateCreditGrantInput",
|
|
2042
|
+
"UpdateCustomCurrencyInput",
|
|
1331
2043
|
"UpdateCustomer",
|
|
1332
2044
|
"UpdateCustomerInput",
|
|
1333
2045
|
"UpdateCustomerUpdateCustomer",
|
|
1334
2046
|
"UpdateExperimentInput",
|
|
1335
|
-
"UpdateFeature",
|
|
1336
2047
|
"UpdateFeatureInput",
|
|
1337
2048
|
"UpdateHook",
|
|
1338
2049
|
"UpdateIntegrationInput",
|
|
2050
|
+
"UpdateOfferInput",
|
|
1339
2051
|
"UpdateOneEnvironmentInput",
|
|
1340
|
-
"UpdateOneFeatureInput",
|
|
1341
2052
|
"UpdateOneHookInput",
|
|
1342
2053
|
"UpdateOneIntegrationInput",
|
|
1343
2054
|
"UpdateOnePackageEntitlementInput",
|
|
@@ -1345,17 +2056,30 @@ __all__ = [
|
|
|
1345
2056
|
"UpdateOnePromotionalEntitlementInput",
|
|
1346
2057
|
"UpdatePackageEntitlementOrderInput",
|
|
1347
2058
|
"UpdatePackageEntitlementOrderItemInput",
|
|
2059
|
+
"UpdateStripeCredentialsInput",
|
|
1348
2060
|
"UpdateSubscription",
|
|
1349
2061
|
"UpdateSubscriptionEntitlementInput",
|
|
1350
2062
|
"UpdateSubscriptionInput",
|
|
1351
2063
|
"UpdateSubscriptionUpdateSubscription",
|
|
1352
2064
|
"UpdateUserInput",
|
|
2065
|
+
"Upload",
|
|
1353
2066
|
"UsageEventReportInput",
|
|
1354
2067
|
"UsageEventsInput",
|
|
1355
2068
|
"UsageEventsReportInput",
|
|
1356
2069
|
"UsageHistoryFragment",
|
|
2070
|
+
"UsageHistoryFragmentGroups",
|
|
2071
|
+
"UsageHistoryFragmentGroupsGroupInfo",
|
|
2072
|
+
"UsageHistoryFragmentGroupsUsageMeasurements",
|
|
2073
|
+
"UsageHistoryFragmentMarkers",
|
|
1357
2074
|
"UsageHistoryFragmentUsageMeasurements",
|
|
1358
2075
|
"UsageHistoryInput",
|
|
2076
|
+
"UsageHistoryV2Fragment",
|
|
2077
|
+
"UsageHistoryV2FragmentMarkers",
|
|
2078
|
+
"UsageHistoryV2FragmentSeries",
|
|
2079
|
+
"UsageHistoryV2FragmentSeriesPoints",
|
|
2080
|
+
"UsageHistoryV2FragmentSeriesTags",
|
|
2081
|
+
"UsageHistoryV2Input",
|
|
2082
|
+
"UsageMarkerType",
|
|
1359
2083
|
"UsageMeasurementCreateInput",
|
|
1360
2084
|
"UsageMeasurementFilter",
|
|
1361
2085
|
"UsageMeasurementFilterCustomerFilter",
|
|
@@ -1364,12 +2088,21 @@ __all__ = [
|
|
|
1364
2088
|
"UsageMeasurementSortFields",
|
|
1365
2089
|
"UsageUpdateBehavior",
|
|
1366
2090
|
"UsageUpdatedFragment",
|
|
2091
|
+
"ValidateMergeEnvironmentInput",
|
|
1367
2092
|
"VendorIdentifier",
|
|
1368
2093
|
"VendorIdentifierFilterComparison",
|
|
2094
|
+
"VendorType",
|
|
2095
|
+
"VoidCreditGrant",
|
|
2096
|
+
"VoidCreditGrantInput",
|
|
2097
|
+
"VoidCreditGrantVoidCreditGrant",
|
|
1369
2098
|
"WeeklyAccordingTo",
|
|
1370
2099
|
"WeeklyResetPeriodConfigInput",
|
|
1371
2100
|
"WidgetConfigurationUpdateInput",
|
|
1372
2101
|
"WidgetType",
|
|
2102
|
+
"WorkflowsLoginInput",
|
|
2103
|
+
"YearlyAccordingTo",
|
|
2104
|
+
"YearlyResetPeriodConfigInput",
|
|
2105
|
+
"ZuoraCheckoutCredentialsFragment",
|
|
1373
2106
|
"ZuoraCredentialsInput",
|
|
1374
2107
|
"experimentGroupType",
|
|
1375
2108
|
]
|