@xyo-network/schema-payload-plugin 4.1.2 → 4.1.3

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,41 +1,5 @@
1
- import * as _xyo_network_payload_model from '@xyo-network/payload-model';
2
- import { Payload } from '@xyo-network/payload-model';
3
- import * as _xyo_network_payload_plugin from '@xyo-network/payload-plugin';
4
-
5
- declare const SchemaSchema: "network.xyo.schema";
6
- type SchemaSchema = typeof SchemaSchema;
7
-
8
- type SchemaPayload = Payload<{
9
- /**
10
- * The schema definition
11
- */
12
- definition: {
13
- [key: string]: unknown;
14
- $id?: string;
15
- };
16
- /**
17
- * The schema this schema extends (if any)
18
- */
19
- extends?: string;
20
- /** @deprecated use definition.$id instead */
21
- name?: string;
22
- /**
23
- * The version of the schema major * 1,000,000 + minor * 1,000 + patch
24
- */
25
- version?: number;
26
- }, SchemaSchema>;
27
- /**
28
- * Identity function for determining if an object is an Schema
29
- */
30
- declare const isSchemaPayload: (x?: unknown | null) => x is SchemaPayload;
31
- /**
32
- * Identity function for determining if an object is an Schema with sources
33
- */
34
- declare const isSchemaPayloadWithSources: (x?: unknown | null) => x is _xyo_network_payload_model.WithSources<SchemaPayload>;
35
-
36
- declare const SchemaPayloadPlugin: () => _xyo_network_payload_plugin.PayloadPlugin<SchemaPayload>;
37
-
38
- declare const schemaPayloadTemplate: () => SchemaPayload;
39
-
40
- export { SchemaPayloadPlugin, SchemaSchema, SchemaPayloadPlugin as default, isSchemaPayload, isSchemaPayloadWithSources, schemaPayloadTemplate };
41
- export type { SchemaPayload };
1
+ export * from './Payload.ts';
2
+ export { SchemaPayloadPlugin as default, SchemaPayloadPlugin } from './Plugin.ts';
3
+ export * from './Schema.ts';
4
+ export * from './Template.ts';
5
+ //# sourceMappingURL=index.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/schema-payload-plugin",
3
- "version": "4.1.2",
3
+ "version": "4.1.3",
4
4
  "description": "Typescript/Javascript Plugins for XYO Platform",
5
5
  "homepage": "https://xyo.network",
6
6
  "bugs": {
@@ -29,13 +29,13 @@
29
29
  "module": "dist/neutral/index.mjs",
30
30
  "types": "dist/neutral/index.d.ts",
31
31
  "dependencies": {
32
- "@xyo-network/payload-model": "^4.1.2",
33
- "@xyo-network/payload-plugin": "^4.1.2"
32
+ "@xyo-network/payload-model": "^4.1.3",
33
+ "@xyo-network/payload-plugin": "^4.1.3"
34
34
  },
35
35
  "devDependencies": {
36
- "@xylabs/ts-scripts-yarn3": "^7.0.0-rc.23",
37
- "@xylabs/tsconfig": "^7.0.0-rc.23",
38
- "@xylabs/vitest-extended": "^4.13.15",
36
+ "@xylabs/ts-scripts-yarn3": "^7.0.0-rc.27",
37
+ "@xylabs/tsconfig": "^7.0.0-rc.27",
38
+ "@xylabs/vitest-extended": "^4.13.16",
39
39
  "typescript": "^5.8.3",
40
40
  "vitest": "^3.2.4"
41
41
  },