@digipair/skill-factory 0.91.0-0 → 0.92.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/index.cjs.d.ts +1 -0
- package/index.cjs.js +69 -0
- package/index.esm.js +28038 -0
- package/libs/skill-factory/src/lib/skill-factory.d.ts +9 -0
- package/package.json +7 -23
- package/.swcrc +0 -28
- package/README.md +0 -7
- package/eslint.config.mjs +0 -22
- package/rollup.config.cjs +0 -28
- package/src/handlebars.d.ts +0 -1
- package/src/lib/skill-factory.spec.ts +0 -7
- package/src/lib/skill-factory.ts +0 -85
- package/tsconfig.json +0 -13
- package/tsconfig.lib.json +0 -19
- /package/{src/index.d.ts → index.d.ts} +0 -0
- /package/{src/index.ts → libs/skill-factory/src/index.d.ts} +0 -0
- /package/{src/schema.fr.json → schema.fr.json} +0 -0
- /package/{src/schema.json → schema.json} +0 -0
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { PinsSettings } from '@digipair/engine';
|
|
2
|
+
export declare const initialize: (launcher: Function) => Promise<void>;
|
|
3
|
+
export declare const start: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
|
|
4
|
+
export declare const execute: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
|
|
5
|
+
export declare const keepAlive: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<void>;
|
|
6
|
+
export declare const stop: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<void>;
|
|
7
|
+
export declare const task: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
|
|
8
|
+
export declare const action: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
|
|
9
|
+
export declare const trigger: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
|
package/package.json
CHANGED
|
@@ -1,28 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digipair/skill-factory",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"type": "module",
|
|
5
|
-
"main": "dist/libs/skill-factory/index.cjs.js",
|
|
6
|
-
"module": "dist/libs/skill-factory/index.esm.js",
|
|
7
|
-
"types": "dist/libs/skill-factory/index.esm.d.ts",
|
|
8
|
-
"exports": {
|
|
9
|
-
"./package.json": "./libs/skill-factory/package.json",
|
|
10
|
-
".": {
|
|
11
|
-
"development": "./dist/libs/skill-factory/src/index.ts",
|
|
12
|
-
"types": "./dist/libs/skill-factory/index.esm.d.ts",
|
|
13
|
-
"import": "./dist/libs/skill-factory/index.esm.js",
|
|
14
|
-
"default": "./dist/libs/skill-factory/index.cjs.js"
|
|
15
|
-
}
|
|
16
|
-
},
|
|
3
|
+
"version": "0.92.0",
|
|
17
4
|
"keywords": [
|
|
18
5
|
"digipair",
|
|
19
|
-
"
|
|
20
|
-
"
|
|
6
|
+
"service",
|
|
7
|
+
"util"
|
|
21
8
|
],
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
"@digipair/engine": "0.91.0-0"
|
|
27
|
-
}
|
|
28
|
-
}
|
|
9
|
+
"dependencies": {},
|
|
10
|
+
"main": "./index.cjs.js",
|
|
11
|
+
"module": "./index.esm.js"
|
|
12
|
+
}
|
package/.swcrc
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"jsc": {
|
|
3
|
-
"target": "es2017",
|
|
4
|
-
"parser": {
|
|
5
|
-
"syntax": "typescript",
|
|
6
|
-
"decorators": true,
|
|
7
|
-
"dynamicImport": true
|
|
8
|
-
},
|
|
9
|
-
"transform": {
|
|
10
|
-
"decoratorMetadata": true,
|
|
11
|
-
"legacyDecorator": true
|
|
12
|
-
},
|
|
13
|
-
"keepClassNames": true,
|
|
14
|
-
"externalHelpers": true,
|
|
15
|
-
"loose": true
|
|
16
|
-
},
|
|
17
|
-
"module": {
|
|
18
|
-
"type": "es6"
|
|
19
|
-
},
|
|
20
|
-
"sourceMaps": true,
|
|
21
|
-
"exclude": [
|
|
22
|
-
"jest.config.ts",
|
|
23
|
-
".*\\.spec.tsx?$",
|
|
24
|
-
".*\\.test.tsx?$",
|
|
25
|
-
"./src/jest-setup.ts$",
|
|
26
|
-
"./**/jest-setup.ts$"
|
|
27
|
-
]
|
|
28
|
-
}
|
package/README.md
DELETED
package/eslint.config.mjs
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import baseConfig from '../../eslint.config.mjs';
|
|
2
|
-
|
|
3
|
-
export default [
|
|
4
|
-
...baseConfig,
|
|
5
|
-
{
|
|
6
|
-
files: ['**/*.json'],
|
|
7
|
-
rules: {
|
|
8
|
-
'@nx/dependency-checks': [
|
|
9
|
-
'error',
|
|
10
|
-
{
|
|
11
|
-
ignoredFiles: [
|
|
12
|
-
'{projectRoot}/eslint.config.{js,cjs,mjs}',
|
|
13
|
-
'{projectRoot}/rollup.config.{js,ts,mjs,mts,cjs,cts}',
|
|
14
|
-
],
|
|
15
|
-
},
|
|
16
|
-
],
|
|
17
|
-
},
|
|
18
|
-
languageOptions: {
|
|
19
|
-
parser: await import('jsonc-eslint-parser'),
|
|
20
|
-
},
|
|
21
|
-
},
|
|
22
|
-
];
|
package/rollup.config.cjs
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
const { withNx } = require('@nx/rollup/with-nx');
|
|
2
|
-
|
|
3
|
-
module.exports = withNx(
|
|
4
|
-
{
|
|
5
|
-
main: 'libs/skill-factory/src/index.ts',
|
|
6
|
-
outputPath: 'dist/libs/skill-factory',
|
|
7
|
-
tsConfig: 'libs/skill-factory/tsconfig.lib.json',
|
|
8
|
-
compiler: 'swc',
|
|
9
|
-
format: ['esm', "cjs"],
|
|
10
|
-
assets: [
|
|
11
|
-
{
|
|
12
|
-
input: 'libs/skill-factory/',
|
|
13
|
-
glob: 'package.json',
|
|
14
|
-
output: '.'
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
input: 'libs/skill-factory/src/',
|
|
18
|
-
glob: '*.json',
|
|
19
|
-
output: '.'
|
|
20
|
-
}
|
|
21
|
-
]
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
// Provide additional rollup configuration here. See: https://rollupjs.org/configuration-options
|
|
25
|
-
// e.g.
|
|
26
|
-
// output: { sourcemap: true },
|
|
27
|
-
}
|
|
28
|
-
);
|
package/src/handlebars.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
declare module 'handlebars/dist/handlebars.min.js';
|
package/src/lib/skill-factory.ts
DELETED
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
2
|
-
import { executePinsList, PinsSettings } from '@digipair/engine';
|
|
3
|
-
|
|
4
|
-
class FactoryService {
|
|
5
|
-
private startTask!: Function;
|
|
6
|
-
|
|
7
|
-
async initialize(startTask: Function) {
|
|
8
|
-
this.startTask = startTask;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
async start(params: any, _pinsSettingsList: PinsSettings[], context: any) {
|
|
12
|
-
const { reasoning, digipair = context.request.digipair, body = {}, factory = null } = params;
|
|
13
|
-
let result;
|
|
14
|
-
|
|
15
|
-
if (factory) {
|
|
16
|
-
const response = await fetch(`${factory}/${digipair}/${reasoning}`, body);
|
|
17
|
-
result = await response.json();
|
|
18
|
-
} else {
|
|
19
|
-
result = await this.startTask(context, digipair, reasoning, body);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
return result;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
async execute(params: any, _pinsSettingsList: PinsSettings[], _context: any) {
|
|
26
|
-
const { execute, context = _context } = params;
|
|
27
|
-
|
|
28
|
-
const result = await executePinsList(execute, context, `${context.__PATH__}.execute`);
|
|
29
|
-
return result;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
async keepAlive(_params: any, _pinsSettingsList: PinsSettings[], _context: any) {
|
|
33
|
-
throw { type: 'DIGIPAIR_KEEPALIVE' };
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
async stop(params: any, _pinsSettingsList: PinsSettings[], _context: any) {
|
|
37
|
-
const { value = {} } = params;
|
|
38
|
-
|
|
39
|
-
throw { type: 'DIGIPAIR_STOP', value };
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
async task(params: any, _pinsSettingsList: PinsSettings[], context: any): Promise<any> {
|
|
43
|
-
const { execute } = params;
|
|
44
|
-
|
|
45
|
-
return await executePinsList(execute, context, `${context.__PATH__}.execute`);
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
async action(params: any, _pinsSettingsList: PinsSettings[], context: any): Promise<any> {
|
|
49
|
-
const { execute } = params;
|
|
50
|
-
|
|
51
|
-
return await executePinsList(execute, context, `${context.__PATH__}.execute`);
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
async trigger(params: any, _pinsSettingsList: PinsSettings[], context: any): Promise<any> {
|
|
55
|
-
const { execute } = params;
|
|
56
|
-
|
|
57
|
-
return await executePinsList(execute, context, `${context.__PATH__}.execute`);
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
let instance: FactoryService;
|
|
62
|
-
|
|
63
|
-
export const initialize = (launcher: Function) =>
|
|
64
|
-
(instance = new FactoryService()).initialize(launcher);
|
|
65
|
-
|
|
66
|
-
export const start = (params: any, pinsSettingsList: PinsSettings[], context: any) =>
|
|
67
|
-
instance.start(params, pinsSettingsList, context);
|
|
68
|
-
|
|
69
|
-
export const execute = (params: any, pinsSettingsList: PinsSettings[], context: any) =>
|
|
70
|
-
new FactoryService().execute(params, pinsSettingsList, context);
|
|
71
|
-
|
|
72
|
-
export const keepAlive = (params: any, pinsSettingsList: PinsSettings[], context: any) =>
|
|
73
|
-
new FactoryService().keepAlive(params, pinsSettingsList, context);
|
|
74
|
-
|
|
75
|
-
export const stop = (params: any, pinsSettingsList: PinsSettings[], context: any) =>
|
|
76
|
-
new FactoryService().stop(params, pinsSettingsList, context);
|
|
77
|
-
|
|
78
|
-
export const task = (params: any, pinsSettingsList: PinsSettings[], context: any) =>
|
|
79
|
-
new FactoryService().task(params, pinsSettingsList, context);
|
|
80
|
-
|
|
81
|
-
export const action = (params: any, pinsSettingsList: PinsSettings[], context: any) =>
|
|
82
|
-
new FactoryService().action(params, pinsSettingsList, context);
|
|
83
|
-
|
|
84
|
-
export const trigger = (params: any, pinsSettingsList: PinsSettings[], context: any) =>
|
|
85
|
-
new FactoryService().trigger(params, pinsSettingsList, context);
|
package/tsconfig.json
DELETED
package/tsconfig.lib.json
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "../../tsconfig.base.json",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"rootDir": "src",
|
|
5
|
-
"outDir": "dist",
|
|
6
|
-
"tsBuildInfoFile": "dist/tsconfig.lib.tsbuildinfo",
|
|
7
|
-
"emitDeclarationOnly": true,
|
|
8
|
-
"module": "esnext",
|
|
9
|
-
"moduleResolution": "node",
|
|
10
|
-
"forceConsistentCasingInFileNames": true,
|
|
11
|
-
"types": ["node"]
|
|
12
|
-
},
|
|
13
|
-
"include": ["src/**/*.ts"],
|
|
14
|
-
"references": [
|
|
15
|
-
{
|
|
16
|
-
"path": "../engine/tsconfig.lib.json"
|
|
17
|
-
}
|
|
18
|
-
]
|
|
19
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|