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.
@@ -1,7 +1,7 @@
1
1
  import { EmptyObject, KeysOfUnion } from 'type-fest';
2
2
 
3
3
  declare const tachyonMeta: {
4
- readonly version: "1.4.0";
4
+ readonly version: "1.5.0";
5
5
  readonly ids: {
6
6
  readonly autohost: {
7
7
  readonly slave: readonly ["request", "response"];
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { EmptyObject, KeysOfUnion } from 'type-fest';
2
2
 
3
3
  declare const tachyonMeta: {
4
- readonly version: "1.4.0";
4
+ readonly version: "1.5.0";
5
5
  readonly ids: {
6
6
  readonly autohost: {
7
7
  readonly slave: readonly ["request", "response"];
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.4.0",
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.4.0",
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
- // Annotate the CommonJS export names for ESM import in node:
151
- 0 && (module.exports = {
124
+ export {
152
125
  tachyonMeta
153
- });
126
+ };
@@ -0,0 +1,3 @@
1
+ import type { ValidateFunction } from "ajv";
2
+ declare const validators: Record<string, ValidateFunction>;
3
+ export default validators;
@@ -0,0 +1,3 @@
1
+ import type { ValidateFunction } from "ajv";
2
+ declare const validators: Record<string, ValidateFunction>;
3
+ export default validators;