@blue-labs/document-processor 2.0.0-rc.4 → 2.0.0-rc.6
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/constants/processor-contract-constants.d.ts +2 -2
- package/dist/constants/processor-contract-constants.d.ts.map +1 -1
- package/dist/engine/contract-loader.d.ts.map +1 -1
- package/dist/engine/processor-engine.d.ts +4 -1
- package/dist/engine/processor-engine.d.ts.map +1 -1
- package/dist/engine/processor-execution-context.d.ts.map +1 -1
- package/dist/index.js +720 -648
- package/dist/model/channels/document-update-channel.d.ts +4 -0
- package/dist/model/channels/document-update-channel.d.ts.map +1 -1
- package/dist/model/channels/embedded-node-channel.d.ts +4 -0
- package/dist/model/channels/embedded-node-channel.d.ts.map +1 -1
- package/dist/model/channels/lifecycle-channel.d.ts +4 -0
- package/dist/model/channels/lifecycle-channel.d.ts.map +1 -1
- package/dist/model/channels/myos-timeline-channel.d.ts +4 -0
- package/dist/model/channels/myos-timeline-channel.d.ts.map +1 -1
- package/dist/model/channels/timeline-channel.d.ts +4 -0
- package/dist/model/channels/timeline-channel.d.ts.map +1 -1
- package/dist/model/channels/triggered-event-channel.d.ts +4 -0
- package/dist/model/channels/triggered-event-channel.d.ts.map +1 -1
- package/dist/model/handlers/sequential-workflow-operation.d.ts +2 -2
- package/dist/model/handlers/sequential-workflow.d.ts +2 -2
- package/dist/model/markers/document-anchors.d.ts +26 -0
- package/dist/model/markers/document-anchors.d.ts.map +1 -0
- package/dist/model/markers/document-links.d.ts +26 -0
- package/dist/model/markers/document-links.d.ts.map +1 -0
- package/dist/model/markers/index.d.ts +5 -0
- package/dist/model/markers/index.d.ts.map +1 -1
- package/dist/model/markers/myos-participants-orchestration.d.ts +25 -0
- package/dist/model/markers/myos-participants-orchestration.d.ts.map +1 -0
- package/dist/model/markers/myos-session-interaction.d.ts +25 -0
- package/dist/model/markers/myos-session-interaction.d.ts.map +1 -0
- package/dist/model/markers/myos-worker-agency.d.ts +25 -0
- package/dist/model/markers/myos-worker-agency.d.ts.map +1 -0
- package/dist/model/shared/channel-contract-base.d.ts +3 -0
- package/dist/model/shared/channel-contract-base.d.ts.map +1 -1
- package/dist/model/shared/handler-contract-base.d.ts +2 -2
- package/dist/model/types.d.ts +2 -2
- package/dist/model/types.d.ts.map +1 -1
- package/dist/registry/processors/myos-timeline-channel-processor.d.ts +5 -1
- package/dist/registry/processors/myos-timeline-channel-processor.d.ts.map +1 -1
- package/dist/registry/processors/sequential-workflow-operation-processor.d.ts +2 -2
- package/dist/registry/processors/sequential-workflow-processor.d.ts +2 -2
- package/dist/registry/processors/steps/javascript-code-step-executor.d.ts +1 -1
- package/dist/registry/processors/timeline-channel-processor.d.ts +5 -1
- package/dist/registry/processors/timeline-channel-processor.d.ts.map +1 -1
- package/dist/test-support/blue.d.ts +5 -5
- package/package.json +6 -6
|
@@ -3,13 +3,14 @@ import { BlueNode } from '@blue-labs/language';
|
|
|
3
3
|
import { TimelineChannel } from '../../model/index.js';
|
|
4
4
|
export declare class TimelineChannelProcessor implements ChannelProcessor<TimelineChannel> {
|
|
5
5
|
readonly kind: "channel";
|
|
6
|
-
readonly blueIds: readonly ["
|
|
6
|
+
readonly blueIds: readonly ["EvuCWsG1E6WJQg8QXmk6rwMANYTZjoLWVZ1vYQWUwdTH"];
|
|
7
7
|
readonly schema: import('zod').ZodObject<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<{
|
|
8
8
|
description: import('zod').ZodOptional<import('zod').ZodString>;
|
|
9
9
|
name: import('zod').ZodOptional<import('zod').ZodString>;
|
|
10
10
|
order: import('zod').ZodOptional<import('zod').ZodNumber>;
|
|
11
11
|
}, {
|
|
12
12
|
description: import('zod').ZodOptional<import('zod').ZodString>;
|
|
13
|
+
event: import('zod').ZodOptional<import('zod').ZodType<import('@blue-labs/language').BlueNode, import('zod').ZodTypeDef, import('@blue-labs/language').BlueNode>>;
|
|
13
14
|
name: import('zod').ZodOptional<import('zod').ZodString>;
|
|
14
15
|
}>, {
|
|
15
16
|
description: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -21,6 +22,7 @@ export declare class TimelineChannelProcessor implements ChannelProcessor<Timeli
|
|
|
21
22
|
order: import('zod').ZodOptional<import('zod').ZodNumber>;
|
|
22
23
|
}, {
|
|
23
24
|
description: import('zod').ZodOptional<import('zod').ZodString>;
|
|
25
|
+
event: import('zod').ZodOptional<import('zod').ZodType<import('@blue-labs/language').BlueNode, import('zod').ZodTypeDef, import('@blue-labs/language').BlueNode>>;
|
|
24
26
|
name: import('zod').ZodOptional<import('zod').ZodString>;
|
|
25
27
|
}>, {
|
|
26
28
|
description: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -34,6 +36,7 @@ export declare class TimelineChannelProcessor implements ChannelProcessor<Timeli
|
|
|
34
36
|
description?: string | undefined;
|
|
35
37
|
name?: string | undefined;
|
|
36
38
|
order?: number | undefined;
|
|
39
|
+
event?: BlueNode | undefined;
|
|
37
40
|
definition?: BlueNode | undefined;
|
|
38
41
|
timelineId?: string | undefined;
|
|
39
42
|
}, {
|
|
@@ -41,6 +44,7 @@ export declare class TimelineChannelProcessor implements ChannelProcessor<Timeli
|
|
|
41
44
|
description?: string | undefined;
|
|
42
45
|
name?: string | undefined;
|
|
43
46
|
order?: number | undefined;
|
|
47
|
+
event?: BlueNode | undefined;
|
|
44
48
|
definition?: BlueNode | undefined;
|
|
45
49
|
timelineId?: string | undefined;
|
|
46
50
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"timeline-channel-processor.d.ts","sourceRoot":"","sources":["../../../src/registry/processors/timeline-channel-processor.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,wBAAwB,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAC9E,OAAO,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAG/C,OAAO,EAEL,KAAK,eAAe,EACrB,MAAM,sBAAsB,CAAC;AAE9B,qBAAa,wBACX,YAAW,gBAAgB,CAAC,eAAe,CAAC;IAE5C,QAAQ,CAAC,IAAI,EAAG,SAAS,CAAU;IACnC,QAAQ,CAAC,OAAO,4DAA0C;IAC1D,QAAQ,CAAC,MAAM
|
|
1
|
+
{"version":3,"file":"timeline-channel-processor.d.ts","sourceRoot":"","sources":["../../../src/registry/processors/timeline-channel-processor.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,wBAAwB,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAC9E,OAAO,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAG/C,OAAO,EAEL,KAAK,eAAe,EACrB,MAAM,sBAAsB,CAAC;AAE9B,qBAAa,wBACX,YAAW,gBAAgB,CAAC,eAAe,CAAC;IAE5C,QAAQ,CAAC,IAAI,EAAG,SAAS,CAAU;IACnC,QAAQ,CAAC,OAAO,4DAA0C;IAC1D,QAAQ,CAAC,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAAyB;IAExC,OAAO,CACL,QAAQ,EAAE,eAAe,EACzB,OAAO,EAAE,wBAAwB,GAChC,OAAO;IAkBV,UAAU,CACR,QAAQ,EAAE,eAAe,EACzB,OAAO,EAAE,wBAAwB,GAChC,QAAQ,GAAG,IAAI,GAAG,SAAS;CAO/B"}
|
|
@@ -2,26 +2,26 @@ import { Blue } from '@blue-labs/language';
|
|
|
2
2
|
export declare function createBlue(): Blue;
|
|
3
3
|
export declare const blueIds: {
|
|
4
4
|
readonly Boolean: "4EzhSubEimSQD3zrYHRtobfPPWntUuhEz8YcdxHsi12u";
|
|
5
|
-
readonly Channel: "
|
|
5
|
+
readonly Channel: "DcoJyCh7XXxy1nR5xjy7qfkUgQ1GiZnKKSxh8DJusBSr";
|
|
6
6
|
readonly 'Channel Event Checkpoint': "B7YQeYdQzUNuzaDQ4tNTd2iJqgd4YnVQkgz4QgymDWWU";
|
|
7
7
|
readonly Contract: "AERp8BWnuUsjoPciAeNXuUWS9fmqPNMdWbxmKn3tcitx";
|
|
8
8
|
readonly Dictionary: "G7fBT9PSod1RfHLHkpafAGBDVAJMrMhAMY51ERcyXNrj";
|
|
9
9
|
readonly 'Document Processing Initiated': "BrpmpNt5JkapeUvPqYcxgXZrHNZX3R757dRwuXXdfNM2";
|
|
10
10
|
readonly 'Document Processing Terminated': "5AJiAUgiSDwfCzv9rCYKNaAJu1hm8BXFu7eLNAEHNACr";
|
|
11
11
|
readonly 'Document Update': "7htwgHAXA9FjUGRytXFfwYMUZz4R3BDMfmeHeGvpscLP";
|
|
12
|
-
readonly 'Document Update Channel': "
|
|
12
|
+
readonly 'Document Update Channel': "6H1iGrDAcqtFE1qv3iyMTj79jCZsMUMxsNUzqYSJNbyR";
|
|
13
13
|
readonly Double: "7pwXmXYCJtWnd348c2JQGBkm9C4renmZRwxbfaypsx5y";
|
|
14
|
-
readonly 'Embedded Node Channel': "
|
|
14
|
+
readonly 'Embedded Node Channel': "Fjbu3QpnUaTruDTcTidETCX2N5STyv7KYxT42PCzGHxm";
|
|
15
15
|
readonly Handler: "9ZE5pGjtSGJgWJG7iAVz4iPEz5CatceX3yb3qp5MpAKJ";
|
|
16
16
|
readonly Integer: "5WNMiV9Knz63B4dVY5JtMyh3FB4FSGqv7ceScvuapdE1";
|
|
17
17
|
readonly 'Json Patch Entry': "Bz49DbfqKC1yJeCfv5RYPZUKTfb7rtZnmreCaz4RsXn5";
|
|
18
|
-
readonly 'Lifecycle Event Channel': "
|
|
18
|
+
readonly 'Lifecycle Event Channel': "H2aCCTUcLMTJozWkn7HPUjyFBFxamraw1q8DyWk87zxr";
|
|
19
19
|
readonly List: "6aehfNAxHLC1PHHoDr3tYtFH3RWNbiWdFancJ1bypXEY";
|
|
20
20
|
readonly Marker: "7QACj919YMRvFCTELCf6jfQTp41RVhtHdE6bPazLUZQ6";
|
|
21
21
|
readonly 'Process Embedded': "Hu4XkfvyXLSdfFNUwuXebEu3oJeWcMyhBTcRV9AQyKPC";
|
|
22
22
|
readonly 'Processing Initialized Marker': "EVguxFmq5iFtMZaBQgHfjWDojaoesQ1vEXCQFZ59yL28";
|
|
23
23
|
readonly 'Processing Terminated Marker': "5NiEhupJ6uF54Q3vs4GwQX4UX4ExtwHpKRVvjKEHtvjR";
|
|
24
24
|
readonly Text: "DLRQwz7MQeCrzjy9bohPNwtCxKEBbKaMK65KBrwjfG6K";
|
|
25
|
-
readonly 'Triggered Event Channel': "
|
|
25
|
+
readonly 'Triggered Event Channel': "C77W4kVGcxL7Mkx9WL9QESPEFFL2GzWAe647s1Efprt";
|
|
26
26
|
};
|
|
27
27
|
//# sourceMappingURL=blue.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blue-labs/document-processor",
|
|
3
|
-
"version": "2.0.0-rc.
|
|
3
|
+
"version": "2.0.0-rc.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"picomatch": "2.3.1",
|
|
23
|
-
"@blue-labs/language": "2.0.0-rc.
|
|
24
|
-
"@blue-labs/shared-utils": "2.0.0-rc.
|
|
23
|
+
"@blue-labs/language": "2.0.0-rc.6",
|
|
24
|
+
"@blue-labs/shared-utils": "2.0.0-rc.6",
|
|
25
25
|
"quickjs-emscripten": "0.31.0"
|
|
26
26
|
},
|
|
27
27
|
"license": "MIT",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"zod": "^3.20.0",
|
|
37
|
-
"@blue-repository/conversation": ">=0.
|
|
38
|
-
"@blue-repository/core": ">=0.
|
|
39
|
-
"@blue-repository/myos": ">=0.
|
|
37
|
+
"@blue-repository/conversation": ">=0.2.0 <1.0.0",
|
|
38
|
+
"@blue-repository/core": ">=0.2.0 <1.0.0",
|
|
39
|
+
"@blue-repository/myos": ">=0.5.0 <1.0.0"
|
|
40
40
|
}
|
|
41
41
|
}
|