@xube/kit-constants 0.0.46 → 0.0.47

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.
package/dist/index.d.ts CHANGED
@@ -1,3 +1,5 @@
1
1
  export * from "./http";
2
2
  export declare const ERROR = "error";
3
3
  export declare const DATA = "data";
4
+ export declare const DEVICE = "device";
5
+ export declare const COMPONENT = "component";
package/dist/index.js CHANGED
@@ -14,7 +14,9 @@ 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.DATA = exports.ERROR = void 0;
17
+ exports.COMPONENT = exports.DEVICE = exports.DATA = exports.ERROR = void 0;
18
18
  __exportStar(require("./http"), exports);
19
19
  exports.ERROR = "error";
20
20
  exports.DATA = "data";
21
+ exports.DEVICE = "device";
22
+ exports.COMPONENT = "component";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xube/kit-constants",
3
- "version": "0.0.46",
3
+ "version": "0.0.47",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -20,6 +20,6 @@
20
20
  "zod": "^3.22.4"
21
21
  },
22
22
  "devDependencies": {
23
- "@xube/kit-build": "^0.0.46"
23
+ "@xube/kit-build": "^0.0.47"
24
24
  }
25
25
  }
package/src/index.ts CHANGED
@@ -1,4 +1,7 @@
1
1
  export * from "./http"
2
2
 
3
3
  export const ERROR = "error";
4
- export const DATA = "data";
4
+ export const DATA = "data";
5
+
6
+ export const DEVICE = "device";
7
+ export const COMPONENT = "component";