@lumeweb/portal-sdk 0.1.5 → 0.1.6

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.
@@ -1,6 +1,6 @@
1
1
  //#region src/account/generated/accountAPI.schemas.d.ts
2
2
  /**
3
- * Generated by orval v8.10.0 🍺
3
+ * Generated by orval v8.18.0 🍺
4
4
  * Do not edit manually.
5
5
  * Account API
6
6
  * API endpoints for managing user accounts, authentication, and API keys.
@@ -1,5 +1,5 @@
1
1
  import { faker } from "@faker-js/faker";
2
- import { HttpResponse, delay, http } from "msw";
2
+ import { HttpResponse, http } from "msw";
3
3
 
4
4
  //#region src/account/generated/billing.ts
5
5
  const getGetApiAccountBillingBalanceUrl = () => {
@@ -102,7 +102,7 @@ const postApiAccountBillingChangePlan = async (changePlanRequest, options) => {
102
102
  const getGetApiAccountBillingCheckoutSessionSessionIdStatusUrl = (sessionId, params) => {
103
103
  const normalizedParams = new URLSearchParams();
104
104
  Object.entries(params || {}).forEach(([key, value]) => {
105
- if (value !== void 0) normalizedParams.append(key, value === null ? "null" : value.toString());
105
+ if (value !== void 0) normalizedParams.append(key, value === null ? "null" : String(value));
106
106
  });
107
107
  const stringifiedParams = normalizedParams.toString();
108
108
  return stringifiedParams.length > 0 ? `/api/account/billing/checkout/session/${sessionId}/status?${stringifiedParams}` : `/api/account/billing/checkout/session/${sessionId}/status`;
@@ -130,7 +130,7 @@ const getApiAccountBillingCheckoutSessionSessionIdStatus = async (sessionId, par
130
130
  const getGetApiAccountBillingCheckoutUiPlanIdUrl = (planId, params) => {
131
131
  const normalizedParams = new URLSearchParams();
132
132
  Object.entries(params || {}).forEach(([key, value]) => {
133
- if (value !== void 0) normalizedParams.append(key, value === null ? "null" : value.toString());
133
+ if (value !== void 0) normalizedParams.append(key, value === null ? "null" : String(value));
134
134
  });
135
135
  const stringifiedParams = normalizedParams.toString();
136
136
  return stringifiedParams.length > 0 ? `/api/account/billing/checkout/ui/${planId}?${stringifiedParams}` : `/api/account/billing/checkout/ui/${planId}`;
@@ -876,112 +876,94 @@ const getGetApiBillingPlansResponseMock = (overrideResponse = {}) => ({
876
876
  });
877
877
  const getGetApiAccountBillingBalanceMockHandler = (overrideResponse, options) => {
878
878
  return http.get("*/api/account/billing/balance", async (info) => {
879
- await delay(0);
880
879
  return HttpResponse.json(overrideResponse !== void 0 ? typeof overrideResponse === "function" ? await overrideResponse(info) : overrideResponse : getGetApiAccountBillingBalanceResponseMock(), { status: 200 });
881
880
  }, options);
882
881
  };
883
882
  const getPostApiAccountBillingCancelMockHandler = (overrideResponse, options) => {
884
883
  return http.post("*/api/account/billing/cancel", async (info) => {
885
- await delay(0);
886
884
  return HttpResponse.json(overrideResponse !== void 0 ? typeof overrideResponse === "function" ? await overrideResponse(info) : overrideResponse : getPostApiAccountBillingCancelResponseMock(), { status: 200 });
887
885
  }, options);
888
886
  };
889
887
  const getPostApiAccountBillingCancelAbortMockHandler = (overrideResponse, options) => {
890
888
  return http.post("*/api/account/billing/cancel/abort", async (info) => {
891
- await delay(0);
892
889
  return HttpResponse.json(overrideResponse !== void 0 ? typeof overrideResponse === "function" ? await overrideResponse(info) : overrideResponse : getPostApiAccountBillingCancelAbortResponseMock(), { status: 200 });
893
890
  }, options);
894
891
  };
895
892
  const getPostApiAccountBillingChangePlanMockHandler = (overrideResponse, options) => {
896
893
  return http.post("*/api/account/billing/change-plan", async (info) => {
897
- await delay(0);
898
894
  return HttpResponse.json(overrideResponse !== void 0 ? typeof overrideResponse === "function" ? await overrideResponse(info) : overrideResponse : getPostApiAccountBillingChangePlanResponseMock(), { status: 200 });
899
895
  }, options);
900
896
  };
901
897
  const getGetApiAccountBillingCheckoutSessionSessionIdStatusMockHandler = (overrideResponse, options) => {
902
898
  return http.get("*/api/account/billing/checkout/session/:sessionId/status", async (info) => {
903
- await delay(0);
904
899
  return HttpResponse.json(overrideResponse !== void 0 ? typeof overrideResponse === "function" ? await overrideResponse(info) : overrideResponse : getGetApiAccountBillingCheckoutSessionSessionIdStatusResponseMock(), { status: 200 });
905
900
  }, options);
906
901
  };
907
902
  const getGetApiAccountBillingCheckoutUiPlanIdMockHandler = (overrideResponse, options) => {
908
903
  return http.get("*/api/account/billing/checkout/ui/:planId", async (info) => {
909
- await delay(0);
910
904
  return HttpResponse.json(overrideResponse !== void 0 ? typeof overrideResponse === "function" ? await overrideResponse(info) : overrideResponse : getGetApiAccountBillingCheckoutUiPlanIdResponseMock(), { status: 200 });
911
905
  }, options);
912
906
  };
913
907
  const getGetApiAccountBillingCreditsMockHandler = (overrideResponse, options) => {
914
908
  return http.get("*/api/account/billing/credits", async (info) => {
915
- await delay(0);
916
909
  return HttpResponse.json(overrideResponse !== void 0 ? typeof overrideResponse === "function" ? await overrideResponse(info) : overrideResponse : getGetApiAccountBillingCreditsResponseMock(), { status: 200 });
917
910
  }, options);
918
911
  };
919
912
  const getPostApiAccountBillingCustomerPortalMockHandler = (overrideResponse, options) => {
920
913
  return http.post("*/api/account/billing/customer-portal", async (info) => {
921
- await delay(0);
922
914
  return HttpResponse.json(overrideResponse !== void 0 ? typeof overrideResponse === "function" ? await overrideResponse(info) : overrideResponse : getPostApiAccountBillingCustomerPortalResponseMock(), { status: 200 });
923
915
  }, options);
924
916
  };
925
917
  const getPostApiAccountBillingManagementMockHandler = (overrideResponse, options) => {
926
918
  return http.post("*/api/account/billing/management", async (info) => {
927
- await delay(0);
928
919
  return HttpResponse.json(overrideResponse !== void 0 ? typeof overrideResponse === "function" ? await overrideResponse(info) : overrideResponse : getPostApiAccountBillingManagementResponseMock(), { status: 200 });
929
920
  }, options);
930
921
  };
931
922
  const getGetApiAccountBillingManagementCapabilitiesMockHandler = (overrideResponse, options) => {
932
923
  return http.get("*/api/account/billing/management/capabilities", async (info) => {
933
- await delay(0);
934
924
  return HttpResponse.json(overrideResponse !== void 0 ? typeof overrideResponse === "function" ? await overrideResponse(info) : overrideResponse : getGetApiAccountBillingManagementCapabilitiesResponseMock(), { status: 200 });
935
925
  }, options);
936
926
  };
937
927
  const getPostApiAccountBillingPauseMockHandler = (overrideResponse, options) => {
938
928
  return http.post("*/api/account/billing/pause", async (info) => {
939
- await delay(0);
940
929
  return HttpResponse.json(overrideResponse !== void 0 ? typeof overrideResponse === "function" ? await overrideResponse(info) : overrideResponse : getPostApiAccountBillingPauseResponseMock(), { status: 200 });
941
930
  }, options);
942
931
  };
943
932
  const getPostApiAccountBillingResumeMockHandler = (overrideResponse, options) => {
944
933
  return http.post("*/api/account/billing/resume", async (info) => {
945
- await delay(0);
946
934
  return HttpResponse.json(overrideResponse !== void 0 ? typeof overrideResponse === "function" ? await overrideResponse(info) : overrideResponse : getPostApiAccountBillingResumeResponseMock(), { status: 200 });
947
935
  }, options);
948
936
  };
949
937
  const getGetApiAccountBillingSubscriptionMockHandler = (overrideResponse, options) => {
950
938
  return http.get("*/api/account/billing/subscription", async (info) => {
951
- await delay(0);
952
939
  return HttpResponse.json(overrideResponse !== void 0 ? typeof overrideResponse === "function" ? await overrideResponse(info) : overrideResponse : getGetApiAccountBillingSubscriptionResponseMock(), { status: 200 });
953
940
  }, options);
954
941
  };
955
942
  const getGetApiAccountBillingSubscriptionEventsMockHandler = (overrideResponse, options) => {
956
943
  return http.get("*/api/account/billing/subscription/events", async (info) => {
957
- await delay(0);
958
944
  if (typeof overrideResponse === "function") await overrideResponse(info);
959
945
  return new HttpResponse(null, { status: 200 });
960
946
  }, options);
961
947
  };
962
948
  const getPostApiAccountBillingWebhooksGatewayTypeMockHandler = (overrideResponse, options) => {
963
949
  return http.post("*/api/account/billing/webhooks/:gatewayType", async (info) => {
964
- await delay(0);
965
950
  const resolvedBody = overrideResponse !== void 0 ? typeof overrideResponse === "function" ? await overrideResponse(info) : overrideResponse : getPostApiAccountBillingWebhooksGatewayTypeResponseMock();
966
951
  return resolvedBody === void 0 ? new HttpResponse(null, { status: 204 }) : HttpResponse.json(resolvedBody, { status: 200 });
967
952
  }, options);
968
953
  };
969
954
  const getGetApiBillingGatewaysMockHandler = (overrideResponse, options) => {
970
955
  return http.get("*/api/billing/gateways", async (info) => {
971
- await delay(0);
972
956
  return HttpResponse.json(overrideResponse !== void 0 ? typeof overrideResponse === "function" ? await overrideResponse(info) : overrideResponse : getGetApiBillingGatewaysResponseMock(), { status: 200 });
973
957
  }, options);
974
958
  };
975
959
  const getGetApiBillingGatewaysIdLogoMockHandler = (overrideResponse, options) => {
976
960
  return http.get("*/api/billing/gateways/:id/logo", async (info) => {
977
- await delay(0);
978
961
  if (typeof overrideResponse === "function") await overrideResponse(info);
979
962
  return new HttpResponse(null, { status: 200 });
980
963
  }, options);
981
964
  };
982
965
  const getGetApiBillingPlansMockHandler = (overrideResponse, options) => {
983
966
  return http.get("*/api/billing/plans", async (info) => {
984
- await delay(0);
985
967
  return HttpResponse.json(overrideResponse !== void 0 ? typeof overrideResponse === "function" ? await overrideResponse(info) : overrideResponse : getGetApiBillingPlansResponseMock(), { status: 200 });
986
968
  }, options);
987
969
  };
@@ -1 +1 @@
1
- {"version":3,"file":"billing.js","names":[],"sources":["../../../../src/account/generated/billing.ts"],"sourcesContent":["/**\n * Generated by orval v8.10.0 🍺\n * Do not edit manually.\n * Account API\n * API endpoints for managing user accounts, authentication, and API keys.\n * OpenAPI spec version: v0.2.7-0.20260418132608-572560c6efd0\n */\nimport type {\n BalanceResponse,\n ChangePlanRequest,\n CheckoutSessionStatusResponse,\n CheckoutUIResponse,\n ErrorResponse,\n GatewayListResponse,\n GetApiAccountBillingCheckoutSessionSessionIdStatusParams,\n GetApiAccountBillingCheckoutUiPlanIdParams,\n ManagementCapabilitiesResponse,\n ManagementRequest,\n ManagementResultResponse,\n PostApiAccountBillingWebhooksGatewayTypeBody,\n PublicPricingPlansListResponse,\n SubscriptionStatusResponse,\n UserCreditsListResponse\n} from './accountAPI.schemas';\n\nimport {\n faker\n} from '@faker-js/faker';\n\nimport {\n HttpResponse,\n delay,\n http\n} from 'msw';\nimport type {\n RequestHandlerOptions\n} from 'msw';\n\n\n\nexport type getApiAccountBillingBalanceResponse200 = {\n data: BalanceResponse\n status: 200\n}\n\nexport type getApiAccountBillingBalanceResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountBillingBalanceResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountBillingBalanceResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountBillingBalanceResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountBillingBalanceResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountBillingBalanceResponseSuccess = (getApiAccountBillingBalanceResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountBillingBalanceResponseError = (getApiAccountBillingBalanceResponse400 | getApiAccountBillingBalanceResponse401 | getApiAccountBillingBalanceResponse403 | getApiAccountBillingBalanceResponse404 | getApiAccountBillingBalanceResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountBillingBalanceResponse = (getApiAccountBillingBalanceResponseSuccess | getApiAccountBillingBalanceResponseError)\n\nexport const getGetApiAccountBillingBalanceUrl = () => {\n\n\n\n\n return `/api/account/billing/balance`\n}\n\n/**\n * Returns the authenticated user's current credit balance. Positive balance indicates available credits, negative balance indicates outstanding dues.\n * @summary Get Current User's Credit Balance\n */\nexport const getApiAccountBillingBalance = async ( options?: RequestInit): Promise<getApiAccountBillingBalanceResponse> => {\n\n const res = await fetch(getGetApiAccountBillingBalanceUrl(),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiAccountBillingBalanceResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountBillingBalanceResponse\n}\n\n\nexport type postApiAccountBillingCancelResponse200 = {\n data: ManagementResultResponse\n status: 200\n}\n\nexport type postApiAccountBillingCancelResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingCancelResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingCancelResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingCancelResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingCancelResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingCancelResponseSuccess = (postApiAccountBillingCancelResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountBillingCancelResponseError = (postApiAccountBillingCancelResponse400 | postApiAccountBillingCancelResponse401 | postApiAccountBillingCancelResponse403 | postApiAccountBillingCancelResponse404 | postApiAccountBillingCancelResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingCancelResponse = (postApiAccountBillingCancelResponseSuccess | postApiAccountBillingCancelResponseError)\n\nexport const getPostApiAccountBillingCancelUrl = () => {\n\n\n\n\n return `/api/account/billing/cancel`\n}\n\n/**\n * Executes the cancel operation on the current subscription. Validates that the gateway supports cancellation and returns the appropriate action\n * @summary Cancel subscription\n */\nexport const postApiAccountBillingCancel = async ( options?: RequestInit): Promise<postApiAccountBillingCancelResponse> => {\n\n const res = await fetch(getPostApiAccountBillingCancelUrl(),\n {\n ...options,\n method: 'POST'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingCancelResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingCancelResponse\n}\n\n\nexport type postApiAccountBillingCancelAbortResponse200 = {\n data: ManagementResultResponse\n status: 200\n}\n\nexport type postApiAccountBillingCancelAbortResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingCancelAbortResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingCancelAbortResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingCancelAbortResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingCancelAbortResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingCancelAbortResponseSuccess = (postApiAccountBillingCancelAbortResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountBillingCancelAbortResponseError = (postApiAccountBillingCancelAbortResponse400 | postApiAccountBillingCancelAbortResponse401 | postApiAccountBillingCancelAbortResponse403 | postApiAccountBillingCancelAbortResponse404 | postApiAccountBillingCancelAbortResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingCancelAbortResponse = (postApiAccountBillingCancelAbortResponseSuccess | postApiAccountBillingCancelAbortResponseError)\n\nexport const getPostApiAccountBillingCancelAbortUrl = () => {\n\n\n\n\n return `/api/account/billing/cancel/abort`\n}\n\n/**\n * Cancels a scheduled subscription cancellation, restoring the subscription to active status\n * @summary Abort scheduled cancellation\n */\nexport const postApiAccountBillingCancelAbort = async ( options?: RequestInit): Promise<postApiAccountBillingCancelAbortResponse> => {\n\n const res = await fetch(getPostApiAccountBillingCancelAbortUrl(),\n {\n ...options,\n method: 'POST'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingCancelAbortResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingCancelAbortResponse\n}\n\n\nexport type postApiAccountBillingChangePlanResponse200 = {\n data: ManagementResultResponse\n status: 200\n}\n\nexport type postApiAccountBillingChangePlanResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingChangePlanResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingChangePlanResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingChangePlanResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingChangePlanResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingChangePlanResponseSuccess = (postApiAccountBillingChangePlanResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountBillingChangePlanResponseError = (postApiAccountBillingChangePlanResponse400 | postApiAccountBillingChangePlanResponse401 | postApiAccountBillingChangePlanResponse403 | postApiAccountBillingChangePlanResponse404 | postApiAccountBillingChangePlanResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingChangePlanResponse = (postApiAccountBillingChangePlanResponseSuccess | postApiAccountBillingChangePlanResponseError)\n\nexport const getPostApiAccountBillingChangePlanUrl = () => {\n\n\n\n\n return `/api/account/billing/change-plan`\n}\n\n/**\n * Executes the change plan operation on the current subscription. Validates that the gateway supports plan changes and returns the appropriate action\n * @summary Change subscription plan\n */\nexport const postApiAccountBillingChangePlan = async (changePlanRequest: ChangePlanRequest, options?: RequestInit): Promise<postApiAccountBillingChangePlanResponse> => {\n\n const res = await fetch(getPostApiAccountBillingChangePlanUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(changePlanRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingChangePlanResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingChangePlanResponse\n}\n\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse200 = {\n data: CheckoutSessionStatusResponse\n status: 200\n}\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse501 = {\n data: ErrorResponse\n status: 501\n}\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponseSuccess = (getApiAccountBillingCheckoutSessionSessionIdStatusResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponseError = (getApiAccountBillingCheckoutSessionSessionIdStatusResponse400 | getApiAccountBillingCheckoutSessionSessionIdStatusResponse401 | getApiAccountBillingCheckoutSessionSessionIdStatusResponse403 | getApiAccountBillingCheckoutSessionSessionIdStatusResponse404 | getApiAccountBillingCheckoutSessionSessionIdStatusResponse500 | getApiAccountBillingCheckoutSessionSessionIdStatusResponse501) & {\n headers: Headers;\n};\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse = (getApiAccountBillingCheckoutSessionSessionIdStatusResponseSuccess | getApiAccountBillingCheckoutSessionSessionIdStatusResponseError)\n\nexport const getGetApiAccountBillingCheckoutSessionSessionIdStatusUrl = (sessionId: string,\n params?: GetApiAccountBillingCheckoutSessionSessionIdStatusParams,) => {\n const normalizedParams = new URLSearchParams();\n\n Object.entries(params || {}).forEach(([key, value]) => {\n\n if (value !== undefined) {\n normalizedParams.append(key, value === null ? 'null' : value.toString())\n }\n });\n\n const stringifiedParams = normalizedParams.toString();\n\n return stringifiedParams.length > 0 ? `/api/account/billing/checkout/session/${sessionId}/status?${stringifiedParams}` : `/api/account/billing/checkout/session/${sessionId}/status`\n}\n\n/**\n * Returns the status of a checkout session. Used by embedded checkout return pages to verify payment completion and retrieve customer information. Returns 501 if the gateway does not support session status retrieval.\n * @summary Get Checkout Session Status\n */\nexport const getApiAccountBillingCheckoutSessionSessionIdStatus = async (sessionId: string,\n params?: GetApiAccountBillingCheckoutSessionSessionIdStatusParams, options?: RequestInit): Promise<getApiAccountBillingCheckoutSessionSessionIdStatusResponse> => {\n\n const res = await fetch(getGetApiAccountBillingCheckoutSessionSessionIdStatusUrl(sessionId,params),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiAccountBillingCheckoutSessionSessionIdStatusResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountBillingCheckoutSessionSessionIdStatusResponse\n}\n\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse200 = {\n data: CheckoutUIResponse\n status: 200\n}\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse409 = {\n data: ErrorResponse\n status: 409\n}\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponseSuccess = (getApiAccountBillingCheckoutUiPlanIdResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountBillingCheckoutUiPlanIdResponseError = (getApiAccountBillingCheckoutUiPlanIdResponse400 | getApiAccountBillingCheckoutUiPlanIdResponse401 | getApiAccountBillingCheckoutUiPlanIdResponse403 | getApiAccountBillingCheckoutUiPlanIdResponse404 | getApiAccountBillingCheckoutUiPlanIdResponse409 | getApiAccountBillingCheckoutUiPlanIdResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse = (getApiAccountBillingCheckoutUiPlanIdResponseSuccess | getApiAccountBillingCheckoutUiPlanIdResponseError)\n\nexport const getGetApiAccountBillingCheckoutUiPlanIdUrl = (planId: string,\n params?: GetApiAccountBillingCheckoutUiPlanIdParams,) => {\n const normalizedParams = new URLSearchParams();\n\n Object.entries(params || {}).forEach(([key, value]) => {\n\n if (value !== undefined) {\n normalizedParams.append(key, value === null ? 'null' : value.toString())\n }\n });\n\n const stringifiedParams = normalizedParams.toString();\n\n return stringifiedParams.length > 0 ? `/api/account/billing/checkout/ui/${planId}?${stringifiedParams}` : `/api/account/billing/checkout/ui/${planId}`\n}\n\n/**\n * Returns platform-agnostic UI fragments for checkout. Response format varies by gateway but always contains fragments of type link, html, script, iframe, modal, button, or form\n * @summary Get Checkout UI Fragments\n */\nexport const getApiAccountBillingCheckoutUiPlanId = async (planId: string,\n params?: GetApiAccountBillingCheckoutUiPlanIdParams, options?: RequestInit): Promise<getApiAccountBillingCheckoutUiPlanIdResponse> => {\n\n const res = await fetch(getGetApiAccountBillingCheckoutUiPlanIdUrl(planId,params),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiAccountBillingCheckoutUiPlanIdResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountBillingCheckoutUiPlanIdResponse\n}\n\n\nexport type getApiAccountBillingCreditsResponse200 = {\n data: UserCreditsListResponse\n status: 200\n}\n\nexport type getApiAccountBillingCreditsResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountBillingCreditsResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountBillingCreditsResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountBillingCreditsResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountBillingCreditsResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountBillingCreditsResponseSuccess = (getApiAccountBillingCreditsResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountBillingCreditsResponseError = (getApiAccountBillingCreditsResponse400 | getApiAccountBillingCreditsResponse401 | getApiAccountBillingCreditsResponse403 | getApiAccountBillingCreditsResponse404 | getApiAccountBillingCreditsResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountBillingCreditsResponse = (getApiAccountBillingCreditsResponseSuccess | getApiAccountBillingCreditsResponseError)\n\nexport const getGetApiAccountBillingCreditsUrl = () => {\n\n\n\n\n return `/api/account/billing/credits`\n}\n\n/**\n * Returns the authenticated user's credit transaction history with support for filtering by transaction type, direction, and date range. Results are paginated.\n * @summary Get Current User's Credit History\n */\nexport const getApiAccountBillingCredits = async ( options?: RequestInit): Promise<getApiAccountBillingCreditsResponse> => {\n\n const res = await fetch(getGetApiAccountBillingCreditsUrl(),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiAccountBillingCreditsResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountBillingCreditsResponse\n}\n\n\nexport type postApiAccountBillingCustomerPortalResponse200 = {\n data: ManagementResultResponse\n status: 200\n}\n\nexport type postApiAccountBillingCustomerPortalResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingCustomerPortalResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingCustomerPortalResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingCustomerPortalResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingCustomerPortalResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingCustomerPortalResponseSuccess = (postApiAccountBillingCustomerPortalResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountBillingCustomerPortalResponseError = (postApiAccountBillingCustomerPortalResponse400 | postApiAccountBillingCustomerPortalResponse401 | postApiAccountBillingCustomerPortalResponse403 | postApiAccountBillingCustomerPortalResponse404 | postApiAccountBillingCustomerPortalResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingCustomerPortalResponse = (postApiAccountBillingCustomerPortalResponseSuccess | postApiAccountBillingCustomerPortalResponseError)\n\nexport const getPostApiAccountBillingCustomerPortalUrl = () => {\n\n\n\n\n return `/api/account/billing/customer-portal`\n}\n\n/**\n * Returns a URL to access the generic customer portal for managing subscription\n * @summary Access Customer Portal\n */\nexport const postApiAccountBillingCustomerPortal = async ( options?: RequestInit): Promise<postApiAccountBillingCustomerPortalResponse> => {\n\n const res = await fetch(getPostApiAccountBillingCustomerPortalUrl(),\n {\n ...options,\n method: 'POST'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingCustomerPortalResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingCustomerPortalResponse\n}\n\n\nexport type postApiAccountBillingManagementResponse200 = {\n data: ManagementResultResponse\n status: 200\n}\n\nexport type postApiAccountBillingManagementResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingManagementResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingManagementResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingManagementResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingManagementResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingManagementResponseSuccess = (postApiAccountBillingManagementResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountBillingManagementResponseError = (postApiAccountBillingManagementResponse400 | postApiAccountBillingManagementResponse401 | postApiAccountBillingManagementResponse403 | postApiAccountBillingManagementResponse404 | postApiAccountBillingManagementResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingManagementResponse = (postApiAccountBillingManagementResponseSuccess | postApiAccountBillingManagementResponseError)\n\nexport const getPostApiAccountBillingManagementUrl = () => {\n\n\n\n\n return `/api/account/billing/management`\n}\n\n/**\n * Returns the action and configuration for a specific management operation\n * @summary Get subscription management operation details\n */\nexport const postApiAccountBillingManagement = async (managementRequest: ManagementRequest, options?: RequestInit): Promise<postApiAccountBillingManagementResponse> => {\n\n const res = await fetch(getPostApiAccountBillingManagementUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(managementRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingManagementResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingManagementResponse\n}\n\n\nexport type getApiAccountBillingManagementCapabilitiesResponse200 = {\n data: ManagementCapabilitiesResponse\n status: 200\n}\n\nexport type getApiAccountBillingManagementCapabilitiesResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountBillingManagementCapabilitiesResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountBillingManagementCapabilitiesResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountBillingManagementCapabilitiesResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountBillingManagementCapabilitiesResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountBillingManagementCapabilitiesResponseSuccess = (getApiAccountBillingManagementCapabilitiesResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountBillingManagementCapabilitiesResponseError = (getApiAccountBillingManagementCapabilitiesResponse400 | getApiAccountBillingManagementCapabilitiesResponse401 | getApiAccountBillingManagementCapabilitiesResponse403 | getApiAccountBillingManagementCapabilitiesResponse404 | getApiAccountBillingManagementCapabilitiesResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountBillingManagementCapabilitiesResponse = (getApiAccountBillingManagementCapabilitiesResponseSuccess | getApiAccountBillingManagementCapabilitiesResponseError)\n\nexport const getGetApiAccountBillingManagementCapabilitiesUrl = () => {\n\n\n\n\n return `/api/account/billing/management/capabilities`\n}\n\n/**\n * Returns the subscription management capabilities for the current user's gateway\n * @summary Get subscription management capabilities\n */\nexport const getApiAccountBillingManagementCapabilities = async ( options?: RequestInit): Promise<getApiAccountBillingManagementCapabilitiesResponse> => {\n\n const res = await fetch(getGetApiAccountBillingManagementCapabilitiesUrl(),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiAccountBillingManagementCapabilitiesResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountBillingManagementCapabilitiesResponse\n}\n\n\nexport type postApiAccountBillingPauseResponse200 = {\n data: ManagementResultResponse\n status: 200\n}\n\nexport type postApiAccountBillingPauseResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingPauseResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingPauseResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingPauseResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingPauseResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingPauseResponseSuccess = (postApiAccountBillingPauseResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountBillingPauseResponseError = (postApiAccountBillingPauseResponse400 | postApiAccountBillingPauseResponse401 | postApiAccountBillingPauseResponse403 | postApiAccountBillingPauseResponse404 | postApiAccountBillingPauseResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingPauseResponse = (postApiAccountBillingPauseResponseSuccess | postApiAccountBillingPauseResponseError)\n\nexport const getPostApiAccountBillingPauseUrl = () => {\n\n\n\n\n return `/api/account/billing/pause`\n}\n\n/**\n * Executes the pause operation on the current subscription. Validates that the gateway supports pausing and returns the appropriate action\n * @summary Pause subscription\n */\nexport const postApiAccountBillingPause = async ( options?: RequestInit): Promise<postApiAccountBillingPauseResponse> => {\n\n const res = await fetch(getPostApiAccountBillingPauseUrl(),\n {\n ...options,\n method: 'POST'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingPauseResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingPauseResponse\n}\n\n\nexport type postApiAccountBillingResumeResponse200 = {\n data: ManagementResultResponse\n status: 200\n}\n\nexport type postApiAccountBillingResumeResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingResumeResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingResumeResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingResumeResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingResumeResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingResumeResponseSuccess = (postApiAccountBillingResumeResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountBillingResumeResponseError = (postApiAccountBillingResumeResponse400 | postApiAccountBillingResumeResponse401 | postApiAccountBillingResumeResponse403 | postApiAccountBillingResumeResponse404 | postApiAccountBillingResumeResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingResumeResponse = (postApiAccountBillingResumeResponseSuccess | postApiAccountBillingResumeResponseError)\n\nexport const getPostApiAccountBillingResumeUrl = () => {\n\n\n\n\n return `/api/account/billing/resume`\n}\n\n/**\n * Executes the resume operation on the current subscription. Validates that the gateway supports resuming and returns the appropriate action\n * @summary Resume subscription\n */\nexport const postApiAccountBillingResume = async ( options?: RequestInit): Promise<postApiAccountBillingResumeResponse> => {\n\n const res = await fetch(getPostApiAccountBillingResumeUrl(),\n {\n ...options,\n method: 'POST'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingResumeResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingResumeResponse\n}\n\n\nexport type getApiAccountBillingSubscriptionResponse200 = {\n data: SubscriptionStatusResponse\n status: 200\n}\n\nexport type getApiAccountBillingSubscriptionResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountBillingSubscriptionResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountBillingSubscriptionResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountBillingSubscriptionResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountBillingSubscriptionResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountBillingSubscriptionResponseSuccess = (getApiAccountBillingSubscriptionResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountBillingSubscriptionResponseError = (getApiAccountBillingSubscriptionResponse400 | getApiAccountBillingSubscriptionResponse401 | getApiAccountBillingSubscriptionResponse403 | getApiAccountBillingSubscriptionResponse404 | getApiAccountBillingSubscriptionResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountBillingSubscriptionResponse = (getApiAccountBillingSubscriptionResponseSuccess | getApiAccountBillingSubscriptionResponseError)\n\nexport const getGetApiAccountBillingSubscriptionUrl = () => {\n\n\n\n\n return `/api/account/billing/subscription`\n}\n\n/**\n * Returns the subscription status for the authenticated user\n * @summary Get subscription status\n */\nexport const getApiAccountBillingSubscription = async ( options?: RequestInit): Promise<getApiAccountBillingSubscriptionResponse> => {\n\n const res = await fetch(getGetApiAccountBillingSubscriptionUrl(),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiAccountBillingSubscriptionResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountBillingSubscriptionResponse\n}\n\n\nexport type getApiAccountBillingSubscriptionEventsResponse200 = {\n data: void\n status: 200\n}\n\nexport type getApiAccountBillingSubscriptionEventsResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountBillingSubscriptionEventsResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountBillingSubscriptionEventsResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountBillingSubscriptionEventsResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountBillingSubscriptionEventsResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountBillingSubscriptionEventsResponseSuccess = (getApiAccountBillingSubscriptionEventsResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountBillingSubscriptionEventsResponseError = (getApiAccountBillingSubscriptionEventsResponse400 | getApiAccountBillingSubscriptionEventsResponse401 | getApiAccountBillingSubscriptionEventsResponse403 | getApiAccountBillingSubscriptionEventsResponse404 | getApiAccountBillingSubscriptionEventsResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountBillingSubscriptionEventsResponse = (getApiAccountBillingSubscriptionEventsResponseSuccess | getApiAccountBillingSubscriptionEventsResponseError)\n\nexport const getGetApiAccountBillingSubscriptionEventsUrl = () => {\n\n\n\n\n return `/api/account/billing/subscription/events`\n}\n\n/**\n * Establishes a Server-Sent Events (SSE) connection for real-time subscription updates including payment completions, subscription activations, and plan changes\n * @summary Subscribe to subscription events via SSE\n */\nexport const getApiAccountBillingSubscriptionEvents = async ( options?: RequestInit): Promise<getApiAccountBillingSubscriptionEventsResponse> => {\n\n const res = await fetch(getGetApiAccountBillingSubscriptionEventsUrl(),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiAccountBillingSubscriptionEventsResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as getApiAccountBillingSubscriptionEventsResponse\n}\n\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse200 = {\n data: ErrorResponse\n status: 200\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse204 = {\n data: void\n status: 204\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse413 = {\n data: ErrorResponse\n status: 413\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponseSuccess = (postApiAccountBillingWebhooksGatewayTypeResponse200 | postApiAccountBillingWebhooksGatewayTypeResponse204) & {\n headers: Headers;\n};\nexport type postApiAccountBillingWebhooksGatewayTypeResponseError = (postApiAccountBillingWebhooksGatewayTypeResponse400 | postApiAccountBillingWebhooksGatewayTypeResponse401 | postApiAccountBillingWebhooksGatewayTypeResponse403 | postApiAccountBillingWebhooksGatewayTypeResponse404 | postApiAccountBillingWebhooksGatewayTypeResponse413 | postApiAccountBillingWebhooksGatewayTypeResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse = (postApiAccountBillingWebhooksGatewayTypeResponseSuccess | postApiAccountBillingWebhooksGatewayTypeResponseError)\n\nexport const getPostApiAccountBillingWebhooksGatewayTypeUrl = (gatewayType: string,) => {\n\n\n\n\n return `/api/account/billing/webhooks/${gatewayType}`\n}\n\n/**\n * Handles incoming webhooks from payment gateways such as Stripe, PayPal, etc.\n * @summary Process payment gateway webhook\n */\nexport const postApiAccountBillingWebhooksGatewayType = async (gatewayType: string,\n postApiAccountBillingWebhooksGatewayTypeBody: PostApiAccountBillingWebhooksGatewayTypeBody, options?: RequestInit): Promise<postApiAccountBillingWebhooksGatewayTypeResponse> => {\n\n const res = await fetch(getPostApiAccountBillingWebhooksGatewayTypeUrl(gatewayType),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(postApiAccountBillingWebhooksGatewayTypeBody)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingWebhooksGatewayTypeResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingWebhooksGatewayTypeResponse\n}\n\n\nexport type getApiBillingGatewaysResponse200 = {\n data: GatewayListResponse\n status: 200\n}\n\nexport type getApiBillingGatewaysResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiBillingGatewaysResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiBillingGatewaysResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiBillingGatewaysResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiBillingGatewaysResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiBillingGatewaysResponseSuccess = (getApiBillingGatewaysResponse200) & {\n headers: Headers;\n};\nexport type getApiBillingGatewaysResponseError = (getApiBillingGatewaysResponse400 | getApiBillingGatewaysResponse401 | getApiBillingGatewaysResponse403 | getApiBillingGatewaysResponse404 | getApiBillingGatewaysResponse500) & {\n headers: Headers;\n};\n\nexport type getApiBillingGatewaysResponse = (getApiBillingGatewaysResponseSuccess | getApiBillingGatewaysResponseError)\n\nexport const getGetApiBillingGatewaysUrl = () => {\n\n\n\n\n return `/api/billing/gateways`\n}\n\n/**\n * Returns list of available payment gateways with metadata\n * @summary List Available Payment Gateways\n */\nexport const getApiBillingGateways = async ( options?: RequestInit): Promise<getApiBillingGatewaysResponse> => {\n\n const res = await fetch(getGetApiBillingGatewaysUrl(),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiBillingGatewaysResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiBillingGatewaysResponse\n}\n\n\nexport type getApiBillingGatewaysIdLogoResponse200 = {\n data: void\n status: 200\n}\n\nexport type getApiBillingGatewaysIdLogoResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiBillingGatewaysIdLogoResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiBillingGatewaysIdLogoResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiBillingGatewaysIdLogoResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiBillingGatewaysIdLogoResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiBillingGatewaysIdLogoResponseSuccess = (getApiBillingGatewaysIdLogoResponse200) & {\n headers: Headers;\n};\nexport type getApiBillingGatewaysIdLogoResponseError = (getApiBillingGatewaysIdLogoResponse400 | getApiBillingGatewaysIdLogoResponse401 | getApiBillingGatewaysIdLogoResponse403 | getApiBillingGatewaysIdLogoResponse404 | getApiBillingGatewaysIdLogoResponse500) & {\n headers: Headers;\n};\n\nexport type getApiBillingGatewaysIdLogoResponse = (getApiBillingGatewaysIdLogoResponseSuccess | getApiBillingGatewaysIdLogoResponseError)\n\nexport const getGetApiBillingGatewaysIdLogoUrl = (id: string,) => {\n\n\n\n\n return `/api/billing/gateways/${id}/logo`\n}\n\n/**\n * Returns embedded logo image for payment gateway\n * @summary Get Gateway Logo\n */\nexport const getApiBillingGatewaysIdLogo = async (id: string, options?: RequestInit): Promise<getApiBillingGatewaysIdLogoResponse> => {\n\n const res = await fetch(getGetApiBillingGatewaysIdLogoUrl(id),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiBillingGatewaysIdLogoResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as getApiBillingGatewaysIdLogoResponse\n}\n\n\nexport type getApiBillingPlansResponse200 = {\n data: PublicPricingPlansListResponse\n status: 200\n}\n\nexport type getApiBillingPlansResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiBillingPlansResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiBillingPlansResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiBillingPlansResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiBillingPlansResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiBillingPlansResponseSuccess = (getApiBillingPlansResponse200) & {\n headers: Headers;\n};\nexport type getApiBillingPlansResponseError = (getApiBillingPlansResponse400 | getApiBillingPlansResponse401 | getApiBillingPlansResponse403 | getApiBillingPlansResponse404 | getApiBillingPlansResponse500) & {\n headers: Headers;\n};\n\nexport type getApiBillingPlansResponse = (getApiBillingPlansResponseSuccess | getApiBillingPlansResponseError)\n\nexport const getGetApiBillingPlansUrl = () => {\n\n\n\n\n return `/api/billing/plans`\n}\n\n/**\n * Returns pricing plans with their periods for user's effective price line\n * @summary List Pricing Plans\n */\nexport const getApiBillingPlans = async ( options?: RequestInit): Promise<getApiBillingPlansResponse> => {\n\n const res = await fetch(getGetApiBillingPlansUrl(),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiBillingPlansResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiBillingPlansResponse\n}\n\n\n\n\nexport const getGetApiAccountBillingBalanceResponseMock = (overrideResponse: Partial<Extract<BalanceResponse, object>> = {}): BalanceResponse => ({balance: {}, user_id: faker.number.int(), ...overrideResponse})\n\nexport const getPostApiAccountBillingCancelResponseMock = (overrideResponse: Partial<Extract<ManagementResultResponse, object>> = {}): ManagementResultResponse => ({action: faker.string.alpha({length: {min: 10, max: 20}}), api_endpoint: faker.helpers.arrayElement([{method: faker.string.alpha({length: {min: 10, max: 20}}), path: faker.string.alpha({length: {min: 10, max: 20}})}, undefined]), can_abort: faker.datatype.boolean(), confirmation_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), effective_time: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), error_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), requires_confirmation: faker.datatype.boolean(), status: faker.string.alpha({length: {min: 10, max: 20}}), url: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), ...overrideResponse})\n\nexport const getPostApiAccountBillingCancelAbortResponseMock = (overrideResponse: Partial<Extract<ManagementResultResponse, object>> = {}): ManagementResultResponse => ({action: faker.string.alpha({length: {min: 10, max: 20}}), api_endpoint: faker.helpers.arrayElement([{method: faker.string.alpha({length: {min: 10, max: 20}}), path: faker.string.alpha({length: {min: 10, max: 20}})}, undefined]), can_abort: faker.datatype.boolean(), confirmation_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), effective_time: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), error_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), requires_confirmation: faker.datatype.boolean(), status: faker.string.alpha({length: {min: 10, max: 20}}), url: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), ...overrideResponse})\n\nexport const getPostApiAccountBillingChangePlanResponseMock = (overrideResponse: Partial<Extract<ManagementResultResponse, object>> = {}): ManagementResultResponse => ({action: faker.string.alpha({length: {min: 10, max: 20}}), api_endpoint: faker.helpers.arrayElement([{method: faker.string.alpha({length: {min: 10, max: 20}}), path: faker.string.alpha({length: {min: 10, max: 20}})}, undefined]), can_abort: faker.datatype.boolean(), confirmation_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), effective_time: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), error_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), requires_confirmation: faker.datatype.boolean(), status: faker.string.alpha({length: {min: 10, max: 20}}), url: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), ...overrideResponse})\n\nexport const getGetApiAccountBillingCheckoutSessionSessionIdStatusResponseMock = (overrideResponse: Partial<Extract<CheckoutSessionStatusResponse, object>> = {}): CheckoutSessionStatusResponse => ({customer_email: faker.string.alpha({length: {min: 10, max: 20}}), session_id: faker.string.alpha({length: {min: 10, max: 20}}), status: faker.string.alpha({length: {min: 10, max: 20}}), user_id: faker.number.int(), ...overrideResponse})\n\nexport const getGetApiAccountBillingCheckoutUiPlanIdResponseMock = (overrideResponse: Partial<Extract<CheckoutUIResponse, object>> = {}): CheckoutUIResponse => ({expires_at: faker.date.past().toISOString().slice(0, 19) + 'Z', fragments: Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => ({css: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), html: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), link: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), metadata: faker.helpers.arrayElement([{}, undefined]), script: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), type: faker.string.alpha({length: {min: 10, max: 20}})})), metadata: faker.helpers.arrayElement([{}, undefined]), session_id: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), ...overrideResponse})\n\nexport const getGetApiAccountBillingCreditsResponseMock = (overrideResponse: Partial<Extract<UserCreditsListResponse, object>> = {}): UserCreditsListResponse => ({data: Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => ({amount: {}, created_at: faker.date.past().toISOString().slice(0, 19) + 'Z', description: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), direction: faker.string.alpha({length: {min: 10, max: 20}}), id: Array.from({ length: faker.number.int({min: 16, max: 16}) }, (_, i) => i + 1).map(() => (faker.number.int())), type: faker.string.alpha({length: {min: 10, max: 20}})})), total: faker.number.int(), ...overrideResponse})\n\nexport const getPostApiAccountBillingCustomerPortalResponseMock = (overrideResponse: Partial<Extract<ManagementResultResponse, object>> = {}): ManagementResultResponse => ({action: faker.string.alpha({length: {min: 10, max: 20}}), api_endpoint: faker.helpers.arrayElement([{method: faker.string.alpha({length: {min: 10, max: 20}}), path: faker.string.alpha({length: {min: 10, max: 20}})}, undefined]), can_abort: faker.datatype.boolean(), confirmation_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), effective_time: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), error_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), requires_confirmation: faker.datatype.boolean(), status: faker.string.alpha({length: {min: 10, max: 20}}), url: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), ...overrideResponse})\n\nexport const getPostApiAccountBillingManagementResponseMock = (overrideResponse: Partial<Extract<ManagementResultResponse, object>> = {}): ManagementResultResponse => ({action: faker.string.alpha({length: {min: 10, max: 20}}), api_endpoint: faker.helpers.arrayElement([{method: faker.string.alpha({length: {min: 10, max: 20}}), path: faker.string.alpha({length: {min: 10, max: 20}})}, undefined]), can_abort: faker.datatype.boolean(), confirmation_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), effective_time: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), error_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), requires_confirmation: faker.datatype.boolean(), status: faker.string.alpha({length: {min: 10, max: 20}}), url: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), ...overrideResponse})\n\nexport const getGetApiAccountBillingManagementCapabilitiesResponseMock = (overrideResponse: Partial<Extract<ManagementCapabilitiesResponse, object>> = {}): ManagementCapabilitiesResponse => ({admin_operations: {\n [faker.string.alphanumeric(5)]: faker.datatype.boolean()\n }, management_mode: faker.string.alpha({length: {min: 10, max: 20}}), operations: {\n [faker.string.alphanumeric(5)]: faker.datatype.boolean()\n }, ...overrideResponse})\n\nexport const getPostApiAccountBillingPauseResponseMock = (overrideResponse: Partial<Extract<ManagementResultResponse, object>> = {}): ManagementResultResponse => ({action: faker.string.alpha({length: {min: 10, max: 20}}), api_endpoint: faker.helpers.arrayElement([{method: faker.string.alpha({length: {min: 10, max: 20}}), path: faker.string.alpha({length: {min: 10, max: 20}})}, undefined]), can_abort: faker.datatype.boolean(), confirmation_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), effective_time: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), error_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), requires_confirmation: faker.datatype.boolean(), status: faker.string.alpha({length: {min: 10, max: 20}}), url: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), ...overrideResponse})\n\nexport const getPostApiAccountBillingResumeResponseMock = (overrideResponse: Partial<Extract<ManagementResultResponse, object>> = {}): ManagementResultResponse => ({action: faker.string.alpha({length: {min: 10, max: 20}}), api_endpoint: faker.helpers.arrayElement([{method: faker.string.alpha({length: {min: 10, max: 20}}), path: faker.string.alpha({length: {min: 10, max: 20}})}, undefined]), can_abort: faker.datatype.boolean(), confirmation_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), effective_time: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), error_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), requires_confirmation: faker.datatype.boolean(), status: faker.string.alpha({length: {min: 10, max: 20}}), url: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), ...overrideResponse})\n\nexport const getGetApiAccountBillingSubscriptionResponseMock = (overrideResponse: Partial<Extract<SubscriptionStatusResponse, object>> = {}): SubscriptionStatusResponse => ({created_at: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), gateway_type: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), is_subscribed: faker.datatype.boolean(), paused_at: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), pricing_plan_period_id: faker.helpers.arrayElement([faker.number.int(), undefined]), updated_at: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), will_cancel_at: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), ...overrideResponse})\n\nexport const getPostApiAccountBillingWebhooksGatewayTypeResponseMock = (overrideResponse: Partial<Extract<ErrorResponse, object>> = {}): ErrorResponse => ({error: faker.string.alpha({length: {min: 10, max: 20}}), ...overrideResponse})\n\nexport const getGetApiBillingGatewaysResponseMock = (): GatewayListResponse => (Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => ({abilities: {checkout: faker.datatype.boolean(), customer_portal: faker.datatype.boolean(), session_status: faker.datatype.boolean()}, description: faker.string.alpha({length: {min: 10, max: 20}}), id: faker.string.alpha({length: {min: 10, max: 20}}), is_active: faker.datatype.boolean(), logo_url: faker.string.alpha({length: {min: 10, max: 20}}), name: faker.string.alpha({length: {min: 10, max: 20}})})))\n\nexport const getGetApiBillingPlansResponseMock = (overrideResponse: Partial<Extract<PublicPricingPlansListResponse, object>> = {}): PublicPricingPlansListResponse => ({data: Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => ({currency: faker.string.alpha({length: {min: 10, max: 20}}), description: faker.string.alpha({length: {min: 10, max: 20}}), features: Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => (faker.string.alpha({length: {min: 10, max: 20}}))), id: faker.number.int(), name: faker.string.alpha({length: {min: 10, max: 20}}), pricing_periods: Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => ({cadence: faker.string.alpha({length: {min: 10, max: 20}}), id: faker.number.int(), price_usd: faker.number.float({fractionDigits: 2}), quota_plan_id: faker.number.int(), rolling_days: faker.helpers.arrayElement([faker.number.int(), undefined])}))})), total: faker.number.int(), ...overrideResponse})\n\n\nexport const getGetApiAccountBillingBalanceMockHandler = (overrideResponse?: BalanceResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<BalanceResponse> | BalanceResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/billing/balance', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiAccountBillingBalanceResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAccountBillingCancelMockHandler = (overrideResponse?: ManagementResultResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ManagementResultResponse> | ManagementResultResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/billing/cancel', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAccountBillingCancelResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAccountBillingCancelAbortMockHandler = (overrideResponse?: ManagementResultResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ManagementResultResponse> | ManagementResultResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/billing/cancel/abort', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAccountBillingCancelAbortResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAccountBillingChangePlanMockHandler = (overrideResponse?: ManagementResultResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ManagementResultResponse> | ManagementResultResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/billing/change-plan', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAccountBillingChangePlanResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiAccountBillingCheckoutSessionSessionIdStatusMockHandler = (overrideResponse?: CheckoutSessionStatusResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<CheckoutSessionStatusResponse> | CheckoutSessionStatusResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/billing/checkout/session/:sessionId/status', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiAccountBillingCheckoutSessionSessionIdStatusResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiAccountBillingCheckoutUiPlanIdMockHandler = (overrideResponse?: CheckoutUIResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<CheckoutUIResponse> | CheckoutUIResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/billing/checkout/ui/:planId', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiAccountBillingCheckoutUiPlanIdResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiAccountBillingCreditsMockHandler = (overrideResponse?: UserCreditsListResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<UserCreditsListResponse> | UserCreditsListResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/billing/credits', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiAccountBillingCreditsResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAccountBillingCustomerPortalMockHandler = (overrideResponse?: ManagementResultResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ManagementResultResponse> | ManagementResultResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/billing/customer-portal', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAccountBillingCustomerPortalResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAccountBillingManagementMockHandler = (overrideResponse?: ManagementResultResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ManagementResultResponse> | ManagementResultResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/billing/management', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAccountBillingManagementResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiAccountBillingManagementCapabilitiesMockHandler = (overrideResponse?: ManagementCapabilitiesResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<ManagementCapabilitiesResponse> | ManagementCapabilitiesResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/billing/management/capabilities', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiAccountBillingManagementCapabilitiesResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAccountBillingPauseMockHandler = (overrideResponse?: ManagementResultResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ManagementResultResponse> | ManagementResultResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/billing/pause', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAccountBillingPauseResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAccountBillingResumeMockHandler = (overrideResponse?: ManagementResultResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ManagementResultResponse> | ManagementResultResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/billing/resume', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAccountBillingResumeResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiAccountBillingSubscriptionMockHandler = (overrideResponse?: SubscriptionStatusResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<SubscriptionStatusResponse> | SubscriptionStatusResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/billing/subscription', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiAccountBillingSubscriptionResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiAccountBillingSubscriptionEventsMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/billing/subscription/events', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {await delay(0);\n if (typeof overrideResponse === 'function') {await overrideResponse(info); }\n\n return new HttpResponse(null,\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAccountBillingWebhooksGatewayTypeMockHandler = (overrideResponse?: ErrorResponse | void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ErrorResponse | void> | ErrorResponse | void), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/billing/webhooks/:gatewayType', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {await delay(0);\n\n const resolvedBody = overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAccountBillingWebhooksGatewayTypeResponseMock();\n return resolvedBody === undefined\n ? new HttpResponse(null, { status: 204 })\n : HttpResponse.json(resolvedBody, { status: 200 })\n }, options)\n}\n\nexport const getGetApiBillingGatewaysMockHandler = (overrideResponse?: GatewayListResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<GatewayListResponse> | GatewayListResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/billing/gateways', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiBillingGatewaysResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiBillingGatewaysIdLogoMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.get('*/api/billing/gateways/:id/logo', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {await delay(0);\n if (typeof overrideResponse === 'function') {await overrideResponse(info); }\n\n return new HttpResponse(null,\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiBillingPlansMockHandler = (overrideResponse?: PublicPricingPlansListResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<PublicPricingPlansListResponse> | PublicPricingPlansListResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/billing/plans', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiBillingPlansResponseMock(),\n { status: 200\n })\n }, options)\n}\nexport const getBillingMock = () => [\n getGetApiAccountBillingBalanceMockHandler(),\n getPostApiAccountBillingCancelMockHandler(),\n getPostApiAccountBillingCancelAbortMockHandler(),\n getPostApiAccountBillingChangePlanMockHandler(),\n getGetApiAccountBillingCheckoutSessionSessionIdStatusMockHandler(),\n getGetApiAccountBillingCheckoutUiPlanIdMockHandler(),\n getGetApiAccountBillingCreditsMockHandler(),\n getPostApiAccountBillingCustomerPortalMockHandler(),\n getPostApiAccountBillingManagementMockHandler(),\n getGetApiAccountBillingManagementCapabilitiesMockHandler(),\n getPostApiAccountBillingPauseMockHandler(),\n getPostApiAccountBillingResumeMockHandler(),\n getGetApiAccountBillingSubscriptionMockHandler(),\n getGetApiAccountBillingSubscriptionEventsMockHandler(),\n getPostApiAccountBillingWebhooksGatewayTypeMockHandler(),\n getGetApiBillingGatewaysMockHandler(),\n getGetApiBillingGatewaysIdLogoMockHandler(),\n getGetApiBillingPlansMockHandler()\n]\n"],"mappings":"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"}
1
+ {"version":3,"file":"billing.js","names":[],"sources":["../../../../src/account/generated/billing.ts"],"sourcesContent":["/**\n * Generated by orval v8.18.0 🍺\n * Do not edit manually.\n * Account API\n * API endpoints for managing user accounts, authentication, and API keys.\n * OpenAPI spec version: v0.2.7-0.20260418132608-572560c6efd0\n */\nimport type {\n BalanceResponse,\n ChangePlanRequest,\n CheckoutSessionStatusResponse,\n CheckoutUIResponse,\n ErrorResponse,\n GatewayListResponse,\n GetApiAccountBillingCheckoutSessionSessionIdStatusParams,\n GetApiAccountBillingCheckoutUiPlanIdParams,\n ManagementCapabilitiesResponse,\n ManagementRequest,\n ManagementResultResponse,\n PostApiAccountBillingWebhooksGatewayTypeBody,\n PublicPricingPlansListResponse,\n SubscriptionStatusResponse,\n UserCreditsListResponse\n} from './accountAPI.schemas.ts';\n\nimport {\n faker\n} from '@faker-js/faker';\n\nimport {\n HttpResponse,\n http\n} from 'msw';\nimport type {\n RequestHandlerOptions\n} from 'msw';\n\n\n\nexport type getApiAccountBillingBalanceResponse200 = {\n data: BalanceResponse\n status: 200\n}\n\nexport type getApiAccountBillingBalanceResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountBillingBalanceResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountBillingBalanceResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountBillingBalanceResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountBillingBalanceResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountBillingBalanceResponseSuccess = (getApiAccountBillingBalanceResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountBillingBalanceResponseError = (getApiAccountBillingBalanceResponse400 | getApiAccountBillingBalanceResponse401 | getApiAccountBillingBalanceResponse403 | getApiAccountBillingBalanceResponse404 | getApiAccountBillingBalanceResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountBillingBalanceResponse = (getApiAccountBillingBalanceResponseSuccess | getApiAccountBillingBalanceResponseError)\n\nexport const getGetApiAccountBillingBalanceUrl = () => {\n\n\n\n\n return `/api/account/billing/balance`\n}\n\n/**\n * Returns the authenticated user's current credit balance. Positive balance indicates available credits, negative balance indicates outstanding dues.\n * @summary Get Current User's Credit Balance\n */\nexport const getApiAccountBillingBalance = async ( options?: RequestInit): Promise<getApiAccountBillingBalanceResponse> => {\n\n const res = await fetch(getGetApiAccountBillingBalanceUrl(),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiAccountBillingBalanceResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountBillingBalanceResponse\n}\n\n\nexport type postApiAccountBillingCancelResponse200 = {\n data: ManagementResultResponse\n status: 200\n}\n\nexport type postApiAccountBillingCancelResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingCancelResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingCancelResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingCancelResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingCancelResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingCancelResponseSuccess = (postApiAccountBillingCancelResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountBillingCancelResponseError = (postApiAccountBillingCancelResponse400 | postApiAccountBillingCancelResponse401 | postApiAccountBillingCancelResponse403 | postApiAccountBillingCancelResponse404 | postApiAccountBillingCancelResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingCancelResponse = (postApiAccountBillingCancelResponseSuccess | postApiAccountBillingCancelResponseError)\n\nexport const getPostApiAccountBillingCancelUrl = () => {\n\n\n\n\n return `/api/account/billing/cancel`\n}\n\n/**\n * Executes the cancel operation on the current subscription. Validates that the gateway supports cancellation and returns the appropriate action\n * @summary Cancel subscription\n */\nexport const postApiAccountBillingCancel = async ( options?: RequestInit): Promise<postApiAccountBillingCancelResponse> => {\n\n const res = await fetch(getPostApiAccountBillingCancelUrl(),\n {\n ...options,\n method: 'POST'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingCancelResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingCancelResponse\n}\n\n\nexport type postApiAccountBillingCancelAbortResponse200 = {\n data: ManagementResultResponse\n status: 200\n}\n\nexport type postApiAccountBillingCancelAbortResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingCancelAbortResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingCancelAbortResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingCancelAbortResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingCancelAbortResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingCancelAbortResponseSuccess = (postApiAccountBillingCancelAbortResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountBillingCancelAbortResponseError = (postApiAccountBillingCancelAbortResponse400 | postApiAccountBillingCancelAbortResponse401 | postApiAccountBillingCancelAbortResponse403 | postApiAccountBillingCancelAbortResponse404 | postApiAccountBillingCancelAbortResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingCancelAbortResponse = (postApiAccountBillingCancelAbortResponseSuccess | postApiAccountBillingCancelAbortResponseError)\n\nexport const getPostApiAccountBillingCancelAbortUrl = () => {\n\n\n\n\n return `/api/account/billing/cancel/abort`\n}\n\n/**\n * Cancels a scheduled subscription cancellation, restoring the subscription to active status\n * @summary Abort scheduled cancellation\n */\nexport const postApiAccountBillingCancelAbort = async ( options?: RequestInit): Promise<postApiAccountBillingCancelAbortResponse> => {\n\n const res = await fetch(getPostApiAccountBillingCancelAbortUrl(),\n {\n ...options,\n method: 'POST'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingCancelAbortResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingCancelAbortResponse\n}\n\n\nexport type postApiAccountBillingChangePlanResponse200 = {\n data: ManagementResultResponse\n status: 200\n}\n\nexport type postApiAccountBillingChangePlanResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingChangePlanResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingChangePlanResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingChangePlanResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingChangePlanResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingChangePlanResponseSuccess = (postApiAccountBillingChangePlanResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountBillingChangePlanResponseError = (postApiAccountBillingChangePlanResponse400 | postApiAccountBillingChangePlanResponse401 | postApiAccountBillingChangePlanResponse403 | postApiAccountBillingChangePlanResponse404 | postApiAccountBillingChangePlanResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingChangePlanResponse = (postApiAccountBillingChangePlanResponseSuccess | postApiAccountBillingChangePlanResponseError)\n\nexport const getPostApiAccountBillingChangePlanUrl = () => {\n\n\n\n\n return `/api/account/billing/change-plan`\n}\n\n/**\n * Executes the change plan operation on the current subscription. Validates that the gateway supports plan changes and returns the appropriate action\n * @summary Change subscription plan\n */\nexport const postApiAccountBillingChangePlan = async (changePlanRequest: ChangePlanRequest, options?: RequestInit): Promise<postApiAccountBillingChangePlanResponse> => {\n\n const res = await fetch(getPostApiAccountBillingChangePlanUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(changePlanRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingChangePlanResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingChangePlanResponse\n}\n\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse200 = {\n data: CheckoutSessionStatusResponse\n status: 200\n}\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse501 = {\n data: ErrorResponse\n status: 501\n}\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponseSuccess = (getApiAccountBillingCheckoutSessionSessionIdStatusResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponseError = (getApiAccountBillingCheckoutSessionSessionIdStatusResponse400 | getApiAccountBillingCheckoutSessionSessionIdStatusResponse401 | getApiAccountBillingCheckoutSessionSessionIdStatusResponse403 | getApiAccountBillingCheckoutSessionSessionIdStatusResponse404 | getApiAccountBillingCheckoutSessionSessionIdStatusResponse500 | getApiAccountBillingCheckoutSessionSessionIdStatusResponse501) & {\n headers: Headers;\n};\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse = (getApiAccountBillingCheckoutSessionSessionIdStatusResponseSuccess | getApiAccountBillingCheckoutSessionSessionIdStatusResponseError)\n\nexport const getGetApiAccountBillingCheckoutSessionSessionIdStatusUrl = (sessionId: string,\n params?: GetApiAccountBillingCheckoutSessionSessionIdStatusParams,) => {\n const normalizedParams = new URLSearchParams();\n\n Object.entries(params || {}).forEach(([key, value]) => {\n\n if (value !== undefined) {\n normalizedParams.append(key, value === null ? 'null' : String(value))\n }\n });\n\n const stringifiedParams = normalizedParams.toString();\n\n return stringifiedParams.length > 0 ? `/api/account/billing/checkout/session/${sessionId}/status?${stringifiedParams}` : `/api/account/billing/checkout/session/${sessionId}/status`\n}\n\n/**\n * Returns the status of a checkout session. Used by embedded checkout return pages to verify payment completion and retrieve customer information. Returns 501 if the gateway does not support session status retrieval.\n * @summary Get Checkout Session Status\n */\nexport const getApiAccountBillingCheckoutSessionSessionIdStatus = async (sessionId: string,\n params?: GetApiAccountBillingCheckoutSessionSessionIdStatusParams, options?: RequestInit): Promise<getApiAccountBillingCheckoutSessionSessionIdStatusResponse> => {\n\n const res = await fetch(getGetApiAccountBillingCheckoutSessionSessionIdStatusUrl(sessionId,params),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiAccountBillingCheckoutSessionSessionIdStatusResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountBillingCheckoutSessionSessionIdStatusResponse\n}\n\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse200 = {\n data: CheckoutUIResponse\n status: 200\n}\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse409 = {\n data: ErrorResponse\n status: 409\n}\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponseSuccess = (getApiAccountBillingCheckoutUiPlanIdResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountBillingCheckoutUiPlanIdResponseError = (getApiAccountBillingCheckoutUiPlanIdResponse400 | getApiAccountBillingCheckoutUiPlanIdResponse401 | getApiAccountBillingCheckoutUiPlanIdResponse403 | getApiAccountBillingCheckoutUiPlanIdResponse404 | getApiAccountBillingCheckoutUiPlanIdResponse409 | getApiAccountBillingCheckoutUiPlanIdResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse = (getApiAccountBillingCheckoutUiPlanIdResponseSuccess | getApiAccountBillingCheckoutUiPlanIdResponseError)\n\nexport const getGetApiAccountBillingCheckoutUiPlanIdUrl = (planId: string,\n params?: GetApiAccountBillingCheckoutUiPlanIdParams,) => {\n const normalizedParams = new URLSearchParams();\n\n Object.entries(params || {}).forEach(([key, value]) => {\n\n if (value !== undefined) {\n normalizedParams.append(key, value === null ? 'null' : String(value))\n }\n });\n\n const stringifiedParams = normalizedParams.toString();\n\n return stringifiedParams.length > 0 ? `/api/account/billing/checkout/ui/${planId}?${stringifiedParams}` : `/api/account/billing/checkout/ui/${planId}`\n}\n\n/**\n * Returns platform-agnostic UI fragments for checkout. Response format varies by gateway but always contains fragments of type link, html, script, iframe, modal, button, or form\n * @summary Get Checkout UI Fragments\n */\nexport const getApiAccountBillingCheckoutUiPlanId = async (planId: string,\n params?: GetApiAccountBillingCheckoutUiPlanIdParams, options?: RequestInit): Promise<getApiAccountBillingCheckoutUiPlanIdResponse> => {\n\n const res = await fetch(getGetApiAccountBillingCheckoutUiPlanIdUrl(planId,params),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiAccountBillingCheckoutUiPlanIdResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountBillingCheckoutUiPlanIdResponse\n}\n\n\nexport type getApiAccountBillingCreditsResponse200 = {\n data: UserCreditsListResponse\n status: 200\n}\n\nexport type getApiAccountBillingCreditsResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountBillingCreditsResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountBillingCreditsResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountBillingCreditsResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountBillingCreditsResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountBillingCreditsResponseSuccess = (getApiAccountBillingCreditsResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountBillingCreditsResponseError = (getApiAccountBillingCreditsResponse400 | getApiAccountBillingCreditsResponse401 | getApiAccountBillingCreditsResponse403 | getApiAccountBillingCreditsResponse404 | getApiAccountBillingCreditsResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountBillingCreditsResponse = (getApiAccountBillingCreditsResponseSuccess | getApiAccountBillingCreditsResponseError)\n\nexport const getGetApiAccountBillingCreditsUrl = () => {\n\n\n\n\n return `/api/account/billing/credits`\n}\n\n/**\n * Returns the authenticated user's credit transaction history with support for filtering by transaction type, direction, and date range. Results are paginated.\n * @summary Get Current User's Credit History\n */\nexport const getApiAccountBillingCredits = async ( options?: RequestInit): Promise<getApiAccountBillingCreditsResponse> => {\n\n const res = await fetch(getGetApiAccountBillingCreditsUrl(),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiAccountBillingCreditsResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountBillingCreditsResponse\n}\n\n\nexport type postApiAccountBillingCustomerPortalResponse200 = {\n data: ManagementResultResponse\n status: 200\n}\n\nexport type postApiAccountBillingCustomerPortalResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingCustomerPortalResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingCustomerPortalResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingCustomerPortalResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingCustomerPortalResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingCustomerPortalResponseSuccess = (postApiAccountBillingCustomerPortalResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountBillingCustomerPortalResponseError = (postApiAccountBillingCustomerPortalResponse400 | postApiAccountBillingCustomerPortalResponse401 | postApiAccountBillingCustomerPortalResponse403 | postApiAccountBillingCustomerPortalResponse404 | postApiAccountBillingCustomerPortalResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingCustomerPortalResponse = (postApiAccountBillingCustomerPortalResponseSuccess | postApiAccountBillingCustomerPortalResponseError)\n\nexport const getPostApiAccountBillingCustomerPortalUrl = () => {\n\n\n\n\n return `/api/account/billing/customer-portal`\n}\n\n/**\n * Returns a URL to access the generic customer portal for managing subscription\n * @summary Access Customer Portal\n */\nexport const postApiAccountBillingCustomerPortal = async ( options?: RequestInit): Promise<postApiAccountBillingCustomerPortalResponse> => {\n\n const res = await fetch(getPostApiAccountBillingCustomerPortalUrl(),\n {\n ...options,\n method: 'POST'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingCustomerPortalResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingCustomerPortalResponse\n}\n\n\nexport type postApiAccountBillingManagementResponse200 = {\n data: ManagementResultResponse\n status: 200\n}\n\nexport type postApiAccountBillingManagementResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingManagementResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingManagementResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingManagementResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingManagementResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingManagementResponseSuccess = (postApiAccountBillingManagementResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountBillingManagementResponseError = (postApiAccountBillingManagementResponse400 | postApiAccountBillingManagementResponse401 | postApiAccountBillingManagementResponse403 | postApiAccountBillingManagementResponse404 | postApiAccountBillingManagementResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingManagementResponse = (postApiAccountBillingManagementResponseSuccess | postApiAccountBillingManagementResponseError)\n\nexport const getPostApiAccountBillingManagementUrl = () => {\n\n\n\n\n return `/api/account/billing/management`\n}\n\n/**\n * Returns the action and configuration for a specific management operation\n * @summary Get subscription management operation details\n */\nexport const postApiAccountBillingManagement = async (managementRequest: ManagementRequest, options?: RequestInit): Promise<postApiAccountBillingManagementResponse> => {\n\n const res = await fetch(getPostApiAccountBillingManagementUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(managementRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingManagementResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingManagementResponse\n}\n\n\nexport type getApiAccountBillingManagementCapabilitiesResponse200 = {\n data: ManagementCapabilitiesResponse\n status: 200\n}\n\nexport type getApiAccountBillingManagementCapabilitiesResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountBillingManagementCapabilitiesResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountBillingManagementCapabilitiesResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountBillingManagementCapabilitiesResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountBillingManagementCapabilitiesResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountBillingManagementCapabilitiesResponseSuccess = (getApiAccountBillingManagementCapabilitiesResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountBillingManagementCapabilitiesResponseError = (getApiAccountBillingManagementCapabilitiesResponse400 | getApiAccountBillingManagementCapabilitiesResponse401 | getApiAccountBillingManagementCapabilitiesResponse403 | getApiAccountBillingManagementCapabilitiesResponse404 | getApiAccountBillingManagementCapabilitiesResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountBillingManagementCapabilitiesResponse = (getApiAccountBillingManagementCapabilitiesResponseSuccess | getApiAccountBillingManagementCapabilitiesResponseError)\n\nexport const getGetApiAccountBillingManagementCapabilitiesUrl = () => {\n\n\n\n\n return `/api/account/billing/management/capabilities`\n}\n\n/**\n * Returns the subscription management capabilities for the current user's gateway\n * @summary Get subscription management capabilities\n */\nexport const getApiAccountBillingManagementCapabilities = async ( options?: RequestInit): Promise<getApiAccountBillingManagementCapabilitiesResponse> => {\n\n const res = await fetch(getGetApiAccountBillingManagementCapabilitiesUrl(),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiAccountBillingManagementCapabilitiesResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountBillingManagementCapabilitiesResponse\n}\n\n\nexport type postApiAccountBillingPauseResponse200 = {\n data: ManagementResultResponse\n status: 200\n}\n\nexport type postApiAccountBillingPauseResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingPauseResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingPauseResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingPauseResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingPauseResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingPauseResponseSuccess = (postApiAccountBillingPauseResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountBillingPauseResponseError = (postApiAccountBillingPauseResponse400 | postApiAccountBillingPauseResponse401 | postApiAccountBillingPauseResponse403 | postApiAccountBillingPauseResponse404 | postApiAccountBillingPauseResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingPauseResponse = (postApiAccountBillingPauseResponseSuccess | postApiAccountBillingPauseResponseError)\n\nexport const getPostApiAccountBillingPauseUrl = () => {\n\n\n\n\n return `/api/account/billing/pause`\n}\n\n/**\n * Executes the pause operation on the current subscription. Validates that the gateway supports pausing and returns the appropriate action\n * @summary Pause subscription\n */\nexport const postApiAccountBillingPause = async ( options?: RequestInit): Promise<postApiAccountBillingPauseResponse> => {\n\n const res = await fetch(getPostApiAccountBillingPauseUrl(),\n {\n ...options,\n method: 'POST'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingPauseResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingPauseResponse\n}\n\n\nexport type postApiAccountBillingResumeResponse200 = {\n data: ManagementResultResponse\n status: 200\n}\n\nexport type postApiAccountBillingResumeResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingResumeResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingResumeResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingResumeResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingResumeResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingResumeResponseSuccess = (postApiAccountBillingResumeResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountBillingResumeResponseError = (postApiAccountBillingResumeResponse400 | postApiAccountBillingResumeResponse401 | postApiAccountBillingResumeResponse403 | postApiAccountBillingResumeResponse404 | postApiAccountBillingResumeResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingResumeResponse = (postApiAccountBillingResumeResponseSuccess | postApiAccountBillingResumeResponseError)\n\nexport const getPostApiAccountBillingResumeUrl = () => {\n\n\n\n\n return `/api/account/billing/resume`\n}\n\n/**\n * Executes the resume operation on the current subscription. Validates that the gateway supports resuming and returns the appropriate action\n * @summary Resume subscription\n */\nexport const postApiAccountBillingResume = async ( options?: RequestInit): Promise<postApiAccountBillingResumeResponse> => {\n\n const res = await fetch(getPostApiAccountBillingResumeUrl(),\n {\n ...options,\n method: 'POST'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingResumeResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingResumeResponse\n}\n\n\nexport type getApiAccountBillingSubscriptionResponse200 = {\n data: SubscriptionStatusResponse\n status: 200\n}\n\nexport type getApiAccountBillingSubscriptionResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountBillingSubscriptionResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountBillingSubscriptionResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountBillingSubscriptionResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountBillingSubscriptionResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountBillingSubscriptionResponseSuccess = (getApiAccountBillingSubscriptionResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountBillingSubscriptionResponseError = (getApiAccountBillingSubscriptionResponse400 | getApiAccountBillingSubscriptionResponse401 | getApiAccountBillingSubscriptionResponse403 | getApiAccountBillingSubscriptionResponse404 | getApiAccountBillingSubscriptionResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountBillingSubscriptionResponse = (getApiAccountBillingSubscriptionResponseSuccess | getApiAccountBillingSubscriptionResponseError)\n\nexport const getGetApiAccountBillingSubscriptionUrl = () => {\n\n\n\n\n return `/api/account/billing/subscription`\n}\n\n/**\n * Returns the subscription status for the authenticated user\n * @summary Get subscription status\n */\nexport const getApiAccountBillingSubscription = async ( options?: RequestInit): Promise<getApiAccountBillingSubscriptionResponse> => {\n\n const res = await fetch(getGetApiAccountBillingSubscriptionUrl(),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiAccountBillingSubscriptionResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountBillingSubscriptionResponse\n}\n\n\nexport type getApiAccountBillingSubscriptionEventsResponse200 = {\n data: void\n status: 200\n}\n\nexport type getApiAccountBillingSubscriptionEventsResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountBillingSubscriptionEventsResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountBillingSubscriptionEventsResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountBillingSubscriptionEventsResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountBillingSubscriptionEventsResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountBillingSubscriptionEventsResponseSuccess = (getApiAccountBillingSubscriptionEventsResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountBillingSubscriptionEventsResponseError = (getApiAccountBillingSubscriptionEventsResponse400 | getApiAccountBillingSubscriptionEventsResponse401 | getApiAccountBillingSubscriptionEventsResponse403 | getApiAccountBillingSubscriptionEventsResponse404 | getApiAccountBillingSubscriptionEventsResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountBillingSubscriptionEventsResponse = (getApiAccountBillingSubscriptionEventsResponseSuccess | getApiAccountBillingSubscriptionEventsResponseError)\n\nexport const getGetApiAccountBillingSubscriptionEventsUrl = () => {\n\n\n\n\n return `/api/account/billing/subscription/events`\n}\n\n/**\n * Establishes a Server-Sent Events (SSE) connection for real-time subscription updates including payment completions, subscription activations, and plan changes\n * @summary Subscribe to subscription events via SSE\n */\nexport const getApiAccountBillingSubscriptionEvents = async ( options?: RequestInit): Promise<getApiAccountBillingSubscriptionEventsResponse> => {\n\n const res = await fetch(getGetApiAccountBillingSubscriptionEventsUrl(),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiAccountBillingSubscriptionEventsResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as getApiAccountBillingSubscriptionEventsResponse\n}\n\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse200 = {\n data: ErrorResponse\n status: 200\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse204 = {\n data: void\n status: 204\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse413 = {\n data: ErrorResponse\n status: 413\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponseSuccess = (postApiAccountBillingWebhooksGatewayTypeResponse200 | postApiAccountBillingWebhooksGatewayTypeResponse204) & {\n headers: Headers;\n};\nexport type postApiAccountBillingWebhooksGatewayTypeResponseError = (postApiAccountBillingWebhooksGatewayTypeResponse400 | postApiAccountBillingWebhooksGatewayTypeResponse401 | postApiAccountBillingWebhooksGatewayTypeResponse403 | postApiAccountBillingWebhooksGatewayTypeResponse404 | postApiAccountBillingWebhooksGatewayTypeResponse413 | postApiAccountBillingWebhooksGatewayTypeResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse = (postApiAccountBillingWebhooksGatewayTypeResponseSuccess | postApiAccountBillingWebhooksGatewayTypeResponseError)\n\nexport const getPostApiAccountBillingWebhooksGatewayTypeUrl = (gatewayType: string,) => {\n\n\n\n\n return `/api/account/billing/webhooks/${gatewayType}`\n}\n\n/**\n * Handles incoming webhooks from payment gateways such as Stripe, PayPal, etc.\n * @summary Process payment gateway webhook\n */\nexport const postApiAccountBillingWebhooksGatewayType = async (gatewayType: string,\n postApiAccountBillingWebhooksGatewayTypeBody: PostApiAccountBillingWebhooksGatewayTypeBody, options?: RequestInit): Promise<postApiAccountBillingWebhooksGatewayTypeResponse> => {\n\n const res = await fetch(getPostApiAccountBillingWebhooksGatewayTypeUrl(gatewayType),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(postApiAccountBillingWebhooksGatewayTypeBody)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingWebhooksGatewayTypeResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingWebhooksGatewayTypeResponse\n}\n\n\nexport type getApiBillingGatewaysResponse200 = {\n data: GatewayListResponse\n status: 200\n}\n\nexport type getApiBillingGatewaysResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiBillingGatewaysResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiBillingGatewaysResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiBillingGatewaysResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiBillingGatewaysResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiBillingGatewaysResponseSuccess = (getApiBillingGatewaysResponse200) & {\n headers: Headers;\n};\nexport type getApiBillingGatewaysResponseError = (getApiBillingGatewaysResponse400 | getApiBillingGatewaysResponse401 | getApiBillingGatewaysResponse403 | getApiBillingGatewaysResponse404 | getApiBillingGatewaysResponse500) & {\n headers: Headers;\n};\n\nexport type getApiBillingGatewaysResponse = (getApiBillingGatewaysResponseSuccess | getApiBillingGatewaysResponseError)\n\nexport const getGetApiBillingGatewaysUrl = () => {\n\n\n\n\n return `/api/billing/gateways`\n}\n\n/**\n * Returns list of available payment gateways with metadata\n * @summary List Available Payment Gateways\n */\nexport const getApiBillingGateways = async ( options?: RequestInit): Promise<getApiBillingGatewaysResponse> => {\n\n const res = await fetch(getGetApiBillingGatewaysUrl(),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiBillingGatewaysResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiBillingGatewaysResponse\n}\n\n\nexport type getApiBillingGatewaysIdLogoResponse200 = {\n data: void\n status: 200\n}\n\nexport type getApiBillingGatewaysIdLogoResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiBillingGatewaysIdLogoResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiBillingGatewaysIdLogoResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiBillingGatewaysIdLogoResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiBillingGatewaysIdLogoResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiBillingGatewaysIdLogoResponseSuccess = (getApiBillingGatewaysIdLogoResponse200) & {\n headers: Headers;\n};\nexport type getApiBillingGatewaysIdLogoResponseError = (getApiBillingGatewaysIdLogoResponse400 | getApiBillingGatewaysIdLogoResponse401 | getApiBillingGatewaysIdLogoResponse403 | getApiBillingGatewaysIdLogoResponse404 | getApiBillingGatewaysIdLogoResponse500) & {\n headers: Headers;\n};\n\nexport type getApiBillingGatewaysIdLogoResponse = (getApiBillingGatewaysIdLogoResponseSuccess | getApiBillingGatewaysIdLogoResponseError)\n\nexport const getGetApiBillingGatewaysIdLogoUrl = (id: string,) => {\n\n\n\n\n return `/api/billing/gateways/${id}/logo`\n}\n\n/**\n * Returns embedded logo image for payment gateway\n * @summary Get Gateway Logo\n */\nexport const getApiBillingGatewaysIdLogo = async (id: string, options?: RequestInit): Promise<getApiBillingGatewaysIdLogoResponse> => {\n\n const res = await fetch(getGetApiBillingGatewaysIdLogoUrl(id),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiBillingGatewaysIdLogoResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as getApiBillingGatewaysIdLogoResponse\n}\n\n\nexport type getApiBillingPlansResponse200 = {\n data: PublicPricingPlansListResponse\n status: 200\n}\n\nexport type getApiBillingPlansResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiBillingPlansResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiBillingPlansResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiBillingPlansResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiBillingPlansResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiBillingPlansResponseSuccess = (getApiBillingPlansResponse200) & {\n headers: Headers;\n};\nexport type getApiBillingPlansResponseError = (getApiBillingPlansResponse400 | getApiBillingPlansResponse401 | getApiBillingPlansResponse403 | getApiBillingPlansResponse404 | getApiBillingPlansResponse500) & {\n headers: Headers;\n};\n\nexport type getApiBillingPlansResponse = (getApiBillingPlansResponseSuccess | getApiBillingPlansResponseError)\n\nexport const getGetApiBillingPlansUrl = () => {\n\n\n\n\n return `/api/billing/plans`\n}\n\n/**\n * Returns pricing plans with their periods for user's effective price line\n * @summary List Pricing Plans\n */\nexport const getApiBillingPlans = async ( options?: RequestInit): Promise<getApiBillingPlansResponse> => {\n\n const res = await fetch(getGetApiBillingPlansUrl(),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiBillingPlansResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiBillingPlansResponse\n}\n\n\n\n\nexport const getGetApiAccountBillingBalanceResponseMock = (overrideResponse: Partial<Extract<BalanceResponse, object>> = {}): BalanceResponse => ({balance: {}, user_id: faker.number.int(), ...overrideResponse})\n\nexport const getPostApiAccountBillingCancelResponseMock = (overrideResponse: Partial<Extract<ManagementResultResponse, object>> = {}): ManagementResultResponse => ({action: faker.string.alpha({length: {min: 10, max: 20}}), api_endpoint: faker.helpers.arrayElement([{method: faker.string.alpha({length: {min: 10, max: 20}}), path: faker.string.alpha({length: {min: 10, max: 20}})}, undefined]), can_abort: faker.datatype.boolean(), confirmation_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), effective_time: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), error_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), requires_confirmation: faker.datatype.boolean(), status: faker.string.alpha({length: {min: 10, max: 20}}), url: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), ...overrideResponse})\n\nexport const getPostApiAccountBillingCancelAbortResponseMock = (overrideResponse: Partial<Extract<ManagementResultResponse, object>> = {}): ManagementResultResponse => ({action: faker.string.alpha({length: {min: 10, max: 20}}), api_endpoint: faker.helpers.arrayElement([{method: faker.string.alpha({length: {min: 10, max: 20}}), path: faker.string.alpha({length: {min: 10, max: 20}})}, undefined]), can_abort: faker.datatype.boolean(), confirmation_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), effective_time: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), error_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), requires_confirmation: faker.datatype.boolean(), status: faker.string.alpha({length: {min: 10, max: 20}}), url: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), ...overrideResponse})\n\nexport const getPostApiAccountBillingChangePlanResponseMock = (overrideResponse: Partial<Extract<ManagementResultResponse, object>> = {}): ManagementResultResponse => ({action: faker.string.alpha({length: {min: 10, max: 20}}), api_endpoint: faker.helpers.arrayElement([{method: faker.string.alpha({length: {min: 10, max: 20}}), path: faker.string.alpha({length: {min: 10, max: 20}})}, undefined]), can_abort: faker.datatype.boolean(), confirmation_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), effective_time: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), error_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), requires_confirmation: faker.datatype.boolean(), status: faker.string.alpha({length: {min: 10, max: 20}}), url: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), ...overrideResponse})\n\nexport const getGetApiAccountBillingCheckoutSessionSessionIdStatusResponseMock = (overrideResponse: Partial<Extract<CheckoutSessionStatusResponse, object>> = {}): CheckoutSessionStatusResponse => ({customer_email: faker.string.alpha({length: {min: 10, max: 20}}), session_id: faker.string.alpha({length: {min: 10, max: 20}}), status: faker.string.alpha({length: {min: 10, max: 20}}), user_id: faker.number.int(), ...overrideResponse})\n\nexport const getGetApiAccountBillingCheckoutUiPlanIdResponseMock = (overrideResponse: Partial<Extract<CheckoutUIResponse, object>> = {}): CheckoutUIResponse => ({expires_at: faker.date.past().toISOString().slice(0, 19) + 'Z', fragments: Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => ({css: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), html: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), link: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), metadata: faker.helpers.arrayElement([{}, undefined]), script: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), type: faker.string.alpha({length: {min: 10, max: 20}})})), metadata: faker.helpers.arrayElement([{}, undefined]), session_id: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), ...overrideResponse})\n\nexport const getGetApiAccountBillingCreditsResponseMock = (overrideResponse: Partial<Extract<UserCreditsListResponse, object>> = {}): UserCreditsListResponse => ({data: Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => ({amount: {}, created_at: faker.date.past().toISOString().slice(0, 19) + 'Z', description: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), direction: faker.string.alpha({length: {min: 10, max: 20}}), id: Array.from({ length: faker.number.int({min: 16, max: 16}) }, (_, i) => i + 1).map(() => (faker.number.int())), type: faker.string.alpha({length: {min: 10, max: 20}})})), total: faker.number.int(), ...overrideResponse})\n\nexport const getPostApiAccountBillingCustomerPortalResponseMock = (overrideResponse: Partial<Extract<ManagementResultResponse, object>> = {}): ManagementResultResponse => ({action: faker.string.alpha({length: {min: 10, max: 20}}), api_endpoint: faker.helpers.arrayElement([{method: faker.string.alpha({length: {min: 10, max: 20}}), path: faker.string.alpha({length: {min: 10, max: 20}})}, undefined]), can_abort: faker.datatype.boolean(), confirmation_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), effective_time: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), error_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), requires_confirmation: faker.datatype.boolean(), status: faker.string.alpha({length: {min: 10, max: 20}}), url: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), ...overrideResponse})\n\nexport const getPostApiAccountBillingManagementResponseMock = (overrideResponse: Partial<Extract<ManagementResultResponse, object>> = {}): ManagementResultResponse => ({action: faker.string.alpha({length: {min: 10, max: 20}}), api_endpoint: faker.helpers.arrayElement([{method: faker.string.alpha({length: {min: 10, max: 20}}), path: faker.string.alpha({length: {min: 10, max: 20}})}, undefined]), can_abort: faker.datatype.boolean(), confirmation_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), effective_time: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), error_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), requires_confirmation: faker.datatype.boolean(), status: faker.string.alpha({length: {min: 10, max: 20}}), url: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), ...overrideResponse})\n\nexport const getGetApiAccountBillingManagementCapabilitiesResponseMock = (overrideResponse: Partial<Extract<ManagementCapabilitiesResponse, object>> = {}): ManagementCapabilitiesResponse => ({admin_operations: {\n [faker.string.alphanumeric(5)]: faker.datatype.boolean()\n }, management_mode: faker.string.alpha({length: {min: 10, max: 20}}), operations: {\n [faker.string.alphanumeric(5)]: faker.datatype.boolean()\n }, ...overrideResponse})\n\nexport const getPostApiAccountBillingPauseResponseMock = (overrideResponse: Partial<Extract<ManagementResultResponse, object>> = {}): ManagementResultResponse => ({action: faker.string.alpha({length: {min: 10, max: 20}}), api_endpoint: faker.helpers.arrayElement([{method: faker.string.alpha({length: {min: 10, max: 20}}), path: faker.string.alpha({length: {min: 10, max: 20}})}, undefined]), can_abort: faker.datatype.boolean(), confirmation_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), effective_time: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), error_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), requires_confirmation: faker.datatype.boolean(), status: faker.string.alpha({length: {min: 10, max: 20}}), url: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), ...overrideResponse})\n\nexport const getPostApiAccountBillingResumeResponseMock = (overrideResponse: Partial<Extract<ManagementResultResponse, object>> = {}): ManagementResultResponse => ({action: faker.string.alpha({length: {min: 10, max: 20}}), api_endpoint: faker.helpers.arrayElement([{method: faker.string.alpha({length: {min: 10, max: 20}}), path: faker.string.alpha({length: {min: 10, max: 20}})}, undefined]), can_abort: faker.datatype.boolean(), confirmation_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), effective_time: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), error_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), requires_confirmation: faker.datatype.boolean(), status: faker.string.alpha({length: {min: 10, max: 20}}), url: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), ...overrideResponse})\n\nexport const getGetApiAccountBillingSubscriptionResponseMock = (overrideResponse: Partial<Extract<SubscriptionStatusResponse, object>> = {}): SubscriptionStatusResponse => ({created_at: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), gateway_type: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), is_subscribed: faker.datatype.boolean(), paused_at: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), pricing_plan_period_id: faker.helpers.arrayElement([faker.number.int(), undefined]), updated_at: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), will_cancel_at: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), ...overrideResponse})\n\nexport const getPostApiAccountBillingWebhooksGatewayTypeResponseMock = (overrideResponse: Partial<Extract<ErrorResponse, object>> = {}): ErrorResponse => ({error: faker.string.alpha({length: {min: 10, max: 20}}), ...overrideResponse})\n\nexport const getGetApiBillingGatewaysResponseMock = (): GatewayListResponse => (Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => ({abilities: {checkout: faker.datatype.boolean(), customer_portal: faker.datatype.boolean(), session_status: faker.datatype.boolean()}, description: faker.string.alpha({length: {min: 10, max: 20}}), id: faker.string.alpha({length: {min: 10, max: 20}}), is_active: faker.datatype.boolean(), logo_url: faker.string.alpha({length: {min: 10, max: 20}}), name: faker.string.alpha({length: {min: 10, max: 20}})})))\n\nexport const getGetApiBillingPlansResponseMock = (overrideResponse: Partial<Extract<PublicPricingPlansListResponse, object>> = {}): PublicPricingPlansListResponse => ({data: Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => ({currency: faker.string.alpha({length: {min: 10, max: 20}}), description: faker.string.alpha({length: {min: 10, max: 20}}), features: Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => (faker.string.alpha({length: {min: 10, max: 20}}))), id: faker.number.int(), name: faker.string.alpha({length: {min: 10, max: 20}}), pricing_periods: Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => ({cadence: faker.string.alpha({length: {min: 10, max: 20}}), id: faker.number.int(), price_usd: faker.number.float({fractionDigits: 2}), quota_plan_id: faker.number.int(), rolling_days: faker.helpers.arrayElement([faker.number.int(), undefined])}))})), total: faker.number.int(), ...overrideResponse})\n\n\nexport const getGetApiAccountBillingBalanceMockHandler = (overrideResponse?: BalanceResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<BalanceResponse> | BalanceResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/billing/balance', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiAccountBillingBalanceResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAccountBillingCancelMockHandler = (overrideResponse?: ManagementResultResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ManagementResultResponse> | ManagementResultResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/billing/cancel', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAccountBillingCancelResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAccountBillingCancelAbortMockHandler = (overrideResponse?: ManagementResultResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ManagementResultResponse> | ManagementResultResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/billing/cancel/abort', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAccountBillingCancelAbortResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAccountBillingChangePlanMockHandler = (overrideResponse?: ManagementResultResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ManagementResultResponse> | ManagementResultResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/billing/change-plan', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAccountBillingChangePlanResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiAccountBillingCheckoutSessionSessionIdStatusMockHandler = (overrideResponse?: CheckoutSessionStatusResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<CheckoutSessionStatusResponse> | CheckoutSessionStatusResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/billing/checkout/session/:sessionId/status', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiAccountBillingCheckoutSessionSessionIdStatusResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiAccountBillingCheckoutUiPlanIdMockHandler = (overrideResponse?: CheckoutUIResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<CheckoutUIResponse> | CheckoutUIResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/billing/checkout/ui/:planId', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiAccountBillingCheckoutUiPlanIdResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiAccountBillingCreditsMockHandler = (overrideResponse?: UserCreditsListResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<UserCreditsListResponse> | UserCreditsListResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/billing/credits', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiAccountBillingCreditsResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAccountBillingCustomerPortalMockHandler = (overrideResponse?: ManagementResultResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ManagementResultResponse> | ManagementResultResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/billing/customer-portal', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAccountBillingCustomerPortalResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAccountBillingManagementMockHandler = (overrideResponse?: ManagementResultResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ManagementResultResponse> | ManagementResultResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/billing/management', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAccountBillingManagementResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiAccountBillingManagementCapabilitiesMockHandler = (overrideResponse?: ManagementCapabilitiesResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<ManagementCapabilitiesResponse> | ManagementCapabilitiesResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/billing/management/capabilities', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiAccountBillingManagementCapabilitiesResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAccountBillingPauseMockHandler = (overrideResponse?: ManagementResultResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ManagementResultResponse> | ManagementResultResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/billing/pause', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAccountBillingPauseResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAccountBillingResumeMockHandler = (overrideResponse?: ManagementResultResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ManagementResultResponse> | ManagementResultResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/billing/resume', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAccountBillingResumeResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiAccountBillingSubscriptionMockHandler = (overrideResponse?: SubscriptionStatusResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<SubscriptionStatusResponse> | SubscriptionStatusResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/billing/subscription', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiAccountBillingSubscriptionResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiAccountBillingSubscriptionEventsMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/billing/subscription/events', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {\n if (typeof overrideResponse === 'function') {await overrideResponse(info); }\n\n return new HttpResponse(null,\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAccountBillingWebhooksGatewayTypeMockHandler = (overrideResponse?: ErrorResponse | void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ErrorResponse | void> | ErrorResponse | void), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/billing/webhooks/:gatewayType', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {\n\n const resolvedBody = overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAccountBillingWebhooksGatewayTypeResponseMock();\n return resolvedBody === undefined\n ? new HttpResponse(null, { status: 204 })\n : HttpResponse.json(resolvedBody, { status: 200 })\n }, options)\n}\n\nexport const getGetApiBillingGatewaysMockHandler = (overrideResponse?: GatewayListResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<GatewayListResponse> | GatewayListResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/billing/gateways', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiBillingGatewaysResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiBillingGatewaysIdLogoMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.get('*/api/billing/gateways/:id/logo', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {\n if (typeof overrideResponse === 'function') {await overrideResponse(info); }\n\n return new HttpResponse(null,\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiBillingPlansMockHandler = (overrideResponse?: PublicPricingPlansListResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<PublicPricingPlansListResponse> | PublicPricingPlansListResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/billing/plans', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiBillingPlansResponseMock(),\n { status: 200\n })\n }, options)\n}\nexport const getBillingMock = () => [\n getGetApiAccountBillingBalanceMockHandler(),\n getPostApiAccountBillingCancelMockHandler(),\n getPostApiAccountBillingCancelAbortMockHandler(),\n getPostApiAccountBillingChangePlanMockHandler(),\n getGetApiAccountBillingCheckoutSessionSessionIdStatusMockHandler(),\n getGetApiAccountBillingCheckoutUiPlanIdMockHandler(),\n getGetApiAccountBillingCreditsMockHandler(),\n getPostApiAccountBillingCustomerPortalMockHandler(),\n getPostApiAccountBillingManagementMockHandler(),\n getGetApiAccountBillingManagementCapabilitiesMockHandler(),\n getPostApiAccountBillingPauseMockHandler(),\n getPostApiAccountBillingResumeMockHandler(),\n getGetApiAccountBillingSubscriptionMockHandler(),\n getGetApiAccountBillingSubscriptionEventsMockHandler(),\n getPostApiAccountBillingWebhooksGatewayTypeMockHandler(),\n getGetApiBillingGatewaysMockHandler(),\n getGetApiBillingGatewaysIdLogoMockHandler(),\n getGetApiBillingPlansMockHandler()\n]\n"],"mappings":"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"}