@dxos/assistant-toolkit 0.8.4-main.937b3ca → 0.8.4-main.9735255
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/types/src/blueprints/design/design-blueprint.d.ts +6 -6
- package/dist/types/src/blueprints/design/design-blueprint.d.ts.map +1 -1
- package/dist/types/src/blueprints/discord/discord-blueprint.d.ts +6 -6
- package/dist/types/src/blueprints/discord/discord-blueprint.d.ts.map +1 -1
- package/dist/types/src/blueprints/linear/linear-blueprint.d.ts +6 -6
- package/dist/types/src/blueprints/linear/linear-blueprint.d.ts.map +1 -1
- package/dist/types/src/blueprints/planning/planning-blueprint.d.ts +6 -6
- package/dist/types/src/blueprints/planning/planning-blueprint.d.ts.map +1 -1
- package/dist/types/src/blueprints/research/research-blueprint.d.ts +6 -6
- package/dist/types/src/blueprints/research/research-blueprint.d.ts.map +1 -1
- package/dist/types/src/blueprints/websearch/websearch-blueprint.d.ts +6 -6
- package/dist/types/src/blueprints/websearch/websearch-blueprint.d.ts.map +1 -1
- package/dist/types/src/functions/agent/prompt.d.ts +24 -24
- package/dist/types/src/functions/agent/prompt.d.ts.map +1 -1
- package/dist/types/src/functions/entity-extraction/entity-extraction.d.ts +89 -89
- package/dist/types/src/functions/entity-extraction/entity-extraction.d.ts.map +1 -1
- package/dist/types/src/functions/entity-extraction/index.d.ts +89 -89
- package/dist/types/src/functions/entity-extraction/index.d.ts.map +1 -1
- package/dist/types/src/initiative/Initiative.d.ts +22 -22
- package/dist/types/src/initiative/Initiative.d.ts.map +1 -1
- package/dist/types/src/initiative/functions/agent.d.ts +16 -16
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +23 -23
|
@@ -6,9 +6,9 @@ export declare namespace EntityExtraction {
|
|
|
6
6
|
readonly parentMessage?: string | undefined;
|
|
7
7
|
readonly created: string;
|
|
8
8
|
readonly sender: {
|
|
9
|
-
name?: string | undefined;
|
|
10
|
-
role?: "user" | "assistant" | "tool" | undefined;
|
|
11
|
-
contact?: import("@dxos/echo/internal").Ref<import("@dxos/echo/Entity").OfKind<import("@dxos/echo/internal").EntityKind.Object> & {
|
|
9
|
+
readonly name?: string | undefined;
|
|
10
|
+
readonly role?: "user" | "assistant" | "tool" | undefined;
|
|
11
|
+
readonly contact?: import("@dxos/echo/internal").Ref<import("@dxos/echo/Entity").OfKind<import("@dxos/echo/internal").EntityKind.Object> & {
|
|
12
12
|
readonly image?: string | undefined;
|
|
13
13
|
readonly fullName?: string | undefined;
|
|
14
14
|
readonly preferredName?: string | undefined;
|
|
@@ -25,24 +25,24 @@ export declare namespace EntityExtraction {
|
|
|
25
25
|
readonly jobTitle?: string | undefined;
|
|
26
26
|
readonly department?: string | undefined;
|
|
27
27
|
readonly notes?: string | undefined;
|
|
28
|
-
readonly emails?: {
|
|
28
|
+
readonly emails?: readonly {
|
|
29
29
|
readonly value: string;
|
|
30
30
|
readonly label?: string | undefined;
|
|
31
31
|
}[] | undefined;
|
|
32
|
-
readonly identities?: {
|
|
32
|
+
readonly identities?: readonly {
|
|
33
33
|
readonly value: string;
|
|
34
34
|
readonly label?: string | undefined;
|
|
35
35
|
}[] | undefined;
|
|
36
|
-
readonly phoneNumbers?: {
|
|
36
|
+
readonly phoneNumbers?: readonly {
|
|
37
37
|
readonly value: string;
|
|
38
38
|
readonly label?: string | undefined;
|
|
39
39
|
}[] | undefined;
|
|
40
|
-
readonly fields?: {
|
|
40
|
+
readonly fields?: readonly {
|
|
41
41
|
readonly value: string;
|
|
42
42
|
readonly label: string;
|
|
43
43
|
readonly category?: string | undefined;
|
|
44
44
|
}[] | undefined;
|
|
45
|
-
readonly addresses?: {
|
|
45
|
+
readonly addresses?: readonly {
|
|
46
46
|
readonly value: {
|
|
47
47
|
readonly street?: string | undefined;
|
|
48
48
|
readonly extended?: string | undefined;
|
|
@@ -54,7 +54,7 @@ export declare namespace EntityExtraction {
|
|
|
54
54
|
};
|
|
55
55
|
readonly label?: string | undefined;
|
|
56
56
|
}[] | undefined;
|
|
57
|
-
readonly urls?: {
|
|
57
|
+
readonly urls?: readonly {
|
|
58
58
|
readonly value: string;
|
|
59
59
|
readonly label?: string | undefined;
|
|
60
60
|
}[] | undefined;
|
|
@@ -62,110 +62,110 @@ export declare namespace EntityExtraction {
|
|
|
62
62
|
} & {
|
|
63
63
|
readonly location?: readonly [number, number, (number | undefined)?] | undefined;
|
|
64
64
|
}> | undefined;
|
|
65
|
-
identityDid?: string | undefined;
|
|
66
|
-
identityKey?: string | undefined;
|
|
67
|
-
email?: string | undefined;
|
|
65
|
+
readonly identityDid?: string | undefined;
|
|
66
|
+
readonly identityKey?: string | undefined;
|
|
67
|
+
readonly email?: string | undefined;
|
|
68
68
|
};
|
|
69
|
-
readonly blocks: ({
|
|
70
|
-
pending?: boolean | undefined;
|
|
71
|
-
text: string;
|
|
72
|
-
mimeType?: string | undefined;
|
|
73
|
-
disposition?: string | undefined;
|
|
74
|
-
_tag: "text";
|
|
69
|
+
readonly blocks: readonly ({
|
|
70
|
+
readonly pending?: boolean | undefined;
|
|
71
|
+
readonly text: string;
|
|
72
|
+
readonly mimeType?: string | undefined;
|
|
73
|
+
readonly disposition?: string | undefined;
|
|
74
|
+
readonly _tag: "text";
|
|
75
75
|
} | {
|
|
76
|
-
pending?: boolean | undefined;
|
|
77
|
-
_tag: "reasoning";
|
|
78
|
-
reasoningText?: string | undefined;
|
|
79
|
-
redactedText?: string | undefined;
|
|
80
|
-
signature?: string | undefined;
|
|
76
|
+
readonly pending?: boolean | undefined;
|
|
77
|
+
readonly _tag: "reasoning";
|
|
78
|
+
readonly reasoningText?: string | undefined;
|
|
79
|
+
readonly redactedText?: string | undefined;
|
|
80
|
+
readonly signature?: string | undefined;
|
|
81
81
|
} | {
|
|
82
|
-
name: string;
|
|
83
|
-
pending?: boolean | undefined;
|
|
84
|
-
_tag: "toolCall";
|
|
85
|
-
toolCallId: string;
|
|
86
|
-
input: string;
|
|
87
|
-
providerExecuted: boolean;
|
|
82
|
+
readonly name: string;
|
|
83
|
+
readonly pending?: boolean | undefined;
|
|
84
|
+
readonly _tag: "toolCall";
|
|
85
|
+
readonly toolCallId: string;
|
|
86
|
+
readonly input: string;
|
|
87
|
+
readonly providerExecuted: boolean;
|
|
88
88
|
} | {
|
|
89
|
-
name: string;
|
|
90
|
-
pending?: boolean | undefined;
|
|
91
|
-
_tag: "toolResult";
|
|
92
|
-
toolCallId: string;
|
|
93
|
-
providerExecuted: boolean;
|
|
94
|
-
result?: string | undefined;
|
|
95
|
-
error?: string | undefined;
|
|
89
|
+
readonly name: string;
|
|
90
|
+
readonly pending?: boolean | undefined;
|
|
91
|
+
readonly _tag: "toolResult";
|
|
92
|
+
readonly toolCallId: string;
|
|
93
|
+
readonly providerExecuted: boolean;
|
|
94
|
+
readonly result?: string | undefined;
|
|
95
|
+
readonly error?: string | undefined;
|
|
96
96
|
} | {
|
|
97
|
-
pending?: boolean | undefined;
|
|
98
|
-
mimeType?: string | undefined;
|
|
99
|
-
_tag: "summary";
|
|
100
|
-
message?: string | undefined;
|
|
101
|
-
model?: string | undefined;
|
|
102
|
-
usage?: {
|
|
97
|
+
readonly pending?: boolean | undefined;
|
|
98
|
+
readonly mimeType?: string | undefined;
|
|
99
|
+
readonly _tag: "summary";
|
|
100
|
+
readonly message?: string | undefined;
|
|
101
|
+
readonly model?: string | undefined;
|
|
102
|
+
readonly usage?: {
|
|
103
103
|
readonly inputTokens?: number | undefined;
|
|
104
104
|
readonly outputTokens?: number | undefined;
|
|
105
105
|
readonly totalTokens?: number | undefined;
|
|
106
106
|
} | undefined;
|
|
107
|
-
toolCalls?: number | undefined;
|
|
108
|
-
errors?: number | undefined;
|
|
109
|
-
duration?: number | undefined;
|
|
107
|
+
readonly toolCalls?: number | undefined;
|
|
108
|
+
readonly errors?: number | undefined;
|
|
109
|
+
readonly duration?: number | undefined;
|
|
110
110
|
} | {
|
|
111
|
-
source?: {
|
|
112
|
-
type: "base64";
|
|
113
|
-
mediaType: string;
|
|
114
|
-
data: string;
|
|
111
|
+
readonly source?: {
|
|
112
|
+
readonly type: "base64";
|
|
113
|
+
readonly mediaType: string;
|
|
114
|
+
readonly data: string;
|
|
115
115
|
} | {
|
|
116
|
-
type: "http";
|
|
117
|
-
url: string;
|
|
116
|
+
readonly type: "http";
|
|
117
|
+
readonly url: string;
|
|
118
118
|
} | undefined;
|
|
119
|
-
id?: string | undefined;
|
|
120
|
-
pending?: boolean | undefined;
|
|
121
|
-
_tag: "image";
|
|
119
|
+
readonly id?: string | undefined;
|
|
120
|
+
readonly pending?: boolean | undefined;
|
|
121
|
+
readonly _tag: "image";
|
|
122
122
|
} | {
|
|
123
|
-
name?: string | undefined;
|
|
124
|
-
pending?: boolean | undefined;
|
|
125
|
-
_tag: "file";
|
|
126
|
-
mediaType?: string | undefined;
|
|
127
|
-
url: string;
|
|
123
|
+
readonly name?: string | undefined;
|
|
124
|
+
readonly pending?: boolean | undefined;
|
|
125
|
+
readonly _tag: "file";
|
|
126
|
+
readonly mediaType?: string | undefined;
|
|
127
|
+
readonly url: string;
|
|
128
128
|
} | {
|
|
129
|
-
pending?: boolean | undefined;
|
|
130
|
-
_tag: "reference";
|
|
131
|
-
reference: import("@dxos/echo/internal").Ref<any>;
|
|
129
|
+
readonly pending?: boolean | undefined;
|
|
130
|
+
readonly _tag: "reference";
|
|
131
|
+
readonly reference: import("@dxos/echo/internal").Ref<any>;
|
|
132
132
|
} | {
|
|
133
|
-
pending?: boolean | undefined;
|
|
134
|
-
text: string;
|
|
135
|
-
_tag: "transcript";
|
|
136
|
-
started: string;
|
|
133
|
+
readonly pending?: boolean | undefined;
|
|
134
|
+
readonly text: string;
|
|
135
|
+
readonly _tag: "transcript";
|
|
136
|
+
readonly started: string;
|
|
137
137
|
} | {
|
|
138
|
-
pending?: boolean | undefined;
|
|
139
|
-
_tag: "status";
|
|
140
|
-
statusText: string;
|
|
138
|
+
readonly pending?: boolean | undefined;
|
|
139
|
+
readonly _tag: "status";
|
|
140
|
+
readonly statusText: string;
|
|
141
141
|
} | {
|
|
142
|
-
pending?: boolean | undefined;
|
|
143
|
-
text: string;
|
|
144
|
-
_tag: "suggestion";
|
|
142
|
+
readonly pending?: boolean | undefined;
|
|
143
|
+
readonly text: string;
|
|
144
|
+
readonly _tag: "suggestion";
|
|
145
145
|
} | {
|
|
146
|
-
pending?: boolean | undefined;
|
|
147
|
-
_tag: "select";
|
|
148
|
-
options: string[];
|
|
146
|
+
readonly pending?: boolean | undefined;
|
|
147
|
+
readonly _tag: "select";
|
|
148
|
+
readonly options: string[];
|
|
149
149
|
} | {
|
|
150
|
-
version: unknown;
|
|
151
|
-
pending?: boolean | undefined;
|
|
152
|
-
_tag: "anchor";
|
|
153
|
-
objectId: string;
|
|
150
|
+
readonly version: unknown;
|
|
151
|
+
readonly pending?: boolean | undefined;
|
|
152
|
+
readonly _tag: "anchor";
|
|
153
|
+
readonly objectId: string;
|
|
154
154
|
} | {
|
|
155
|
-
pending?: boolean | undefined;
|
|
156
|
-
text: string;
|
|
157
|
-
_tag: "proposal";
|
|
155
|
+
readonly pending?: boolean | undefined;
|
|
156
|
+
readonly text: string;
|
|
157
|
+
readonly _tag: "proposal";
|
|
158
158
|
} | {
|
|
159
|
-
pending?: boolean | undefined;
|
|
160
|
-
_tag: "toolkit";
|
|
159
|
+
readonly pending?: boolean | undefined;
|
|
160
|
+
readonly _tag: "toolkit";
|
|
161
161
|
} | {
|
|
162
|
-
pending?: boolean | undefined;
|
|
163
|
-
disposition?: string | undefined;
|
|
164
|
-
_tag: "json";
|
|
165
|
-
data: string;
|
|
162
|
+
readonly pending?: boolean | undefined;
|
|
163
|
+
readonly disposition?: string | undefined;
|
|
164
|
+
readonly _tag: "json";
|
|
165
|
+
readonly data: string;
|
|
166
166
|
})[];
|
|
167
167
|
readonly properties?: {
|
|
168
|
-
[x: string]: any;
|
|
168
|
+
readonly [x: string]: any;
|
|
169
169
|
} | undefined;
|
|
170
170
|
};
|
|
171
171
|
}, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/functions/entity-extraction/index.ts"],"names":[],"mappings":"AAMA,yBAAiB,gBAAgB,CAAC;IACzB,MAAM,OAAO;;;;;;;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/functions/entity-extraction/index.ts"],"names":[],"mappings":"AAMA,yBAAiB,gBAAgB,CAAC;IACzB,MAAM,OAAO;;;;;;;6BAE8L,CAAC;6BAA2C,CAAC;gCAAqE,CAAC;kCAAsJ,CAAC;qCAAmD,CAAC;0CAAwD,CAAC;qCAAmD,CAAC;yCAAuD,CAAC;4CAAgK,CAAC;qCAAmD,CAAC;uCAAqD,CAAC;sCAAuG,CAAC;wCAAsD,CAAC;;yCAAyE,CAAC;;qCAAyH,CAAC;uCAAqD,CAAC;kCAAgD,CAAC;mCAAiD,CAAC;;sCAAmF,CAAC;;uCAAkF,CAAC;;sCAAmF,CAAC;;yCAAoF,CAAC;;sCAAmF,CAAC;;mCAA8E,CAAC;;;yCAA8H,CAAC;;sCAAiF,CAAC;;2CAAkF,CAAC;6CAA2D,CAAC;6CAA2D,CAAC;2CAAyD,CAAC;+CAA6D,CAAC;wDAAsE,CAAC;4CAA0D,CAAC;;sCAAuE,CAAC;;iCAA4E,CAAC;;sCAAmF,CAAC;;qCAAgF,CAAC;;qCAAiE,CAAC;;oCAAoH,CAAC;oCAAkD,CAAC;8BAA4C,CAAC;;;gCAAsF,CAAC;;iCAA+E,CAAC;oCAAkD,CAAC;;;gCAAuF,CAAC;;sCAAyF,CAAC;qCAAmD,CAAC;kCAAgD,CAAC;;;gCAAuF,CAAC;;;;;;;gCAA4O,CAAC;;;;+BAAoK,CAAC;8BAA4C,CAAC;;gCAAwD,CAAC;iCAAgD,CAAC;;gCAAgF,CAAC;8BAA4C,CAAC;8BAA4C,CAAC;wCAAoC,CAAC;yCAAuD,CAAC;wCAAsD,CAAC;;kCAAuE,CAAC;+BAA6C,CAAC;iCAA+C,CAAC;;+BAAuD,CAAC;;;;;;;;2BAAiP,CAAC;gCAA8C,CAAC;;;6BAAsF,CAAC;gCAA8C,CAAC;;kCAAgF,CAAC;;;gCAAsF,CAAC;;;;gCAAiK,CAAC;;;;;gCAA+J,CAAC;;;;gCAA+H,CAAC;;;;gCAA6H,CAAC;;;;;gCAAiK,CAAC;;;;gCAA6H,CAAC;;;;gCAA2H,CAAC;;;gCAA2F,CAAC;oCAAmD,CAAC;;;;;;;;;;kDAFj8M,CAAC;CACjC"}
|
|
@@ -40,28 +40,28 @@ export declare const functions: (import("@dxos/functions").FunctionDefinition<{}
|
|
|
40
40
|
readonly chat?: import("@dxos/echo/internal").Ref<import("@dxos/echo-db").Queue<import("@dxos/echo/Entity").Unknown>> | undefined;
|
|
41
41
|
}>;
|
|
42
42
|
readonly event?: {
|
|
43
|
-
from: string;
|
|
44
|
-
to: string;
|
|
45
|
-
body: string;
|
|
46
|
-
created: string;
|
|
47
|
-
subject: string;
|
|
43
|
+
readonly from: string;
|
|
44
|
+
readonly to: string;
|
|
45
|
+
readonly body: string;
|
|
46
|
+
readonly created: string;
|
|
47
|
+
readonly subject: string;
|
|
48
48
|
} | {
|
|
49
|
-
queue: string;
|
|
50
|
-
item: any;
|
|
51
|
-
cursor: string;
|
|
49
|
+
readonly queue: string;
|
|
50
|
+
readonly item: any;
|
|
51
|
+
readonly cursor: string;
|
|
52
52
|
} | {
|
|
53
|
-
type: string;
|
|
54
|
-
subject: import("@dxos/echo/internal").Ref<any>;
|
|
55
|
-
changedObjectId?: string | undefined;
|
|
53
|
+
readonly type: string;
|
|
54
|
+
readonly subject: import("@dxos/echo/internal").Ref<any>;
|
|
55
|
+
readonly changedObjectId?: string | undefined;
|
|
56
56
|
} | {
|
|
57
|
-
tick: number;
|
|
57
|
+
readonly tick: number;
|
|
58
58
|
} | {
|
|
59
|
-
url: string;
|
|
60
|
-
method: "GET" | "POST";
|
|
61
|
-
headers: {
|
|
59
|
+
readonly url: string;
|
|
60
|
+
readonly method: "GET" | "POST";
|
|
61
|
+
readonly headers: {
|
|
62
62
|
readonly [x: string]: string;
|
|
63
63
|
};
|
|
64
|
-
bodyText: string;
|
|
64
|
+
readonly bodyText: string;
|
|
65
65
|
} | undefined;
|
|
66
66
|
}, void, import("@dxos/functions").FunctionServices>)[];
|
|
67
67
|
export declare const InitiativeBlueprint: Obj.Obj<import("@dxos/echo/Entity").OfKind<import("@dxos/echo/internal").EntityKind.Object> & {
|
|
@@ -69,14 +69,14 @@ export declare const InitiativeBlueprint: Obj.Obj<import("@dxos/echo/Entity").Of
|
|
|
69
69
|
readonly name: string;
|
|
70
70
|
readonly key: string;
|
|
71
71
|
readonly instructions: {
|
|
72
|
-
source: import("@dxos/echo/internal").Ref<import("@dxos/echo/Entity").OfKind<import("@dxos/echo/internal").EntityKind.Object> & {
|
|
72
|
+
readonly source: import("@dxos/echo/internal").Ref<import("@dxos/echo/Entity").OfKind<import("@dxos/echo/internal").EntityKind.Object> & {
|
|
73
73
|
readonly content: string;
|
|
74
74
|
}>;
|
|
75
|
-
inputs?: {
|
|
76
|
-
function?: string | undefined;
|
|
77
|
-
name: string;
|
|
78
|
-
kind?: "function" | "value" | "pass-through" | "retriever" | "query" | "resolver" | "context" | "schema" | undefined;
|
|
79
|
-
default?: any;
|
|
75
|
+
readonly inputs?: readonly {
|
|
76
|
+
readonly function?: string | undefined;
|
|
77
|
+
readonly name: string;
|
|
78
|
+
readonly kind?: "function" | "value" | "pass-through" | "retriever" | "query" | "resolver" | "context" | "schema" | undefined;
|
|
79
|
+
readonly default?: any;
|
|
80
80
|
}[] | undefined;
|
|
81
81
|
};
|
|
82
82
|
readonly tools: readonly (string & import("effect/Brand").Brand<"ToolId">)[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Initiative.d.ts","sourceRoot":"","sources":["../../../../src/initiative/Initiative.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AAGxC,OAAO,EAAE,SAAS,EAAY,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,QAAQ,EAAE,GAAG,EAAE,GAAG,EAAE,MAAM,YAAY,CAAC;AAChD,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAM/C,OAAO,EAAE,UAAU,EAA0C,MAAM,oBAAoB,CAAC;AAExF,OAAO,EAAE,UAAU,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AACxF,YAAY,EAAE,UAAU,IAAI,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAEvE,eAAO,MAAM,IAAI,GACf,OAAO,IAAI,CAAC,GAAG,CAAC,SAAS,CAAC,OAAO,UAAU,CAAC,EAAE,WAAW,GAAG,MAAM,CAAC,GACjE,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,SAAS,CAAC,OAAO,UAAU,CAAC,EAAE,WAAW,CAAC,CAAC,GAAG;IAC7D,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,GAAG,CAAC,GAAG,CAAC,SAAS,CAAC,SAAS,CAAC,EAAE,CAAC;IAC5C,cAAc,CAAC,EAAE,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC;CACrC,KACF,MAAM,CAAC,MAAM,CAAC,UAAU,EAAE,KAAK,EAAE,YAAY,GAAG,QAAQ,CAAC,OAAO,CA+B/D,CAAC;AAEL,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uDAA8B,CAAC;AAErD,eAAO,MAAM,mBAAmB;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Initiative.d.ts","sourceRoot":"","sources":["../../../../src/initiative/Initiative.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AAGxC,OAAO,EAAE,SAAS,EAAY,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,QAAQ,EAAE,GAAG,EAAE,GAAG,EAAE,MAAM,YAAY,CAAC;AAChD,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAM/C,OAAO,EAAE,UAAU,EAA0C,MAAM,oBAAoB,CAAC;AAExF,OAAO,EAAE,UAAU,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AACxF,YAAY,EAAE,UAAU,IAAI,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAEvE,eAAO,MAAM,IAAI,GACf,OAAO,IAAI,CAAC,GAAG,CAAC,SAAS,CAAC,OAAO,UAAU,CAAC,EAAE,WAAW,GAAG,MAAM,CAAC,GACjE,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,SAAS,CAAC,OAAO,UAAU,CAAC,EAAE,WAAW,CAAC,CAAC,GAAG;IAC7D,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,GAAG,CAAC,GAAG,CAAC,SAAS,CAAC,SAAS,CAAC,EAAE,CAAC;IAC5C,cAAc,CAAC,EAAE,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC;CACrC,KACF,MAAM,CAAC,MAAM,CAAC,UAAU,EAAE,KAAK,EAAE,YAAY,GAAG,QAAQ,CAAC,OAAO,CA+B/D,CAAC;AAEL,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uDAA8B,CAAC;AAErD,eAAO,MAAM,mBAAmB;;;;;;;;uBAZF,CAAC;6BACzB,CAAN;;yBAGoB,CAAC;4BAQD,CAAC;;;;EAmCnB,CAAC"}
|
|
@@ -9,28 +9,28 @@ declare const _default: import("@dxos/functions").FunctionDefinition<{
|
|
|
9
9
|
readonly chat?: import("@dxos/echo/internal").Ref<import("@dxos/echo-db").Queue<import("@dxos/echo/Entity").Unknown>> | undefined;
|
|
10
10
|
}>;
|
|
11
11
|
readonly event?: {
|
|
12
|
-
from: string;
|
|
13
|
-
to: string;
|
|
14
|
-
body: string;
|
|
15
|
-
created: string;
|
|
16
|
-
subject: string;
|
|
12
|
+
readonly from: string;
|
|
13
|
+
readonly to: string;
|
|
14
|
+
readonly body: string;
|
|
15
|
+
readonly created: string;
|
|
16
|
+
readonly subject: string;
|
|
17
17
|
} | {
|
|
18
|
-
queue: string;
|
|
19
|
-
item: any;
|
|
20
|
-
cursor: string;
|
|
18
|
+
readonly queue: string;
|
|
19
|
+
readonly item: any;
|
|
20
|
+
readonly cursor: string;
|
|
21
21
|
} | {
|
|
22
|
-
type: string;
|
|
23
|
-
subject: import("@dxos/echo/internal").Ref<any>;
|
|
24
|
-
changedObjectId?: string | undefined;
|
|
22
|
+
readonly type: string;
|
|
23
|
+
readonly subject: import("@dxos/echo/internal").Ref<any>;
|
|
24
|
+
readonly changedObjectId?: string | undefined;
|
|
25
25
|
} | {
|
|
26
|
-
tick: number;
|
|
26
|
+
readonly tick: number;
|
|
27
27
|
} | {
|
|
28
|
-
url: string;
|
|
29
|
-
method: "GET" | "POST";
|
|
30
|
-
headers: {
|
|
28
|
+
readonly url: string;
|
|
29
|
+
readonly method: "GET" | "POST";
|
|
30
|
+
readonly headers: {
|
|
31
31
|
readonly [x: string]: string;
|
|
32
32
|
};
|
|
33
|
-
bodyText: string;
|
|
33
|
+
readonly bodyText: string;
|
|
34
34
|
} | undefined;
|
|
35
35
|
}, void, import("@dxos/functions").FunctionServices>;
|
|
36
36
|
export default _default;
|