@xyo-network/api-models 2.75.0 → 2.75.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/dist/browser/Config.d.cts +25 -0
  2. package/dist/browser/Config.d.cts.map +1 -0
  3. package/dist/browser/Envelope.d.cts +15 -0
  4. package/dist/browser/Envelope.d.cts.map +1 -0
  5. package/dist/browser/Error.d.cts +5 -0
  6. package/dist/browser/Error.d.cts.map +1 -0
  7. package/dist/browser/Reportable.d.cts +8 -0
  8. package/dist/browser/Reportable.d.cts.map +1 -0
  9. package/dist/browser/Response.d.cts +8 -0
  10. package/dist/browser/Response.d.cts.map +1 -0
  11. package/dist/browser/Warning.d.cts +2 -0
  12. package/dist/browser/Warning.d.cts.map +1 -0
  13. package/dist/browser/index.d.cts +7 -0
  14. package/dist/browser/index.d.cts.map +1 -0
  15. package/dist/browser/index.js +6 -0
  16. package/dist/browser/index.js.map +1 -1
  17. package/dist/docs.json +2039 -0
  18. package/dist/node/Config.d.cts +25 -0
  19. package/dist/node/Config.d.cts.map +1 -0
  20. package/dist/node/Config.js +2 -0
  21. package/dist/node/Config.js.map +1 -1
  22. package/dist/node/Envelope.d.cts +15 -0
  23. package/dist/node/Envelope.d.cts.map +1 -0
  24. package/dist/node/Envelope.js +2 -0
  25. package/dist/node/Envelope.js.map +1 -1
  26. package/dist/node/Error.d.cts +5 -0
  27. package/dist/node/Error.d.cts.map +1 -0
  28. package/dist/node/Error.js +2 -0
  29. package/dist/node/Error.js.map +1 -1
  30. package/dist/node/Reportable.d.cts +8 -0
  31. package/dist/node/Reportable.d.cts.map +1 -0
  32. package/dist/node/Reportable.js +2 -0
  33. package/dist/node/Reportable.js.map +1 -1
  34. package/dist/node/Response.d.cts +8 -0
  35. package/dist/node/Response.d.cts.map +1 -0
  36. package/dist/node/Response.js +2 -0
  37. package/dist/node/Response.js.map +1 -1
  38. package/dist/node/Warning.d.cts +2 -0
  39. package/dist/node/Warning.d.cts.map +1 -0
  40. package/dist/node/Warning.js +2 -0
  41. package/dist/node/Warning.js.map +1 -1
  42. package/dist/node/index.d.cts +7 -0
  43. package/dist/node/index.d.cts.map +1 -0
  44. package/dist/node/index.js +2 -16
  45. package/dist/node/index.js.map +1 -1
  46. package/dist/node/index.mjs +0 -6
  47. package/dist/node/index.mjs.map +1 -1
  48. package/package.json +5 -5
@@ -0,0 +1,25 @@
1
+ import { ApiReportable } from './Reportable';
2
+ interface ApiConfig extends ApiReportable {
3
+ /** @description The domain where the api is located */
4
+ apiDomain: string;
5
+ /** @description The apiKey used for authentication */
6
+ apiKey?: string;
7
+ /** @description Threshold for Content-Size to cause automatic gzip of request body [default = 1024] */
8
+ compressionThreshold?: number;
9
+ /** @description The jwtToken of the currently logged in user */
10
+ jwtToken?: string;
11
+ /** @description The query string, if any, that is added to the end of every request */
12
+ query?: string;
13
+ /** @description Parent that should also report events from this api */
14
+ reportableParent?: ApiReportable;
15
+ /** @description The location in the API tree where this API object is mounted */
16
+ root?: string;
17
+ /** @description Throw on error */
18
+ throwError?: boolean;
19
+ /** @description Throw on failures */
20
+ throwFailure?: boolean;
21
+ /** @deprecated use the jwtToken instead*/
22
+ userid?: string;
23
+ }
24
+ export type { ApiConfig };
25
+ //# sourceMappingURL=Config.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Config.d.ts","sourceRoot":"","sources":["../../src/Config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAA;AAE5C,UAAU,SAAU,SAAQ,aAAa;IACvC,uDAAuD;IACvD,SAAS,EAAE,MAAM,CAAA;IAEjB,sDAAsD;IACtD,MAAM,CAAC,EAAE,MAAM,CAAA;IAEf,uGAAuG;IACvG,oBAAoB,CAAC,EAAE,MAAM,CAAA;IAE7B,gEAAgE;IAChE,QAAQ,CAAC,EAAE,MAAM,CAAA;IAEjB,uFAAuF;IACvF,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd,uEAAuE;IACvE,gBAAgB,CAAC,EAAE,aAAa,CAAA;IAEhC,iFAAiF;IACjF,IAAI,CAAC,EAAE,MAAM,CAAA;IAEb,kCAAkC;IAClC,UAAU,CAAC,EAAE,OAAO,CAAA;IAEpB,qCAAqC;IACrC,YAAY,CAAC,EAAE,OAAO,CAAA;IAEtB,0CAA0C;IAC1C,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAED,YAAY,EAAE,SAAS,EAAE,CAAA"}
@@ -12,6 +12,8 @@ var __copyProps = (to, from, except, desc) => {
12
12
  return to;
13
13
  };
14
14
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
15
+
16
+ // src/Config.ts
15
17
  var Config_exports = {};
16
18
  module.exports = __toCommonJS(Config_exports);
17
19
  //# sourceMappingURL=Config.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/Config.ts"],"sourcesContent":["import { ApiReportable } from './Reportable'\n\ninterface ApiConfig extends ApiReportable {\n /** @description The domain where the api is located */\n apiDomain: string\n\n /** @description The apiKey used for authentication */\n apiKey?: string\n\n /** @description Threshold for Content-Size to cause automatic gzip of request body [default = 1024] */\n compressionThreshold?: number\n\n /** @description The jwtToken of the currently logged in user */\n jwtToken?: string\n\n /** @description The query string, if any, that is added to the end of every request */\n query?: string\n\n /** @description Parent that should also report events from this api */\n reportableParent?: ApiReportable\n\n /** @description The location in the API tree where this API object is mounted */\n root?: string\n\n /** @description Throw on error */\n throwError?: boolean\n\n /** @description Throw on failures */\n throwFailure?: boolean\n\n /** @deprecated use the jwtToken instead*/\n userid?: string\n}\n\nexport type { ApiConfig }\n"],"mappings":";;;;;;;;;;;;;;AAAA;AAAA;","names":[]}
1
+ {"version":3,"sources":["../../src/Config.ts"],"sourcesContent":["import { ApiReportable } from './Reportable'\n\ninterface ApiConfig extends ApiReportable {\n /** @description The domain where the api is located */\n apiDomain: string\n\n /** @description The apiKey used for authentication */\n apiKey?: string\n\n /** @description Threshold for Content-Size to cause automatic gzip of request body [default = 1024] */\n compressionThreshold?: number\n\n /** @description The jwtToken of the currently logged in user */\n jwtToken?: string\n\n /** @description The query string, if any, that is added to the end of every request */\n query?: string\n\n /** @description Parent that should also report events from this api */\n reportableParent?: ApiReportable\n\n /** @description The location in the API tree where this API object is mounted */\n root?: string\n\n /** @description Throw on error */\n throwError?: boolean\n\n /** @description Throw on failures */\n throwFailure?: boolean\n\n /** @deprecated use the jwtToken instead*/\n userid?: string\n}\n\nexport type { ApiConfig }\n"],"mappings":";;;;;;;;;;;;;;;;AAAA;AAAA;","names":[]}
@@ -0,0 +1,15 @@
1
+ import { ApiError } from './Error';
2
+ import { ApiWarning } from './Warning';
3
+ export interface ApiEnvelopeBase {
4
+ warning?: ApiWarning[];
5
+ }
6
+ export interface ApiEnvelopeSuccess<T> extends ApiEnvelopeBase {
7
+ data: T;
8
+ errors: never;
9
+ }
10
+ export interface ApiEnvelopeError extends ApiEnvelopeBase {
11
+ data: never;
12
+ errors: ApiError[];
13
+ }
14
+ export type ApiEnvelope<T> = ApiEnvelopeSuccess<T> | ApiEnvelopeError;
15
+ //# sourceMappingURL=Envelope.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Envelope.d.ts","sourceRoot":"","sources":["../../src/Envelope.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAClC,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAA;AAEtC,MAAM,WAAW,eAAe;IAC9B,OAAO,CAAC,EAAE,UAAU,EAAE,CAAA;CACvB;AAED,MAAM,WAAW,kBAAkB,CAAC,CAAC,CAAE,SAAQ,eAAe;IAC5D,IAAI,EAAE,CAAC,CAAA;IACP,MAAM,EAAE,KAAK,CAAA;CACd;AAED,MAAM,WAAW,gBAAiB,SAAQ,eAAe;IACvD,IAAI,EAAE,KAAK,CAAA;IACX,MAAM,EAAE,QAAQ,EAAE,CAAA;CACnB;AAED,MAAM,MAAM,WAAW,CAAC,CAAC,IAAI,kBAAkB,CAAC,CAAC,CAAC,GAAG,gBAAgB,CAAA"}
@@ -12,6 +12,8 @@ var __copyProps = (to, from, except, desc) => {
12
12
  return to;
13
13
  };
14
14
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
15
+
16
+ // src/Envelope.ts
15
17
  var Envelope_exports = {};
16
18
  module.exports = __toCommonJS(Envelope_exports);
17
19
  //# sourceMappingURL=Envelope.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/Envelope.ts"],"sourcesContent":["import { ApiError } from './Error'\nimport { ApiWarning } from './Warning'\n\nexport interface ApiEnvelopeBase {\n warning?: ApiWarning[]\n}\n\nexport interface ApiEnvelopeSuccess<T> extends ApiEnvelopeBase {\n data: T\n errors: never\n}\n\nexport interface ApiEnvelopeError extends ApiEnvelopeBase {\n data: never\n errors: ApiError[]\n}\n\nexport type ApiEnvelope<T> = ApiEnvelopeSuccess<T> | ApiEnvelopeError\n"],"mappings":";;;;;;;;;;;;;;AAAA;AAAA;","names":[]}
1
+ {"version":3,"sources":["../../src/Envelope.ts"],"sourcesContent":["import { ApiError } from './Error'\nimport { ApiWarning } from './Warning'\n\nexport interface ApiEnvelopeBase {\n warning?: ApiWarning[]\n}\n\nexport interface ApiEnvelopeSuccess<T> extends ApiEnvelopeBase {\n data: T\n errors: never\n}\n\nexport interface ApiEnvelopeError extends ApiEnvelopeBase {\n data: never\n errors: ApiError[]\n}\n\nexport type ApiEnvelope<T> = ApiEnvelopeSuccess<T> | ApiEnvelopeError\n"],"mappings":";;;;;;;;;;;;;;;;AAAA;AAAA;","names":[]}
@@ -0,0 +1,5 @@
1
+ import { AxiosError } from '@xyo-network/axios';
2
+ export interface ApiError<T = any, D = any> extends AxiosError<T, D> {
3
+ isError: true;
4
+ }
5
+ //# sourceMappingURL=Error.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Error.d.ts","sourceRoot":"","sources":["../../src/Error.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAA;AAG/C,MAAM,WAAW,QAAQ,CAAC,CAAC,GAAG,GAAG,EAAE,CAAC,GAAG,GAAG,CAAE,SAAQ,UAAU,CAAC,CAAC,EAAE,CAAC,CAAC;IAClE,OAAO,EAAE,IAAI,CAAA;CACd"}
@@ -12,6 +12,8 @@ var __copyProps = (to, from, except, desc) => {
12
12
  return to;
13
13
  };
14
14
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
15
+
16
+ // src/Error.ts
15
17
  var Error_exports = {};
16
18
  module.exports = __toCommonJS(Error_exports);
17
19
  //# sourceMappingURL=Error.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/Error.ts"],"sourcesContent":["import { AxiosError } from '@xyo-network/axios'\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport interface ApiError<T = any, D = any> extends AxiosError<T, D> {\n isError: true\n}\n"],"mappings":";;;;;;;;;;;;;;AAAA;AAAA;","names":[]}
1
+ {"version":3,"sources":["../../src/Error.ts"],"sourcesContent":["import { AxiosError } from '@xyo-network/axios'\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport interface ApiError<T = any, D = any> extends AxiosError<T, D> {\n isError: true\n}\n"],"mappings":";;;;;;;;;;;;;;;;AAAA;AAAA;","names":[]}
@@ -0,0 +1,8 @@
1
+ import { ApiError } from './Error';
2
+ import { ApiResponse } from './Response';
3
+ export interface ApiReportable {
4
+ onError?: (error: ApiError, depth: number) => void;
5
+ onFailure?: (response: ApiResponse, depth: number) => void;
6
+ onSuccess?: (response: ApiResponse, depth: number) => void;
7
+ }
8
+ //# sourceMappingURL=Reportable.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Reportable.d.ts","sourceRoot":"","sources":["../../src/Reportable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAClC,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AAExC,MAAM,WAAW,aAAa;IAC5B,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,KAAK,IAAI,CAAA;IAElD,SAAS,CAAC,EAAE,CAAC,QAAQ,EAAE,WAAW,EAAE,KAAK,EAAE,MAAM,KAAK,IAAI,CAAA;IAE1D,SAAS,CAAC,EAAE,CAAC,QAAQ,EAAE,WAAW,EAAE,KAAK,EAAE,MAAM,KAAK,IAAI,CAAA;CAC3D"}
@@ -12,6 +12,8 @@ var __copyProps = (to, from, except, desc) => {
12
12
  return to;
13
13
  };
14
14
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
15
+
16
+ // src/Reportable.ts
15
17
  var Reportable_exports = {};
16
18
  module.exports = __toCommonJS(Reportable_exports);
17
19
  //# sourceMappingURL=Reportable.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/Reportable.ts"],"sourcesContent":["import { ApiError } from './Error'\nimport { ApiResponse } from './Response'\n\nexport interface ApiReportable {\n onError?: (error: ApiError, depth: number) => void\n\n onFailure?: (response: ApiResponse, depth: number) => void\n\n onSuccess?: (response: ApiResponse, depth: number) => void\n}\n"],"mappings":";;;;;;;;;;;;;;AAAA;AAAA;","names":[]}
1
+ {"version":3,"sources":["../../src/Reportable.ts"],"sourcesContent":["import { ApiError } from './Error'\nimport { ApiResponse } from './Response'\n\nexport interface ApiReportable {\n onError?: (error: ApiError, depth: number) => void\n\n onFailure?: (response: ApiResponse, depth: number) => void\n\n onSuccess?: (response: ApiResponse, depth: number) => void\n}\n"],"mappings":";;;;;;;;;;;;;;;;AAAA;AAAA;","names":[]}
@@ -0,0 +1,8 @@
1
+ import { AxiosResponse } from '@xyo-network/axios';
2
+ import { ApiEnvelope } from './Envelope';
3
+ export type ApiResponse<T = unknown, D = unknown> = AxiosResponse<T, D>;
4
+ export type ApiResponseBody<T> = T | undefined;
5
+ export type ApiResponseTuple<T> = [T | undefined, ApiEnvelope<T | undefined>, ApiResponse<ApiEnvelope<T | undefined>>];
6
+ export type ApiResponseTupleOrBody<T> = ApiResponseTuple<T> | ApiResponseBody<T>;
7
+ export type ApiResponseType = 'body' | 'tuple';
8
+ //# sourceMappingURL=Response.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Response.d.ts","sourceRoot":"","sources":["../../src/Response.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAA;AAElD,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AAExC,MAAM,MAAM,WAAW,CAAC,CAAC,GAAG,OAAO,EAAE,CAAC,GAAG,OAAO,IAAI,aAAa,CAAC,CAAC,EAAE,CAAC,CAAC,CAAA;AAEvE,MAAM,MAAM,eAAe,CAAC,CAAC,IAAI,CAAC,GAAG,SAAS,CAAA;AAE9C,MAAM,MAAM,gBAAgB,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,SAAS,EAAE,WAAW,CAAC,CAAC,GAAG,SAAS,CAAC,EAAE,WAAW,CAAC,WAAW,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAA;AAEtH,MAAM,MAAM,sBAAsB,CAAC,CAAC,IAAI,gBAAgB,CAAC,CAAC,CAAC,GAAG,eAAe,CAAC,CAAC,CAAC,CAAA;AAEhF,MAAM,MAAM,eAAe,GAAG,MAAM,GAAG,OAAO,CAAA"}
@@ -12,6 +12,8 @@ var __copyProps = (to, from, except, desc) => {
12
12
  return to;
13
13
  };
14
14
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
15
+
16
+ // src/Response.ts
15
17
  var Response_exports = {};
16
18
  module.exports = __toCommonJS(Response_exports);
17
19
  //# sourceMappingURL=Response.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/Response.ts"],"sourcesContent":["import { AxiosResponse } from '@xyo-network/axios'\n\nimport { ApiEnvelope } from './Envelope'\n\nexport type ApiResponse<T = unknown, D = unknown> = AxiosResponse<T, D>\n\nexport type ApiResponseBody<T> = T | undefined\n\nexport type ApiResponseTuple<T> = [T | undefined, ApiEnvelope<T | undefined>, ApiResponse<ApiEnvelope<T | undefined>>]\n\nexport type ApiResponseTupleOrBody<T> = ApiResponseTuple<T> | ApiResponseBody<T>\n\nexport type ApiResponseType = 'body' | 'tuple'\n"],"mappings":";;;;;;;;;;;;;;AAAA;AAAA;","names":[]}
1
+ {"version":3,"sources":["../../src/Response.ts"],"sourcesContent":["import { AxiosResponse } from '@xyo-network/axios'\n\nimport { ApiEnvelope } from './Envelope'\n\nexport type ApiResponse<T = unknown, D = unknown> = AxiosResponse<T, D>\n\nexport type ApiResponseBody<T> = T | undefined\n\nexport type ApiResponseTuple<T> = [T | undefined, ApiEnvelope<T | undefined>, ApiResponse<ApiEnvelope<T | undefined>>]\n\nexport type ApiResponseTupleOrBody<T> = ApiResponseTuple<T> | ApiResponseBody<T>\n\nexport type ApiResponseType = 'body' | 'tuple'\n"],"mappings":";;;;;;;;;;;;;;;;AAAA;AAAA;","names":[]}
@@ -0,0 +1,2 @@
1
+ export type ApiWarning = Error;
2
+ //# sourceMappingURL=Warning.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Warning.d.ts","sourceRoot":"","sources":["../../src/Warning.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,UAAU,GAAG,KAAK,CAAA"}
@@ -12,6 +12,8 @@ var __copyProps = (to, from, except, desc) => {
12
12
  return to;
13
13
  };
14
14
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
15
+
16
+ // src/Warning.ts
15
17
  var Warning_exports = {};
16
18
  module.exports = __toCommonJS(Warning_exports);
17
19
  //# sourceMappingURL=Warning.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/Warning.ts"],"sourcesContent":["export type ApiWarning = Error\n"],"mappings":";;;;;;;;;;;;;;AAAA;AAAA;","names":[]}
1
+ {"version":3,"sources":["../../src/Warning.ts"],"sourcesContent":["export type ApiWarning = Error\n"],"mappings":";;;;;;;;;;;;;;;;AAAA;AAAA;","names":[]}
@@ -0,0 +1,7 @@
1
+ export * from './Config';
2
+ export * from './Envelope';
3
+ export * from './Error';
4
+ export * from './Reportable';
5
+ export * from './Response';
6
+ export * from './Warning';
7
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA;AAC1B,cAAc,SAAS,CAAA;AACvB,cAAc,cAAc,CAAA;AAC5B,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA"}
@@ -11,23 +11,9 @@ var __copyProps = (to, from, except, desc) => {
11
11
  }
12
12
  return to;
13
13
  };
14
- var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
15
14
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
15
+
16
+ // src/index.ts
16
17
  var src_exports = {};
17
18
  module.exports = __toCommonJS(src_exports);
18
- __reExport(src_exports, require("./Config"), module.exports);
19
- __reExport(src_exports, require("./Envelope"), module.exports);
20
- __reExport(src_exports, require("./Error"), module.exports);
21
- __reExport(src_exports, require("./Reportable"), module.exports);
22
- __reExport(src_exports, require("./Response"), module.exports);
23
- __reExport(src_exports, require("./Warning"), module.exports);
24
- // Annotate the CommonJS export names for ESM import in node:
25
- 0 && (module.exports = {
26
- ...require("./Config"),
27
- ...require("./Envelope"),
28
- ...require("./Error"),
29
- ...require("./Reportable"),
30
- ...require("./Response"),
31
- ...require("./Warning")
32
- });
33
19
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from './Config'\nexport * from './Envelope'\nexport * from './Error'\nexport * from './Reportable'\nexport * from './Response'\nexport * from './Warning'\n"],"mappings":";;;;;;;;;;;;;;;AAAA;AAAA;AAAA,wBAAc,qBAAd;AACA,wBAAc,uBADd;AAEA,wBAAc,oBAFd;AAGA,wBAAc,yBAHd;AAIA,wBAAc,uBAJd;AAKA,wBAAc,sBALd;","names":[]}
1
+ {"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from './Config'\nexport * from './Envelope'\nexport * from './Error'\nexport * from './Reportable'\nexport * from './Response'\nexport * from './Warning'\n"],"mappings":";;;;;;;;;;;;;;;;AAAA;AAAA;","names":[]}
@@ -1,7 +1 @@
1
- export * from "./Config";
2
- export * from "./Envelope";
3
- export * from "./Error";
4
- export * from "./Reportable";
5
- export * from "./Response";
6
- export * from "./Warning";
7
1
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from './Config'\nexport * from './Envelope'\nexport * from './Error'\nexport * from './Reportable'\nexport * from './Response'\nexport * from './Warning'\n"],"mappings":"AAAA,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;","names":[]}
1
+ {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
package/package.json CHANGED
@@ -9,11 +9,11 @@
9
9
  "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/issues"
10
10
  },
11
11
  "dependencies": {
12
- "@xyo-network/axios": "~2.75.0"
12
+ "@xyo-network/axios": "~2.75.1"
13
13
  },
14
14
  "devDependencies": {
15
- "@xylabs/ts-scripts-yarn3": "^3.0.70",
16
- "@xylabs/tsconfig": "^3.0.70",
15
+ "@xylabs/ts-scripts-yarn3": "^3.0.77",
16
+ "@xylabs/tsconfig": "^3.0.77",
17
17
  "typescript": "^5.2.2"
18
18
  },
19
19
  "description": "Primary SDK for using XYO Protocol 2.0",
@@ -22,7 +22,7 @@
22
22
  ".": {
23
23
  "browser": {
24
24
  "require": {
25
- "types": "./dist/browser/index.d.ts",
25
+ "types": "./dist/browser/index.d.cts",
26
26
  "default": "./dist/browser/index.cjs"
27
27
  },
28
28
  "import": {
@@ -60,5 +60,5 @@
60
60
  },
61
61
  "sideEffects": false,
62
62
  "types": "dist/node/index.d.ts",
63
- "version": "2.75.0"
63
+ "version": "2.75.1"
64
64
  }