@athree/runner-proto 3.4.3 → 4.0.0-wip.1
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/out/main/domains/StateDomain.d.ts +13 -0
- package/out/main/domains/StateDomain.js +25 -0
- package/out/main/domains/StateDomain.js.map +1 -0
- package/out/main/domains/WorkflowDomain.d.ts +5 -1
- package/out/main/domains/WorkflowDomain.js +7 -5
- package/out/main/domains/WorkflowDomain.js.map +1 -1
- package/out/main/index.d.ts +3 -5
- package/out/main/index.js +3 -5
- package/out/main/index.js.map +1 -1
- package/out/main/protocol.d.ts +2 -4
- package/out/main/protocol.js +2 -4
- package/out/main/protocol.js.map +1 -1
- package/out/main/schema/StateData.d.ts +6 -0
- package/out/main/schema/{DebugInstanceData.js → StateData.js} +2 -2
- package/out/main/schema/StateData.js.map +1 -0
- package/out/main/schema/StateUpdate.d.ts +7 -0
- package/out/main/schema/{DebugInstanceUpdate.js → StateUpdate.js} +2 -2
- package/out/main/schema/StateUpdate.js.map +1 -0
- package/package.json +1 -1
- package/out/main/domains/DebugDomain.d.ts +0 -13
- package/out/main/domains/DebugDomain.js +0 -25
- package/out/main/domains/DebugDomain.js.map +0 -1
- package/out/main/schema/DebugInstanceData.d.ts +0 -6
- package/out/main/schema/DebugInstanceData.js.map +0 -1
- package/out/main/schema/DebugInstanceUpdate.d.ts +0 -7
- package/out/main/schema/DebugInstanceUpdate.js.map +0 -1
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { DomainDef } from '@nodescript/protocomm';
|
|
2
|
+
import { Event } from 'nanoevent';
|
|
3
|
+
import { StateData } from '../schema/StateData.js';
|
|
4
|
+
import { StateUpdate } from '../schema/StateUpdate.js';
|
|
5
|
+
export interface StateDomain {
|
|
6
|
+
getStateData(req: {}): Promise<{
|
|
7
|
+
data: StateData[];
|
|
8
|
+
}>;
|
|
9
|
+
stateUpdated: Event<{
|
|
10
|
+
update: StateUpdate;
|
|
11
|
+
}>;
|
|
12
|
+
}
|
|
13
|
+
export declare const StateDomain: DomainDef<StateDomain>;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { StateDataSchema } from '../schema/StateData.js';
|
|
2
|
+
import { StateUpdateSchema } from '../schema/StateUpdate.js';
|
|
3
|
+
export const StateDomain = {
|
|
4
|
+
name: 'State',
|
|
5
|
+
methods: {
|
|
6
|
+
getStateData: {
|
|
7
|
+
type: 'query',
|
|
8
|
+
params: {},
|
|
9
|
+
returns: {
|
|
10
|
+
data: {
|
|
11
|
+
type: 'array',
|
|
12
|
+
items: StateDataSchema.schema,
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
events: {
|
|
18
|
+
stateUpdated: {
|
|
19
|
+
params: {
|
|
20
|
+
update: StateUpdateSchema.schema,
|
|
21
|
+
},
|
|
22
|
+
},
|
|
23
|
+
},
|
|
24
|
+
};
|
|
25
|
+
//# sourceMappingURL=StateDomain.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StateDomain.js","sourceRoot":"","sources":["../../../src/main/domains/StateDomain.ts"],"names":[],"mappings":"AAGA,OAAO,EAAa,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACpE,OAAO,EAAe,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAY1E,MAAM,CAAC,MAAM,WAAW,GAA2B;IAC/C,IAAI,EAAE,OAAO;IACb,OAAO,EAAE;QACL,YAAY,EAAE;YACV,IAAI,EAAE,OAAO;YACb,MAAM,EAAE,EAAE;YACV,OAAO,EAAE;gBACL,IAAI,EAAE;oBACF,IAAI,EAAE,OAAO;oBACb,KAAK,EAAE,eAAe,CAAC,MAAM;iBAChC;aACJ;SACJ;KACJ;IACD,MAAM,EAAE;QACJ,YAAY,EAAE;YACV,MAAM,EAAE;gBACJ,MAAM,EAAE,iBAAiB,CAAC,MAAM;aACnC;SACJ;KACJ;CACJ,CAAC"}
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
import { DomainDef } from '@nodescript/protocomm';
|
|
2
2
|
import { WorkflowInfo } from '../schema/WorkflowInfo.js';
|
|
3
3
|
export interface WorkflowDomain {
|
|
4
|
+
loadWorkflow(req: {
|
|
5
|
+
workflowId: string;
|
|
6
|
+
}): Promise<{
|
|
7
|
+
workflowInfo: WorkflowInfo;
|
|
8
|
+
}>;
|
|
4
9
|
getWorkflowInfo(req: {}): Promise<{
|
|
5
10
|
workflowInfo: WorkflowInfo;
|
|
6
11
|
}>;
|
|
7
|
-
syncStart(req: {}): Promise<{}>;
|
|
8
12
|
}
|
|
9
13
|
export declare const WorkflowDomain: DomainDef<WorkflowDomain>;
|
|
@@ -2,18 +2,20 @@ import { WorkflowInfoSchema } from '../schema/WorkflowInfo.js';
|
|
|
2
2
|
export const WorkflowDomain = {
|
|
3
3
|
name: 'Workflow',
|
|
4
4
|
methods: {
|
|
5
|
-
|
|
6
|
-
type: '
|
|
7
|
-
params: {
|
|
5
|
+
loadWorkflow: {
|
|
6
|
+
type: 'command',
|
|
7
|
+
params: {
|
|
8
|
+
workflowId: { type: 'string' },
|
|
9
|
+
},
|
|
8
10
|
returns: {
|
|
9
11
|
workflowInfo: WorkflowInfoSchema.schema,
|
|
10
12
|
},
|
|
11
13
|
},
|
|
12
|
-
|
|
14
|
+
getWorkflowInfo: {
|
|
13
15
|
type: 'query',
|
|
14
16
|
params: {},
|
|
15
17
|
returns: {
|
|
16
|
-
workflowInfo: WorkflowInfoSchema.schema
|
|
18
|
+
workflowInfo: WorkflowInfoSchema.schema,
|
|
17
19
|
},
|
|
18
20
|
},
|
|
19
21
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"WorkflowDomain.js","sourceRoot":"","sources":["../../../src/main/domains/WorkflowDomain.ts"],"names":[],"mappings":"AAEA,OAAO,EAAgB,kBAAkB,EAAE,MAAM,2BAA2B,CAAC;
|
|
1
|
+
{"version":3,"file":"WorkflowDomain.js","sourceRoot":"","sources":["../../../src/main/domains/WorkflowDomain.ts"],"names":[],"mappings":"AAEA,OAAO,EAAgB,kBAAkB,EAAE,MAAM,2BAA2B,CAAC;AAe7E,MAAM,CAAC,MAAM,cAAc,GAA8B;IACrD,IAAI,EAAE,UAAU;IAChB,OAAO,EAAE;QACL,YAAY,EAAE;YACV,IAAI,EAAE,SAAS;YACf,MAAM,EAAE;gBACJ,UAAU,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;aACjC;YACD,OAAO,EAAE;gBACL,YAAY,EAAE,kBAAkB,CAAC,MAAM;aAC1C;SACJ;QACD,eAAe,EAAE;YACb,IAAI,EAAE,OAAO;YACb,MAAM,EAAE,EAAE;YACV,OAAO,EAAE;gBACL,YAAY,EAAE,kBAAkB,CAAC,MAAM;aAC1C;SACJ;KACJ;IACD,MAAM,EAAE,EAAE;CACb,CAAC"}
|
package/out/main/index.d.ts
CHANGED
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
export * from './domains/AutomationDomain.js';
|
|
2
1
|
export * from './domains/BrowserDomain.js';
|
|
3
2
|
export * from './domains/ChatDomain.js';
|
|
4
|
-
export * from './domains/DebugDomain.js';
|
|
5
3
|
export * from './domains/EvalDomain.js';
|
|
4
|
+
export * from './domains/StateDomain.js';
|
|
6
5
|
export * from './domains/WorkflowDomain.js';
|
|
7
6
|
export * from './protocol.js';
|
|
8
|
-
export * from './schema/DebugInstanceData.js';
|
|
9
|
-
export * from './schema/DebugInstanceUpdate.js';
|
|
10
7
|
export * from './schema/EvaluateRequest.js';
|
|
11
8
|
export * from './schema/EvaluateResponse.js';
|
|
12
9
|
export * from './schema/KeyboardEventRequest.js';
|
|
@@ -14,6 +11,7 @@ export * from './schema/MessageEvent.js';
|
|
|
14
11
|
export * from './schema/MouseEventRequest.js';
|
|
15
12
|
export * from './schema/PageMetadata.js';
|
|
16
13
|
export * from './schema/ScreencastFrame.js';
|
|
17
|
-
export * from './schema/
|
|
14
|
+
export * from './schema/StateData.js';
|
|
15
|
+
export * from './schema/StateUpdate.js';
|
|
18
16
|
export * from './schema/WorkflowInfo.js';
|
|
19
17
|
export * from './schema/WorkflowMessage.js';
|
package/out/main/index.js
CHANGED
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
export * from './domains/AutomationDomain.js';
|
|
2
1
|
export * from './domains/BrowserDomain.js';
|
|
3
2
|
export * from './domains/ChatDomain.js';
|
|
4
|
-
export * from './domains/DebugDomain.js';
|
|
5
3
|
export * from './domains/EvalDomain.js';
|
|
4
|
+
export * from './domains/StateDomain.js';
|
|
6
5
|
export * from './domains/WorkflowDomain.js';
|
|
7
6
|
export * from './protocol.js';
|
|
8
|
-
export * from './schema/DebugInstanceData.js';
|
|
9
|
-
export * from './schema/DebugInstanceUpdate.js';
|
|
10
7
|
export * from './schema/EvaluateRequest.js';
|
|
11
8
|
export * from './schema/EvaluateResponse.js';
|
|
12
9
|
export * from './schema/KeyboardEventRequest.js';
|
|
@@ -14,7 +11,8 @@ export * from './schema/MessageEvent.js';
|
|
|
14
11
|
export * from './schema/MouseEventRequest.js';
|
|
15
12
|
export * from './schema/PageMetadata.js';
|
|
16
13
|
export * from './schema/ScreencastFrame.js';
|
|
17
|
-
export * from './schema/
|
|
14
|
+
export * from './schema/StateData.js';
|
|
15
|
+
export * from './schema/StateUpdate.js';
|
|
18
16
|
export * from './schema/WorkflowInfo.js';
|
|
19
17
|
export * from './schema/WorkflowMessage.js';
|
|
20
18
|
//# sourceMappingURL=index.js.map
|
package/out/main/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/main/index.ts"],"names":[],"mappings":"AAAA,cAAc
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/main/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC;AAC3C,cAAc,yBAAyB,CAAC;AACxC,cAAc,yBAAyB,CAAC;AACxC,cAAc,0BAA0B,CAAC;AACzC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,eAAe,CAAC;AAC9B,cAAc,6BAA6B,CAAC;AAC5C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,kCAAkC,CAAC;AACjD,cAAc,0BAA0B,CAAC;AACzC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,0BAA0B,CAAC;AACzC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,uBAAuB,CAAC;AACtC,cAAc,yBAAyB,CAAC;AACxC,cAAc,0BAA0B,CAAC;AACzC,cAAc,6BAA6B,CAAC"}
|
package/out/main/protocol.d.ts
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
import { ProtocolIndex } from '@nodescript/protocomm';
|
|
2
|
-
import { AutomationDomain } from './domains/AutomationDomain.js';
|
|
3
2
|
import { BrowserDomain } from './domains/BrowserDomain.js';
|
|
4
3
|
import { ChatDomain } from './domains/ChatDomain.js';
|
|
5
|
-
import { DebugDomain } from './domains/DebugDomain.js';
|
|
6
4
|
import { EvalDomain } from './domains/EvalDomain.js';
|
|
5
|
+
import { StateDomain } from './domains/StateDomain.js';
|
|
7
6
|
import { WorkflowDomain } from './domains/WorkflowDomain.js';
|
|
8
7
|
export interface RunnerProtocol {
|
|
9
|
-
Automation: AutomationDomain;
|
|
10
8
|
Browser: BrowserDomain;
|
|
11
9
|
Chat: ChatDomain;
|
|
12
|
-
|
|
10
|
+
State: StateDomain;
|
|
13
11
|
Eval: EvalDomain;
|
|
14
12
|
Workflow: WorkflowDomain;
|
|
15
13
|
}
|
package/out/main/protocol.js
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
import { ProtocolIndex } from '@nodescript/protocomm';
|
|
2
|
-
import { AutomationDomain } from './domains/AutomationDomain.js';
|
|
3
2
|
import { BrowserDomain } from './domains/BrowserDomain.js';
|
|
4
3
|
import { ChatDomain } from './domains/ChatDomain.js';
|
|
5
|
-
import { DebugDomain } from './domains/DebugDomain.js';
|
|
6
4
|
import { EvalDomain } from './domains/EvalDomain.js';
|
|
5
|
+
import { StateDomain } from './domains/StateDomain.js';
|
|
7
6
|
import { WorkflowDomain } from './domains/WorkflowDomain.js';
|
|
8
7
|
export const runnerProtocol = new ProtocolIndex({
|
|
9
|
-
Automation: AutomationDomain,
|
|
10
8
|
Browser: BrowserDomain,
|
|
11
9
|
Chat: ChatDomain,
|
|
12
|
-
|
|
10
|
+
State: StateDomain,
|
|
13
11
|
Eval: EvalDomain,
|
|
14
12
|
Workflow: WorkflowDomain,
|
|
15
13
|
});
|
package/out/main/protocol.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"protocol.js","sourceRoot":"","sources":["../../src/main/protocol.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AAEtD,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"protocol.js","sourceRoot":"","sources":["../../src/main/protocol.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AAEtD,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAC;AAC3D,OAAO,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AACrD,OAAO,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AACrD,OAAO,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AACvD,OAAO,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAC;AAU7D,MAAM,CAAC,MAAM,cAAc,GAAG,IAAI,aAAa,CAAiB;IAC5D,OAAO,EAAE,aAAa;IACtB,IAAI,EAAE,UAAU;IAChB,KAAK,EAAE,WAAW;IAClB,IAAI,EAAE,UAAU;IAChB,QAAQ,EAAE,cAAc;CAC3B,CAAC,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Schema } from 'airtight';
|
|
2
|
-
export const
|
|
2
|
+
export const StateDataSchema = new Schema({
|
|
3
3
|
type: 'object',
|
|
4
4
|
properties: {
|
|
5
5
|
instanceName: { type: 'string' },
|
|
@@ -10,4 +10,4 @@ export const DebugInstanceDataSchema = new Schema({
|
|
|
10
10
|
},
|
|
11
11
|
},
|
|
12
12
|
});
|
|
13
|
-
//# sourceMappingURL=
|
|
13
|
+
//# sourceMappingURL=StateData.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StateData.js","sourceRoot":"","sources":["../../../src/main/schema/StateData.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAOlC,MAAM,CAAC,MAAM,eAAe,GAAG,IAAI,MAAM,CAAY;IACjD,IAAI,EAAE,QAAQ;IACd,UAAU,EAAE;QACR,YAAY,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;QAChC,UAAU,EAAE;YACR,IAAI,EAAE,QAAQ;YACd,UAAU,EAAE,EAAE;YACd,oBAAoB,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE;SACxC;KACJ;CACJ,CAAC,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Schema } from 'airtight';
|
|
2
|
-
export const
|
|
2
|
+
export const StateUpdateSchema = new Schema({
|
|
3
3
|
type: 'object',
|
|
4
4
|
properties: {
|
|
5
5
|
instanceName: { type: 'string' },
|
|
@@ -7,4 +7,4 @@ export const DebugInstanceUpdateSchema = new Schema({
|
|
|
7
7
|
propertyValue: { type: 'any' },
|
|
8
8
|
},
|
|
9
9
|
});
|
|
10
|
-
//# sourceMappingURL=
|
|
10
|
+
//# sourceMappingURL=StateUpdate.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StateUpdate.js","sourceRoot":"","sources":["../../../src/main/schema/StateUpdate.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAQlC,MAAM,CAAC,MAAM,iBAAiB,GAAG,IAAI,MAAM,CAAc;IACrD,IAAI,EAAE,QAAQ;IACd,UAAU,EAAE;QACR,YAAY,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;QAChC,WAAW,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;QAC/B,aAAa,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE;KACjC;CACJ,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { DomainDef } from '@nodescript/protocomm';
|
|
2
|
-
import { Event } from 'nanoevent';
|
|
3
|
-
import { DebugInstanceData } from '../schema/DebugInstanceData.js';
|
|
4
|
-
import { DebugInstanceUpdate } from '../schema/DebugInstanceUpdate.js';
|
|
5
|
-
export interface DebugDomain {
|
|
6
|
-
getInstanceData(req: {}): Promise<{
|
|
7
|
-
instances: DebugInstanceData[];
|
|
8
|
-
}>;
|
|
9
|
-
instanceUpdated: Event<{
|
|
10
|
-
update: DebugInstanceUpdate;
|
|
11
|
-
}>;
|
|
12
|
-
}
|
|
13
|
-
export declare const DebugDomain: DomainDef<DebugDomain>;
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { DebugInstanceDataSchema } from '../schema/DebugInstanceData.js';
|
|
2
|
-
import { DebugInstanceUpdateSchema } from '../schema/DebugInstanceUpdate.js';
|
|
3
|
-
export const DebugDomain = {
|
|
4
|
-
name: 'Debug',
|
|
5
|
-
methods: {
|
|
6
|
-
getInstanceData: {
|
|
7
|
-
type: 'query',
|
|
8
|
-
params: {},
|
|
9
|
-
returns: {
|
|
10
|
-
instances: {
|
|
11
|
-
type: 'array',
|
|
12
|
-
items: DebugInstanceDataSchema.schema,
|
|
13
|
-
},
|
|
14
|
-
},
|
|
15
|
-
},
|
|
16
|
-
},
|
|
17
|
-
events: {
|
|
18
|
-
instanceUpdated: {
|
|
19
|
-
params: {
|
|
20
|
-
update: DebugInstanceUpdateSchema.schema,
|
|
21
|
-
},
|
|
22
|
-
},
|
|
23
|
-
},
|
|
24
|
-
};
|
|
25
|
-
//# sourceMappingURL=DebugDomain.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"DebugDomain.js","sourceRoot":"","sources":["../../../src/main/domains/DebugDomain.ts"],"names":[],"mappings":"AAGA,OAAO,EAAqB,uBAAuB,EAAE,MAAM,gCAAgC,CAAC;AAC5F,OAAO,EAAuB,yBAAyB,EAAE,MAAM,kCAAkC,CAAC;AAYlG,MAAM,CAAC,MAAM,WAAW,GAA2B;IAC/C,IAAI,EAAE,OAAO;IACb,OAAO,EAAE;QACL,eAAe,EAAE;YACb,IAAI,EAAE,OAAO;YACb,MAAM,EAAE,EAAE;YACV,OAAO,EAAE;gBACL,SAAS,EAAE;oBACP,IAAI,EAAE,OAAO;oBACb,KAAK,EAAE,uBAAuB,CAAC,MAAM;iBACxC;aACJ;SACJ;KACJ;IACD,MAAM,EAAE;QACJ,eAAe,EAAE;YACb,MAAM,EAAE;gBACJ,MAAM,EAAE,yBAAyB,CAAC,MAAM;aAC3C;SACJ;KACJ;CACJ,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"DebugInstanceData.js","sourceRoot":"","sources":["../../../src/main/schema/DebugInstanceData.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAOlC,MAAM,CAAC,MAAM,uBAAuB,GAAG,IAAI,MAAM,CAAoB;IACjE,IAAI,EAAE,QAAQ;IACd,UAAU,EAAE;QACR,YAAY,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;QAChC,UAAU,EAAE;YACR,IAAI,EAAE,QAAQ;YACd,UAAU,EAAE,EAAE;YACd,oBAAoB,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE;SACxC;KACJ;CACJ,CAAC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"DebugInstanceUpdate.js","sourceRoot":"","sources":["../../../src/main/schema/DebugInstanceUpdate.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAQlC,MAAM,CAAC,MAAM,yBAAyB,GAAG,IAAI,MAAM,CAAsB;IACrE,IAAI,EAAE,QAAQ;IACd,UAAU,EAAE;QACR,YAAY,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;QAChC,WAAW,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;QAC/B,aAAa,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE;KACjC;CACJ,CAAC,CAAC"}
|