@xyo-network/url-safety-payload-plugin 4.1.1 → 5.0.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/neutral/index.d.ts +4 -16
- package/package.json +10 -7
- package/typedoc.json +0 -5
- package/xy.config.ts +0 -10
package/dist/neutral/index.d.ts
CHANGED
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
declare const UrlSafetySchema = "network.xyo.url.safety";
|
|
6
|
-
type UrlSafetySchema = typeof UrlSafetySchema;
|
|
7
|
-
|
|
8
|
-
type UrlSafetyThreatType = 'SOCIAL_ENGINEERING' | 'POTENTIALLY_HARMFUL_APPLICATION' | 'UNWANTED_SOFTWARE' | 'THREAT_TYPE_UNSPECIFIED';
|
|
9
|
-
type UrlSafetyPayload = Payload<Omit<UrlPayload, 'schema'> & {
|
|
10
|
-
threatTypes?: UrlSafetyThreatType[];
|
|
11
|
-
}, UrlSafetySchema>;
|
|
12
|
-
|
|
13
|
-
declare const UrlSafetyPayloadPlugin: () => _xyo_network_payload_plugin.PayloadPlugin<UrlSafetyPayload>;
|
|
14
|
-
|
|
15
|
-
export { UrlSafetyPayloadPlugin, UrlSafetySchema, UrlSafetyPayloadPlugin as default };
|
|
16
|
-
export type { UrlSafetyPayload, UrlSafetyThreatType };
|
|
1
|
+
export * from './Payload.ts';
|
|
2
|
+
export { UrlSafetyPayloadPlugin as default, UrlSafetyPayloadPlugin } from './Plugin.ts';
|
|
3
|
+
export * from './Schema.ts';
|
|
4
|
+
//# sourceMappingURL=index.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/url-safety-payload-plugin",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "Typescript/Javascript Plugins for XYO Platform",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -28,15 +28,18 @@
|
|
|
28
28
|
},
|
|
29
29
|
"module": "dist/neutral/index.mjs",
|
|
30
30
|
"types": "dist/neutral/index.d.ts",
|
|
31
|
+
"files": [
|
|
32
|
+
"dist",
|
|
33
|
+
"src"
|
|
34
|
+
],
|
|
31
35
|
"dependencies": {
|
|
32
|
-
"@xyo-network/payload-model": "^
|
|
33
|
-
"@xyo-network/payload-plugin": "^
|
|
34
|
-
"@xyo-network/url-payload-plugin": "^
|
|
36
|
+
"@xyo-network/payload-model": "^5.0.0",
|
|
37
|
+
"@xyo-network/payload-plugin": "^5.0.0",
|
|
38
|
+
"@xyo-network/url-payload-plugin": "^5.0.0"
|
|
35
39
|
},
|
|
36
40
|
"devDependencies": {
|
|
37
|
-
"@xylabs/ts-scripts-yarn3": "^7.0.
|
|
38
|
-
"@xylabs/tsconfig": "^7.0.
|
|
39
|
-
"knip": "^5.62.0",
|
|
41
|
+
"@xylabs/ts-scripts-yarn3": "^7.0.2",
|
|
42
|
+
"@xylabs/tsconfig": "^7.0.2",
|
|
40
43
|
"typescript": "^5.8.3"
|
|
41
44
|
},
|
|
42
45
|
"publishConfig": {
|
package/typedoc.json
DELETED