@burdenoff/microfe-billing 2026.706.1 → 2026.708.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.
@@ -2477,20 +2477,101 @@ var bn = t`
2477
2477
  }
2478
2478
  }
2479
2479
  `, xn = t`
2480
+ mutation RetrySaleCreditSync($saleId: ID!) {
2481
+ retrySaleCreditSync(saleId: $saleId) {
2482
+ id
2483
+ billingCreditSyncStatus
2484
+ billingCreditSyncError
2485
+ billingCreditSyncedAt
2486
+ }
2487
+ }
2488
+ `, Sn = t`
2480
2489
  mutation SetDefaultPayoutAccount($id: ID!, $billingAccountId: ID!) {
2481
2490
  setDefaultPayoutAccount(id: $id, billingAccountId: $billingAccountId) {
2482
2491
  id
2483
2492
  }
2484
2493
  }
2485
- `, Sn = t`
2494
+ `, Cn = t`
2486
2495
  mutation UpdatePayoutAccount($id: ID!, $billingAccountId: ID!, $input: UpdatePayoutAccountInput!) {
2487
2496
  updatePayoutAccount(id: $id, billingAccountId: $billingAccountId, input: $input) {
2488
2497
  id
2489
2498
  }
2490
2499
  }
2491
- `, Cn = t`
2492
- query AdminPayoutRequests {
2493
- adminPayoutRequests(limit: 100, offset: 0) {
2500
+ `, wn = t`
2501
+ query AdminDeveloperRevenueOrgs($limit: Int = 100, $offset: Int = 0) {
2502
+ developerOrganizations(limit: $limit, offset: $offset) {
2503
+ totalCount
2504
+ edges {
2505
+ node {
2506
+ id
2507
+ name
2508
+ slug
2509
+ billingAccountId
2510
+ isVerified
2511
+ totalApps
2512
+ publishedApps
2513
+ totalInstalls
2514
+ activeInstalls
2515
+ averageRating
2516
+ totalRevenue
2517
+ totalPlatformFees
2518
+ totalPayouts
2519
+ pendingBalance
2520
+ lifetimeRevenue
2521
+ platformFeeRate
2522
+ createdAt
2523
+ updatedAt
2524
+ }
2525
+ }
2526
+ }
2527
+ }
2528
+ `, Tn = t`
2529
+ query AdminDeveloperRevenueOrgDetail($organizationId: ID!, $period: String! = "monthly", $salesLimit: Int = 20, $salesOffset: Int = 0) {
2530
+ developerOrgRevenueSummary(organizationId: $organizationId, period: $period) {
2531
+ totalGrossRevenue
2532
+ totalNetRevenue
2533
+ totalPlatformFees
2534
+ totalRefunds
2535
+ totalRefundsCount
2536
+ totalSales
2537
+ pendingBalance
2538
+ nextPayoutDate
2539
+ nextPayoutAmount
2540
+ }
2541
+ developerOrgSales(
2542
+ organizationId: $organizationId
2543
+ isPaidOut: false
2544
+ limit: $salesLimit
2545
+ offset: $salesOffset
2546
+ ) {
2547
+ totalCount
2548
+ edges {
2549
+ node {
2550
+ id
2551
+ grossAmount
2552
+ netAmount
2553
+ platformFeeRate
2554
+ platformFee
2555
+ refundAmount
2556
+ currency
2557
+ pricingModel
2558
+ status
2559
+ billingCreditSyncStatus
2560
+ billingCreditSyncError
2561
+ billingCreditSyncedAt
2562
+ purchasedAt
2563
+ application {
2564
+ id
2565
+ name
2566
+ slug
2567
+ }
2568
+ }
2569
+ }
2570
+ }
2571
+ }
2572
+ `, En = t`
2573
+ query AdminPayoutRequests($limit: Int = 50, $offset: Int = 0) {
2574
+ adminPayoutRequests(limit: $limit, offset: $offset) {
2494
2575
  items {
2495
2576
  id
2496
2577
  billingAccountId
@@ -2521,9 +2602,11 @@ var bn = t`
2521
2602
  accountDetails
2522
2603
  }
2523
2604
  }
2605
+ totalCount
2606
+ hasMore
2524
2607
  }
2525
2608
  }
2526
- `, wn = t`
2609
+ `, Dn = t`
2527
2610
  query AdminPayoutSummary {
2528
2611
  adminPayoutSummary {
2529
2612
  totalRequestedAmount
@@ -2543,7 +2626,7 @@ var bn = t`
2543
2626
  }
2544
2627
  }
2545
2628
  }
2546
- `, Tn = t`
2629
+ `, On = t`
2547
2630
  query BillingDeveloperPortalRevenue($organizationId: ID!) {
2548
2631
  developerOrgRevenueSummary(organizationId: $organizationId, period: "monthly") {
2549
2632
  totalGrossRevenue
@@ -2588,7 +2671,7 @@ var bn = t`
2588
2671
  }
2589
2672
  }
2590
2673
  }
2591
- `, En = t`
2674
+ `, kn = t`
2592
2675
  query MyEarningsEntries($billingAccountId: ID!) {
2593
2676
  myEarningsEntries(billingAccountId: $billingAccountId, limit: 50, offset: 0) {
2594
2677
  items {
@@ -2604,7 +2687,7 @@ var bn = t`
2604
2687
  }
2605
2688
  }
2606
2689
  }
2607
- `, Dn = t`
2690
+ `, An = t`
2608
2691
  query MyEarningsSummary($billingAccountId: ID!) {
2609
2692
  myEarningsSummary(billingAccountId: $billingAccountId) {
2610
2693
  totalLifetimeAmount
@@ -2621,7 +2704,7 @@ var bn = t`
2621
2704
  }
2622
2705
  }
2623
2706
  }
2624
- `, On = t`
2707
+ `, jn = t`
2625
2708
  query MyPayoutAccounts($billingAccountId: ID!) {
2626
2709
  myPayoutAccounts(billingAccountId: $billingAccountId) {
2627
2710
  id
@@ -2636,7 +2719,7 @@ var bn = t`
2636
2719
  isDefault
2637
2720
  }
2638
2721
  }
2639
- `, kn = t`
2722
+ `, Mn = t`
2640
2723
  query MyPayoutRequests($billingAccountId: ID!) {
2641
2724
  myPayoutRequests(billingAccountId: $billingAccountId, limit: 50, offset: 0) {
2642
2725
  items {
@@ -2668,7 +2751,7 @@ var bn = t`
2668
2751
  }
2669
2752
  }
2670
2753
  }
2671
- `, An = t`
2754
+ `, Nn = t`
2672
2755
  mutation AssignPlanFree($secret: String!, $billingAccountId: ID!, $planId: ID!, $workspaceId: ID) {
2673
2756
  assignPlanFree(
2674
2757
  secret: $secret
@@ -2684,12 +2767,12 @@ var bn = t`
2684
2767
  }
2685
2768
  }
2686
2769
  `;
2687
- function jn(t) {
2770
+ function Pn(t) {
2688
2771
  let r = {
2689
2772
  ...n,
2690
2773
  ...t
2691
2774
  };
2692
- return e.useMutation(An, r);
2775
+ return e.useMutation(Nn, r);
2693
2776
  }
2694
2777
  t`
2695
2778
  mutation CreateEntitlement($input: CreateEntitlementInput!) {
@@ -2703,17 +2786,17 @@ t`
2703
2786
  }
2704
2787
  }
2705
2788
  `;
2706
- var Mn = t`
2789
+ var Fn = t`
2707
2790
  mutation CreatePlan($input: createPlanInput!) {
2708
2791
  createPlan(input: $input)
2709
2792
  }
2710
2793
  `;
2711
- function Nn(t) {
2794
+ function In(t) {
2712
2795
  let r = {
2713
2796
  ...n,
2714
2797
  ...t
2715
2798
  };
2716
- return e.useMutation(Mn, r);
2799
+ return e.useMutation(Fn, r);
2717
2800
  }
2718
2801
  t`
2719
2802
  mutation CreateQuota($input: createQuotaInput!) {
@@ -2724,17 +2807,17 @@ t`
2724
2807
  deleteEntitlement(id: $id)
2725
2808
  }
2726
2809
  `;
2727
- var Pn = t`
2810
+ var Ln = t`
2728
2811
  mutation TogglePlan($planID: ID!, $status: Boolean!) {
2729
2812
  togglePlan(planID: $planID, status: $status)
2730
2813
  }
2731
2814
  `;
2732
- function Fn(t) {
2815
+ function Rn(t) {
2733
2816
  let r = {
2734
2817
  ...n,
2735
2818
  ...t
2736
2819
  };
2737
- return e.useMutation(Pn, r);
2820
+ return e.useMutation(Ln, r);
2738
2821
  }
2739
2822
  t`
2740
2823
  mutation UpdateEntitlement($input: UpdateEntitlementInput!) {
@@ -2746,17 +2829,17 @@ t`
2746
2829
  }
2747
2830
  }
2748
2831
  `;
2749
- var In = t`
2832
+ var zn = t`
2750
2833
  mutation UpdatePlan($input: updatePlanInput!) {
2751
2834
  updatePlan(input: $input)
2752
2835
  }
2753
2836
  `;
2754
- function Ln(t) {
2837
+ function Bn(t) {
2755
2838
  let r = {
2756
2839
  ...n,
2757
2840
  ...t
2758
2841
  };
2759
- return e.useMutation(In, r);
2842
+ return e.useMutation(zn, r);
2760
2843
  }
2761
2844
  t`
2762
2845
  mutation UpdateQuota($input: updateQuotaInput!) {
@@ -2778,40 +2861,40 @@ var J = t`
2778
2861
  }
2779
2862
  }
2780
2863
  ${b}`;
2781
- function Rn(t) {
2864
+ function Vn(t) {
2782
2865
  let r = {
2783
2866
  ...n,
2784
2867
  ...t
2785
2868
  };
2786
2869
  return e.useQuery(J, r);
2787
2870
  }
2788
- var zn = t`
2871
+ var Hn = t`
2789
2872
  query GetAllQuotas {
2790
2873
  getAllQuotas {
2791
2874
  ...QuotaFields
2792
2875
  }
2793
2876
  }
2794
2877
  ${ne}`;
2795
- function Bn(t) {
2878
+ function Un(t) {
2796
2879
  let r = {
2797
2880
  ...n,
2798
2881
  ...t
2799
2882
  };
2800
- return e.useQuery(zn, r);
2883
+ return e.useQuery(Hn, r);
2801
2884
  }
2802
- var Vn = t`
2885
+ var Wn = t`
2803
2886
  query GetPlan($id: ID!) {
2804
2887
  getPlan(id: $id) {
2805
2888
  ...PlanWithFeaturesFields
2806
2889
  }
2807
2890
  }
2808
2891
  ${b}`;
2809
- function Hn(t) {
2892
+ function Gn(t) {
2810
2893
  let r = {
2811
2894
  ...n,
2812
2895
  ...t
2813
2896
  };
2814
- return e.useQuery(Vn, r);
2897
+ return e.useQuery(Wn, r);
2815
2898
  }
2816
2899
  t`
2817
2900
  query GetPlanEntitlements($planId: ID!) {
@@ -2826,7 +2909,7 @@ t`
2826
2909
  }
2827
2910
  }
2828
2911
  `;
2829
- var Un = t`
2912
+ var Kn = t`
2830
2913
  mutation CreatePromotion($input: CreatePromotionInput!) {
2831
2914
  createPromotion(input: $input) {
2832
2915
  id
@@ -2844,14 +2927,14 @@ var Un = t`
2844
2927
  }
2845
2928
  }
2846
2929
  `;
2847
- function Wn(t) {
2930
+ function qn(t) {
2848
2931
  let r = {
2849
2932
  ...n,
2850
2933
  ...t
2851
2934
  };
2852
- return e.useMutation(Un, r);
2935
+ return e.useMutation(Kn, r);
2853
2936
  }
2854
- var Gn = t`
2937
+ var Jn = t`
2855
2938
  mutation DeactivatePromotion($id: ID!) {
2856
2939
  deactivatePromotion(id: $id) {
2857
2940
  id
@@ -2859,14 +2942,14 @@ var Gn = t`
2859
2942
  }
2860
2943
  }
2861
2944
  `;
2862
- function Kn(t) {
2945
+ function Yn(t) {
2863
2946
  let r = {
2864
2947
  ...n,
2865
2948
  ...t
2866
2949
  };
2867
- return e.useMutation(Gn, r);
2950
+ return e.useMutation(Jn, r);
2868
2951
  }
2869
- var qn = t`
2952
+ var Xn = t`
2870
2953
  mutation UpdatePromotion($id: ID!, $input: UpdatePromotionInput!) {
2871
2954
  updatePromotion(id: $id, input: $input) {
2872
2955
  id
@@ -2881,12 +2964,12 @@ var qn = t`
2881
2964
  }
2882
2965
  }
2883
2966
  `;
2884
- function Jn(t) {
2967
+ function Zn(t) {
2885
2968
  let r = {
2886
2969
  ...n,
2887
2970
  ...t
2888
2971
  };
2889
- return e.useMutation(qn, r);
2972
+ return e.useMutation(Xn, r);
2890
2973
  }
2891
2974
  t`
2892
2975
  query GetActivePromotions($productId: String, $planId: String) {
@@ -2901,7 +2984,7 @@ t`
2901
2984
  }
2902
2985
  }
2903
2986
  `;
2904
- var Yn = t`
2987
+ var Qn = t`
2905
2988
  query ListPromotions($includeInactive: Boolean) {
2906
2989
  listPromotions(includeInactive: $includeInactive) {
2907
2990
  id
@@ -2920,12 +3003,12 @@ var Yn = t`
2920
3003
  }
2921
3004
  }
2922
3005
  `;
2923
- function Xn(t) {
3006
+ function $n(t) {
2924
3007
  let r = {
2925
3008
  ...n,
2926
3009
  ...t
2927
3010
  };
2928
- return e.useQuery(Yn, r);
3011
+ return e.useQuery(Qn, r);
2929
3012
  }
2930
3013
  t`
2931
3014
  mutation AddUsage($billingAccountId: ID!, $quotaName: String!, $value: Int!, $description: String!, $userId: ID, $productId: String, $hash: String, $tags: JSON) {
@@ -2941,17 +3024,17 @@ t`
2941
3024
  )
2942
3025
  }
2943
3026
  `;
2944
- var Zn = t`
3027
+ var er = t`
2945
3028
  mutation CreateQuotaTemplate($input: createQuotaInput!) {
2946
3029
  createQuota(input: $input)
2947
3030
  }
2948
3031
  `;
2949
- function Qn(t) {
3032
+ function tr(t) {
2950
3033
  let r = {
2951
3034
  ...n,
2952
3035
  ...t
2953
3036
  };
2954
- return e.useMutation(Zn, r);
3037
+ return e.useMutation(er, r);
2955
3038
  }
2956
3039
  t`
2957
3040
  mutation FreeUpUsage($billingAccountId: ID!, $quotaName: String!, $value: Int!, $description: String, $userId: ID, $productId: String, $hash: String, $tags: JSON) {
@@ -2967,17 +3050,17 @@ t`
2967
3050
  )
2968
3051
  }
2969
3052
  `;
2970
- var $n = t`
3053
+ var nr = t`
2971
3054
  mutation UpdateQuotaTemplate($input: updateQuotaInput!) {
2972
3055
  updateQuota(input: $input)
2973
3056
  }
2974
3057
  `;
2975
- function er(t) {
3058
+ function rr(t) {
2976
3059
  let r = {
2977
3060
  ...n,
2978
3061
  ...t
2979
3062
  };
2980
- return e.useMutation($n, r);
3063
+ return e.useMutation(nr, r);
2981
3064
  }
2982
3065
  t`
2983
3066
  query CheckQuotaExhausted($billingAccountId: ID!, $quotaName: String!, $productId: String) {
@@ -2998,7 +3081,7 @@ var Y = t`
2998
3081
  }
2999
3082
  }
3000
3083
  ${ie}`;
3001
- function tr(t) {
3084
+ function ir(t) {
3002
3085
  let r = {
3003
3086
  ...n,
3004
3087
  ...t
@@ -3110,7 +3193,7 @@ t`
3110
3193
  }
3111
3194
  }
3112
3195
  `;
3113
- var nr = t`
3196
+ var ar = t`
3114
3197
  mutation ArchiveBillingAccountSettings($id: ID!, $reason: String, $replacementDefaultBillingAccountId: ID) {
3115
3198
  archiveBillingAccount(
3116
3199
  id: $id
@@ -3122,7 +3205,7 @@ var nr = t`
3122
3205
  isDefault
3123
3206
  }
3124
3207
  }
3125
- `, rr = t`
3208
+ `, or = t`
3126
3209
  mutation SetDefaultBillingAccountSettings($id: ID!) {
3127
3210
  setDefaultBillingAccount(id: $id) {
3128
3211
  id
@@ -3134,14 +3217,14 @@ var nr = t`
3134
3217
  }
3135
3218
  }
3136
3219
  `;
3137
- function ir(t) {
3220
+ function sr(t) {
3138
3221
  let r = {
3139
3222
  ...n,
3140
3223
  ...t
3141
3224
  };
3142
- return e.useMutation(rr, r);
3225
+ return e.useMutation(or, r);
3143
3226
  }
3144
- var ar = t`
3227
+ var cr = t`
3145
3228
  mutation UpdateBillingAccountSettings($input: UpdateBillingAccountInput!) {
3146
3229
  updateBillingAccount(input: $input) {
3147
3230
  id
@@ -3156,14 +3239,14 @@ var ar = t`
3156
3239
  }
3157
3240
  }
3158
3241
  `;
3159
- function or(t) {
3242
+ function lr(t) {
3160
3243
  let r = {
3161
3244
  ...n,
3162
3245
  ...t
3163
3246
  };
3164
- return e.useMutation(ar, r);
3247
+ return e.useMutation(cr, r);
3165
3248
  }
3166
- var sr = t`
3249
+ var ur = t`
3167
3250
  query GetBillingAccountSettings($id: ID!) {
3168
3251
  getBillingAccount(id: $id) {
3169
3252
  id
@@ -3181,14 +3264,14 @@ var sr = t`
3181
3264
  }
3182
3265
  }
3183
3266
  `;
3184
- function cr(t) {
3267
+ function dr(t) {
3185
3268
  let r = {
3186
3269
  ...n,
3187
3270
  ...t
3188
3271
  };
3189
- return e.useQuery(sr, r);
3272
+ return e.useQuery(ur, r);
3190
3273
  }
3191
- var lr = t`
3274
+ var fr = t`
3192
3275
  query GetBillingAccountsSettings {
3193
3276
  getBillingAccountsByOrg {
3194
3277
  id
@@ -3200,14 +3283,14 @@ var lr = t`
3200
3283
  }
3201
3284
  }
3202
3285
  `;
3203
- function ur(t) {
3286
+ function pr(t) {
3204
3287
  let r = {
3205
3288
  ...n,
3206
3289
  ...t
3207
3290
  };
3208
- return e.useQuery(lr, r);
3291
+ return e.useQuery(fr, r);
3209
3292
  }
3210
- var dr = t`
3293
+ var mr = t`
3211
3294
  query GetDefaultBillingAccountSettings {
3212
3295
  getDefaultBillingAccount {
3213
3296
  id
@@ -3225,42 +3308,42 @@ var dr = t`
3225
3308
  }
3226
3309
  }
3227
3310
  `;
3228
- function fr(t) {
3311
+ function hr(t) {
3229
3312
  let r = {
3230
3313
  ...n,
3231
3314
  ...t
3232
3315
  };
3233
- return e.useQuery(dr, r);
3316
+ return e.useQuery(mr, r);
3234
3317
  }
3235
- var pr = t`
3318
+ var gr = t`
3236
3319
  mutation UpdateSubscriptionSeats($input: UpdateSubscriptionSeatsInput!) {
3237
3320
  updateSubscriptionSeats(input: $input) {
3238
3321
  ...SubscriptionFields
3239
3322
  }
3240
3323
  }
3241
3324
  ${C}`;
3242
- function mr(t) {
3325
+ function _r(t) {
3243
3326
  let r = {
3244
3327
  ...n,
3245
3328
  ...t
3246
3329
  };
3247
- return e.useMutation(pr, r);
3330
+ return e.useMutation(gr, r);
3248
3331
  }
3249
- var hr = t`
3332
+ var vr = t`
3250
3333
  mutation CancelSubscription($input: CancelSubscriptionInput!) {
3251
3334
  cancelSubscription(input: $input) {
3252
3335
  ...SubscriptionFields
3253
3336
  }
3254
3337
  }
3255
3338
  ${C}`;
3256
- function gr(t) {
3339
+ function yr(t) {
3257
3340
  let r = {
3258
3341
  ...n,
3259
3342
  ...t
3260
3343
  };
3261
- return e.useMutation(hr, r);
3344
+ return e.useMutation(vr, r);
3262
3345
  }
3263
- var _r = t`
3346
+ var br = t`
3264
3347
  mutation CreateBillingAccountSubscriptions($input: CreateBillingAccountInput!) {
3265
3348
  createBillingAccount(input: $input) {
3266
3349
  id
@@ -3273,14 +3356,14 @@ var _r = t`
3273
3356
  }
3274
3357
  }
3275
3358
  `;
3276
- function vr(t) {
3359
+ function xr(t) {
3277
3360
  let r = {
3278
3361
  ...n,
3279
3362
  ...t
3280
3363
  };
3281
- return e.useMutation(_r, r);
3364
+ return e.useMutation(br, r);
3282
3365
  }
3283
- var yr = t`
3366
+ var Sr = t`
3284
3367
  mutation InitiatePaymentSubscriptions($input: InitiatePaymentInput!) {
3285
3368
  initiatePayment(input: $input) {
3286
3369
  success
@@ -3300,28 +3383,28 @@ var yr = t`
3300
3383
  }
3301
3384
  }
3302
3385
  `;
3303
- function br(t) {
3386
+ function Cr(t) {
3304
3387
  let r = {
3305
3388
  ...n,
3306
3389
  ...t
3307
3390
  };
3308
- return e.useMutation(yr, r);
3391
+ return e.useMutation(Sr, r);
3309
3392
  }
3310
- var xr = t`
3393
+ var wr = t`
3311
3394
  mutation SpendCreditsSubscriptions($input: SpendCreditsInput!) {
3312
3395
  spendCredits(input: $input) {
3313
3396
  creditTransactionID
3314
3397
  }
3315
3398
  }
3316
3399
  `;
3317
- function Sr(t) {
3400
+ function Tr(t) {
3318
3401
  let r = {
3319
3402
  ...n,
3320
3403
  ...t
3321
3404
  };
3322
- return e.useMutation(xr, r);
3405
+ return e.useMutation(wr, r);
3323
3406
  }
3324
- var Cr = t`
3407
+ var Er = t`
3325
3408
  mutation UpdateBillingAccountSubscriptions($input: UpdateBillingAccountInput!) {
3326
3409
  updateBillingAccount(input: $input) {
3327
3410
  id
@@ -3335,12 +3418,12 @@ var Cr = t`
3335
3418
  }
3336
3419
  }
3337
3420
  `;
3338
- function wr(t) {
3421
+ function Dr(t) {
3339
3422
  let r = {
3340
3423
  ...n,
3341
3424
  ...t
3342
3425
  };
3343
- return e.useMutation(Cr, r);
3426
+ return e.useMutation(Er, r);
3344
3427
  }
3345
3428
  var X = t`
3346
3429
  query GetBillingAccount($id: ID!) {
@@ -3364,14 +3447,14 @@ var X = t`
3364
3447
  }
3365
3448
  }
3366
3449
  ${w}`;
3367
- function Tr(t) {
3450
+ function Z(t) {
3368
3451
  let r = {
3369
3452
  ...n,
3370
3453
  ...t
3371
3454
  };
3372
3455
  return e.useQuery(X, r);
3373
3456
  }
3374
- var Er = t`
3457
+ var Or = t`
3375
3458
  query GetBillingAccountsForSubscriptions {
3376
3459
  getBillingAccountsByOrg {
3377
3460
  id
@@ -3383,14 +3466,14 @@ var Er = t`
3383
3466
  }
3384
3467
  }
3385
3468
  `;
3386
- function Dr(t) {
3469
+ function kr(t) {
3387
3470
  let r = {
3388
3471
  ...n,
3389
3472
  ...t
3390
3473
  };
3391
- return e.useQuery(Er, r);
3474
+ return e.useQuery(Or, r);
3392
3475
  }
3393
- var Z = t`
3476
+ var Q = t`
3394
3477
  query GetDefaultBillingAccount {
3395
3478
  getDefaultBillingAccount {
3396
3479
  id
@@ -3408,14 +3491,14 @@ var Z = t`
3408
3491
  }
3409
3492
  }
3410
3493
  ${w}`;
3411
- function Or(t) {
3494
+ function Ar(t) {
3412
3495
  let r = {
3413
3496
  ...n,
3414
3497
  ...t
3415
3498
  };
3416
- return e.useQuery(Z, r);
3499
+ return e.useQuery(Q, r);
3417
3500
  }
3418
- var kr = t`
3501
+ var jr = t`
3419
3502
  query GetPaginatedSubscriptions($billingAccountId: ID!, $page: Int, $pageSize: Int, $search: String) {
3420
3503
  getPaginatedSubscriptions(
3421
3504
  billingAccountId: $billingAccountId
@@ -3438,26 +3521,26 @@ var kr = t`
3438
3521
  }
3439
3522
  }
3440
3523
  ${w}`;
3441
- function Ar(t) {
3524
+ function Mr(t) {
3442
3525
  let r = {
3443
3526
  ...n,
3444
3527
  ...t
3445
3528
  };
3446
- return e.useQuery(kr, r);
3529
+ return e.useQuery(jr, r);
3447
3530
  }
3448
- var Q = t`
3531
+ var $ = t`
3449
3532
  query GetSubscription($id: ID!, $billingAccountId: ID!) {
3450
3533
  getSubscription(id: $id, billingAccountId: $billingAccountId) {
3451
3534
  ...SubscriptionFullFields
3452
3535
  }
3453
3536
  }
3454
3537
  ${ae}`;
3455
- function jr(t) {
3538
+ function Nr(t) {
3456
3539
  let r = {
3457
3540
  ...n,
3458
3541
  ...t
3459
3542
  };
3460
- return e.useQuery(Q, r);
3543
+ return e.useQuery($, r);
3461
3544
  }
3462
3545
  t`
3463
3546
  query GetSubscriptionUsageOverview($billingAccountId: ID!, $page: Int, $pageSize: Int) {
@@ -3480,7 +3563,7 @@ t`
3480
3563
  }
3481
3564
  }
3482
3565
  `;
3483
- var Mr = t`
3566
+ var Pr = t`
3484
3567
  query GetBillingAccountQuotasSummaryForUsage($billingAccountId: ID!, $productId: String) {
3485
3568
  getBillingAccountQuotasSummary(
3486
3569
  billingAccountId: $billingAccountId
@@ -3506,14 +3589,14 @@ var Mr = t`
3506
3589
  }
3507
3590
  }
3508
3591
  `;
3509
- function Nr(t) {
3592
+ function Fr(t) {
3510
3593
  let r = {
3511
3594
  ...n,
3512
3595
  ...t
3513
3596
  };
3514
- return e.useQuery(Mr, r);
3597
+ return e.useQuery(Pr, r);
3515
3598
  }
3516
- var Pr = t`
3599
+ var Ir = t`
3517
3600
  query GetBillingAccountsForUsage {
3518
3601
  getBillingAccountsByOrg {
3519
3602
  id
@@ -3526,14 +3609,14 @@ var Pr = t`
3526
3609
  }
3527
3610
  }
3528
3611
  `;
3529
- function Fr(t) {
3612
+ function Lr(t) {
3530
3613
  let r = {
3531
3614
  ...n,
3532
3615
  ...t
3533
3616
  };
3534
- return e.useQuery(Pr, r);
3617
+ return e.useQuery(Ir, r);
3535
3618
  }
3536
- var Ir = t`
3619
+ var Rr = t`
3537
3620
  query GetPastSubscriptionsWithQuotas($billingAccountId: ID!, $searchQuery: String, $page: Int, $pageSize: Int) {
3538
3621
  getSubscriptionUsageOverview(
3539
3622
  billingAccountId: $billingAccountId
@@ -3558,12 +3641,12 @@ var Ir = t`
3558
3641
  }
3559
3642
  }
3560
3643
  `;
3561
- function Lr(t) {
3644
+ function zr(t) {
3562
3645
  let r = {
3563
3646
  ...n,
3564
3647
  ...t
3565
3648
  };
3566
- return e.useQuery(Ir, r);
3649
+ return e.useQuery(Rr, r);
3567
3650
  }
3568
3651
  t`
3569
3652
  query GetQuotaAnalyticsForUsage($quotaAssignmentId: ID!, $billingAccountId: ID!, $period: AnalyticsPeriod) {
@@ -3624,7 +3707,7 @@ t`
3624
3707
  }
3625
3708
  }
3626
3709
  `;
3627
- var $ = t`
3710
+ var Br = t`
3628
3711
  query GetSubscriptionsWithQuotas($billingAccountId: ID!, $searchQuery: String) {
3629
3712
  getSubscriptionUsageOverview(
3630
3713
  billingAccountId: $billingAccountId
@@ -3648,26 +3731,26 @@ var $ = t`
3648
3731
  }
3649
3732
  }
3650
3733
  `;
3651
- function Rr(t) {
3734
+ function Vr(t) {
3652
3735
  let r = {
3653
3736
  ...n,
3654
3737
  ...t
3655
3738
  };
3656
- return e.useQuery($, r);
3739
+ return e.useQuery(Br, r);
3657
3740
  }
3658
- var zr = t`
3741
+ var Hr = t`
3659
3742
  query GetUsageDashboard($billingAccountId: ID!, $period: AnalyticsPeriod) {
3660
3743
  getUsageDashboard(billingAccountId: $billingAccountId, period: $period) {
3661
3744
  ...UsageDashboardFields
3662
3745
  }
3663
3746
  }
3664
3747
  ${oe}`;
3665
- function Br(t) {
3748
+ function Ur(t) {
3666
3749
  let r = {
3667
3750
  ...n,
3668
3751
  ...t
3669
3752
  };
3670
- return e.useQuery(zr, r);
3753
+ return e.useQuery(Hr, r);
3671
3754
  }
3672
3755
  t`
3673
3756
  query GetMyOrders {
@@ -3703,6 +3786,6 @@ t`
3703
3786
  }
3704
3787
  `;
3705
3788
  //#endregion
3706
- export { gn as AddPayoutAccountDocument, Cn as AdminPayoutRequestsDocument, wn as AdminPayoutSummaryDocument, _n as ApprovePayoutRequestDocument, nr as ArchiveBillingAccountSettingsDocument, vn as ArchivePayoutAccountDocument, Tn 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, Z as GetDefaultBillingAccountDocument, Se as GetInvoicesDocument, Te as GetPendingRefundsDocument, H as GetRefundRecordsDocument, U as GetRefundStatsDocument, Q as GetSubscriptionDocument, W as GetTransactionDocument, G as GetUnprocessedFailedWebhooksDocument, wt as GrantCreditsDocument, yn as MarkPayoutPaidDocument, En as MyEarningsEntriesDocument, Dn as MyEarningsSummaryDocument, On as MyPayoutAccountsDocument, kn as MyPayoutRequestsDocument, bn as RejectPayoutRequestDocument, Tt as RequestCreditWithdrawalDocument, xn as SetDefaultPayoutAccountDocument, Sn as UpdatePayoutAccountDocument, Mt as useAddPaymentMethodDashboardMutation, jn as useAssignPlanFreeMutation, gr as useCancelSubscriptionMutation, ze as useConvertCurrencyLazyQuery, ce as useCreateAddOnsMutation, Pt as useCreateBillingAccountMutation, vr as useCreateBillingAccountSubscriptionsMutation, Ne as useCreateBillingOrderCheckoutMutation, lt as useCreateCouponMutation, Ct as useCreateCreditNoteMutation, ln as useCreateDiscountMutation, Nn as useCreatePlanMutation, Wn as useCreatePromotionMutation, Qn as useCreateQuotaTemplateMutation, P as useCreateRefundRecordFromWebhookMutation, M as useCreateRefundRecordMutation, I as useCreateRefundRecordsFromFailedWebhooksMutation, dt as useDeactivateCouponMutation, Kn as useDeactivatePromotionMutation, dn as useDeleteDiscountMutation, It as useDeletePaymentMethodDashboardMutation, R as useGenerateInvoiceMutation, Ve as useGetActiveSubscriptionsCheckoutQuery, E as useGetAllAddOnsQuery, Rn as useGetAllPlansQuery, tr as useGetAllQuotaTemplatesQuery, Bn as useGetAllQuotasQuery, Ot as useGetBillingAccountCreditTransactionsQuery, Tr as useGetBillingAccountQuery, Nr as useGetBillingAccountQuotasSummaryForUsageQuery, cr as useGetBillingAccountSettingsQuery, Zt as useGetBillingAccountsByOrgQuery, Ge as useGetBillingAccountsCheckoutQuery, Dr as useGetBillingAccountsForSubscriptionsQuery, Fr as useGetBillingAccountsForUsageQuery, ur 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, Or as useGetDefaultBillingAccountQuery, fr as useGetDefaultBillingAccountSettingsQuery, hn as useGetDiscountsQuery, xe as useGetInvoiceQuery, we as useGetPaginatedInvoicesQuery, Ar as useGetPaginatedSubscriptionsQuery, Lr as useGetPastSubscriptionsWithQuotasQuery, $e as useGetPaymentMethodsCheckoutQuery, tt as useGetPaymentProviderConfigCheckoutQuery, sn as useGetPaymentProviderConfigQuery, rt as useGetPaymentStatusLazyQuery, at as useGetPlanCheckoutQuery, Hn as useGetPlanQuery, Ee as useGetRefundRecordsQuery, De as useGetRefundStatsQuery, Ue as useGetSelectedAddonCheckoutQuery, O as useGetSelectedAddonsQuery, st as useGetStoreOrderCheckoutQuery, jr as useGetSubscriptionQuery, Rr as useGetSubscriptionsWithQuotasQuery, Oe as useGetTransactionLazyQuery, Ae as useGetTransactionsByBillingAccountQuery, je as useGetUnprocessedFailedWebhooksQuery, Br as useGetUsageDashboardQuery, Fe as useInitiatePaymentCheckoutMutation, Rt as useInitiatePaymentMutation, br as useInitiatePaymentSubscriptionsMutation, yt as useListCouponsQuery, Xn as useListPromotionsQuery, B as usePayInvoiceMutation, pe as useProcessRefundMutation, he as useRetryRefundMutation, Bt as useSetBillingAddressMutation, Ht as useSetDefaultBillingAccountMutation, ir as useSetDefaultBillingAccountSettingsMutation, _e as useSkipRefundMutation, Le as useSpendCreditsCheckoutMutation, Wt as useSpendCreditsMutation, Sr as useSpendCreditsSubscriptionsMutation, ue as useToggleAddOnMutation, Fn as useTogglePlanMutation, fe as useUpdateAddOnDetailsMutation, Kt as useUpdateBillingAccountMutation, or as useUpdateBillingAccountSettingsMutation, wr as useUpdateBillingAccountSubscriptionsMutation, pt as useUpdateCouponMutation, pn as useUpdateDiscountMutation, Jt as useUpdatePaymentMethodDashboardMutation, Ln as useUpdatePlanMutation, Jn as useUpdatePromotionMutation, er as useUpdateQuotaTemplateMutation, mr as useUpdateSubscriptionSeatsMutation, xt as useValidateCouponLazyQuery, Xt as useVerifyPaymentMethodMutation, ye as useVoidInvoiceMutation };
3789
+ 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 };
3707
3790
 
3708
3791
  //# sourceMappingURL=global-operations.js.map