@etsoo/appscript 1.3.53 → 1.3.54

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.
@@ -48,7 +48,7 @@ export * from './erp/PublicApi';
48
48
  export * from './i18n/en';
49
49
  export * from './i18n/zhHans';
50
50
  export * from './i18n/zhHant';
51
- export { ApiAuthorizationScheme, createClient } from '@etsoo/restclient';
51
+ export { ApiAuthorizationScheme, ApiResponseType, createClient } from '@etsoo/restclient';
52
52
  export type { IApi, IApiPayload } from '@etsoo/restclient';
53
53
  export * from './result/ActionResult';
54
54
  export * from './result/ActionResultError';
package/lib/cjs/index.js CHANGED
@@ -14,7 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- exports.createClient = exports.ApiAuthorizationScheme = void 0;
17
+ exports.createClient = exports.ApiResponseType = exports.ApiAuthorizationScheme = void 0;
18
18
  // address
19
19
  __exportStar(require("./address/AddressContinent"), exports);
20
20
  __exportStar(require("./address/AddressRegion"), exports);
@@ -77,6 +77,7 @@ __exportStar(require("./i18n/zhHant"), exports);
77
77
  // @etsoo/restclient
78
78
  var restclient_1 = require("@etsoo/restclient");
79
79
  Object.defineProperty(exports, "ApiAuthorizationScheme", { enumerable: true, get: function () { return restclient_1.ApiAuthorizationScheme; } });
80
+ Object.defineProperty(exports, "ApiResponseType", { enumerable: true, get: function () { return restclient_1.ApiResponseType; } });
80
81
  Object.defineProperty(exports, "createClient", { enumerable: true, get: function () { return restclient_1.createClient; } });
81
82
  // result
82
83
  __exportStar(require("./result/ActionResult"), exports);
@@ -48,7 +48,7 @@ export * from './erp/PublicApi';
48
48
  export * from './i18n/en';
49
49
  export * from './i18n/zhHans';
50
50
  export * from './i18n/zhHant';
51
- export { ApiAuthorizationScheme, createClient } from '@etsoo/restclient';
51
+ export { ApiAuthorizationScheme, ApiResponseType, createClient } from '@etsoo/restclient';
52
52
  export type { IApi, IApiPayload } from '@etsoo/restclient';
53
53
  export * from './result/ActionResult';
54
54
  export * from './result/ActionResultError';
package/lib/mjs/index.js CHANGED
@@ -58,7 +58,7 @@ export * from './i18n/en';
58
58
  export * from './i18n/zhHans';
59
59
  export * from './i18n/zhHant';
60
60
  // @etsoo/restclient
61
- export { ApiAuthorizationScheme, createClient } from '@etsoo/restclient';
61
+ export { ApiAuthorizationScheme, ApiResponseType, createClient } from '@etsoo/restclient';
62
62
  // result
63
63
  export * from './result/ActionResult';
64
64
  export * from './result/ActionResultError';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/appscript",
3
- "version": "1.3.53",
3
+ "version": "1.3.54",
4
4
  "description": "Applications shared TypeScript framework",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
package/src/index.ts CHANGED
@@ -67,7 +67,11 @@ export * from './i18n/zhHans';
67
67
  export * from './i18n/zhHant';
68
68
 
69
69
  // @etsoo/restclient
70
- export { ApiAuthorizationScheme, createClient } from '@etsoo/restclient';
70
+ export {
71
+ ApiAuthorizationScheme,
72
+ ApiResponseType,
73
+ createClient
74
+ } from '@etsoo/restclient';
71
75
  export type { IApi, IApiPayload } from '@etsoo/restclient';
72
76
 
73
77
  // result