@xyo-network/schema-plugin 2.83.0 → 2.84.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.
- package/dist/browser/Plugin.d.cts +551 -5
- package/dist/browser/Plugin.d.cts.map +1 -1
- package/dist/browser/Plugin.d.mts +551 -5
- package/dist/browser/Plugin.d.mts.map +1 -1
- package/dist/browser/Plugin.d.ts +551 -5
- package/dist/browser/Plugin.d.ts.map +1 -1
- package/dist/node/Plugin.d.cts +551 -5
- package/dist/node/Plugin.d.cts.map +1 -1
- package/dist/node/Plugin.d.mts +551 -5
- package/dist/node/Plugin.d.mts.map +1 -1
- package/dist/node/Plugin.d.ts +551 -5
- package/dist/node/Plugin.d.ts.map +1 -1
- package/dist/node/index.cjs +66 -0
- package/dist/node/index.cjs.map +1 -0
- package/dist/node/index.js +13 -42
- package/dist/node/index.js.map +1 -1
- package/package.json +15 -15
- package/dist/node/index.mjs +0 -37
- package/dist/node/index.mjs.map +0 -1
|
@@ -0,0 +1,66 @@
|
|
|
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/index.ts
|
|
21
|
+
var src_exports = {};
|
|
22
|
+
__export(src_exports, {
|
|
23
|
+
SchemaPlugin: () => SchemaPlugin,
|
|
24
|
+
SchemaWitness: () => SchemaWitness,
|
|
25
|
+
SchemaWitnessConfigSchema: () => SchemaWitnessConfigSchema,
|
|
26
|
+
default: () => src_default
|
|
27
|
+
});
|
|
28
|
+
module.exports = __toCommonJS(src_exports);
|
|
29
|
+
|
|
30
|
+
// src/Plugin.ts
|
|
31
|
+
var import_payload_model = require("@xyo-network/payload-model");
|
|
32
|
+
var import_payloadset_plugin = require("@xyo-network/payloadset-plugin");
|
|
33
|
+
var import_schema_payload_plugin = require("@xyo-network/schema-payload-plugin");
|
|
34
|
+
|
|
35
|
+
// src/Witness.ts
|
|
36
|
+
var import_delay = require("@xylabs/delay");
|
|
37
|
+
var import_abstract_witness = require("@xyo-network/abstract-witness");
|
|
38
|
+
var SchemaWitnessConfigSchema = "network.xyo.schema.witness.config";
|
|
39
|
+
var SchemaWitness = class extends import_abstract_witness.AbstractWitness {
|
|
40
|
+
static configSchemas = [SchemaWitnessConfigSchema];
|
|
41
|
+
async observeHandler(_payloads) {
|
|
42
|
+
await (0, import_delay.delay)(0);
|
|
43
|
+
throw new Error("Method not implemented.");
|
|
44
|
+
}
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
// src/Plugin.ts
|
|
48
|
+
var SchemaPlugin = () => (0, import_payloadset_plugin.createPayloadSetWitnessPlugin)(
|
|
49
|
+
{ required: { [import_schema_payload_plugin.SchemaSchema]: 1 }, schema: import_payload_model.PayloadSetSchema },
|
|
50
|
+
{
|
|
51
|
+
witness: async (params) => {
|
|
52
|
+
const result = await SchemaWitness.create(params);
|
|
53
|
+
return result;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
);
|
|
57
|
+
|
|
58
|
+
// src/index.ts
|
|
59
|
+
var src_default = SchemaPlugin;
|
|
60
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
61
|
+
0 && (module.exports = {
|
|
62
|
+
SchemaPlugin,
|
|
63
|
+
SchemaWitness,
|
|
64
|
+
SchemaWitnessConfigSchema
|
|
65
|
+
});
|
|
66
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/Plugin.ts","../../src/Witness.ts"],"sourcesContent":["import { SchemaPlugin } from './Plugin'\n\nexport * from './Witness'\n\nexport { SchemaPlugin }\n\n// eslint-disable-next-line import/no-default-export\nexport default SchemaPlugin\n","import { PayloadSetSchema } from '@xyo-network/payload-model'\nimport { createPayloadSetWitnessPlugin } from '@xyo-network/payloadset-plugin'\nimport { SchemaSchema } from '@xyo-network/schema-payload-plugin'\n\nimport { SchemaWitness } from './Witness'\n\nexport const SchemaPlugin = () =>\n createPayloadSetWitnessPlugin<SchemaWitness>(\n { required: { [SchemaSchema]: 1 }, schema: PayloadSetSchema },\n {\n witness: async (params) => {\n const result = await SchemaWitness.create(params)\n return result\n },\n },\n )\n","import { delay } from '@xylabs/delay'\nimport { AbstractWitness } from '@xyo-network/abstract-witness'\nimport { AnyConfigSchema } from '@xyo-network/module-model'\nimport { Payload } from '@xyo-network/payload-model'\nimport { SchemaPayload } from '@xyo-network/schema-payload-plugin'\nimport { WitnessConfig, WitnessModule, WitnessParams } from '@xyo-network/witness-model'\n\nexport type SchemaWitnessConfigSchema = 'network.xyo.schema.witness.config'\nexport const SchemaWitnessConfigSchema: SchemaWitnessConfigSchema = 'network.xyo.schema.witness.config'\n\nexport type SchemaWitnessConfig = WitnessConfig<{ schema: SchemaWitnessConfigSchema }>\n\nexport type SchemaWitnessParams = WitnessParams<AnyConfigSchema<SchemaWitnessConfig>>\n\nexport class SchemaWitness<TParams extends SchemaWitnessParams = SchemaWitnessParams> extends AbstractWitness<TParams> implements WitnessModule {\n static override configSchemas = [SchemaWitnessConfigSchema]\n\n protected override async observeHandler(_payloads?: Payload[]): Promise<SchemaPayload[]> {\n await delay(0)\n throw new Error('Method not implemented.')\n }\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA,2BAAiC;AACjC,+BAA8C;AAC9C,mCAA6B;;;ACF7B,mBAAsB;AACtB,8BAAgC;AAOzB,IAAM,4BAAuD;AAM7D,IAAM,gBAAN,cAAuF,wCAAkD;AAAA,EAC9I,OAAgB,gBAAgB,CAAC,yBAAyB;AAAA,EAE1D,MAAyB,eAAe,WAAiD;AACvF,cAAM,oBAAM,CAAC;AACb,UAAM,IAAI,MAAM,yBAAyB;AAAA,EAC3C;AACF;;;ADfO,IAAM,eAAe,UAC1B;AAAA,EACE,EAAE,UAAU,EAAE,CAAC,yCAAY,GAAG,EAAE,GAAG,QAAQ,sCAAiB;AAAA,EAC5D;AAAA,IACE,SAAS,OAAO,WAAW;AACzB,YAAM,SAAS,MAAM,cAAc,OAAO,MAAM;AAChD,aAAO;AAAA,IACT;AAAA,EACF;AACF;;;ADRF,IAAO,cAAQ;","names":[]}
|
package/dist/node/index.js
CHANGED
|
@@ -1,52 +1,23 @@
|
|
|
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/index.ts
|
|
21
|
-
var src_exports = {};
|
|
22
|
-
__export(src_exports, {
|
|
23
|
-
SchemaPlugin: () => SchemaPlugin,
|
|
24
|
-
SchemaWitness: () => SchemaWitness,
|
|
25
|
-
SchemaWitnessConfigSchema: () => SchemaWitnessConfigSchema,
|
|
26
|
-
default: () => src_default
|
|
27
|
-
});
|
|
28
|
-
module.exports = __toCommonJS(src_exports);
|
|
29
|
-
|
|
30
1
|
// src/Plugin.ts
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
2
|
+
import { PayloadSetSchema } from "@xyo-network/payload-model";
|
|
3
|
+
import { createPayloadSetWitnessPlugin } from "@xyo-network/payloadset-plugin";
|
|
4
|
+
import { SchemaSchema } from "@xyo-network/schema-payload-plugin";
|
|
34
5
|
|
|
35
6
|
// src/Witness.ts
|
|
36
|
-
|
|
37
|
-
|
|
7
|
+
import { delay } from "@xylabs/delay";
|
|
8
|
+
import { AbstractWitness } from "@xyo-network/abstract-witness";
|
|
38
9
|
var SchemaWitnessConfigSchema = "network.xyo.schema.witness.config";
|
|
39
|
-
var SchemaWitness = class extends
|
|
10
|
+
var SchemaWitness = class extends AbstractWitness {
|
|
40
11
|
static configSchemas = [SchemaWitnessConfigSchema];
|
|
41
12
|
async observeHandler(_payloads) {
|
|
42
|
-
await
|
|
13
|
+
await delay(0);
|
|
43
14
|
throw new Error("Method not implemented.");
|
|
44
15
|
}
|
|
45
16
|
};
|
|
46
17
|
|
|
47
18
|
// src/Plugin.ts
|
|
48
|
-
var SchemaPlugin = () =>
|
|
49
|
-
{ required: { [
|
|
19
|
+
var SchemaPlugin = () => createPayloadSetWitnessPlugin(
|
|
20
|
+
{ required: { [SchemaSchema]: 1 }, schema: PayloadSetSchema },
|
|
50
21
|
{
|
|
51
22
|
witness: async (params) => {
|
|
52
23
|
const result = await SchemaWitness.create(params);
|
|
@@ -57,10 +28,10 @@ var SchemaPlugin = () => (0, import_payloadset_plugin.createPayloadSetWitnessPlu
|
|
|
57
28
|
|
|
58
29
|
// src/index.ts
|
|
59
30
|
var src_default = SchemaPlugin;
|
|
60
|
-
|
|
61
|
-
0 && (module.exports = {
|
|
31
|
+
export {
|
|
62
32
|
SchemaPlugin,
|
|
63
33
|
SchemaWitness,
|
|
64
|
-
SchemaWitnessConfigSchema
|
|
65
|
-
|
|
34
|
+
SchemaWitnessConfigSchema,
|
|
35
|
+
src_default as default
|
|
36
|
+
};
|
|
66
37
|
//# sourceMappingURL=index.js.map
|
package/dist/node/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/
|
|
1
|
+
{"version":3,"sources":["../../src/Plugin.ts","../../src/Witness.ts","../../src/index.ts"],"sourcesContent":["import { PayloadSetSchema } from '@xyo-network/payload-model'\nimport { createPayloadSetWitnessPlugin } from '@xyo-network/payloadset-plugin'\nimport { SchemaSchema } from '@xyo-network/schema-payload-plugin'\n\nimport { SchemaWitness } from './Witness'\n\nexport const SchemaPlugin = () =>\n createPayloadSetWitnessPlugin<SchemaWitness>(\n { required: { [SchemaSchema]: 1 }, schema: PayloadSetSchema },\n {\n witness: async (params) => {\n const result = await SchemaWitness.create(params)\n return result\n },\n },\n )\n","import { delay } from '@xylabs/delay'\nimport { AbstractWitness } from '@xyo-network/abstract-witness'\nimport { AnyConfigSchema } from '@xyo-network/module-model'\nimport { Payload } from '@xyo-network/payload-model'\nimport { SchemaPayload } from '@xyo-network/schema-payload-plugin'\nimport { WitnessConfig, WitnessModule, WitnessParams } from '@xyo-network/witness-model'\n\nexport type SchemaWitnessConfigSchema = 'network.xyo.schema.witness.config'\nexport const SchemaWitnessConfigSchema: SchemaWitnessConfigSchema = 'network.xyo.schema.witness.config'\n\nexport type SchemaWitnessConfig = WitnessConfig<{ schema: SchemaWitnessConfigSchema }>\n\nexport type SchemaWitnessParams = WitnessParams<AnyConfigSchema<SchemaWitnessConfig>>\n\nexport class SchemaWitness<TParams extends SchemaWitnessParams = SchemaWitnessParams> extends AbstractWitness<TParams> implements WitnessModule {\n static override configSchemas = [SchemaWitnessConfigSchema]\n\n protected override async observeHandler(_payloads?: Payload[]): Promise<SchemaPayload[]> {\n await delay(0)\n throw new Error('Method not implemented.')\n }\n}\n","import { SchemaPlugin } from './Plugin'\n\nexport * from './Witness'\n\nexport { SchemaPlugin }\n\n// eslint-disable-next-line import/no-default-export\nexport default SchemaPlugin\n"],"mappings":";AAAA,SAAS,wBAAwB;AACjC,SAAS,qCAAqC;AAC9C,SAAS,oBAAoB;;;ACF7B,SAAS,aAAa;AACtB,SAAS,uBAAuB;AAOzB,IAAM,4BAAuD;AAM7D,IAAM,gBAAN,cAAuF,gBAAkD;AAAA,EAC9I,OAAgB,gBAAgB,CAAC,yBAAyB;AAAA,EAE1D,MAAyB,eAAe,WAAiD;AACvF,UAAM,MAAM,CAAC;AACb,UAAM,IAAI,MAAM,yBAAyB;AAAA,EAC3C;AACF;;;ADfO,IAAM,eAAe,MAC1B;AAAA,EACE,EAAE,UAAU,EAAE,CAAC,YAAY,GAAG,EAAE,GAAG,QAAQ,iBAAiB;AAAA,EAC5D;AAAA,IACE,SAAS,OAAO,WAAW;AACzB,YAAM,SAAS,MAAM,cAAc,OAAO,MAAM;AAChD,aAAO;AAAA,IACT;AAAA,EACF;AACF;;;AERF,IAAO,cAAQ;","names":[]}
|
package/package.json
CHANGED
|
@@ -11,20 +11,19 @@
|
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@xylabs/delay": "^2.13.20",
|
|
14
|
-
"@xyo-network/abstract-witness": "^2.
|
|
15
|
-
"@xyo-network/module-model": "^2.
|
|
16
|
-
"@xyo-network/payload-model": "^2.
|
|
17
|
-
"@xyo-network/payloadset-plugin": "^2.
|
|
18
|
-
"@xyo-network/schema-payload-plugin": "~2.
|
|
19
|
-
"@xyo-network/witness-model": "^2.
|
|
14
|
+
"@xyo-network/abstract-witness": "^2.84.3",
|
|
15
|
+
"@xyo-network/module-model": "^2.84.3",
|
|
16
|
+
"@xyo-network/payload-model": "^2.84.3",
|
|
17
|
+
"@xyo-network/payloadset-plugin": "^2.84.3",
|
|
18
|
+
"@xyo-network/schema-payload-plugin": "~2.84.1",
|
|
19
|
+
"@xyo-network/witness-model": "^2.84.3"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@xylabs/ts-scripts-yarn3": "^3.2.
|
|
23
|
-
"@xylabs/tsconfig": "^3.2.
|
|
22
|
+
"@xylabs/ts-scripts-yarn3": "^3.2.19",
|
|
23
|
+
"@xylabs/tsconfig": "^3.2.19",
|
|
24
24
|
"typescript": "^5.3.3"
|
|
25
25
|
},
|
|
26
26
|
"description": "Typescript/Javascript Plugins for XYO Platform",
|
|
27
|
-
"docs": "dist/docs.json",
|
|
28
27
|
"types": "dist/node/index.d.ts",
|
|
29
28
|
"exports": {
|
|
30
29
|
".": {
|
|
@@ -40,19 +39,19 @@
|
|
|
40
39
|
},
|
|
41
40
|
"node": {
|
|
42
41
|
"require": {
|
|
43
|
-
"types": "./dist/node/index.d.
|
|
44
|
-
"default": "./dist/node/index.
|
|
42
|
+
"types": "./dist/node/index.d.cts",
|
|
43
|
+
"default": "./dist/node/index.cjs"
|
|
45
44
|
},
|
|
46
45
|
"import": {
|
|
47
46
|
"types": "./dist/node/index.d.mts",
|
|
48
|
-
"default": "./dist/node/index.
|
|
47
|
+
"default": "./dist/node/index.js"
|
|
49
48
|
}
|
|
50
49
|
}
|
|
51
50
|
},
|
|
52
51
|
"./package.json": "./package.json"
|
|
53
52
|
},
|
|
54
|
-
"main": "dist/node/index.
|
|
55
|
-
"module": "dist/node/index.
|
|
53
|
+
"main": "dist/node/index.cjs",
|
|
54
|
+
"module": "dist/node/index.js",
|
|
56
55
|
"homepage": "https://xyo.network",
|
|
57
56
|
"license": "LGPL-3.0-only",
|
|
58
57
|
"publishConfig": {
|
|
@@ -63,5 +62,6 @@
|
|
|
63
62
|
"url": "https://github.com/XYOracleNetwork/plugins.git"
|
|
64
63
|
},
|
|
65
64
|
"sideEffects": false,
|
|
66
|
-
"version": "2.
|
|
65
|
+
"version": "2.84.1",
|
|
66
|
+
"type": "module"
|
|
67
67
|
}
|
package/dist/node/index.mjs
DELETED
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
// src/Plugin.ts
|
|
2
|
-
import { PayloadSetSchema } from "@xyo-network/payload-model";
|
|
3
|
-
import { createPayloadSetWitnessPlugin } from "@xyo-network/payloadset-plugin";
|
|
4
|
-
import { SchemaSchema } from "@xyo-network/schema-payload-plugin";
|
|
5
|
-
|
|
6
|
-
// src/Witness.ts
|
|
7
|
-
import { delay } from "@xylabs/delay";
|
|
8
|
-
import { AbstractWitness } from "@xyo-network/abstract-witness";
|
|
9
|
-
var SchemaWitnessConfigSchema = "network.xyo.schema.witness.config";
|
|
10
|
-
var SchemaWitness = class extends AbstractWitness {
|
|
11
|
-
static configSchemas = [SchemaWitnessConfigSchema];
|
|
12
|
-
async observeHandler(_payloads) {
|
|
13
|
-
await delay(0);
|
|
14
|
-
throw new Error("Method not implemented.");
|
|
15
|
-
}
|
|
16
|
-
};
|
|
17
|
-
|
|
18
|
-
// src/Plugin.ts
|
|
19
|
-
var SchemaPlugin = () => createPayloadSetWitnessPlugin(
|
|
20
|
-
{ required: { [SchemaSchema]: 1 }, schema: PayloadSetSchema },
|
|
21
|
-
{
|
|
22
|
-
witness: async (params) => {
|
|
23
|
-
const result = await SchemaWitness.create(params);
|
|
24
|
-
return result;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
);
|
|
28
|
-
|
|
29
|
-
// src/index.ts
|
|
30
|
-
var src_default = SchemaPlugin;
|
|
31
|
-
export {
|
|
32
|
-
SchemaPlugin,
|
|
33
|
-
SchemaWitness,
|
|
34
|
-
SchemaWitnessConfigSchema,
|
|
35
|
-
src_default as default
|
|
36
|
-
};
|
|
37
|
-
//# sourceMappingURL=index.mjs.map
|
package/dist/node/index.mjs.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Plugin.ts","../../src/Witness.ts","../../src/index.ts"],"sourcesContent":["import { PayloadSetSchema } from '@xyo-network/payload-model'\nimport { createPayloadSetWitnessPlugin } from '@xyo-network/payloadset-plugin'\nimport { SchemaSchema } from '@xyo-network/schema-payload-plugin'\n\nimport { SchemaWitness } from './Witness'\n\nexport const SchemaPlugin = () =>\n createPayloadSetWitnessPlugin<SchemaWitness>(\n { required: { [SchemaSchema]: 1 }, schema: PayloadSetSchema },\n {\n witness: async (params) => {\n const result = await SchemaWitness.create(params)\n return result\n },\n },\n )\n","import { delay } from '@xylabs/delay'\nimport { AbstractWitness } from '@xyo-network/abstract-witness'\nimport { AnyConfigSchema } from '@xyo-network/module-model'\nimport { Payload } from '@xyo-network/payload-model'\nimport { SchemaPayload } from '@xyo-network/schema-payload-plugin'\nimport { WitnessConfig, WitnessModule, WitnessParams } from '@xyo-network/witness-model'\n\nexport type SchemaWitnessConfigSchema = 'network.xyo.schema.witness.config'\nexport const SchemaWitnessConfigSchema: SchemaWitnessConfigSchema = 'network.xyo.schema.witness.config'\n\nexport type SchemaWitnessConfig = WitnessConfig<{ schema: SchemaWitnessConfigSchema }>\n\nexport type SchemaWitnessParams = WitnessParams<AnyConfigSchema<SchemaWitnessConfig>>\n\nexport class SchemaWitness<TParams extends SchemaWitnessParams = SchemaWitnessParams> extends AbstractWitness<TParams> implements WitnessModule {\n static override configSchemas = [SchemaWitnessConfigSchema]\n\n protected override async observeHandler(_payloads?: Payload[]): Promise<SchemaPayload[]> {\n await delay(0)\n throw new Error('Method not implemented.')\n }\n}\n","import { SchemaPlugin } from './Plugin'\n\nexport * from './Witness'\n\nexport { SchemaPlugin }\n\n// eslint-disable-next-line import/no-default-export\nexport default SchemaPlugin\n"],"mappings":";AAAA,SAAS,wBAAwB;AACjC,SAAS,qCAAqC;AAC9C,SAAS,oBAAoB;;;ACF7B,SAAS,aAAa;AACtB,SAAS,uBAAuB;AAOzB,IAAM,4BAAuD;AAM7D,IAAM,gBAAN,cAAuF,gBAAkD;AAAA,EAC9I,OAAgB,gBAAgB,CAAC,yBAAyB;AAAA,EAE1D,MAAyB,eAAe,WAAiD;AACvF,UAAM,MAAM,CAAC;AACb,UAAM,IAAI,MAAM,yBAAyB;AAAA,EAC3C;AACF;;;ADfO,IAAM,eAAe,MAC1B;AAAA,EACE,EAAE,UAAU,EAAE,CAAC,YAAY,GAAG,EAAE,GAAG,QAAQ,iBAAiB;AAAA,EAC5D;AAAA,IACE,SAAS,OAAO,WAAW;AACzB,YAAM,SAAS,MAAM,cAAc,OAAO,MAAM;AAChD,aAAO;AAAA,IACT;AAAA,EACF;AACF;;;AERF,IAAO,cAAQ;","names":[]}
|