@koine/api 2.0.0-beta.9 → 2.0.0-beta.91

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.
Files changed (69) hide show
  1. package/ApiError.cjs.d.ts +2 -0
  2. package/ApiError.cjs.default.js +1 -0
  3. package/ApiError.cjs.js +14 -0
  4. package/ApiError.cjs.mjs +2 -0
  5. package/ApiError.d.ts +3 -9
  6. package/ApiError.esm.js +9 -0
  7. package/createApi.cjs.d.ts +2 -0
  8. package/createApi.cjs.default.js +1 -0
  9. package/createApi.cjs.js +27 -0
  10. package/createApi.cjs.mjs +2 -0
  11. package/createApi.d.ts +2 -7
  12. package/createApi.esm.js +22 -0
  13. package/createApiResultFail.cjs.d.ts +2 -0
  14. package/createApiResultFail.cjs.default.js +1 -0
  15. package/createApiResultFail.cjs.js +9 -0
  16. package/createApiResultFail.cjs.mjs +2 -0
  17. package/createApiResultFail.d.ts +4 -0
  18. package/createApiResultFail.esm.js +3 -0
  19. package/createApiResultOk.cjs.d.ts +2 -0
  20. package/createApiResultOk.cjs.default.js +1 -0
  21. package/createApiResultOk.cjs.js +8 -0
  22. package/createApiResultOk.cjs.mjs +2 -0
  23. package/createApiResultOk.d.ts +3 -0
  24. package/createApiResultOk.esm.js +3 -0
  25. package/createSwrApi.cjs.js +50 -0
  26. package/createSwrApi.esm.js +43 -0
  27. package/index.cjs.d.ts +1 -0
  28. package/index.cjs.default.js +1 -0
  29. package/index.cjs.js +16 -0
  30. package/index.cjs.mjs +2 -0
  31. package/index.d.ts +3 -2
  32. package/index.esm.js +5 -0
  33. package/next/nextApiResponse.d.ts +6 -0
  34. package/next/nextApiResponse12.d.ts +6 -0
  35. package/next.cjs.d.ts +1 -0
  36. package/next.cjs.default.js +1 -0
  37. package/next.cjs.js +14 -0
  38. package/next.cjs.mjs +2 -0
  39. package/next.d.ts +2 -0
  40. package/next.esm.js +9 -0
  41. package/package.json +53 -12
  42. package/swr/createSwrApi.d.ts +10 -0
  43. package/swr-mutation/createSwrMutationApi.d.ts +15 -0
  44. package/swr-mutation.cjs.d.ts +1 -0
  45. package/swr-mutation.cjs.default.js +1 -0
  46. package/swr-mutation.cjs.js +26 -0
  47. package/swr-mutation.cjs.mjs +2 -0
  48. package/swr-mutation.d.ts +1 -0
  49. package/swr-mutation.esm.js +18 -0
  50. package/swr.cjs.d.ts +1 -0
  51. package/swr.cjs.default.js +1 -0
  52. package/swr.cjs.js +12 -0
  53. package/swr.cjs.mjs +2 -0
  54. package/swr.d.ts +1 -0
  55. package/swr.esm.js +4 -0
  56. package/types.d.ts +126 -0
  57. package/typings.d.ts +11 -508
  58. package/ApiError.js +0 -32
  59. package/ApiError.mjs +0 -14
  60. package/createApi.js +0 -142
  61. package/createApi.mjs +0 -128
  62. package/createSwrApi.d.ts +0 -34
  63. package/createSwrApi.js +0 -99
  64. package/createSwrApi.mjs +0 -82
  65. package/index.js +0 -28
  66. package/index.mjs +0 -4
  67. package/nextApiResponse.d.ts +0 -3
  68. package/nextApiResponse.js +0 -23
  69. package/nextApiResponse.mjs +0 -5
package/ApiError.mjs DELETED
@@ -1,14 +0,0 @@
1
- /**
2
- * Custom `ApiError` class extending `Error` to throw in failed response.
3
- *
4
- * @see https://eslint.org/docs/rules/no-throw-literal
5
- * @see https://github.com/sindresorhus/ky/blob/main/source/errors/HTTPError.ts
6
- *
7
- */ export class ApiError extends Error {
8
- constructor(result){
9
- super(`Request failed with ${result.status} ${result.msg}`);
10
- this.name = "ApiError";
11
- Object.assign(this, result);
12
- }
13
- }
14
- export default ApiError;
package/createApi.js DELETED
@@ -1,142 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", {
3
- value: true
4
- });
5
- function _export(target, all) {
6
- for(var name in all)Object.defineProperty(target, name, {
7
- enumerable: true,
8
- get: all[name]
9
- });
10
- }
11
- _export(exports, {
12
- createApi: function() {
13
- return createApi;
14
- },
15
- default: function() {
16
- return _default;
17
- }
18
- });
19
- const _interop_require_default = require("@swc/helpers/_/_interop_require_default");
20
- const _buildUrlQueryString = /*#__PURE__*/ _interop_require_default._(require("@koine/utils/buildUrlQueryString"));
21
- const _errorToString = /*#__PURE__*/ _interop_require_default._(require("@koine/utils/errorToString"));
22
- const _isFullObject = /*#__PURE__*/ _interop_require_default._(require("@koine/utils/isFullObject"));
23
- const createApi = (apiName, baseUrl, options)=>{
24
- const { headers: headersBase = {}, request: requestBase = {
25
- referrerPolicy: "no-referrer"
26
- }, throwErr: throwErrBase, timeout: timeoutBase = 10000, processReq: processReqBase, processRes: processResBase, processErr: processErrBase } = options || {};
27
- return [
28
- "get",
29
- "post",
30
- "put",
31
- "patch",
32
- "delete"
33
- ].reduce((api, method)=>{
34
- // @ts-expect-error FIXME: type
35
- api[method] = async (endpoint, options)=>{
36
- const { request = requestBase, headers = headersBase, timeout = timeoutBase, processReq, processRes = processResBase, processErr = processErrBase, throwErr = throwErrBase } = options || {};
37
- let { params, json, query } = options || {};
38
- let url = `${baseUrl}/${endpoint + "".replace(/^\/*/, "")}`;
39
- let requestInit = {
40
- method: method.toUpperCase(),
41
- ...request,
42
- headers: {
43
- "content-type": "application/json",
44
- ...headers
45
- }
46
- };
47
- if (processReqBase) {
48
- const transformed = processReqBase(method, url, query, json, params, requestInit);
49
- url = transformed[0];
50
- query = transformed[1];
51
- json = transformed[2];
52
- params = transformed[3];
53
- requestInit = transformed[4];
54
- }
55
- if (processReq) {
56
- const transformed = processReq(method, url, query, json, params, requestInit);
57
- url = transformed[0];
58
- query = transformed[1];
59
- json = transformed[2];
60
- params = transformed[3];
61
- requestInit = transformed[4];
62
- }
63
- if ((0, _isFullObject.default)(params)) {
64
- for(const key in params){
65
- url = url.replace(`{${key}}`, params[key].toString());
66
- }
67
- }
68
- const timeoutNumber = Number(timeout);
69
- let controller;
70
- let timeoutId;
71
- if (json) {
72
- requestInit.body = JSON.stringify(json);
73
- }
74
- if (timeoutNumber > 0) {
75
- controller = new AbortController();
76
- timeoutId = setTimeout(()=>controller.abort(), timeoutNumber);
77
- requestInit.signal = controller.signal;
78
- }
79
- if (query) {
80
- // FIXME: ts-expect-error this assertion is not the best, but nevermind for now
81
- url += (0, _buildUrlQueryString.default)(query);
82
- }
83
- let response = null;
84
- let result = null;
85
- let msg = "";
86
- try {
87
- response = await fetch(url, requestInit);
88
- } catch (e) {
89
- msg = (0, _errorToString.default)(e);
90
- }
91
- if (timeoutId) {
92
- clearTimeout(timeoutId);
93
- }
94
- if (response) {
95
- try {
96
- if (processRes) {
97
- result = await processRes(response, options || {});
98
- } else {
99
- result = await response.json();
100
- }
101
- } catch (e) {
102
- msg = (0, _errorToString.default)(e);
103
- }
104
- }
105
- if (result === null) {
106
- if (processErr) {
107
- result = await processErr(msg, options || {});
108
- } else {
109
- // this error should only happen on network errors or wrong API urls
110
- // there is no specific HTTP error for this, we can consider these
111
- // two statuses though:
112
- // - [100 Continue](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/100)
113
- // - [501 Not Implemented](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/501)
114
- result = {
115
- data: null,
116
- msg,
117
- status: 100,
118
- fail: true,
119
- ok: false
120
- };
121
- }
122
- }
123
- if (throwErr && result?.fail) {
124
- // throw new ApiError<Failed>(result);
125
- // I prefer to throw an object literal despite what eslint says
126
- // eslint-disable-next-line no-throw-literal
127
- throw result;
128
- }
129
- if (process.env["NODE_ENV"] !== "production") {
130
- const logMsg = `${result?.status}: api[${apiName}] ${method.toUpperCase()} ${url}`;
131
- if (result?.ok) {
132
- console.info(`🟢 ${logMsg}`);
133
- } else {
134
- console.info(`🔴 ${logMsg}`);
135
- }
136
- }
137
- return result;
138
- };
139
- return api;
140
- }, {});
141
- };
142
- const _default = createApi;
package/createApi.mjs DELETED
@@ -1,128 +0,0 @@
1
- import buildUrlQueryString from "@koine/utils/buildUrlQueryString";
2
- import errorToString from "@koine/utils/errorToString";
3
- import isFullObject from "@koine/utils/isFullObject";
4
- /**
5
- * Create api client
6
- *
7
- * @param apiName Short name to use in debug logs
8
- * @param baseUrl Either relativ eor absolute, it must end without trailing slash
9
- */ export const createApi = (apiName, baseUrl, options)=>{
10
- const { headers: headersBase = {}, request: requestBase = {
11
- referrerPolicy: "no-referrer"
12
- }, throwErr: throwErrBase, timeout: timeoutBase = 10000, processReq: processReqBase, processRes: processResBase, processErr: processErrBase } = options || {};
13
- return [
14
- "get",
15
- "post",
16
- "put",
17
- "patch",
18
- "delete"
19
- ].reduce((api, method)=>{
20
- // @ts-expect-error FIXME: type
21
- api[method] = async (endpoint, options)=>{
22
- const { request = requestBase, headers = headersBase, timeout = timeoutBase, processReq, processRes = processResBase, processErr = processErrBase, throwErr = throwErrBase } = options || {};
23
- let { params, json, query } = options || {};
24
- let url = `${baseUrl}/${endpoint + "".replace(/^\/*/, "")}`;
25
- let requestInit = {
26
- method: method.toUpperCase(),
27
- ...request,
28
- headers: {
29
- "content-type": "application/json",
30
- ...headers
31
- }
32
- };
33
- if (processReqBase) {
34
- const transformed = processReqBase(method, url, query, json, params, requestInit);
35
- url = transformed[0];
36
- query = transformed[1];
37
- json = transformed[2];
38
- params = transformed[3];
39
- requestInit = transformed[4];
40
- }
41
- if (processReq) {
42
- const transformed = processReq(method, url, query, json, params, requestInit);
43
- url = transformed[0];
44
- query = transformed[1];
45
- json = transformed[2];
46
- params = transformed[3];
47
- requestInit = transformed[4];
48
- }
49
- if (isFullObject(params)) {
50
- for(const key in params){
51
- url = url.replace(`{${key}}`, params[key].toString());
52
- }
53
- }
54
- const timeoutNumber = Number(timeout);
55
- let controller;
56
- let timeoutId;
57
- if (json) {
58
- requestInit.body = JSON.stringify(json);
59
- }
60
- if (timeoutNumber > 0) {
61
- controller = new AbortController();
62
- timeoutId = setTimeout(()=>controller.abort(), timeoutNumber);
63
- requestInit.signal = controller.signal;
64
- }
65
- if (query) {
66
- // FIXME: ts-expect-error this assertion is not the best, but nevermind for now
67
- url += buildUrlQueryString(query);
68
- }
69
- let response = null;
70
- let result = null;
71
- let msg = "";
72
- try {
73
- response = await fetch(url, requestInit);
74
- } catch (e) {
75
- msg = errorToString(e);
76
- }
77
- if (timeoutId) {
78
- clearTimeout(timeoutId);
79
- }
80
- if (response) {
81
- try {
82
- if (processRes) {
83
- result = await processRes(response, options || {});
84
- } else {
85
- result = await response.json();
86
- }
87
- } catch (e) {
88
- msg = errorToString(e);
89
- }
90
- }
91
- if (result === null) {
92
- if (processErr) {
93
- result = await processErr(msg, options || {});
94
- } else {
95
- // this error should only happen on network errors or wrong API urls
96
- // there is no specific HTTP error for this, we can consider these
97
- // two statuses though:
98
- // - [100 Continue](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/100)
99
- // - [501 Not Implemented](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/501)
100
- result = {
101
- data: null,
102
- msg,
103
- status: 100,
104
- fail: true,
105
- ok: false
106
- };
107
- }
108
- }
109
- if (throwErr && result?.fail) {
110
- // throw new ApiError<Failed>(result);
111
- // I prefer to throw an object literal despite what eslint says
112
- // eslint-disable-next-line no-throw-literal
113
- throw result;
114
- }
115
- if (process.env["NODE_ENV"] !== "production") {
116
- const logMsg = `${result?.status}: api[${apiName}] ${method.toUpperCase()} ${url}`;
117
- if (result?.ok) {
118
- console.info(`🟢 ${logMsg}`);
119
- } else {
120
- console.info(`🔴 ${logMsg}`);
121
- }
122
- }
123
- return result;
124
- };
125
- return api;
126
- }, {});
127
- };
128
- export default createApi;
package/createSwrApi.d.ts DELETED
@@ -1,34 +0,0 @@
1
- import { type BareFetcher, // type Fetcher,
2
- type SWRConfiguration, type SWRResponse } from "swr";
3
- import { type SWRMutationConfiguration, type SWRMutationResponse } from "swr/mutation";
4
- type SWRConfigurationExtended<Data = any, Error = any, Fn extends BareFetcher<any> = BareFetcher<any>> = SWRConfiguration<Data, Error, Fn> & {
5
- /**
6
- * Conditional fetching as option
7
- *
8
- * Moving this to an option allows us to keep the endpoints typed dictionary,
9
- * e.g. we can write:
10
- *
11
- * ```js
12
- * const { data, mutate } = myApi.useGet("User/{id}",
13
- * { params: { id: aVariableMaybeContainingAnId || "" }, },
14
- * { when: !!aVariableMaybeContainingAnId }
15
- * );
16
- *
17
- * // we still have typed `data`, `mutate`
18
- * ```
19
- * @see https://swr.vercel.app/docs/conditional-fetching
20
- */
21
- when?: boolean | (() => boolean);
22
- };
23
- type KoineApiMethodHookSWR<THookName extends keyof Koine.Api.HooksMapsByName, TEndpoints extends Koine.Api.Endpoints> = <TEndpoint extends Koine.Api.EndpointUrl<TEndpoints>, TMethod extends Koine.Api.RequestMethod = Koine.Api.HooksMapsByName[THookName]>(endpoint: TEndpoint, options?: Koine.Api.EndpointOptions<TEndpoints, TEndpoint, TMethod>, config?: THookName extends "useGet" ? SWRConfigurationExtended<Koine.Api.EndpointResponseOk<TEndpoints, TEndpoint, TMethod>, Koine.Api.EndpointResponseFail<TEndpoints, TEndpoint, TMethod>> : SWRMutationConfiguration<Koine.Api.EndpointResponseOk<TEndpoints, TEndpoint, TMethod>, Koine.Api.EndpointResponseFail<TEndpoints, TEndpoint, TMethod>, Koine.Api.EndpointOptions<TEndpoints, TEndpoint, TMethod>, TEndpoint>) => THookName extends "useGet" ? SWRResponse<Koine.Api.EndpointResponseOk<TEndpoints, TEndpoint, TMethod>, Koine.Api.EndpointResponseFail<TEndpoints, TEndpoint, TMethod>> : SWRMutationResponse<Koine.Api.EndpointResponseOk<TEndpoints, TEndpoint, TMethod>, Koine.Api.EndpointResponseFail<TEndpoints, TEndpoint, TMethod>, Koine.Api.EndpointOptions<TEndpoints, TEndpoint, TMethod>, TEndpoint>;
24
- /**
25
- * It creates an api client extended with auto-generated SWR wrapper hooks
26
- */
27
- export declare const createSwrApi: <TEndpoints extends Koine.Api.Endpoints>(apiName: string, baseUrl: string, options?: Koine.Api.ClientOptions | undefined) => Koine.Api.Client<TEndpoints> & {
28
- useGet: KoineApiMethodHookSWR<"useGet", TEndpoints>;
29
- usePost: KoineApiMethodHookSWR<"usePost", TEndpoints>;
30
- usePut: KoineApiMethodHookSWR<"usePut", TEndpoints>;
31
- usePatch: KoineApiMethodHookSWR<"usePatch", TEndpoints>;
32
- useDelete: KoineApiMethodHookSWR<"useDelete", TEndpoints>;
33
- };
34
- export default createSwrApi;
package/createSwrApi.js DELETED
@@ -1,99 +0,0 @@
1
- "use client";
2
- "use strict";
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- function _export(target, all) {
7
- for(var name in all)Object.defineProperty(target, name, {
8
- enumerable: true,
9
- get: all[name]
10
- });
11
- }
12
- _export(exports, {
13
- createSwrApi: function() {
14
- return createSwrApi;
15
- },
16
- default: function() {
17
- return _default;
18
- }
19
- });
20
- const _interop_require_default = require("@swc/helpers/_/_interop_require_default");
21
- const _swr = /*#__PURE__*/ _interop_require_default._(require("swr"));
22
- const _mutation = /*#__PURE__*/ _interop_require_default._(require("swr/mutation"));
23
- const _isFunction = /*#__PURE__*/ _interop_require_default._(require("@koine/utils/isFunction"));
24
- const _createApi = /*#__PURE__*/ _interop_require_default._(require("./createApi"));
25
- function createUseApi(api, method) {
26
- return function useApi(endpoint, options, _config) {
27
- if (method === "get") {
28
- // const fetcher = async (_endpoint: TEndpoint) => {
29
- // try {
30
- // const { ok, data } = await api[method](_endpoint, {
31
- // ...(options || {}),
32
- // throwErr: true,
33
- // });
34
- // if (ok) {
35
- // return data;
36
- // }
37
- // throw new Error() as unknown as Koine.Api.EndpointResponseFail<TEndpoints, TEndpoint, TMethod>;
38
- // } catch(e) {
39
- // throw new Error() as unknown as Koine.Api.EndpointResponseFail<TEndpoints, TEndpoint, TMethod>;;
40
- // }
41
- // };
42
- // }
43
- const fetcher = async ()=>{
44
- const { data } = await api[method](endpoint, {
45
- ...options || {},
46
- throwErr: true
47
- });
48
- return data;
49
- };
50
- const config = _config;
51
- const shouldNotFetch = config?.when === false || (0, _isFunction.default)(config?.when) && config?.when() === false;
52
- // <Data = any, Error = any>(key: Key, config: SWRConfigurationExtended<Data, Error, Fetcher<Data>> | undefined): SWRResponse<Data, Error>;
53
- // eslint-disable-next-line react-hooks/rules-of-hooks
54
- return (0, _swr.default)(shouldNotFetch ? null : options ? [
55
- endpoint,
56
- options
57
- ] : [
58
- endpoint
59
- ], fetcher, config);
60
- }
61
- const config = _config;
62
- const sender = async (// if the first argument is an array the second tem are the base options
63
- // defined when calling the usePost/Put/etc. hook, these will be overriden
64
- // by the _options just here below
65
- _endpoint, // these are the options arriving when calling `trigger({ json, query, etc... })
66
- _options)=>{
67
- const endpoint = Array.isArray(_endpoint) ? _endpoint[0] : _endpoint;
68
- const options = Array.isArray(_endpoint) ? _endpoint[1] : {};
69
- const { ok, data } = await api[method](endpoint, {
70
- ...options,
71
- ..._options.arg || {},
72
- throwErr: true
73
- });
74
- return ok ? data : data;
75
- };
76
- // config.fetcher = sender;
77
- // eslint-disable-next-line react-hooks/rules-of-hooks
78
- return (0, _mutation.default)(// @ts-expect-error FIXME: I can't get it...
79
- options ? [
80
- endpoint,
81
- options
82
- ] : endpoint, sender, config);
83
- };
84
- }
85
- const createSwrApi = (...args)=>{
86
- const api = (0, _createApi.default)(...args);
87
- [
88
- "get",
89
- "post",
90
- "put",
91
- "patch",
92
- "delete"
93
- ].forEach((method)=>{
94
- const hookName = `use${method.charAt(0).toUpperCase() + method.slice(1)}`;
95
- api[hookName] = createUseApi(api, method);
96
- });
97
- return api;
98
- };
99
- const _default = createSwrApi;
package/createSwrApi.mjs DELETED
@@ -1,82 +0,0 @@
1
- "use client";
2
- import useSWR from "swr";
3
- import useSWRMutation from "swr/mutation";
4
- import isFunction from "@koine/utils/isFunction";
5
- import createApi from "./createApi";
6
- function createUseApi(api, method) {
7
- return function useApi(endpoint, options, _config) {
8
- if (method === "get") {
9
- // const fetcher = async (_endpoint: TEndpoint) => {
10
- // try {
11
- // const { ok, data } = await api[method](_endpoint, {
12
- // ...(options || {}),
13
- // throwErr: true,
14
- // });
15
- // if (ok) {
16
- // return data;
17
- // }
18
- // throw new Error() as unknown as Koine.Api.EndpointResponseFail<TEndpoints, TEndpoint, TMethod>;
19
- // } catch(e) {
20
- // throw new Error() as unknown as Koine.Api.EndpointResponseFail<TEndpoints, TEndpoint, TMethod>;;
21
- // }
22
- // };
23
- // }
24
- const fetcher = async ()=>{
25
- const { data } = await api[method](endpoint, {
26
- ...options || {},
27
- throwErr: true
28
- });
29
- return data;
30
- };
31
- const config = _config;
32
- const shouldNotFetch = config?.when === false || isFunction(config?.when) && config?.when() === false;
33
- // <Data = any, Error = any>(key: Key, config: SWRConfigurationExtended<Data, Error, Fetcher<Data>> | undefined): SWRResponse<Data, Error>;
34
- // eslint-disable-next-line react-hooks/rules-of-hooks
35
- return useSWR(shouldNotFetch ? null : options ? [
36
- endpoint,
37
- options
38
- ] : [
39
- endpoint
40
- ], fetcher, config);
41
- }
42
- const config = _config;
43
- const sender = async (// if the first argument is an array the second tem are the base options
44
- // defined when calling the usePost/Put/etc. hook, these will be overriden
45
- // by the _options just here below
46
- _endpoint, // these are the options arriving when calling `trigger({ json, query, etc... })
47
- _options)=>{
48
- const endpoint = Array.isArray(_endpoint) ? _endpoint[0] : _endpoint;
49
- const options = Array.isArray(_endpoint) ? _endpoint[1] : {};
50
- const { ok, data } = await api[method](endpoint, {
51
- ...options,
52
- ..._options.arg || {},
53
- throwErr: true
54
- });
55
- return ok ? data : data;
56
- };
57
- // config.fetcher = sender;
58
- // eslint-disable-next-line react-hooks/rules-of-hooks
59
- return useSWRMutation(// @ts-expect-error FIXME: I can't get it...
60
- options ? [
61
- endpoint,
62
- options
63
- ] : endpoint, sender, config);
64
- };
65
- }
66
- /**
67
- * It creates an api client extended with auto-generated SWR wrapper hooks
68
- */ export const createSwrApi = (...args)=>{
69
- const api = createApi(...args);
70
- [
71
- "get",
72
- "post",
73
- "put",
74
- "patch",
75
- "delete"
76
- ].forEach((method)=>{
77
- const hookName = `use${method.charAt(0).toUpperCase() + method.slice(1)}`;
78
- api[hookName] = createUseApi(api, method);
79
- });
80
- return api;
81
- };
82
- export default createSwrApi;
package/index.js DELETED
@@ -1,28 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", {
3
- value: true
4
- });
5
- function _export(target, all) {
6
- for(var name in all)Object.defineProperty(target, name, {
7
- enumerable: true,
8
- get: all[name]
9
- });
10
- }
11
- _export(exports, {
12
- ApiError: function() {
13
- return _ApiError.ApiError;
14
- },
15
- createApi: function() {
16
- return _createApi.createApi;
17
- },
18
- createSwrApi: function() {
19
- return _createSwrApi.createSwrApi;
20
- },
21
- nextApiResponse: function() {
22
- return _nextApiResponse.nextApiResponse;
23
- }
24
- });
25
- const _ApiError = require("./ApiError");
26
- const _createApi = require("./createApi");
27
- const _createSwrApi = require("./createSwrApi");
28
- const _nextApiResponse = require("./nextApiResponse");
package/index.mjs DELETED
@@ -1,4 +0,0 @@
1
- export { ApiError } from "./ApiError";
2
- export { createApi } from "./createApi";
3
- export { createSwrApi } from "./createSwrApi";
4
- export { nextApiResponse } from "./nextApiResponse";
@@ -1,3 +0,0 @@
1
- import type { NextApiResponse } from "next";
2
- export declare const nextApiResponse: (nextRes: NextApiResponse, result: Koine.Api.ResultOk | Koine.Api.ResultFail) => void;
3
- export default nextApiResponse;
@@ -1,23 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", {
3
- value: true
4
- });
5
- function _export(target, all) {
6
- for(var name in all)Object.defineProperty(target, name, {
7
- enumerable: true,
8
- get: all[name]
9
- });
10
- }
11
- _export(exports, {
12
- nextApiResponse: function() {
13
- return nextApiResponse;
14
- },
15
- default: function() {
16
- return _default;
17
- }
18
- });
19
- const nextApiResponse = (nextRes, result)=>{
20
- // nextRes.status(result.status).json(result.data || result.msg);
21
- nextRes.status(result.status).json(result);
22
- };
23
- const _default = nextApiResponse;
@@ -1,5 +0,0 @@
1
- export const nextApiResponse = (nextRes, result)=>{
2
- // nextRes.status(result.status).json(result.data || result.msg);
3
- nextRes.status(result.status).json(result);
4
- };
5
- export default nextApiResponse;