@stigg/api-client-js 0.358.0 → 0.359.4

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stigg/api-client-js",
3
- "version": "0.358.0",
3
+ "version": "0.359.4",
4
4
  "type": "commonjs",
5
5
  "main": "./src/index.js",
6
6
  "typings": "./src/index.d.ts",
@@ -2840,12 +2840,12 @@ export declare type AddonFragment = {
2840
2840
  description?: string | null;
2841
2841
  additionalMetaData?: any | null;
2842
2842
  pricingType?: PricingType | null;
2843
- entitlements?: Array<{
2843
+ entitlements?: Array<({
2844
2844
  __typename?: 'PackageEntitlement';
2845
- } & PackageEntitlementFragment> | null;
2846
- prices?: Array<{
2845
+ } & PackageEntitlementFragment)> | null;
2846
+ prices?: Array<({
2847
2847
  __typename?: 'Price';
2848
- } & PriceFragment> | null;
2848
+ } & PriceFragment)> | null;
2849
2849
  };
2850
2850
  export declare type PlanFragment = {
2851
2851
  __typename?: 'Plan';
@@ -2876,18 +2876,18 @@ export declare type PlanFragment = {
2876
2876
  refId: string;
2877
2877
  displayName: string;
2878
2878
  } | null;
2879
- entitlements?: Array<{
2879
+ entitlements?: Array<({
2880
2880
  __typename?: 'PackageEntitlement';
2881
- } & PackageEntitlementFragment> | null;
2882
- inheritedEntitlements?: Array<{
2881
+ } & PackageEntitlementFragment)> | null;
2882
+ inheritedEntitlements?: Array<({
2883
2883
  __typename?: 'PackageEntitlement';
2884
- } & PackageEntitlementFragment> | null;
2885
- compatibleAddons?: Array<{
2884
+ } & PackageEntitlementFragment)> | null;
2885
+ compatibleAddons?: Array<({
2886
2886
  __typename?: 'Addon';
2887
- } & AddonFragment> | null;
2888
- prices?: Array<{
2887
+ } & AddonFragment)> | null;
2888
+ prices?: Array<({
2889
2889
  __typename?: 'Price';
2890
- } & PriceFragment> | null;
2890
+ } & PriceFragment)> | null;
2891
2891
  defaultTrialConfig?: {
2892
2892
  __typename?: 'DefaultTrialConfig';
2893
2893
  duration: number;
@@ -2898,6 +2898,7 @@ export declare type SlimSubscriptionFragment = {
2898
2898
  __typename?: 'CustomerSubscription';
2899
2899
  id: string;
2900
2900
  refId: string;
2901
+ resourceId?: string | null;
2901
2902
  status: SubscriptionStatus;
2902
2903
  additionalMetaData?: any | null;
2903
2904
  billingId?: string | null;
@@ -2976,6 +2977,7 @@ export declare type SubscriptionFragment = {
2976
2977
  effectiveEndDate?: any | null;
2977
2978
  status: SubscriptionStatus;
2978
2979
  refId: string;
2980
+ resourceId?: string | null;
2979
2981
  currentBillingPeriodEnd?: any | null;
2980
2982
  additionalMetaData?: any | null;
2981
2983
  billingId?: string | null;
@@ -2998,20 +3000,20 @@ export declare type SubscriptionFragment = {
2998
3000
  totalPrice?: ({
2999
3001
  __typename?: 'CustomerSubscriptionTotalPrice';
3000
3002
  } & TotalPriceFragment) | null;
3001
- plan: {
3003
+ plan: ({
3002
3004
  __typename?: 'Plan';
3003
- } & PlanFragment;
3005
+ } & PlanFragment);
3004
3006
  addons?: Array<{
3005
3007
  __typename?: 'SubscriptionAddon';
3006
3008
  id: string;
3007
3009
  quantity: number;
3008
- addon: {
3010
+ addon: ({
3009
3011
  __typename?: 'Addon';
3010
- } & AddonFragment;
3012
+ } & AddonFragment);
3011
3013
  }> | null;
3012
- scheduledUpdates?: Array<{
3014
+ scheduledUpdates?: Array<({
3013
3015
  __typename?: 'SubscriptionScheduledUpdate';
3014
- } & SubscriptionScheduledUpdateDataFragment> | null;
3016
+ } & SubscriptionScheduledUpdateDataFragment)> | null;
3015
3017
  };
3016
3018
  export declare type PromotionalEntitlementFragment = {
3017
3019
  __typename?: 'PromotionalEntitlement';
@@ -3034,20 +3036,23 @@ export declare type PromotionalEntitlementFragment = {
3034
3036
  additionalMetaData?: any | null;
3035
3037
  };
3036
3038
  };
3037
- export declare type CustomerFragment = {
3039
+ export declare type SlimCustomerFragment = {
3038
3040
  __typename?: 'Customer';
3039
3041
  id: string;
3040
3042
  name?: string | null;
3041
3043
  email?: string | null;
3042
3044
  createdAt?: any | null;
3043
3045
  updatedAt: any;
3044
- hasPaymentMethod: boolean;
3045
3046
  refId: string;
3046
3047
  billingId?: string | null;
3048
+ additionalMetaData?: any | null;
3049
+ };
3050
+ export declare type CustomerFragment = ({
3051
+ __typename?: 'Customer';
3052
+ hasPaymentMethod: boolean;
3047
3053
  defaultPaymentExpirationMonth?: number | null;
3048
3054
  defaultPaymentExpirationYear?: number | null;
3049
3055
  defaultPaymentMethodLast4Digits?: string | null;
3050
- additionalMetaData?: any | null;
3051
3056
  trialedPlans?: Array<{
3052
3057
  __typename?: 'TrialedPlan';
3053
3058
  productId?: string | null;
@@ -3071,13 +3076,13 @@ export declare type CustomerFragment = {
3071
3076
  productRefId?: string | null;
3072
3077
  eligible: boolean;
3073
3078
  }> | null;
3074
- promotionalEntitlements: Array<{
3079
+ promotionalEntitlements: Array<({
3075
3080
  __typename?: 'PromotionalEntitlement';
3076
- } & PromotionalEntitlementFragment>;
3077
- subscriptions?: Array<{
3081
+ } & PromotionalEntitlementFragment)>;
3082
+ subscriptions?: Array<({
3078
3083
  __typename?: 'CustomerSubscription';
3079
- } & SubscriptionFragment> | null;
3080
- };
3084
+ } & SubscriptionFragment)> | null;
3085
+ } & SlimCustomerFragment);
3081
3086
  export declare type SubscriptionPreviewFragment = {
3082
3087
  __typename?: 'SubscriptionPreview';
3083
3088
  subTotal: {
@@ -3145,12 +3150,12 @@ export declare type FeatureFragment = {
3145
3150
  displayName: string;
3146
3151
  refId: string;
3147
3152
  };
3148
- declare type ResetPeriodConfigurationFragment_MonthlyResetPeriodConfig_ = {
3153
+ declare type ResetPeriodConfigurationFragment_MonthlyResetPeriodConfig_ = ({
3149
3154
  __typename: 'MonthlyResetPeriodConfig';
3150
- } & MonthlyResetPeriodConfigFragment;
3151
- declare type ResetPeriodConfigurationFragment_WeeklyResetPeriodConfig_ = {
3155
+ } & MonthlyResetPeriodConfigFragment);
3156
+ declare type ResetPeriodConfigurationFragment_WeeklyResetPeriodConfig_ = ({
3152
3157
  __typename: 'WeeklyResetPeriodConfig';
3153
- } & WeeklyResetPeriodConfigFragment;
3158
+ } & WeeklyResetPeriodConfigFragment);
3154
3159
  export declare type ResetPeriodConfigurationFragment = ResetPeriodConfigurationFragment_MonthlyResetPeriodConfig_ | ResetPeriodConfigurationFragment_WeeklyResetPeriodConfig_;
3155
3160
  export declare type MonthlyResetPeriodConfigFragment = {
3156
3161
  __typename?: 'MonthlyResetPeriodConfig';
@@ -3208,12 +3213,12 @@ export declare type PaywallAddonFragment = {
3208
3213
  description?: string | null;
3209
3214
  additionalMetaData?: any | null;
3210
3215
  pricingType?: PricingType | null;
3211
- entitlements?: Array<{
3216
+ entitlements?: Array<({
3212
3217
  __typename?: 'PackageEntitlement';
3213
- } & PaywallPackageEntitlementFragment> | null;
3214
- prices?: Array<{
3218
+ } & PaywallPackageEntitlementFragment)> | null;
3219
+ prices?: Array<({
3215
3220
  __typename?: 'Price';
3216
- } & PriceFragment> | null;
3221
+ } & PriceFragment)> | null;
3217
3222
  };
3218
3223
  export declare type PaywallPlanFragment = {
3219
3224
  __typename?: 'Plan';
@@ -3244,23 +3249,23 @@ export declare type PaywallPlanFragment = {
3244
3249
  refId: string;
3245
3250
  displayName: string;
3246
3251
  } | null;
3247
- entitlements?: Array<{
3252
+ entitlements?: Array<({
3248
3253
  __typename?: 'PackageEntitlement';
3249
- } & PaywallPackageEntitlementFragment> | null;
3250
- inheritedEntitlements?: Array<{
3254
+ } & PaywallPackageEntitlementFragment)> | null;
3255
+ inheritedEntitlements?: Array<({
3251
3256
  __typename?: 'PackageEntitlement';
3252
- } & PaywallPackageEntitlementFragment> | null;
3253
- prices?: Array<{
3257
+ } & PaywallPackageEntitlementFragment)> | null;
3258
+ prices?: Array<({
3254
3259
  __typename?: 'Price';
3255
- } & PriceFragment> | null;
3260
+ } & PriceFragment)> | null;
3256
3261
  defaultTrialConfig?: {
3257
3262
  __typename?: 'DefaultTrialConfig';
3258
3263
  duration: number;
3259
3264
  units: TrialPeriodUnits;
3260
3265
  } | null;
3261
- compatibleAddons?: Array<{
3266
+ compatibleAddons?: Array<({
3262
3267
  __typename?: 'Addon';
3263
- } & PaywallAddonFragment> | null;
3268
+ } & PaywallAddonFragment)> | null;
3264
3269
  };
3265
3270
  export declare type TypographyConfigurationFragment = {
3266
3271
  __typename?: 'TypographyConfiguration';
@@ -3315,9 +3320,9 @@ export declare type ProvisionCustomerMutation = {
3315
3320
  provisionCustomer: {
3316
3321
  __typename?: 'ProvisionedCustomer';
3317
3322
  subscriptionDecisionStrategy: SubscriptionDecisionStrategy;
3318
- customer: {
3323
+ customer: ({
3319
3324
  __typename?: 'Customer';
3320
- } & CustomerFragment;
3325
+ } & SlimCustomerFragment);
3321
3326
  subscription?: ({
3322
3327
  __typename?: 'CustomerSubscription';
3323
3328
  } & SlimSubscriptionFragment) | null;
@@ -3328,25 +3333,25 @@ export declare type ImportCustomerMutationVariables = Exact<{
3328
3333
  }>;
3329
3334
  export declare type ImportCustomerMutation = {
3330
3335
  __typename?: 'Mutation';
3331
- importCustomer: {
3336
+ importCustomer: ({
3332
3337
  __typename?: 'Customer';
3333
- } & CustomerFragment;
3338
+ } & CustomerFragment);
3334
3339
  };
3335
3340
  export declare type UpdateCustomerMutationVariables = Exact<{
3336
3341
  input: UpdateCustomerInput;
3337
3342
  }>;
3338
3343
  export declare type UpdateCustomerMutation = {
3339
3344
  __typename?: 'Mutation';
3340
- updateCustomer: {
3345
+ updateCustomer: ({
3341
3346
  __typename?: 'Customer';
3342
- } & CustomerFragment;
3347
+ } & CustomerFragment);
3343
3348
  };
3344
3349
  export declare type ProvisionSubscriptionMutationVariables = Exact<{
3345
3350
  input: ProvisionSubscriptionInput;
3346
3351
  }>;
3347
3352
  export declare type ProvisionSubscriptionMutation = {
3348
3353
  __typename?: 'Mutation';
3349
- provisionSubscriptionV2: {
3354
+ provisionSubscription: {
3350
3355
  __typename?: 'ProvisionSubscriptionResult';
3351
3356
  checkoutUrl?: string | null;
3352
3357
  status: ProvisionSubscriptionStatus;
@@ -3360,18 +3365,18 @@ export declare type UpdateSubscriptionMutationVariables = Exact<{
3360
3365
  }>;
3361
3366
  export declare type UpdateSubscriptionMutation = {
3362
3367
  __typename?: 'Mutation';
3363
- updateSubscription: {
3368
+ updateSubscription: ({
3364
3369
  __typename?: 'CustomerSubscription';
3365
- } & SlimSubscriptionFragment;
3370
+ } & SlimSubscriptionFragment);
3366
3371
  };
3367
3372
  export declare type CancelSubscriptionMutationVariables = Exact<{
3368
3373
  input: SubscriptionCancellationInput;
3369
3374
  }>;
3370
3375
  export declare type CancelSubscriptionMutation = {
3371
3376
  __typename?: 'Mutation';
3372
- cancelSubscription: {
3377
+ cancelSubscription: ({
3373
3378
  __typename?: 'CustomerSubscription';
3374
- } & SlimSubscriptionFragment;
3379
+ } & SlimSubscriptionFragment);
3375
3380
  };
3376
3381
  export declare type InitiateCheckoutMutationVariables = Exact<{
3377
3382
  input: InitiateCheckoutInput;
@@ -3389,18 +3394,18 @@ export declare type EstimateSubscriptionMutationVariables = Exact<{
3389
3394
  }>;
3390
3395
  export declare type EstimateSubscriptionMutation = {
3391
3396
  __typename?: 'Mutation';
3392
- estimateSubscription: {
3397
+ estimateSubscription: ({
3393
3398
  __typename?: 'SubscriptionPreview';
3394
- } & SubscriptionPreviewFragment;
3399
+ } & SubscriptionPreviewFragment);
3395
3400
  };
3396
3401
  export declare type EstimateSubscriptionUpdateMutationVariables = Exact<{
3397
3402
  input: EstimateSubscriptionUpdateInput;
3398
3403
  }>;
3399
3404
  export declare type EstimateSubscriptionUpdateMutation = {
3400
3405
  __typename?: 'Mutation';
3401
- estimateSubscriptionUpdate: {
3406
+ estimateSubscriptionUpdate: ({
3402
3407
  __typename?: 'SubscriptionPreview';
3403
- } & SubscriptionPreviewFragment;
3408
+ } & SubscriptionPreviewFragment);
3404
3409
  };
3405
3410
  export declare type ReportUsageMutationVariables = Exact<{
3406
3411
  input: UsageMeasurementCreateInput;
@@ -3410,8 +3415,18 @@ export declare type ReportUsageMutation = {
3410
3415
  createUsageMeasurement: {
3411
3416
  __typename?: 'UsageMeasurementWithCurrentUsage';
3412
3417
  id: string;
3418
+ currentUsage?: number | null;
3419
+ nextResetDate?: any | null;
3420
+ timestamp: any;
3413
3421
  };
3414
3422
  };
3423
+ export declare type ReportEntitlementCheckRequestedMutationVariables = Exact<{
3424
+ entitlementCheckRequested: EntitlementCheckRequested;
3425
+ }>;
3426
+ export declare type ReportEntitlementCheckRequestedMutation = {
3427
+ __typename?: 'Mutation';
3428
+ reportEntitlementCheckRequested: boolean;
3429
+ };
3415
3430
  export declare type GetCustomerByIdQueryVariables = Exact<{
3416
3431
  input: GetCustomerByRefIdInput;
3417
3432
  }>;
@@ -3430,9 +3445,9 @@ export declare type GetCouponsQuery = {
3430
3445
  __typename?: 'CouponConnection';
3431
3446
  edges: Array<{
3432
3447
  __typename?: 'CouponEdge';
3433
- node: {
3448
+ node: ({
3434
3449
  __typename?: 'Coupon';
3435
- } & CouponFragment;
3450
+ } & CouponFragment);
3436
3451
  }>;
3437
3452
  };
3438
3453
  };
@@ -3443,9 +3458,9 @@ export declare type GetPaywallQuery = {
3443
3458
  __typename?: 'Query';
3444
3459
  paywall: {
3445
3460
  __typename?: 'Paywall';
3446
- plans: Array<{
3461
+ plans: Array<({
3447
3462
  __typename?: 'Plan';
3448
- } & PlanFragment>;
3463
+ } & PlanFragment)>;
3449
3464
  configuration?: ({
3450
3465
  __typename?: 'PaywallConfiguration';
3451
3466
  } & PaywallConfigurationFragment) | null;
@@ -3459,22 +3474,23 @@ export declare type GetEntitlementsQueryVariables = Exact<{
3459
3474
  }>;
3460
3475
  export declare type GetEntitlementsQuery = {
3461
3476
  __typename?: 'Query';
3462
- entitlements: Array<{
3477
+ entitlements: Array<({
3463
3478
  __typename?: 'Entitlement';
3464
- } & EntitlementFragment>;
3479
+ } & EntitlementFragment)>;
3465
3480
  };
3466
3481
  export declare type GetEntitlementQueryVariables = Exact<{
3467
3482
  query: FetchEntitlementQuery;
3468
3483
  }>;
3469
3484
  export declare type GetEntitlementQuery = {
3470
3485
  __typename?: 'Query';
3471
- entitlement: {
3486
+ entitlement: ({
3472
3487
  __typename?: 'Entitlement';
3473
- } & EntitlementFragment;
3488
+ } & EntitlementFragment);
3474
3489
  };
3475
3490
  export declare const PriceFragmentDoc: import("graphql").DocumentNode;
3476
3491
  export declare const TotalPriceFragmentDoc: import("graphql").DocumentNode;
3477
3492
  export declare const SlimSubscriptionFragmentDoc: import("graphql").DocumentNode;
3493
+ export declare const SlimCustomerFragmentDoc: import("graphql").DocumentNode;
3478
3494
  export declare const CouponFragmentDoc: import("graphql").DocumentNode;
3479
3495
  export declare const PromotionalEntitlementFragmentDoc: import("graphql").DocumentNode;
3480
3496
  export declare const PackageEntitlementFragmentDoc: import("graphql").DocumentNode;
@@ -3506,6 +3522,7 @@ export declare const InitiateCheckoutDocument: import("graphql").DocumentNode;
3506
3522
  export declare const EstimateSubscriptionDocument: import("graphql").DocumentNode;
3507
3523
  export declare const EstimateSubscriptionUpdateDocument: import("graphql").DocumentNode;
3508
3524
  export declare const ReportUsageDocument: import("graphql").DocumentNode;
3525
+ export declare const ReportEntitlementCheckRequestedDocument: import("graphql").DocumentNode;
3509
3526
  export declare const GetCustomerByIdDocument: import("graphql").DocumentNode;
3510
3527
  export declare const GetCouponsDocument: import("graphql").DocumentNode;
3511
3528
  export declare const GetPaywallDocument: import("graphql").DocumentNode;
@@ -3513,21 +3530,22 @@ export declare const GetEntitlementsDocument: import("graphql").DocumentNode;
3513
3530
  export declare const GetEntitlementDocument: import("graphql").DocumentNode;
3514
3531
  export declare type SdkFunctionWrapper = <T>(action: (requestHeaders?: Record<string, string>) => Promise<T>, operationName: string, operationType?: string) => Promise<T>;
3515
3532
  export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionWrapper): {
3516
- provisionCustomer(variables: ProvisionCustomerMutationVariables, requestHeaders?: Dom.RequestInit['headers']): Promise<ProvisionCustomerMutation>;
3517
- importCustomer(variables: ImportCustomerMutationVariables, requestHeaders?: Dom.RequestInit['headers']): Promise<ImportCustomerMutation>;
3518
- updateCustomer(variables: UpdateCustomerMutationVariables, requestHeaders?: Dom.RequestInit['headers']): Promise<UpdateCustomerMutation>;
3519
- provisionSubscription(variables: ProvisionSubscriptionMutationVariables, requestHeaders?: Dom.RequestInit['headers']): Promise<ProvisionSubscriptionMutation>;
3520
- updateSubscription(variables: UpdateSubscriptionMutationVariables, requestHeaders?: Dom.RequestInit['headers']): Promise<UpdateSubscriptionMutation>;
3521
- cancelSubscription(variables: CancelSubscriptionMutationVariables, requestHeaders?: Dom.RequestInit['headers']): Promise<CancelSubscriptionMutation>;
3522
- initiateCheckout(variables: InitiateCheckoutMutationVariables, requestHeaders?: Dom.RequestInit['headers']): Promise<InitiateCheckoutMutation>;
3523
- estimateSubscription(variables: EstimateSubscriptionMutationVariables, requestHeaders?: Dom.RequestInit['headers']): Promise<EstimateSubscriptionMutation>;
3524
- estimateSubscriptionUpdate(variables: EstimateSubscriptionUpdateMutationVariables, requestHeaders?: Dom.RequestInit['headers']): Promise<EstimateSubscriptionUpdateMutation>;
3525
- reportUsage(variables: ReportUsageMutationVariables, requestHeaders?: Dom.RequestInit['headers']): Promise<ReportUsageMutation>;
3526
- getCustomerById(variables: GetCustomerByIdQueryVariables, requestHeaders?: Dom.RequestInit['headers']): Promise<GetCustomerByIdQuery>;
3527
- getCoupons(variables?: GetCouponsQueryVariables, requestHeaders?: Dom.RequestInit['headers']): Promise<GetCouponsQuery>;
3528
- getPaywall(variables: GetPaywallQueryVariables, requestHeaders?: Dom.RequestInit['headers']): Promise<GetPaywallQuery>;
3529
- getEntitlements(variables: GetEntitlementsQueryVariables, requestHeaders?: Dom.RequestInit['headers']): Promise<GetEntitlementsQuery>;
3530
- getEntitlement(variables: GetEntitlementQueryVariables, requestHeaders?: Dom.RequestInit['headers']): Promise<GetEntitlementQuery>;
3533
+ provisionCustomer(variables: ProvisionCustomerMutationVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<ProvisionCustomerMutation>;
3534
+ importCustomer(variables: ImportCustomerMutationVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<ImportCustomerMutation>;
3535
+ updateCustomer(variables: UpdateCustomerMutationVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<UpdateCustomerMutation>;
3536
+ provisionSubscription(variables: ProvisionSubscriptionMutationVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<ProvisionSubscriptionMutation>;
3537
+ updateSubscription(variables: UpdateSubscriptionMutationVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<UpdateSubscriptionMutation>;
3538
+ cancelSubscription(variables: CancelSubscriptionMutationVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<CancelSubscriptionMutation>;
3539
+ initiateCheckout(variables: InitiateCheckoutMutationVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<InitiateCheckoutMutation>;
3540
+ estimateSubscription(variables: EstimateSubscriptionMutationVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<EstimateSubscriptionMutation>;
3541
+ estimateSubscriptionUpdate(variables: EstimateSubscriptionUpdateMutationVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<EstimateSubscriptionUpdateMutation>;
3542
+ reportUsage(variables: ReportUsageMutationVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<ReportUsageMutation>;
3543
+ reportEntitlementCheckRequested(variables: ReportEntitlementCheckRequestedMutationVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<ReportEntitlementCheckRequestedMutation>;
3544
+ getCustomerById(variables: GetCustomerByIdQueryVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<GetCustomerByIdQuery>;
3545
+ getCoupons(variables?: GetCouponsQueryVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<GetCouponsQuery>;
3546
+ getPaywall(variables: GetPaywallQueryVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<GetPaywallQuery>;
3547
+ getEntitlements(variables: GetEntitlementsQueryVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<GetEntitlementsQuery>;
3548
+ getEntitlement(variables: GetEntitlementQueryVariables, requestHeaders?: Dom.RequestInit["headers"]): Promise<GetEntitlementQuery>;
3531
3549
  };
3532
3550
  export declare type Sdk = ReturnType<typeof getSdk>;
3533
3551
  export {};