tachyon-protocol 1.4.0 → 1.5.0
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.cts → index.d.mts} +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +30 -3
- package/dist/{index.cjs → index.mjs} +3 -30
- package/dist/validators.d.mts +3 -0
- package/dist/validators.d.ts +3 -0
- package/dist/validators.js +1 -1
- package/dist/validators.mjs +6 -0
- package/package.json +16 -12
- package/dist/validators.cjs +0 -1
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,6 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/compiled.ts
|
|
21
|
+
var compiled_exports = {};
|
|
22
|
+
__export(compiled_exports, {
|
|
23
|
+
tachyonMeta: () => tachyonMeta
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(compiled_exports);
|
|
26
|
+
|
|
1
27
|
// src/meta.ts
|
|
2
28
|
var tachyonMeta = {
|
|
3
|
-
"version": "1.
|
|
29
|
+
"version": "1.5.0",
|
|
4
30
|
"ids": {
|
|
5
31
|
"autohost": {
|
|
6
32
|
"slave": [
|
|
@@ -121,6 +147,7 @@ var tachyonMeta = {
|
|
|
121
147
|
}
|
|
122
148
|
}
|
|
123
149
|
};
|
|
124
|
-
export
|
|
150
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
151
|
+
0 && (module.exports = {
|
|
125
152
|
tachyonMeta
|
|
126
|
-
};
|
|
153
|
+
});
|
|
@@ -1,32 +1,6 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __export = (target, all) => {
|
|
7
|
-
for (var name in all)
|
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
-
};
|
|
10
|
-
var __copyProps = (to, from, except, desc) => {
|
|
11
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
-
for (let key of __getOwnPropNames(from))
|
|
13
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
-
}
|
|
16
|
-
return to;
|
|
17
|
-
};
|
|
18
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
-
|
|
20
|
-
// src/compiled.ts
|
|
21
|
-
var compiled_exports = {};
|
|
22
|
-
__export(compiled_exports, {
|
|
23
|
-
tachyonMeta: () => tachyonMeta
|
|
24
|
-
});
|
|
25
|
-
module.exports = __toCommonJS(compiled_exports);
|
|
26
|
-
|
|
27
1
|
// src/meta.ts
|
|
28
2
|
var tachyonMeta = {
|
|
29
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
30
4
|
"ids": {
|
|
31
5
|
"autohost": {
|
|
32
6
|
"slave": [
|
|
@@ -147,7 +121,6 @@ var tachyonMeta = {
|
|
|
147
121
|
}
|
|
148
122
|
}
|
|
149
123
|
};
|
|
150
|
-
|
|
151
|
-
0 && (module.exports = {
|
|
124
|
+
export {
|
|
152
125
|
tachyonMeta
|
|
153
|
-
}
|
|
126
|
+
};
|