@burdenoff/microfe-billing 2026.716.1 → 2026.731.1

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.
@@ -442,6 +442,7 @@ var y = t`
442
442
  reusable
443
443
  resetPeriod
444
444
  isActive
445
+ scope
445
446
  context
446
447
  createdAt
447
448
  updatedAt
@@ -3025,8 +3026,25 @@ t`
3025
3026
  }
3026
3027
  `;
3027
3028
  var er = t`
3028
- mutation CreateQuotaTemplate($input: createQuotaInput!) {
3029
- createQuota(input: $input)
3029
+ mutation AssignQuotaFree($secret: String!, $billingAccountId: ID!, $quotaId: ID!, $workspaceId: ID, $limit: Float, $durationDays: Int) {
3030
+ assignQuotaFree(
3031
+ secret: $secret
3032
+ billingAccountId: $billingAccountId
3033
+ quotaId: $quotaId
3034
+ workspaceId: $workspaceId
3035
+ limit: $limit
3036
+ durationDays: $durationDays
3037
+ ) {
3038
+ id
3039
+ quotaId
3040
+ quotaName
3041
+ scope
3042
+ limit
3043
+ billingAccountId
3044
+ workspaceId
3045
+ endtime
3046
+ resetPeriod
3047
+ }
3030
3048
  }
3031
3049
  `;
3032
3050
  function tr(t) {
@@ -3036,6 +3054,18 @@ function tr(t) {
3036
3054
  };
3037
3055
  return e.useMutation(er, r);
3038
3056
  }
3057
+ var nr = t`
3058
+ mutation CreateQuotaTemplate($input: createQuotaInput!) {
3059
+ createQuota(input: $input)
3060
+ }
3061
+ `;
3062
+ function rr(t) {
3063
+ let r = {
3064
+ ...n,
3065
+ ...t
3066
+ };
3067
+ return e.useMutation(nr, r);
3068
+ }
3039
3069
  t`
3040
3070
  mutation FreeUpUsage($billingAccountId: ID!, $quotaName: String!, $value: Int!, $description: String, $userId: ID, $productId: String, $hash: String, $tags: JSON) {
3041
3071
  freeUpUsage(
@@ -3050,17 +3080,17 @@ t`
3050
3080
  )
3051
3081
  }
3052
3082
  `;
3053
- var nr = t`
3083
+ var ir = t`
3054
3084
  mutation UpdateQuotaTemplate($input: updateQuotaInput!) {
3055
3085
  updateQuota(input: $input)
3056
3086
  }
3057
3087
  `;
3058
- function rr(t) {
3088
+ function ar(t) {
3059
3089
  let r = {
3060
3090
  ...n,
3061
3091
  ...t
3062
3092
  };
3063
- return e.useMutation(nr, r);
3093
+ return e.useMutation(ir, r);
3064
3094
  }
3065
3095
  t`
3066
3096
  query CheckQuotaExhausted($billingAccountId: ID!, $quotaName: String!, $productId: String) {
@@ -3081,7 +3111,7 @@ var Y = t`
3081
3111
  }
3082
3112
  }
3083
3113
  ${ie}`;
3084
- function ir(t) {
3114
+ function or(t) {
3085
3115
  let r = {
3086
3116
  ...n,
3087
3117
  ...t
@@ -3193,7 +3223,7 @@ t`
3193
3223
  }
3194
3224
  }
3195
3225
  `;
3196
- var ar = t`
3226
+ var sr = t`
3197
3227
  mutation ArchiveBillingAccountSettings($id: ID!, $reason: String, $replacementDefaultBillingAccountId: ID) {
3198
3228
  archiveBillingAccount(
3199
3229
  id: $id
@@ -3205,7 +3235,7 @@ var ar = t`
3205
3235
  isDefault
3206
3236
  }
3207
3237
  }
3208
- `, or = t`
3238
+ `, cr = t`
3209
3239
  mutation SetDefaultBillingAccountSettings($id: ID!) {
3210
3240
  setDefaultBillingAccount(id: $id) {
3211
3241
  id
@@ -3217,14 +3247,14 @@ var ar = t`
3217
3247
  }
3218
3248
  }
3219
3249
  `;
3220
- function sr(t) {
3250
+ function lr(t) {
3221
3251
  let r = {
3222
3252
  ...n,
3223
3253
  ...t
3224
3254
  };
3225
- return e.useMutation(or, r);
3255
+ return e.useMutation(cr, r);
3226
3256
  }
3227
- var cr = t`
3257
+ var ur = t`
3228
3258
  mutation UpdateBillingAccountSettings($input: UpdateBillingAccountInput!) {
3229
3259
  updateBillingAccount(input: $input) {
3230
3260
  id
@@ -3239,14 +3269,14 @@ var cr = t`
3239
3269
  }
3240
3270
  }
3241
3271
  `;
3242
- function lr(t) {
3272
+ function dr(t) {
3243
3273
  let r = {
3244
3274
  ...n,
3245
3275
  ...t
3246
3276
  };
3247
- return e.useMutation(cr, r);
3277
+ return e.useMutation(ur, r);
3248
3278
  }
3249
- var ur = t`
3279
+ var fr = t`
3250
3280
  query GetBillingAccountSettings($id: ID!) {
3251
3281
  getBillingAccount(id: $id) {
3252
3282
  id
@@ -3264,14 +3294,14 @@ var ur = t`
3264
3294
  }
3265
3295
  }
3266
3296
  `;
3267
- function dr(t) {
3297
+ function pr(t) {
3268
3298
  let r = {
3269
3299
  ...n,
3270
3300
  ...t
3271
3301
  };
3272
- return e.useQuery(ur, r);
3302
+ return e.useQuery(fr, r);
3273
3303
  }
3274
- var fr = t`
3304
+ var mr = t`
3275
3305
  query GetBillingAccountsSettings {
3276
3306
  getBillingAccountsByOrg {
3277
3307
  id
@@ -3283,14 +3313,14 @@ var fr = t`
3283
3313
  }
3284
3314
  }
3285
3315
  `;
3286
- function pr(t) {
3316
+ function hr(t) {
3287
3317
  let r = {
3288
3318
  ...n,
3289
3319
  ...t
3290
3320
  };
3291
- return e.useQuery(fr, r);
3321
+ return e.useQuery(mr, r);
3292
3322
  }
3293
- var mr = t`
3323
+ var gr = t`
3294
3324
  query GetDefaultBillingAccountSettings {
3295
3325
  getDefaultBillingAccount {
3296
3326
  id
@@ -3308,42 +3338,42 @@ var mr = t`
3308
3338
  }
3309
3339
  }
3310
3340
  `;
3311
- function hr(t) {
3341
+ function _r(t) {
3312
3342
  let r = {
3313
3343
  ...n,
3314
3344
  ...t
3315
3345
  };
3316
- return e.useQuery(mr, r);
3346
+ return e.useQuery(gr, r);
3317
3347
  }
3318
- var gr = t`
3348
+ var vr = t`
3319
3349
  mutation UpdateSubscriptionSeats($input: UpdateSubscriptionSeatsInput!) {
3320
3350
  updateSubscriptionSeats(input: $input) {
3321
3351
  ...SubscriptionFields
3322
3352
  }
3323
3353
  }
3324
3354
  ${C}`;
3325
- function _r(t) {
3355
+ function yr(t) {
3326
3356
  let r = {
3327
3357
  ...n,
3328
3358
  ...t
3329
3359
  };
3330
- return e.useMutation(gr, r);
3360
+ return e.useMutation(vr, r);
3331
3361
  }
3332
- var vr = t`
3362
+ var br = t`
3333
3363
  mutation CancelSubscription($input: CancelSubscriptionInput!) {
3334
3364
  cancelSubscription(input: $input) {
3335
3365
  ...SubscriptionFields
3336
3366
  }
3337
3367
  }
3338
3368
  ${C}`;
3339
- function yr(t) {
3369
+ function xr(t) {
3340
3370
  let r = {
3341
3371
  ...n,
3342
3372
  ...t
3343
3373
  };
3344
- return e.useMutation(vr, r);
3374
+ return e.useMutation(br, r);
3345
3375
  }
3346
- var br = t`
3376
+ var Sr = t`
3347
3377
  mutation CreateBillingAccountSubscriptions($input: CreateBillingAccountInput!) {
3348
3378
  createBillingAccount(input: $input) {
3349
3379
  id
@@ -3356,14 +3386,14 @@ var br = t`
3356
3386
  }
3357
3387
  }
3358
3388
  `;
3359
- function xr(t) {
3389
+ function Cr(t) {
3360
3390
  let r = {
3361
3391
  ...n,
3362
3392
  ...t
3363
3393
  };
3364
- return e.useMutation(br, r);
3394
+ return e.useMutation(Sr, r);
3365
3395
  }
3366
- var Sr = t`
3396
+ var wr = t`
3367
3397
  mutation InitiatePaymentSubscriptions($input: InitiatePaymentInput!) {
3368
3398
  initiatePayment(input: $input) {
3369
3399
  success
@@ -3383,28 +3413,28 @@ var Sr = t`
3383
3413
  }
3384
3414
  }
3385
3415
  `;
3386
- function Cr(t) {
3416
+ function Tr(t) {
3387
3417
  let r = {
3388
3418
  ...n,
3389
3419
  ...t
3390
3420
  };
3391
- return e.useMutation(Sr, r);
3421
+ return e.useMutation(wr, r);
3392
3422
  }
3393
- var wr = t`
3423
+ var Er = t`
3394
3424
  mutation SpendCreditsSubscriptions($input: SpendCreditsInput!) {
3395
3425
  spendCredits(input: $input) {
3396
3426
  creditTransactionID
3397
3427
  }
3398
3428
  }
3399
3429
  `;
3400
- function Tr(t) {
3430
+ function Dr(t) {
3401
3431
  let r = {
3402
3432
  ...n,
3403
3433
  ...t
3404
3434
  };
3405
- return e.useMutation(wr, r);
3435
+ return e.useMutation(Er, r);
3406
3436
  }
3407
- var Er = t`
3437
+ var Or = t`
3408
3438
  mutation UpdateBillingAccountSubscriptions($input: UpdateBillingAccountInput!) {
3409
3439
  updateBillingAccount(input: $input) {
3410
3440
  id
@@ -3418,14 +3448,14 @@ var Er = t`
3418
3448
  }
3419
3449
  }
3420
3450
  `;
3421
- function Dr(t) {
3451
+ function X(t) {
3422
3452
  let r = {
3423
3453
  ...n,
3424
3454
  ...t
3425
3455
  };
3426
- return e.useMutation(Er, r);
3456
+ return e.useMutation(Or, r);
3427
3457
  }
3428
- var X = t`
3458
+ var Z = t`
3429
3459
  query GetBillingAccount($id: ID!) {
3430
3460
  getBillingAccount(id: $id) {
3431
3461
  id
@@ -3447,14 +3477,14 @@ var X = t`
3447
3477
  }
3448
3478
  }
3449
3479
  ${w}`;
3450
- function Z(t) {
3480
+ function kr(t) {
3451
3481
  let r = {
3452
3482
  ...n,
3453
3483
  ...t
3454
3484
  };
3455
- return e.useQuery(X, r);
3485
+ return e.useQuery(Z, r);
3456
3486
  }
3457
- var Or = t`
3487
+ var Ar = t`
3458
3488
  query GetBillingAccountsForSubscriptions {
3459
3489
  getBillingAccountsByOrg {
3460
3490
  id
@@ -3466,12 +3496,12 @@ var Or = t`
3466
3496
  }
3467
3497
  }
3468
3498
  `;
3469
- function kr(t) {
3499
+ function jr(t) {
3470
3500
  let r = {
3471
3501
  ...n,
3472
3502
  ...t
3473
3503
  };
3474
- return e.useQuery(Or, r);
3504
+ return e.useQuery(Ar, r);
3475
3505
  }
3476
3506
  var Q = t`
3477
3507
  query GetDefaultBillingAccount {
@@ -3491,14 +3521,14 @@ var Q = t`
3491
3521
  }
3492
3522
  }
3493
3523
  ${w}`;
3494
- function Ar(t) {
3524
+ function Mr(t) {
3495
3525
  let r = {
3496
3526
  ...n,
3497
3527
  ...t
3498
3528
  };
3499
3529
  return e.useQuery(Q, r);
3500
3530
  }
3501
- var jr = t`
3531
+ var Nr = t`
3502
3532
  query GetPaginatedSubscriptions($billingAccountId: ID!, $page: Int, $pageSize: Int, $search: String) {
3503
3533
  getPaginatedSubscriptions(
3504
3534
  billingAccountId: $billingAccountId
@@ -3521,12 +3551,12 @@ var jr = t`
3521
3551
  }
3522
3552
  }
3523
3553
  ${w}`;
3524
- function Mr(t) {
3554
+ function Pr(t) {
3525
3555
  let r = {
3526
3556
  ...n,
3527
3557
  ...t
3528
3558
  };
3529
- return e.useQuery(jr, r);
3559
+ return e.useQuery(Nr, r);
3530
3560
  }
3531
3561
  var $ = t`
3532
3562
  query GetSubscription($id: ID!, $billingAccountId: ID!) {
@@ -3535,7 +3565,7 @@ var $ = t`
3535
3565
  }
3536
3566
  }
3537
3567
  ${ae}`;
3538
- function Nr(t) {
3568
+ function Fr(t) {
3539
3569
  let r = {
3540
3570
  ...n,
3541
3571
  ...t
@@ -3563,7 +3593,7 @@ t`
3563
3593
  }
3564
3594
  }
3565
3595
  `;
3566
- var Pr = t`
3596
+ var Ir = t`
3567
3597
  query GetBillingAccountQuotasSummaryForUsage($billingAccountId: ID!, $productId: String) {
3568
3598
  getBillingAccountQuotasSummary(
3569
3599
  billingAccountId: $billingAccountId
@@ -3589,14 +3619,14 @@ var Pr = t`
3589
3619
  }
3590
3620
  }
3591
3621
  `;
3592
- function Fr(t) {
3622
+ function Lr(t) {
3593
3623
  let r = {
3594
3624
  ...n,
3595
3625
  ...t
3596
3626
  };
3597
- return e.useQuery(Pr, r);
3627
+ return e.useQuery(Ir, r);
3598
3628
  }
3599
- var Ir = t`
3629
+ var Rr = t`
3600
3630
  query GetBillingAccountsForUsage {
3601
3631
  getBillingAccountsByOrg {
3602
3632
  id
@@ -3609,14 +3639,14 @@ var Ir = t`
3609
3639
  }
3610
3640
  }
3611
3641
  `;
3612
- function Lr(t) {
3642
+ function zr(t) {
3613
3643
  let r = {
3614
3644
  ...n,
3615
3645
  ...t
3616
3646
  };
3617
- return e.useQuery(Ir, r);
3647
+ return e.useQuery(Rr, r);
3618
3648
  }
3619
- var Rr = t`
3649
+ var Br = t`
3620
3650
  query GetPastSubscriptionsWithQuotas($billingAccountId: ID!, $searchQuery: String, $page: Int, $pageSize: Int) {
3621
3651
  getSubscriptionUsageOverview(
3622
3652
  billingAccountId: $billingAccountId
@@ -3641,12 +3671,12 @@ var Rr = t`
3641
3671
  }
3642
3672
  }
3643
3673
  `;
3644
- function zr(t) {
3674
+ function Vr(t) {
3645
3675
  let r = {
3646
3676
  ...n,
3647
3677
  ...t
3648
3678
  };
3649
- return e.useQuery(Rr, r);
3679
+ return e.useQuery(Br, r);
3650
3680
  }
3651
3681
  t`
3652
3682
  query GetQuotaAnalyticsForUsage($quotaAssignmentId: ID!, $billingAccountId: ID!, $period: AnalyticsPeriod) {
@@ -3707,7 +3737,7 @@ t`
3707
3737
  }
3708
3738
  }
3709
3739
  `;
3710
- var Br = t`
3740
+ var Hr = t`
3711
3741
  query GetSubscriptionsWithQuotas($billingAccountId: ID!, $searchQuery: String) {
3712
3742
  getSubscriptionUsageOverview(
3713
3743
  billingAccountId: $billingAccountId
@@ -3731,26 +3761,26 @@ var Br = t`
3731
3761
  }
3732
3762
  }
3733
3763
  `;
3734
- function Vr(t) {
3764
+ function Ur(t) {
3735
3765
  let r = {
3736
3766
  ...n,
3737
3767
  ...t
3738
3768
  };
3739
- return e.useQuery(Br, r);
3769
+ return e.useQuery(Hr, r);
3740
3770
  }
3741
- var Hr = t`
3771
+ var Wr = t`
3742
3772
  query GetUsageDashboard($billingAccountId: ID!, $period: AnalyticsPeriod) {
3743
3773
  getUsageDashboard(billingAccountId: $billingAccountId, period: $period) {
3744
3774
  ...UsageDashboardFields
3745
3775
  }
3746
3776
  }
3747
3777
  ${oe}`;
3748
- function Ur(t) {
3778
+ function Gr(t) {
3749
3779
  let r = {
3750
3780
  ...n,
3751
3781
  ...t
3752
3782
  };
3753
- return e.useQuery(Hr, r);
3783
+ return e.useQuery(Wr, r);
3754
3784
  }
3755
3785
  t`
3756
3786
  mutation CreateShippingAddress($input: CreateShippingAddressInput!) {
@@ -3862,6 +3892,6 @@ t`
3862
3892
  }
3863
3893
  `;
3864
3894
  //#endregion
3865
- export { gn as AddPayoutAccountDocument, Tn as AdminDeveloperRevenueOrgDetailDocument, wn as AdminDeveloperRevenueOrgsDocument, En as AdminPayoutRequestsDocument, Dn as AdminPayoutSummaryDocument, _n as ApprovePayoutRequestDocument, ar as ArchiveBillingAccountSettingsDocument, vn as ArchivePayoutAccountDocument, On as BillingDeveloperPortalRevenueDocument, Et as CreditWithdrawalHistoryDocument, T as GetAllAddOnsDocument, J as GetAllPlansDocument, Y as GetAllQuotaTemplatesDocument, X as GetBillingAccountDocument, K as GetBillingAccountsByOrgDocument, Qt as GetBillingAddressDocument, kt as GetCreditBalanceByTypeDocument, At as GetCreditNotesDocument, rn as GetCreditTransactionsSummaryDocument, q as GetDefaultBillingAccountDashboardDocument, Q as GetDefaultBillingAccountDocument, Se as GetInvoicesDocument, Te as GetPendingRefundsDocument, H as GetRefundRecordsDocument, U as GetRefundStatsDocument, $ as GetSubscriptionDocument, W as GetTransactionDocument, G as GetUnprocessedFailedWebhooksDocument, wt as GrantCreditsDocument, yn as MarkPayoutPaidDocument, kn as MyEarningsEntriesDocument, An as MyEarningsSummaryDocument, jn as MyPayoutAccountsDocument, Mn as MyPayoutRequestsDocument, bn as RejectPayoutRequestDocument, Tt as RequestCreditWithdrawalDocument, xn as RetrySaleCreditSyncDocument, Sn as SetDefaultPayoutAccountDocument, Cn as UpdatePayoutAccountDocument, Mt as useAddPaymentMethodDashboardMutation, Pn as useAssignPlanFreeMutation, yr as useCancelSubscriptionMutation, ze as useConvertCurrencyLazyQuery, ce as useCreateAddOnsMutation, Pt as useCreateBillingAccountMutation, xr as useCreateBillingAccountSubscriptionsMutation, Ne as useCreateBillingOrderCheckoutMutation, lt as useCreateCouponMutation, Ct as useCreateCreditNoteMutation, ln as useCreateDiscountMutation, In as useCreatePlanMutation, qn as useCreatePromotionMutation, tr as useCreateQuotaTemplateMutation, P as useCreateRefundRecordFromWebhookMutation, M as useCreateRefundRecordMutation, I as useCreateRefundRecordsFromFailedWebhooksMutation, dt as useDeactivateCouponMutation, Yn as useDeactivatePromotionMutation, dn as useDeleteDiscountMutation, It as useDeletePaymentMethodDashboardMutation, R as useGenerateInvoiceMutation, Ve as useGetActiveSubscriptionsCheckoutQuery, E as useGetAllAddOnsQuery, Vn as useGetAllPlansQuery, ir as useGetAllQuotaTemplatesQuery, Un as useGetAllQuotasQuery, Ot as useGetBillingAccountCreditTransactionsQuery, Z as useGetBillingAccountQuery, Fr as useGetBillingAccountQuotasSummaryForUsageQuery, dr as useGetBillingAccountSettingsQuery, Zt as useGetBillingAccountsByOrgQuery, Ge as useGetBillingAccountsCheckoutQuery, kr as useGetBillingAccountsForSubscriptionsQuery, Lr as useGetBillingAccountsForUsageQuery, pr as useGetBillingAccountsSettingsQuery, A as useGetBillingAnalyticsPageDataQuery, nn as useGetBillingOverviewAccountQuery, en as useGetBillingOverviewQuery, qe as useGetCostOfCreditsCheckoutQuery, ht as useGetCouponLazyQuery, _t as useGetCouponUsageHistoryQuery, Ye as useGetCreditTransactionStatusLazyQuery, Ze as useGetDefaultBillingAccountCheckoutQuery, an as useGetDefaultBillingAccountDashboardQuery, Ar as useGetDefaultBillingAccountQuery, hr as useGetDefaultBillingAccountSettingsQuery, hn as useGetDiscountsQuery, xe as useGetInvoiceQuery, we as useGetPaginatedInvoicesQuery, Mr as useGetPaginatedSubscriptionsQuery, zr as useGetPastSubscriptionsWithQuotasQuery, $e as useGetPaymentMethodsCheckoutQuery, tt as useGetPaymentProviderConfigCheckoutQuery, sn as useGetPaymentProviderConfigQuery, rt as useGetPaymentStatusLazyQuery, at as useGetPlanCheckoutQuery, Gn as useGetPlanQuery, Ee as useGetRefundRecordsQuery, De as useGetRefundStatsQuery, Ue as useGetSelectedAddonCheckoutQuery, O as useGetSelectedAddonsQuery, st as useGetStoreOrderCheckoutQuery, Nr as useGetSubscriptionQuery, Vr as useGetSubscriptionsWithQuotasQuery, Oe as useGetTransactionLazyQuery, Ae as useGetTransactionsByBillingAccountQuery, je as useGetUnprocessedFailedWebhooksQuery, Ur as useGetUsageDashboardQuery, Fe as useInitiatePaymentCheckoutMutation, Rt as useInitiatePaymentMutation, Cr as useInitiatePaymentSubscriptionsMutation, yt as useListCouponsQuery, $n as useListPromotionsQuery, B as usePayInvoiceMutation, pe as useProcessRefundMutation, he as useRetryRefundMutation, Bt as useSetBillingAddressMutation, Ht as useSetDefaultBillingAccountMutation, sr as useSetDefaultBillingAccountSettingsMutation, _e as useSkipRefundMutation, Le as useSpendCreditsCheckoutMutation, Wt as useSpendCreditsMutation, Tr as useSpendCreditsSubscriptionsMutation, ue as useToggleAddOnMutation, Rn as useTogglePlanMutation, fe as useUpdateAddOnDetailsMutation, Kt as useUpdateBillingAccountMutation, lr as useUpdateBillingAccountSettingsMutation, Dr as useUpdateBillingAccountSubscriptionsMutation, pt as useUpdateCouponMutation, pn as useUpdateDiscountMutation, Jt as useUpdatePaymentMethodDashboardMutation, Bn as useUpdatePlanMutation, Zn as useUpdatePromotionMutation, rr as useUpdateQuotaTemplateMutation, _r as useUpdateSubscriptionSeatsMutation, xt as useValidateCouponLazyQuery, Xt as useVerifyPaymentMethodMutation, ye as useVoidInvoiceMutation };
3895
+ export { gn as AddPayoutAccountDocument, Tn as AdminDeveloperRevenueOrgDetailDocument, wn as AdminDeveloperRevenueOrgsDocument, En as AdminPayoutRequestsDocument, Dn as AdminPayoutSummaryDocument, _n as ApprovePayoutRequestDocument, sr as ArchiveBillingAccountSettingsDocument, vn as ArchivePayoutAccountDocument, On as BillingDeveloperPortalRevenueDocument, Et as CreditWithdrawalHistoryDocument, T as GetAllAddOnsDocument, J as GetAllPlansDocument, Y as GetAllQuotaTemplatesDocument, Z as GetBillingAccountDocument, K as GetBillingAccountsByOrgDocument, Qt as GetBillingAddressDocument, kt as GetCreditBalanceByTypeDocument, At as GetCreditNotesDocument, rn as GetCreditTransactionsSummaryDocument, q as GetDefaultBillingAccountDashboardDocument, Q as GetDefaultBillingAccountDocument, Se as GetInvoicesDocument, Te as GetPendingRefundsDocument, H as GetRefundRecordsDocument, U as GetRefundStatsDocument, $ as GetSubscriptionDocument, W as GetTransactionDocument, G as GetUnprocessedFailedWebhooksDocument, wt as GrantCreditsDocument, yn as MarkPayoutPaidDocument, kn as MyEarningsEntriesDocument, An as MyEarningsSummaryDocument, jn as MyPayoutAccountsDocument, Mn as MyPayoutRequestsDocument, bn as RejectPayoutRequestDocument, Tt as RequestCreditWithdrawalDocument, xn as RetrySaleCreditSyncDocument, Sn as SetDefaultPayoutAccountDocument, Cn as UpdatePayoutAccountDocument, Mt as useAddPaymentMethodDashboardMutation, Pn as useAssignPlanFreeMutation, tr as useAssignQuotaFreeMutation, xr as useCancelSubscriptionMutation, ze as useConvertCurrencyLazyQuery, ce as useCreateAddOnsMutation, Pt as useCreateBillingAccountMutation, Cr as useCreateBillingAccountSubscriptionsMutation, Ne as useCreateBillingOrderCheckoutMutation, lt as useCreateCouponMutation, Ct as useCreateCreditNoteMutation, ln as useCreateDiscountMutation, In as useCreatePlanMutation, qn as useCreatePromotionMutation, rr as useCreateQuotaTemplateMutation, P as useCreateRefundRecordFromWebhookMutation, M as useCreateRefundRecordMutation, I as useCreateRefundRecordsFromFailedWebhooksMutation, dt as useDeactivateCouponMutation, Yn as useDeactivatePromotionMutation, dn as useDeleteDiscountMutation, It as useDeletePaymentMethodDashboardMutation, R as useGenerateInvoiceMutation, Ve as useGetActiveSubscriptionsCheckoutQuery, E as useGetAllAddOnsQuery, Vn as useGetAllPlansQuery, or as useGetAllQuotaTemplatesQuery, Un as useGetAllQuotasQuery, Ot as useGetBillingAccountCreditTransactionsQuery, kr as useGetBillingAccountQuery, Lr as useGetBillingAccountQuotasSummaryForUsageQuery, pr as useGetBillingAccountSettingsQuery, Zt as useGetBillingAccountsByOrgQuery, Ge as useGetBillingAccountsCheckoutQuery, jr as useGetBillingAccountsForSubscriptionsQuery, zr as useGetBillingAccountsForUsageQuery, hr as useGetBillingAccountsSettingsQuery, A as useGetBillingAnalyticsPageDataQuery, nn as useGetBillingOverviewAccountQuery, en as useGetBillingOverviewQuery, qe as useGetCostOfCreditsCheckoutQuery, ht as useGetCouponLazyQuery, _t as useGetCouponUsageHistoryQuery, Ye as useGetCreditTransactionStatusLazyQuery, Ze as useGetDefaultBillingAccountCheckoutQuery, an as useGetDefaultBillingAccountDashboardQuery, Mr as useGetDefaultBillingAccountQuery, _r as useGetDefaultBillingAccountSettingsQuery, hn as useGetDiscountsQuery, xe as useGetInvoiceQuery, we as useGetPaginatedInvoicesQuery, Pr as useGetPaginatedSubscriptionsQuery, Vr as useGetPastSubscriptionsWithQuotasQuery, $e as useGetPaymentMethodsCheckoutQuery, tt as useGetPaymentProviderConfigCheckoutQuery, sn as useGetPaymentProviderConfigQuery, rt as useGetPaymentStatusLazyQuery, at as useGetPlanCheckoutQuery, Gn as useGetPlanQuery, Ee as useGetRefundRecordsQuery, De as useGetRefundStatsQuery, Ue as useGetSelectedAddonCheckoutQuery, O as useGetSelectedAddonsQuery, st as useGetStoreOrderCheckoutQuery, Fr as useGetSubscriptionQuery, Ur as useGetSubscriptionsWithQuotasQuery, Oe as useGetTransactionLazyQuery, Ae as useGetTransactionsByBillingAccountQuery, je as useGetUnprocessedFailedWebhooksQuery, Gr as useGetUsageDashboardQuery, Fe as useInitiatePaymentCheckoutMutation, Rt as useInitiatePaymentMutation, Tr as useInitiatePaymentSubscriptionsMutation, yt as useListCouponsQuery, $n as useListPromotionsQuery, B as usePayInvoiceMutation, pe as useProcessRefundMutation, he as useRetryRefundMutation, Bt as useSetBillingAddressMutation, Ht as useSetDefaultBillingAccountMutation, lr as useSetDefaultBillingAccountSettingsMutation, _e as useSkipRefundMutation, Le as useSpendCreditsCheckoutMutation, Wt as useSpendCreditsMutation, Dr as useSpendCreditsSubscriptionsMutation, ue as useToggleAddOnMutation, Rn as useTogglePlanMutation, fe as useUpdateAddOnDetailsMutation, Kt as useUpdateBillingAccountMutation, dr as useUpdateBillingAccountSettingsMutation, X as useUpdateBillingAccountSubscriptionsMutation, pt as useUpdateCouponMutation, pn as useUpdateDiscountMutation, Jt as useUpdatePaymentMethodDashboardMutation, Bn as useUpdatePlanMutation, Zn as useUpdatePromotionMutation, ar as useUpdateQuotaTemplateMutation, yr as useUpdateSubscriptionSeatsMutation, xt as useValidateCouponLazyQuery, Xt as useVerifyPaymentMethodMutation, ye as useVoidInvoiceMutation };
3866
3896
 
3867
3897
  //# sourceMappingURL=global-operations.js.map