@xyo-network/address-payload-plugin 3.0.7 → 3.0.9

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.
@@ -0,0 +1,4 @@
1
+ export declare const AddressPayloadPlugin: () => import("@xyo-network/payload-plugin").PayloadPlugin<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/module-model").AddressFields & {
2
+ schema: "network.xyo.address";
3
+ }>;
4
+ //# sourceMappingURL=Plugin.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Plugin.d.ts","sourceRoot":"","sources":["../../src/Plugin.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,oBAAoB;;EAI7B,CAAA"}
@@ -0,0 +1,3 @@
1
+ import type { AddressPayload } from '@xyo-network/module-model';
2
+ export declare const addressPayloadTemplate: () => AddressPayload;
3
+ //# sourceMappingURL=Template.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Template.d.ts","sourceRoot":"","sources":["../../src/Template.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAG/D,eAAO,MAAM,sBAAsB,QAAO,cAGxC,CAAA"}
@@ -1,12 +1,3 @@
1
- import * as _xyo_network_payload_plugin from '@xyo-network/payload-plugin';
2
- import * as _xyo_network_module_model from '@xyo-network/module-model';
3
- import { AddressPayload } from '@xyo-network/module-model';
4
- import * as _xyo_network_payload_model from '@xyo-network/payload-model';
5
-
6
- declare const AddressPayloadPlugin: () => _xyo_network_payload_plugin.PayloadPlugin<_xyo_network_payload_model.SchemaFields & _xyo_network_payload_model.PayloadFields & _xyo_network_module_model.AddressFields & {
7
- schema: "network.xyo.address";
8
- }>;
9
-
10
- declare const addressPayloadTemplate: () => AddressPayload;
11
-
12
- export { AddressPayloadPlugin, addressPayloadTemplate, AddressPayloadPlugin as default };
1
+ export { AddressPayloadPlugin, AddressPayloadPlugin as default } from './Plugin.ts';
2
+ export * from './Template.ts';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,oBAAoB,IAAI,OAAO,EAAE,MAAM,aAAa,CAAA;AACnF,cAAc,eAAe,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/address-payload-plugin",
3
- "version": "3.0.7",
3
+ "version": "3.0.9",
4
4
  "description": "Typescript/Javascript Plugins for XYO Platform",
5
5
  "homepage": "https://xyo.network",
6
6
  "bugs": {
@@ -29,12 +29,12 @@
29
29
  "module": "dist/neutral/index.mjs",
30
30
  "types": "dist/neutral/index.d.ts",
31
31
  "dependencies": {
32
- "@xyo-network/module-model": "^3.0.7",
33
- "@xyo-network/payload-plugin": "^3.0.7"
32
+ "@xyo-network/module-model": "^3.0.9",
33
+ "@xyo-network/payload-plugin": "^3.0.9"
34
34
  },
35
35
  "devDependencies": {
36
- "@xylabs/ts-scripts-yarn3": "^4.0.0",
37
- "@xylabs/tsconfig": "^4.0.0",
36
+ "@xylabs/ts-scripts-yarn3": "^4.0.7",
37
+ "@xylabs/tsconfig": "^4.0.7",
38
38
  "typescript": "^5.5.4"
39
39
  },
40
40
  "publishConfig": {
package/xy.config.ts CHANGED
@@ -2,9 +2,7 @@ import type { XyTsupConfig } from '@xylabs/ts-scripts-yarn3'
2
2
  const config: XyTsupConfig = {
3
3
  compile: {
4
4
  browser: {},
5
- neutral: {
6
- src: true,
7
- },
5
+ neutral: { src: true },
8
6
  node: {},
9
7
  },
10
8
  }