@dxos/functions 0.8.4-main.5ea62a8 → 0.8.4-main.72ec0f3

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.
Files changed (165) hide show
  1. package/dist/lib/browser/index.mjs +769 -407
  2. package/dist/lib/browser/index.mjs.map +4 -4
  3. package/dist/lib/browser/meta.json +1 -1
  4. package/dist/lib/node-esm/index.mjs +769 -407
  5. package/dist/lib/node-esm/index.mjs.map +4 -4
  6. package/dist/lib/node-esm/meta.json +1 -1
  7. package/dist/types/src/errors.d.ts +87 -28
  8. package/dist/types/src/errors.d.ts.map +1 -1
  9. package/dist/types/src/{examples → example}/fib.d.ts +1 -1
  10. package/dist/types/src/example/fib.d.ts.map +1 -0
  11. package/dist/types/src/example/forex-effect.d.ts +3 -0
  12. package/dist/types/src/example/forex-effect.d.ts.map +1 -0
  13. package/dist/types/src/example/index.d.ts +12 -0
  14. package/dist/types/src/example/index.d.ts.map +1 -0
  15. package/dist/types/src/{examples → example}/reply.d.ts +1 -1
  16. package/dist/types/src/example/reply.d.ts.map +1 -0
  17. package/dist/types/src/{examples → example}/sleep.d.ts +1 -1
  18. package/dist/types/src/example/sleep.d.ts.map +1 -0
  19. package/dist/types/src/index.d.ts +5 -7
  20. package/dist/types/src/index.d.ts.map +1 -1
  21. package/dist/types/src/protocol/index.d.ts +2 -0
  22. package/dist/types/src/protocol/index.d.ts.map +1 -0
  23. package/dist/types/src/protocol/protocol.d.ts +7 -0
  24. package/dist/types/src/protocol/protocol.d.ts.map +1 -0
  25. package/dist/types/src/protocol/protocol.test.d.ts +2 -0
  26. package/dist/types/src/protocol/protocol.test.d.ts.map +1 -0
  27. package/dist/types/src/sdk.d.ts +89 -0
  28. package/dist/types/src/sdk.d.ts.map +1 -0
  29. package/dist/types/src/services/credentials.d.ts +7 -3
  30. package/dist/types/src/services/credentials.d.ts.map +1 -1
  31. package/dist/types/src/services/event-logger.d.ts +20 -5
  32. package/dist/types/src/services/event-logger.d.ts.map +1 -1
  33. package/dist/types/src/services/function-invocation-service.d.ts +11 -0
  34. package/dist/types/src/services/function-invocation-service.d.ts.map +1 -0
  35. package/dist/types/src/services/index.d.ts +6 -6
  36. package/dist/types/src/services/index.d.ts.map +1 -1
  37. package/dist/types/src/services/queues.d.ts +4 -1
  38. package/dist/types/src/services/queues.d.ts.map +1 -1
  39. package/dist/types/src/services/tracing.d.ts +10 -12
  40. package/dist/types/src/services/tracing.d.ts.map +1 -1
  41. package/dist/types/src/types/Function.d.ts +58 -0
  42. package/dist/types/src/types/Function.d.ts.map +1 -0
  43. package/dist/types/src/types/Script.d.ts +28 -0
  44. package/dist/types/src/types/Script.d.ts.map +1 -0
  45. package/dist/types/src/types/Trigger.d.ts +139 -0
  46. package/dist/types/src/types/Trigger.d.ts.map +1 -0
  47. package/dist/types/src/types/TriggerEvent.d.ts +44 -0
  48. package/dist/types/src/types/TriggerEvent.d.ts.map +1 -0
  49. package/dist/types/src/types/index.d.ts +6 -0
  50. package/dist/types/src/types/index.d.ts.map +1 -0
  51. package/dist/types/src/{url.d.ts → types/url.d.ts} +1 -10
  52. package/dist/types/src/types/url.d.ts.map +1 -0
  53. package/dist/types/tsconfig.tsbuildinfo +1 -1
  54. package/package.json +17 -72
  55. package/src/errors.ts +13 -5
  56. package/src/{examples → example}/fib.ts +5 -3
  57. package/src/example/forex-effect.ts +40 -0
  58. package/src/example/index.ts +13 -0
  59. package/src/{examples → example}/reply.ts +6 -3
  60. package/src/{examples → example}/sleep.ts +5 -3
  61. package/src/index.ts +5 -9
  62. package/src/{executor → protocol}/index.ts +1 -1
  63. package/src/protocol/protocol.test.ts +59 -0
  64. package/src/protocol/protocol.ts +145 -0
  65. package/src/sdk.ts +226 -0
  66. package/src/services/credentials.ts +12 -6
  67. package/src/services/event-logger.ts +12 -3
  68. package/src/services/function-invocation-service.ts +23 -0
  69. package/src/services/index.ts +7 -6
  70. package/src/services/queues.ts +8 -1
  71. package/src/services/tracing.ts +26 -52
  72. package/src/{schema.ts → types/Function.ts} +20 -26
  73. package/src/types/Script.ts +33 -0
  74. package/src/types/Trigger.ts +139 -0
  75. package/src/types/TriggerEvent.ts +62 -0
  76. package/src/types/index.ts +9 -0
  77. package/src/types/url.ts +31 -0
  78. package/dist/lib/browser/bundler/index.mjs +0 -263
  79. package/dist/lib/browser/bundler/index.mjs.map +0 -7
  80. package/dist/lib/browser/chunk-7NQ77AIQ.mjs +0 -618
  81. package/dist/lib/browser/chunk-7NQ77AIQ.mjs.map +0 -7
  82. package/dist/lib/browser/edge/index.mjs +0 -81
  83. package/dist/lib/browser/edge/index.mjs.map +0 -7
  84. package/dist/lib/browser/testing/index.mjs +0 -122
  85. package/dist/lib/browser/testing/index.mjs.map +0 -7
  86. package/dist/lib/node-esm/bundler/index.mjs +0 -265
  87. package/dist/lib/node-esm/bundler/index.mjs.map +0 -7
  88. package/dist/lib/node-esm/chunk-KCGC6QQT.mjs +0 -620
  89. package/dist/lib/node-esm/chunk-KCGC6QQT.mjs.map +0 -7
  90. package/dist/lib/node-esm/edge/index.mjs +0 -83
  91. package/dist/lib/node-esm/edge/index.mjs.map +0 -7
  92. package/dist/lib/node-esm/testing/index.mjs +0 -123
  93. package/dist/lib/node-esm/testing/index.mjs.map +0 -7
  94. package/dist/types/src/bundler/bundler.d.ts +0 -49
  95. package/dist/types/src/bundler/bundler.d.ts.map +0 -1
  96. package/dist/types/src/bundler/bundler.test.d.ts +0 -2
  97. package/dist/types/src/bundler/bundler.test.d.ts.map +0 -1
  98. package/dist/types/src/bundler/index.d.ts +0 -2
  99. package/dist/types/src/bundler/index.d.ts.map +0 -1
  100. package/dist/types/src/edge/functions.d.ts +0 -17
  101. package/dist/types/src/edge/functions.d.ts.map +0 -1
  102. package/dist/types/src/edge/index.d.ts +0 -2
  103. package/dist/types/src/edge/index.d.ts.map +0 -1
  104. package/dist/types/src/examples/fib.d.ts.map +0 -1
  105. package/dist/types/src/examples/reply.d.ts.map +0 -1
  106. package/dist/types/src/examples/sleep.d.ts.map +0 -1
  107. package/dist/types/src/executor/executor.d.ts +0 -11
  108. package/dist/types/src/executor/executor.d.ts.map +0 -1
  109. package/dist/types/src/executor/index.d.ts +0 -2
  110. package/dist/types/src/executor/index.d.ts.map +0 -1
  111. package/dist/types/src/handler.d.ts +0 -65
  112. package/dist/types/src/handler.d.ts.map +0 -1
  113. package/dist/types/src/schema.d.ts +0 -43
  114. package/dist/types/src/schema.d.ts.map +0 -1
  115. package/dist/types/src/services/database.d.ts +0 -98
  116. package/dist/types/src/services/database.d.ts.map +0 -1
  117. package/dist/types/src/services/local-function-execution.d.ts +0 -12
  118. package/dist/types/src/services/local-function-execution.d.ts.map +0 -1
  119. package/dist/types/src/services/remote-function-execution-service.d.ts +0 -15
  120. package/dist/types/src/services/remote-function-execution-service.d.ts.map +0 -1
  121. package/dist/types/src/services/service-container.d.ts +0 -56
  122. package/dist/types/src/services/service-container.d.ts.map +0 -1
  123. package/dist/types/src/services/service-registry.d.ts +0 -29
  124. package/dist/types/src/services/service-registry.d.ts.map +0 -1
  125. package/dist/types/src/services/service-registry.test.d.ts +0 -2
  126. package/dist/types/src/services/service-registry.test.d.ts.map +0 -1
  127. package/dist/types/src/testing/index.d.ts +0 -3
  128. package/dist/types/src/testing/index.d.ts.map +0 -1
  129. package/dist/types/src/testing/layer.d.ts +0 -14
  130. package/dist/types/src/testing/layer.d.ts.map +0 -1
  131. package/dist/types/src/testing/logger.d.ts +0 -5
  132. package/dist/types/src/testing/logger.d.ts.map +0 -1
  133. package/dist/types/src/testing/persist-database.test.d.ts +0 -2
  134. package/dist/types/src/testing/persist-database.test.d.ts.map +0 -1
  135. package/dist/types/src/testing/services.d.ts +0 -59
  136. package/dist/types/src/testing/services.d.ts.map +0 -1
  137. package/dist/types/src/trace.d.ts +0 -150
  138. package/dist/types/src/trace.d.ts.map +0 -1
  139. package/dist/types/src/translations.d.ts +0 -12
  140. package/dist/types/src/translations.d.ts.map +0 -1
  141. package/dist/types/src/types.d.ts +0 -328
  142. package/dist/types/src/types.d.ts.map +0 -1
  143. package/dist/types/src/url.d.ts.map +0 -1
  144. package/src/bundler/bundler.test.ts +0 -58
  145. package/src/bundler/bundler.ts +0 -291
  146. package/src/bundler/index.ts +0 -5
  147. package/src/edge/functions.ts +0 -67
  148. package/src/edge/index.ts +0 -9
  149. package/src/executor/executor.ts +0 -54
  150. package/src/handler.ts +0 -122
  151. package/src/services/database.ts +0 -170
  152. package/src/services/local-function-execution.ts +0 -77
  153. package/src/services/remote-function-execution-service.ts +0 -46
  154. package/src/services/service-container.ts +0 -114
  155. package/src/services/service-registry.test.ts +0 -42
  156. package/src/services/service-registry.ts +0 -59
  157. package/src/testing/index.ts +0 -6
  158. package/src/testing/layer.ts +0 -97
  159. package/src/testing/logger.ts +0 -16
  160. package/src/testing/persist-database.test.ts +0 -87
  161. package/src/testing/services.ts +0 -115
  162. package/src/trace.ts +0 -178
  163. package/src/translations.ts +0 -20
  164. package/src/types.ts +0 -203
  165. package/src/url.ts +0 -55
@@ -1,66 +1,87 @@
1
1
  import { createRequire } from 'node:module';const require = createRequire(import.meta.url);
2
- import {
3
- ComputeEvent,
4
- ComputeEventLogger,
5
- ComputeEventPayload,
6
- ConfiguredCredentialsService,
7
- ContextQueueService,
8
- CredentialsService,
9
- DatabaseService,
10
- FUNCTIONS_META_KEY,
11
- FUNCTIONS_PRESET_META_KEY,
12
- MESSAGE_PROPERTY_TOOL_CALL_ID,
13
- QueueService,
14
- RemoteFunctionExecutionService,
15
- SERVICE_TAGS,
16
- ServiceContainer,
17
- TracingService,
18
- createDefectLogger,
19
- createEventLogger,
20
- getInvocationUrl,
21
- getUserFunctionIdInMetadata,
22
- logCustomEvent,
23
- setUserFunctionIdInMetadata,
24
- withAuthorization
25
- } from "./chunk-KCGC6QQT.mjs";
2
+ var __defProp = Object.defineProperty;
3
+ var __export = (target, all) => {
4
+ for (var name in all)
5
+ __defProp(target, name, { get: all[name], enumerable: true });
6
+ };
26
7
 
27
- // src/handler.ts
28
- import { Schema } from "effect";
29
- var defineFunction = ({ name, description, inputSchema, outputSchema = Schema.Any, handler }) => {
30
- if (!Schema.isSchema(inputSchema)) {
31
- throw new Error("Input schema must be a valid schema");
8
+ // src/errors.ts
9
+ import { BaseError } from "@dxos/errors";
10
+ var ServiceNotAvailableError = class extends BaseError.extend("SERVICE_NOT_AVAILABLE", "Service not available") {
11
+ constructor(service, options) {
12
+ super({
13
+ context: {
14
+ service
15
+ },
16
+ ...options
17
+ });
32
18
  }
33
- if (typeof handler !== "function") {
34
- throw new Error("Handler must be a function");
19
+ };
20
+ var FunctionNotFoundError = class extends BaseError.extend("FUNCTION_NOT_FOUND", "Function not found") {
21
+ constructor(functionKey, options) {
22
+ super({
23
+ context: {
24
+ function: functionKey
25
+ },
26
+ ...options
27
+ });
35
28
  }
36
- return {
37
- name,
38
- description,
39
- inputSchema,
40
- outputSchema,
41
- handler
42
- };
29
+ };
30
+ var FunctionError = class extends BaseError.extend("FUNCTION_ERROR", "Function invocation error") {
31
+ };
32
+ var TriggerStateNotFoundError = class extends BaseError.extend("TRIGGER_STATE_NOT_FOUND", "Trigger state not found") {
43
33
  };
44
34
 
45
- // src/schema.ts
46
- import { Schema as Schema2 } from "effect";
47
- import { Type } from "@dxos/echo";
48
- import { JsonSchemaType, LabelAnnotation, Ref } from "@dxos/echo-schema";
49
- import { DataType } from "@dxos/schema";
50
- var ScriptType = Schema2.Struct({
51
- name: Schema2.optional(Schema2.String),
52
- description: Schema2.optional(Schema2.String),
35
+ // src/example/fib.ts
36
+ import * as Effect2 from "effect/Effect";
37
+ import * as Schema6 from "effect/Schema";
38
+
39
+ // src/sdk.ts
40
+ import * as Effect from "effect/Effect";
41
+ import * as Schema5 from "effect/Schema";
42
+ import { Obj as Obj5, Type as Type5 } from "@dxos/echo";
43
+ import { assertArgument, failedInvariant } from "@dxos/invariant";
44
+
45
+ // src/types/Function.ts
46
+ var Function_exports = {};
47
+ __export(Function_exports, {
48
+ Function: () => Function,
49
+ make: () => make2
50
+ });
51
+ import * as Schema2 from "effect/Schema";
52
+ import { Obj as Obj2, Type as Type2 } from "@dxos/echo";
53
+ import { JsonSchemaType, LabelAnnotation as LabelAnnotation2, Ref as Ref2 } from "@dxos/echo/internal";
54
+
55
+ // src/types/Script.ts
56
+ var Script_exports = {};
57
+ __export(Script_exports, {
58
+ Script: () => Script,
59
+ make: () => make
60
+ });
61
+ import * as Schema from "effect/Schema";
62
+ import { Obj, Ref, Type } from "@dxos/echo";
63
+ import { FormAnnotation, LabelAnnotation } from "@dxos/echo/internal";
64
+ import { Text } from "@dxos/schema";
65
+ var Script = Schema.Struct({
66
+ name: Schema.String.pipe(Schema.optional),
67
+ description: Schema.String.pipe(Schema.optional),
53
68
  // TODO(burdon): Change to hash of deployed content.
54
69
  // Whether source has changed since last deploy.
55
- changed: Schema2.optional(Schema2.Boolean),
56
- source: Ref(DataType.Text)
70
+ changed: Schema.Boolean.pipe(FormAnnotation.set(false), Schema.optional),
71
+ source: Type.Ref(Text.Text).pipe(FormAnnotation.set(false))
57
72
  }).pipe(Type.Obj({
58
73
  typename: "dxos.org/type/Script",
59
74
  version: "0.1.0"
60
75
  }), LabelAnnotation.set([
61
76
  "name"
62
77
  ]));
63
- var FunctionType = Schema2.Struct({
78
+ var make = ({ source = "", ...props } = {}) => Obj.make(Script, {
79
+ ...props,
80
+ source: Ref.make(Text.make(source))
81
+ });
82
+
83
+ // src/types/Function.ts
84
+ var Function = Schema2.Struct({
64
85
  /**
65
86
  * Global registry ID.
66
87
  * NOTE: The `key` property refers to the original registry entry.
@@ -75,43 +96,88 @@ var FunctionType = Schema2.Struct({
75
96
  name: Schema2.NonEmptyString,
76
97
  version: Schema2.String,
77
98
  description: Schema2.optional(Schema2.String),
99
+ /**
100
+ * ISO date string of the last deployment.
101
+ */
102
+ updated: Schema2.optional(Schema2.String),
78
103
  // Reference to a source script if it exists within ECHO.
79
104
  // TODO(burdon): Don't ref ScriptType directly (core).
80
- source: Schema2.optional(Ref(ScriptType)),
105
+ source: Schema2.optional(Ref2(Script)),
81
106
  inputSchema: Schema2.optional(JsonSchemaType),
82
107
  outputSchema: Schema2.optional(JsonSchemaType),
108
+ /**
109
+ * List of required services.
110
+ * Match the Context.Tag keys of the FunctionServices variants.
111
+ */
112
+ services: Schema2.optional(Schema2.Array(Schema2.String)),
83
113
  // Local binding to a function name.
84
114
  binding: Schema2.optional(Schema2.String)
85
- }).pipe(Type.Obj({
115
+ }).pipe(Type2.Obj({
86
116
  typename: "dxos.org/type/Function",
87
117
  version: "0.1.0"
88
- }), LabelAnnotation.set([
118
+ }), LabelAnnotation2.set([
89
119
  "name"
90
120
  ]));
121
+ var make2 = (props) => Obj2.make(Function, props);
91
122
 
92
- // src/trace.ts
93
- import { Schema as Schema4 } from "effect";
94
- import { Type as Type3 } from "@dxos/echo";
95
- import { Queue } from "@dxos/echo-db";
96
- import { ObjectId } from "@dxos/echo-schema";
97
- import { log } from "@dxos/log";
98
-
99
- // src/types.ts
100
- import { Schema as Schema3, SchemaAST } from "effect";
101
- import { Type as Type2 } from "@dxos/echo";
102
- import { Expando, OptionsAnnotationId, RawObject, Ref as Ref2 } from "@dxos/echo-schema";
123
+ // src/types/Trigger.ts
124
+ var Trigger_exports = {};
125
+ __export(Trigger_exports, {
126
+ EmailSpec: () => EmailSpec,
127
+ Kinds: () => Kinds,
128
+ QueueSpec: () => QueueSpec,
129
+ Spec: () => Spec,
130
+ SubscriptionSpec: () => SubscriptionSpec,
131
+ TimerSpec: () => TimerSpec,
132
+ Trigger: () => Trigger,
133
+ WebhookSpec: () => WebhookSpec,
134
+ make: () => make3
135
+ });
136
+ import * as Schema3 from "effect/Schema";
137
+ import * as SchemaAST from "effect/SchemaAST";
138
+ import { Obj as Obj3, QueryAST, Type as Type3 } from "@dxos/echo";
139
+ import { Expando, OptionsAnnotationId, Ref as Ref3 } from "@dxos/echo/internal";
103
140
  import { DXN } from "@dxos/keys";
104
- var TriggerKinds = [
105
- "timer",
106
- "webhook",
107
- "subscription",
141
+ var Kinds = [
108
142
  "email",
109
- "queue"
143
+ "queue",
144
+ "subscription",
145
+ "timer",
146
+ "webhook"
110
147
  ];
111
148
  var kindLiteralAnnotations = {
112
149
  title: "Kind"
113
150
  };
114
- var TimerTriggerSchema = Schema3.Struct({
151
+ var EmailSpec = Schema3.Struct({
152
+ kind: Schema3.Literal("email").annotations(kindLiteralAnnotations)
153
+ }).pipe(Schema3.mutable);
154
+ var QueueSpec = Schema3.Struct({
155
+ kind: Schema3.Literal("queue").annotations(kindLiteralAnnotations),
156
+ // TODO(dmaretskyi): Change to a reference.
157
+ queue: DXN.Schema
158
+ }).pipe(Schema3.mutable);
159
+ var SubscriptionSpec = Schema3.Struct({
160
+ kind: Schema3.Literal("subscription").annotations(kindLiteralAnnotations),
161
+ query: Schema3.Struct({
162
+ raw: Schema3.optional(Schema3.String.annotations({
163
+ title: "Query"
164
+ })),
165
+ ast: QueryAST.Query
166
+ }).pipe(Schema3.mutable),
167
+ options: Schema3.optional(Schema3.Struct({
168
+ // Watch changes to object (not just creation).
169
+ deep: Schema3.optional(Schema3.Boolean.annotations({
170
+ title: "Nested"
171
+ })),
172
+ // Debounce changes (delay in ms).
173
+ delay: Schema3.optional(Schema3.Number.annotations({
174
+ title: "Delay"
175
+ }))
176
+ }).annotations({
177
+ title: "Options"
178
+ }))
179
+ }).pipe(Schema3.mutable);
180
+ var TimerSpec = Schema3.Struct({
115
181
  kind: Schema3.Literal("timer").annotations(kindLiteralAnnotations),
116
182
  cron: Schema3.String.annotations({
117
183
  title: "Cron",
@@ -120,14 +186,7 @@ var TimerTriggerSchema = Schema3.Struct({
120
186
  ]
121
187
  })
122
188
  }).pipe(Schema3.mutable);
123
- var EmailTriggerSchema = Schema3.Struct({
124
- kind: Schema3.Literal("email").annotations(kindLiteralAnnotations)
125
- }).pipe(Schema3.mutable);
126
- var QueueTriggerSchema = Schema3.Struct({
127
- kind: Schema3.Literal("queue").annotations(kindLiteralAnnotations),
128
- queue: DXN.Schema
129
- }).pipe(Schema3.mutable);
130
- var WebhookTriggerSchema = Schema3.Struct({
189
+ var WebhookSpec = Schema3.Struct({
131
190
  kind: Schema3.Literal("webhook").annotations(kindLiteralAnnotations),
132
191
  method: Schema3.optional(Schema3.String.annotations({
133
192
  title: "Method",
@@ -140,71 +199,15 @@ var WebhookTriggerSchema = Schema3.Struct({
140
199
  title: "Port"
141
200
  }))
142
201
  }).pipe(Schema3.mutable);
143
- var QuerySchema = Schema3.Struct({
144
- type: Schema3.optional(Schema3.String.annotations({
145
- title: "Type"
146
- })),
147
- props: Schema3.optional(Schema3.Record({
148
- key: Schema3.String,
149
- value: Schema3.Any
150
- }))
151
- }).annotations({
152
- title: "Query"
153
- });
154
- var SubscriptionTriggerSchema = Schema3.Struct({
155
- kind: Schema3.Literal("subscription").annotations(kindLiteralAnnotations),
156
- // TODO(burdon): Define query DSL (from ECHO). Reconcile with Table.Query.
157
- filter: QuerySchema,
158
- options: Schema3.optional(Schema3.Struct({
159
- // Watch changes to object (not just creation).
160
- deep: Schema3.optional(Schema3.Boolean.annotations({
161
- title: "Nested"
162
- })),
163
- // Debounce changes (delay in ms).
164
- delay: Schema3.optional(Schema3.Number.annotations({
165
- title: "Delay"
166
- }))
167
- }).annotations({
168
- title: "Options"
169
- }))
170
- }).pipe(Schema3.mutable);
171
- var TriggerSchema = Schema3.Union(TimerTriggerSchema, WebhookTriggerSchema, SubscriptionTriggerSchema, EmailTriggerSchema, QueueTriggerSchema).annotations({
202
+ var Spec = Schema3.Union(EmailSpec, QueueSpec, SubscriptionSpec, TimerSpec, WebhookSpec).annotations({
172
203
  title: "Trigger"
173
204
  });
174
- var EmailTriggerOutput = Schema3.mutable(Schema3.Struct({
175
- from: Schema3.String,
176
- to: Schema3.String,
177
- subject: Schema3.String,
178
- created: Schema3.String,
179
- body: Schema3.String
180
- }));
181
- var WebhookTriggerOutput = Schema3.mutable(Schema3.Struct({
182
- url: Schema3.String,
183
- method: Schema3.Literal("GET", "POST"),
184
- headers: Schema3.Record({
185
- key: Schema3.String,
186
- value: Schema3.String
187
- }),
188
- bodyText: Schema3.String
189
- }));
190
- var QueueTriggerOutput = Schema3.mutable(Schema3.Struct({
191
- queue: DXN.Schema,
192
- item: Schema3.Any,
193
- cursor: Schema3.String
194
- }));
195
- var SubscriptionTriggerOutput = Schema3.mutable(Schema3.Struct({
196
- type: Schema3.String,
197
- changedObjectId: Schema3.String
198
- }));
199
- var TimerTriggerOutput = Schema3.mutable(Schema3.Struct({
200
- tick: Schema3.Number
201
- }));
202
- var FunctionTrigger = Schema3.Struct({
205
+ var Trigger_ = Schema3.Struct({
203
206
  /**
204
207
  * Function or workflow to invoke.
205
208
  */
206
209
  // TODO(dmaretskyi): Can be a Ref(FunctionType) or Ref(ComputeGraphType).
207
- function: Schema3.optional(Ref2(Expando).annotations({
210
+ function: Schema3.optional(Ref3(Expando).annotations({
208
211
  title: "Function"
209
212
  })),
210
213
  /**
@@ -218,7 +221,7 @@ var FunctionTrigger = Schema3.Struct({
218
221
  enabled: Schema3.optional(Schema3.Boolean.annotations({
219
222
  title: "Enabled"
220
223
  })),
221
- spec: Schema3.optional(TriggerSchema),
224
+ spec: Schema3.optional(Spec),
222
225
  /**
223
226
  * Passed as the input data to the function.
224
227
  * Must match the function's input schema.
@@ -234,286 +237,659 @@ var FunctionTrigger = Schema3.Struct({
234
237
  key: Schema3.String,
235
238
  value: Schema3.Any
236
239
  })))
237
- }).pipe(Type2.Obj({
238
- typename: "dxos.org/type/FunctionTrigger",
239
- version: "0.2.0"
240
+ }).pipe(Type3.Obj({
241
+ typename: "dxos.org/type/Trigger",
242
+ version: "0.1.0"
240
243
  }));
241
- var FunctionManifestSchema = Schema3.Struct({
242
- functions: Schema3.optional(Schema3.mutable(Schema3.Array(RawObject(FunctionType)))),
243
- triggers: Schema3.optional(Schema3.mutable(Schema3.Array(RawObject(FunctionTrigger))))
244
- });
245
- var FUNCTION_TYPES = [
246
- FunctionType,
247
- FunctionTrigger
248
- ];
244
+ var Trigger = Trigger_;
245
+ var make3 = (props) => Obj3.make(Trigger, props);
249
246
 
250
- // src/trace.ts
251
- var __dxlog_file = "/__w/dxos/dxos/packages/core/functions/src/trace.ts";
252
- var InvocationOutcome = /* @__PURE__ */ function(InvocationOutcome2) {
253
- InvocationOutcome2["SUCCESS"] = "success";
254
- InvocationOutcome2["FAILURE"] = "failure";
255
- InvocationOutcome2["PENDING"] = "pending";
256
- return InvocationOutcome2;
257
- }({});
258
- var InvocationTraceEventType = /* @__PURE__ */ function(InvocationTraceEventType2) {
259
- InvocationTraceEventType2["START"] = "start";
260
- InvocationTraceEventType2["END"] = "end";
261
- return InvocationTraceEventType2;
262
- }({});
263
- var TraceEventException = Schema4.Struct({
264
- timestampMs: Schema4.Number,
265
- message: Schema4.String,
266
- name: Schema4.String,
267
- stack: Schema4.optional(Schema4.String)
247
+ // src/types/TriggerEvent.ts
248
+ var TriggerEvent_exports = {};
249
+ __export(TriggerEvent_exports, {
250
+ EmailEvent: () => EmailEvent,
251
+ QueueEvent: () => QueueEvent,
252
+ SubscriptionEvent: () => SubscriptionEvent,
253
+ TimerEvent: () => TimerEvent,
254
+ WebhookEvent: () => WebhookEvent
268
255
  });
269
- var InvocationTraceStartEvent = Schema4.Struct({
270
- /**
271
- * Queue message id.
272
- */
273
- id: ObjectId,
274
- type: Schema4.Literal("start"),
275
- /**
276
- * Invocation id, the same for invocation start and end events.
277
- */
278
- invocationId: ObjectId,
279
- /**
280
- * Event generation time.
281
- */
282
- timestampMs: Schema4.Number,
283
- /**
284
- * Data passed to function / workflow as an argument.
285
- */
286
- // TODO(burdon): Input schema?
287
- input: Schema4.Object,
288
- /**
289
- * Queue for function/workflow invocation events.
290
- */
291
- invocationTraceQueue: Type3.Ref(Queue),
292
- /**
293
- * DXN of the invoked function/workflow.
294
- */
295
- invocationTarget: Type3.Ref(Type3.Expando),
296
- /**
297
- * Present for automatic invocations.
298
- */
299
- trigger: Schema4.optional(Type3.Ref(FunctionTrigger))
300
- }).pipe(Type3.Obj({
301
- typename: "dxos.org/type/InvocationTraceStart",
302
- version: "0.1.0"
256
+ import * as Schema4 from "effect/Schema";
257
+ import { DXN as DXN2, Obj as Obj4, Type as Type4 } from "@dxos/echo";
258
+ var EmailEvent = Schema4.mutable(Schema4.Struct({
259
+ from: Schema4.String,
260
+ to: Schema4.String,
261
+ subject: Schema4.String,
262
+ created: Schema4.String,
263
+ body: Schema4.String
264
+ }));
265
+ var QueueEvent = Schema4.mutable(Schema4.Struct({
266
+ queue: DXN2.Schema,
267
+ item: Schema4.Any,
268
+ cursor: Schema4.String
303
269
  }));
304
- var InvocationTraceEndEvent = Schema4.Struct({
270
+ var SubscriptionEvent = Schema4.Struct({
305
271
  /**
306
- * Trace event id.
272
+ * Type of the mutation.
307
273
  */
308
- id: ObjectId,
309
- type: Schema4.Literal("end"),
274
+ // TODO(dmaretskyi): Specify enum.
275
+ type: Schema4.String,
310
276
  /**
311
- * Invocation id, will be the same for invocation start and end.
277
+ * Reference to the object that was changed or created.
312
278
  */
313
- invocationId: ObjectId,
279
+ subject: Type4.Ref(Obj4.Any),
314
280
  /**
315
- * Event generation time.
281
+ * @deprecated
316
282
  */
317
- // TODO(burdon): Remove ms suffix.
318
- timestampMs: Schema4.Number,
319
- outcome: Schema4.Enums(InvocationOutcome),
320
- exception: Schema4.optional(TraceEventException)
321
- }).pipe(Type3.Obj({
322
- typename: "dxos.org/type/InvocationTraceEnd",
323
- version: "0.1.0"
283
+ changedObjectId: Schema4.optional(Schema4.String)
284
+ }).pipe(Schema4.mutable);
285
+ var TimerEvent = Schema4.mutable(Schema4.Struct({
286
+ tick: Schema4.Number
324
287
  }));
325
- var TraceEventLog = Schema4.Struct({
326
- timestampMs: Schema4.Number,
327
- level: Schema4.String,
328
- message: Schema4.String,
329
- context: Schema4.optional(Schema4.Object)
330
- });
331
- var TraceEvent = Schema4.Struct({
332
- id: ObjectId,
333
- // TODO(burdon): Need enum/numeric result (not string).
334
- outcome: Schema4.String,
335
- truncated: Schema4.Boolean,
336
- /** Time when the event was persisted. */
337
- ingestionTimestamp: Schema4.Number,
338
- logs: Schema4.Array(TraceEventLog),
339
- exceptions: Schema4.Array(TraceEventException)
340
- }).pipe(Type3.Obj({
341
- typename: "dxos.org/type/TraceEvent",
342
- version: "0.1.0"
288
+ var WebhookEvent = Schema4.mutable(Schema4.Struct({
289
+ url: Schema4.String,
290
+ method: Schema4.Literal("GET", "POST"),
291
+ headers: Schema4.Record({
292
+ key: Schema4.String,
293
+ value: Schema4.String
294
+ }),
295
+ bodyText: Schema4.String
343
296
  }));
344
- var createInvocationSpans = (items) => {
345
- if (!items) {
346
- return [];
297
+
298
+ // src/types/url.ts
299
+ var FUNCTIONS_META_KEY = "dxos.org/service/function";
300
+ var FUNCTIONS_PRESET_META_KEY = "dxos.org/service/function-preset";
301
+ var getUserFunctionIdInMetadata = (meta) => {
302
+ return meta.keys.find((key) => key.source === FUNCTIONS_META_KEY)?.id;
303
+ };
304
+ var setUserFunctionIdInMetadata = (meta, functionId) => {
305
+ const key = meta.keys.find((key2) => key2.source === FUNCTIONS_META_KEY);
306
+ if (key) {
307
+ if (key.id !== functionId) {
308
+ throw new Error("Metadata mismatch");
309
+ }
310
+ } else {
311
+ meta.keys.push({
312
+ source: FUNCTIONS_META_KEY,
313
+ id: functionId
314
+ });
315
+ }
316
+ };
317
+
318
+ // src/sdk.ts
319
+ var typeId = Symbol.for("@dxos/functions/FunctionDefinition");
320
+ var defineFunction = ({ key, name, description, inputSchema, outputSchema = Schema5.Any, handler, services }) => {
321
+ if (!Schema5.isSchema(inputSchema)) {
322
+ throw new Error("Input schema must be a valid schema");
323
+ }
324
+ if (typeof handler !== "function") {
325
+ throw new Error("Handler must be a function");
347
326
  }
348
- const eventsByInvocationId = /* @__PURE__ */ new Map();
349
- for (const event of items) {
350
- if (!("invocationId" in event)) {
351
- continue;
327
+ const limit = Error.stackTraceLimit;
328
+ Error.stackTraceLimit = 2;
329
+ const traceError = new Error();
330
+ Error.stackTraceLimit = limit;
331
+ let cache = false;
332
+ const captureStackTrace = () => {
333
+ if (cache !== false) {
334
+ return cache;
352
335
  }
353
- const invocationId = event.invocationId;
354
- const entry = eventsByInvocationId.get(invocationId) || {
355
- start: void 0,
356
- end: void 0
357
- };
358
- if (event.type === "start") {
359
- entry.start = event;
360
- } else if (event.type === "end") {
361
- entry.end = event;
336
+ if (traceError.stack !== void 0) {
337
+ const stack = traceError.stack.split("\n");
338
+ if (stack[2] !== void 0) {
339
+ cache = stack[2].trim();
340
+ return cache;
341
+ }
362
342
  }
363
- eventsByInvocationId.set(invocationId, entry);
364
- }
365
- const now = Date.now();
366
- const result = [];
367
- for (const [invocationId, { start, end }] of eventsByInvocationId.entries()) {
368
- if (!start) {
369
- log.warn("found end event without matching start", {
370
- invocationId
371
- }, {
372
- F: __dxlog_file,
373
- L: 158,
374
- S: void 0,
375
- C: (f, a) => f(...a)
343
+ };
344
+ const handlerWithSpan = (...args) => {
345
+ const result = handler(...args);
346
+ if (Effect.isEffect(result)) {
347
+ return Effect.withSpan(result, `${key ?? name}`, {
348
+ captureStackTrace
376
349
  });
377
- continue;
378
350
  }
379
- const isInProgress = end === void 0;
380
- result.push({
381
- id: invocationId,
382
- timestampMs: start.timestampMs,
383
- durationMs: isInProgress ? now - start.timestampMs : end.timestampMs - start.timestampMs,
384
- outcome: end?.outcome ?? "pending",
385
- exception: end?.exception,
386
- input: start.input,
387
- invocationTraceQueue: start.invocationTraceQueue,
388
- invocationTarget: start.invocationTarget,
389
- trigger: start.trigger
390
- });
351
+ return result;
352
+ };
353
+ return {
354
+ [typeId]: true,
355
+ key,
356
+ name,
357
+ description,
358
+ inputSchema,
359
+ outputSchema,
360
+ handler: handlerWithSpan,
361
+ services: !services ? [] : getServiceKeys(services)
362
+ };
363
+ };
364
+ var getServiceKeys = (services) => {
365
+ return services.map((tag) => {
366
+ if (typeof tag.key === "string") {
367
+ return tag.key;
368
+ }
369
+ console.log(tag);
370
+ failedInvariant();
371
+ });
372
+ };
373
+ var FunctionDefinition = {
374
+ make: defineFunction,
375
+ isFunction: (value2) => {
376
+ return typeof value2 === "object" && value2 !== null && Symbol.for("@dxos/functions/FunctionDefinition") in value2;
377
+ },
378
+ serialize: (functionDef) => {
379
+ assertArgument(FunctionDefinition.isFunction(functionDef), "functionDef");
380
+ return serializeFunction(functionDef);
381
+ },
382
+ deserialize: (functionObj) => {
383
+ assertArgument(Obj5.instanceOf(Function_exports.Function, functionObj), "functionObj");
384
+ return deserializeFunction(functionObj);
391
385
  }
392
- return result;
393
386
  };
394
-
395
- // src/services/local-function-execution.ts
396
- import { Context, Effect, Layer, Schema as Schema5 } from "effect";
397
- import { todo } from "@dxos/debug";
398
-
399
- // src/errors.ts
400
- import { BaseError } from "@dxos/errors";
401
- var ServiceNotAvailableError = class extends BaseError.extend("SERVICE_NOT_AVAILABLE") {
402
- constructor(serviceName) {
403
- super(`Service not available: ${serviceName}`);
387
+ var serializeFunction = (functionDef) => {
388
+ const fn4 = Function_exports.make({
389
+ key: functionDef.key,
390
+ name: functionDef.name,
391
+ version: "0.1.0",
392
+ description: functionDef.description,
393
+ inputSchema: Type5.toJsonSchema(functionDef.inputSchema),
394
+ outputSchema: !functionDef.outputSchema ? void 0 : Type5.toJsonSchema(functionDef.outputSchema),
395
+ services: functionDef.services
396
+ });
397
+ if (functionDef.meta?.deployedFunctionId) {
398
+ setUserFunctionIdInMetadata(Obj5.getMeta(fn4), functionDef.meta.deployedFunctionId);
404
399
  }
400
+ return fn4;
405
401
  };
406
- var FunctionError = class extends BaseError.extend("FUNCTION_ERROR") {
402
+ var deserializeFunction = (functionObj) => {
403
+ return {
404
+ [typeId]: true,
405
+ // TODO(dmaretskyi): Fix key.
406
+ key: functionObj.key ?? functionObj.name,
407
+ name: functionObj.name,
408
+ description: functionObj.description,
409
+ inputSchema: !functionObj.inputSchema ? Schema5.Unknown : Type5.toEffectSchema(functionObj.inputSchema),
410
+ outputSchema: !functionObj.outputSchema ? void 0 : Type5.toEffectSchema(functionObj.outputSchema),
411
+ // TODO(dmaretskyi): This should throw error.
412
+ handler: () => {
413
+ },
414
+ services: functionObj.services ?? [],
415
+ meta: {
416
+ deployedFunctionId: getUserFunctionIdInMetadata(Obj5.getMeta(functionObj))
417
+ }
418
+ };
407
419
  };
408
420
 
409
- // src/services/local-function-execution.ts
410
- function _define_property(obj, key, value) {
411
- if (key in obj) {
412
- Object.defineProperty(obj, key, {
413
- value,
414
- enumerable: true,
415
- configurable: true,
416
- writable: true
421
+ // src/example/fib.ts
422
+ var fib_default = defineFunction({
423
+ key: "example.org/function/fib",
424
+ name: "Fibonacci",
425
+ description: "Function that calculates a Fibonacci number",
426
+ inputSchema: Schema6.Struct({
427
+ iterations: Schema6.optional(Schema6.Number).annotations({
428
+ description: "Number of iterations",
429
+ default: 1e5
430
+ })
431
+ }),
432
+ outputSchema: Schema6.Struct({
433
+ result: Schema6.String
434
+ }),
435
+ handler: Effect2.fn(function* ({ data: { iterations = 1e5 } }) {
436
+ let a = 0n;
437
+ let b = 1n;
438
+ for (let i = 0; i < iterations; i++) {
439
+ a += b;
440
+ b = a - b;
441
+ }
442
+ return {
443
+ result: a.toString()
444
+ };
445
+ })
446
+ });
447
+
448
+ // src/example/reply.ts
449
+ import * as Console from "effect/Console";
450
+ import * as Effect3 from "effect/Effect";
451
+ import * as Schema7 from "effect/Schema";
452
+ var reply_default = defineFunction({
453
+ key: "example.org/function/reply",
454
+ name: "Reply",
455
+ description: "Function that echoes the input",
456
+ inputSchema: Schema7.Any,
457
+ outputSchema: Schema7.Any,
458
+ handler: Effect3.fn(function* ({ data }) {
459
+ yield* Console.log("reply", {
460
+ data
417
461
  });
418
- } else {
419
- obj[key] = value;
462
+ return data;
463
+ })
464
+ });
465
+
466
+ // src/example/sleep.ts
467
+ import * as Effect4 from "effect/Effect";
468
+ import * as Schema8 from "effect/Schema";
469
+ var sleep_default = defineFunction({
470
+ key: "example.org/function/sleep",
471
+ name: "Sleep",
472
+ description: "Function that sleeps for a given amount of time",
473
+ inputSchema: Schema8.Struct({
474
+ duration: Schema8.optional(Schema8.Number).annotations({
475
+ description: "Milliseconds to sleep",
476
+ default: 1e5
477
+ })
478
+ }),
479
+ outputSchema: Schema8.Void,
480
+ handler: Effect4.fn(function* ({ data: { duration = 1e5 } }) {
481
+ yield* Effect4.sleep(duration);
482
+ })
483
+ });
484
+
485
+ // src/example/index.ts
486
+ (function(Example2) {
487
+ Example2.fib = fib_default;
488
+ Example2.reply = reply_default;
489
+ Example2.sleep = sleep_default;
490
+ })(Example || (Example = {}));
491
+ var Example;
492
+
493
+ // src/services/index.ts
494
+ import { DatabaseService as DatabaseService2 } from "@dxos/echo-db";
495
+
496
+ // src/services/credentials.ts
497
+ import * as HttpClient from "@effect/platform/HttpClient";
498
+ import * as HttpClientRequest from "@effect/platform/HttpClientRequest";
499
+ import * as Context from "effect/Context";
500
+ import * as Effect5 from "effect/Effect";
501
+ import * as Layer from "effect/Layer";
502
+ import * as Redacted from "effect/Redacted";
503
+ import { Query } from "@dxos/echo";
504
+ import { DatabaseService } from "@dxos/echo-db";
505
+ import { AccessToken } from "@dxos/types";
506
+ var CredentialsService = class _CredentialsService extends Context.Tag("@dxos/functions/CredentialsService")() {
507
+ static getCredential = (query) => Effect5.gen(function* () {
508
+ const credentials = yield* _CredentialsService;
509
+ return yield* Effect5.promise(() => credentials.getCredential(query));
510
+ });
511
+ static getApiKey = (query) => Effect5.gen(function* () {
512
+ const credential = yield* _CredentialsService.getCredential(query);
513
+ if (!credential.apiKey) {
514
+ throw new Error(`API key not found for service: ${query.service}`);
515
+ }
516
+ return Redacted.make(credential.apiKey);
517
+ });
518
+ static configuredLayer = (credentials) => Layer.succeed(_CredentialsService, new ConfiguredCredentialsService(credentials));
519
+ static layerConfig = (credentials) => Layer.effect(_CredentialsService, Effect5.gen(function* () {
520
+ const serviceCredentials = yield* Effect5.forEach(credentials, ({ service, apiKey }) => Effect5.gen(function* () {
521
+ return {
522
+ service,
523
+ apiKey: Redacted.value(yield* apiKey)
524
+ };
525
+ }));
526
+ return new ConfiguredCredentialsService(serviceCredentials);
527
+ }));
528
+ static layerFromDatabase = () => Layer.effect(_CredentialsService, Effect5.gen(function* () {
529
+ const dbService = yield* DatabaseService;
530
+ const queryCredentials = async (query) => {
531
+ const { objects: accessTokens } = await dbService.db.query(Query.type(AccessToken.AccessToken)).run();
532
+ return accessTokens.filter((accessToken) => accessToken.source === query.service).map((accessToken) => ({
533
+ service: accessToken.source,
534
+ apiKey: accessToken.token
535
+ }));
536
+ };
537
+ return {
538
+ getCredential: async (query) => {
539
+ const credentials = await queryCredentials(query);
540
+ if (credentials.length === 0) {
541
+ throw new Error(`Credential not found for service: ${query.service}`);
542
+ }
543
+ return credentials[0];
544
+ },
545
+ queryCredentials: async (query) => {
546
+ return queryCredentials(query);
547
+ }
548
+ };
549
+ }));
550
+ };
551
+ var ConfiguredCredentialsService = class {
552
+ credentials;
553
+ constructor(credentials = []) {
554
+ this.credentials = credentials;
555
+ }
556
+ addCredentials(credentials) {
557
+ this.credentials.push(...credentials);
558
+ return this;
559
+ }
560
+ async queryCredentials(query) {
561
+ return this.credentials.filter((credential) => credential.service === query.service);
562
+ }
563
+ async getCredential(query) {
564
+ const credential = this.credentials.find((credential2) => credential2.service === query.service);
565
+ if (!credential) {
566
+ throw new Error(`Credential not found for service: ${query.service}`);
567
+ }
568
+ return credential;
420
569
  }
421
- return obj;
422
- }
423
- var _Context_Tag;
424
- var LocalFunctionExecutionService = class extends (_Context_Tag = Context.Tag("@dxos/functions/LocalFunctionExecutionService")()) {
425
570
  };
426
- _define_property(LocalFunctionExecutionService, "layer", Layer.succeed(LocalFunctionExecutionService, {
427
- invokeFunction: (functionDef, input) => invokeFunction(functionDef, input)
571
+ var withAuthorization = (query, kind) => HttpClient.mapRequestEffect(Effect5.fnUntraced(function* (request) {
572
+ const key = yield* CredentialsService.getApiKey(query).pipe(Effect5.map(Redacted.value));
573
+ const authorization = kind ? `${kind} ${key}` : key;
574
+ return HttpClientRequest.setHeader(request, "Authorization", authorization);
428
575
  }));
429
- _define_property(LocalFunctionExecutionService, "invokeFunction", Effect.serviceFunctionEffect(LocalFunctionExecutionService, (_) => _.invokeFunction));
430
- var invokeFunction = (functionDef, input) => Effect.gen(function* () {
431
- const assertInput = functionDef.inputSchema.pipe(Schema5.asserts);
432
- assertInput(input);
433
- const context = {
434
- space: void 0,
435
- getService: () => todo(),
436
- getSpace: async (_spaceId) => {
437
- throw new Error("Not available. Use the database service instead.");
576
+
577
+ // src/services/event-logger.ts
578
+ import * as Context3 from "effect/Context";
579
+ import * as Effect7 from "effect/Effect";
580
+ import * as Layer3 from "effect/Layer";
581
+ import * as Schema9 from "effect/Schema";
582
+ import { Obj as Obj7, Type as Type6 } from "@dxos/echo";
583
+ import { invariant } from "@dxos/invariant";
584
+ import { LogLevel, log as log2 } from "@dxos/log";
585
+
586
+ // src/services/tracing.ts
587
+ import * as Context2 from "effect/Context";
588
+ import * as Effect6 from "effect/Effect";
589
+ import * as Layer2 from "effect/Layer";
590
+ import { AgentStatus } from "@dxos/ai";
591
+ import { Obj as Obj6 } from "@dxos/echo";
592
+ import { Message } from "@dxos/types";
593
+ var TracingService = class _TracingService extends Context2.Tag("@dxos/functions/TracingService")() {
594
+ static noop = {
595
+ getTraceContext: () => ({}),
596
+ write: () => {
438
597
  }
439
598
  };
440
- const data = yield* Effect.gen(function* () {
441
- const result = functionDef.handler({
442
- context,
443
- data: input
444
- });
445
- if (Effect.isEffect(result)) {
446
- return yield* result.pipe(Effect.orDie);
447
- } else if (typeof result === "object" && result !== null && "then" in result && typeof result.then === "function") {
448
- return yield* Effect.promise(() => result);
449
- } else {
450
- return result;
451
- }
452
- }).pipe(Effect.orDie, Effect.catchAllDefect((defect) => Effect.die(new FunctionError("Error running function", {
453
- context: {
454
- name: functionDef.name
599
+ static layerNoop = Layer2.succeed(_TracingService, _TracingService.noop);
600
+ /**
601
+ * Creates a TracingService layer that emits events to the parent tracing service.
602
+ */
603
+ static layerSubframe = (mapContext) => Layer2.effect(_TracingService, Effect6.gen(function* () {
604
+ const tracing = yield* _TracingService;
605
+ const context = mapContext(tracing.getTraceContext());
606
+ return {
607
+ write: (event) => tracing.write(event),
608
+ getTraceContext: () => context
609
+ };
610
+ }));
611
+ /**
612
+ * Emit the current human-readable execution status.
613
+ */
614
+ static emitStatus = Effect6.fnUntraced(function* (data) {
615
+ const tracing = yield* _TracingService;
616
+ tracing.write(Obj6.make(AgentStatus, {
617
+ parentMessage: tracing.getTraceContext().parentMessage,
618
+ toolCallId: tracing.getTraceContext().toolCallId,
619
+ created: (/* @__PURE__ */ new Date()).toISOString(),
620
+ ...data
621
+ }));
622
+ });
623
+ static emitConverationMessage = Effect6.fnUntraced(function* (data) {
624
+ const tracing = yield* _TracingService;
625
+ tracing.write(Obj6.make(Message.Message, {
626
+ parentMessage: tracing.getTraceContext().parentMessage,
627
+ ...data,
628
+ properties: {
629
+ [MESSAGE_PROPERTY_TOOL_CALL_ID]: tracing.getTraceContext().toolCallId,
630
+ ...data.properties
631
+ }
632
+ }));
633
+ });
634
+ };
635
+ var MESSAGE_PROPERTY_TOOL_CALL_ID = "toolCallId";
636
+
637
+ // src/services/event-logger.ts
638
+ var __dxlog_file = "/__w/dxos/dxos/packages/core/functions/src/services/event-logger.ts";
639
+ var ComputeEventPayload = Schema9.Union(Schema9.Struct({
640
+ type: Schema9.Literal("begin-compute"),
641
+ nodeId: Schema9.String,
642
+ /**
643
+ * Names of the inputs begin computed.
644
+ */
645
+ inputs: Schema9.Array(Schema9.String)
646
+ }), Schema9.Struct({
647
+ type: Schema9.Literal("end-compute"),
648
+ nodeId: Schema9.String,
649
+ /**
650
+ * Names of the outputs computed.
651
+ */
652
+ outputs: Schema9.Array(Schema9.String)
653
+ }), Schema9.Struct({
654
+ type: Schema9.Literal("compute-input"),
655
+ nodeId: Schema9.String,
656
+ property: Schema9.String,
657
+ value: Schema9.Any
658
+ }), Schema9.Struct({
659
+ type: Schema9.Literal("compute-output"),
660
+ nodeId: Schema9.String,
661
+ property: Schema9.String,
662
+ value: Schema9.Any
663
+ }), Schema9.Struct({
664
+ type: Schema9.Literal("custom"),
665
+ nodeId: Schema9.String,
666
+ event: Schema9.Any
667
+ }));
668
+ var ComputeEvent = Schema9.Struct({
669
+ payload: ComputeEventPayload
670
+ }).pipe(Type6.Obj({
671
+ typename: "dxos.org/type/ComputeEvent",
672
+ version: "0.1.0"
673
+ }));
674
+ var ComputeEventLogger = class _ComputeEventLogger extends Context3.Tag("@dxos/functions/ComputeEventLogger")() {
675
+ static noop = {
676
+ log: () => {
455
677
  },
456
- cause: defect
457
- }))));
458
- const assertOutput = functionDef.outputSchema?.pipe(Schema5.asserts);
459
- assertOutput(data);
460
- return data;
461
- }).pipe(Effect.withSpan("invokeFunction", {
462
- attributes: {
463
- name: functionDef.name
678
+ nodeId: void 0
679
+ };
680
+ /**
681
+ * Implements ComputeEventLogger using TracingService.
682
+ */
683
+ static layerFromTracing = Layer3.effect(_ComputeEventLogger, Effect7.gen(function* () {
684
+ const tracing = yield* TracingService;
685
+ return {
686
+ log: (event) => {
687
+ tracing.write(Obj7.make(ComputeEvent, {
688
+ payload: event
689
+ }));
690
+ },
691
+ nodeId: void 0
692
+ };
693
+ }));
694
+ };
695
+ var logCustomEvent = (data) => Effect7.gen(function* () {
696
+ const logger = yield* ComputeEventLogger;
697
+ if (!logger.nodeId) {
698
+ throw new Error("logCustomEvent must be called within a node compute function");
464
699
  }
700
+ logger.log({
701
+ type: "custom",
702
+ nodeId: logger.nodeId,
703
+ event: data
704
+ });
705
+ });
706
+ var createDefectLogger = () => Effect7.catchAll((error) => Effect7.gen(function* () {
707
+ log2.error("unhandled effect error", {
708
+ error
709
+ }, {
710
+ F: __dxlog_file,
711
+ L: 102,
712
+ S: this,
713
+ C: (f, a) => f(...a)
714
+ });
715
+ throw error;
465
716
  }));
717
+ var createEventLogger = (level, message = "event") => {
718
+ const logFunction = {
719
+ [LogLevel.WARN]: log2.warn,
720
+ [LogLevel.VERBOSE]: log2.verbose,
721
+ [LogLevel.DEBUG]: log2.debug,
722
+ [LogLevel.INFO]: log2.info,
723
+ [LogLevel.ERROR]: log2.error
724
+ }[level];
725
+ invariant(logFunction, void 0, {
726
+ F: __dxlog_file,
727
+ L: 120,
728
+ S: void 0,
729
+ A: [
730
+ "logFunction",
731
+ ""
732
+ ]
733
+ });
734
+ return {
735
+ log: (event) => {
736
+ logFunction(message, event);
737
+ },
738
+ nodeId: void 0
739
+ };
740
+ };
466
741
 
467
- // src/executor/executor.ts
468
- import { Effect as Effect2, Schema as Schema6 } from "effect";
469
- import { runAndForwardErrors } from "@dxos/effect";
470
- function _define_property2(obj, key, value) {
471
- if (key in obj) {
472
- Object.defineProperty(obj, key, {
473
- value,
474
- enumerable: true,
475
- configurable: true,
476
- writable: true
477
- });
478
- } else {
479
- obj[key] = value;
480
- }
481
- return obj;
482
- }
483
- var FunctionExecutor = class {
742
+ // src/services/function-invocation-service.ts
743
+ import * as Context4 from "effect/Context";
744
+ import * as Effect8 from "effect/Effect";
745
+ var FunctionInvocationService = class _FunctionInvocationService extends Context4.Tag("@dxos/functions/FunctionInvocationService")() {
746
+ static invokeFunction = (functionDef, input) => Effect8.serviceFunctionEffect(_FunctionInvocationService, (service) => service.invokeFunction)(functionDef, input);
747
+ };
748
+
749
+ // src/services/queues.ts
750
+ import * as Context5 from "effect/Context";
751
+ import * as Effect9 from "effect/Effect";
752
+ import * as Layer4 from "effect/Layer";
753
+ var QueueService = class _QueueService extends Context5.Tag("@dxos/functions/QueueService")() {
754
+ static notAvailable = Layer4.succeed(_QueueService, {
755
+ queues: {
756
+ get(_dxn) {
757
+ throw new Error("Queues not available");
758
+ },
759
+ create() {
760
+ throw new Error("Queues not available");
761
+ }
762
+ },
763
+ queue: void 0
764
+ });
765
+ static make = (queues, queue) => {
766
+ return {
767
+ queues,
768
+ queue
769
+ };
770
+ };
771
+ static layer = (queues, queue) => Layer4.succeed(_QueueService, _QueueService.make(queues, queue));
772
+ /**
773
+ * Gets a queue by its DXN.
774
+ */
775
+ static getQueue = (dxn) => _QueueService.pipe(Effect9.map(({ queues }) => queues.get(dxn)));
484
776
  /**
485
- * Invoke function.
777
+ * Creates a new queue.
486
778
  */
487
- // TODO(dmaretskyi): Invocation context: queue, space, etc...
488
- async invoke(functionDef, input) {
489
- const assertInput = functionDef.inputSchema.pipe(Schema6.asserts);
490
- assertInput(input);
491
- const context = {
492
- space: void 0,
493
- getService: this._services.getService.bind(this._services),
494
- getSpace: async (_spaceId) => {
495
- throw new Error("Not available. Use the database service instead.");
779
+ static createQueue = (options) => _QueueService.pipe(Effect9.map(({ queues }) => queues.create(options)));
780
+ static append = (queue, objects) => Effect9.promise(() => queue.append(objects));
781
+ };
782
+ var ContextQueueService = class _ContextQueueService extends Context5.Tag("@dxos/functions/ContextQueueService")() {
783
+ static layer = (queue) => Layer4.succeed(_ContextQueueService, {
784
+ queue
785
+ });
786
+ };
787
+
788
+ // src/protocol/protocol.ts
789
+ import * as Effect10 from "effect/Effect";
790
+ import * as Layer5 from "effect/Layer";
791
+ import * as Schema10 from "effect/Schema";
792
+ import * as SchemaAST2 from "effect/SchemaAST";
793
+ import { AiService } from "@dxos/ai";
794
+ import { Type as Type7 } from "@dxos/echo";
795
+ import { EchoClient } from "@dxos/echo-db";
796
+ import { acquireReleaseResource } from "@dxos/effect";
797
+ import { failedInvariant as failedInvariant2, invariant as invariant2 } from "@dxos/invariant";
798
+ import { PublicKey } from "@dxos/keys";
799
+ var __dxlog_file2 = "/__w/dxos/dxos/packages/core/functions/src/protocol/protocol.ts";
800
+ var wrapFunctionHandler = (func) => {
801
+ if (!FunctionDefinition.isFunction(func)) {
802
+ throw new TypeError("Invalid function definition");
803
+ }
804
+ return {
805
+ meta: {
806
+ key: func.key,
807
+ name: func.name,
808
+ description: func.description,
809
+ inputSchema: Type7.toJsonSchema(func.inputSchema),
810
+ outputSchema: func.outputSchema === void 0 ? void 0 : Type7.toJsonSchema(func.outputSchema),
811
+ services: func.services
812
+ },
813
+ handler: async ({ data, context }) => {
814
+ if ((func.services.includes(DatabaseService2.key) || func.services.includes(QueueService.key)) && (!context.services.dataService || !context.services.queryService)) {
815
+ throw new FunctionError({
816
+ message: "Services not provided: dataService, queryService"
817
+ });
818
+ }
819
+ try {
820
+ if (!SchemaAST2.isAnyKeyword(func.inputSchema.ast)) {
821
+ Schema10.validateSync(func.inputSchema)(data);
822
+ }
823
+ let result = await func.handler({
824
+ // TODO(dmaretskyi): Fix the types.
825
+ context,
826
+ data
827
+ });
828
+ if (Effect10.isEffect(result)) {
829
+ result = await Effect10.runPromise(result.pipe(Effect10.orDie, Effect10.provide(createServiceLayer(context))));
830
+ }
831
+ if (func.outputSchema && !SchemaAST2.isAnyKeyword(func.outputSchema.ast)) {
832
+ Schema10.validateSync(func.outputSchema)(result);
833
+ }
834
+ return result;
835
+ } catch (error) {
836
+ if (FunctionError.is(error)) {
837
+ throw error;
838
+ } else {
839
+ throw new FunctionError({
840
+ cause: error,
841
+ context: {
842
+ func: func.key
843
+ }
844
+ });
845
+ }
496
846
  }
497
- };
498
- const result = functionDef.handler({
499
- context,
500
- data: input
501
- });
502
- let data;
503
- if (Effect2.isEffect(result)) {
504
- data = await result.pipe(Effect2.provide(this._services.createLayer()), runAndForwardErrors);
505
- } else {
506
- data = await result;
507
847
  }
508
- const assertOutput = functionDef.outputSchema?.pipe(Schema6.asserts);
509
- assertOutput(data);
510
- return data;
511
- }
512
- constructor(_services) {
513
- _define_property2(this, "_services", void 0);
514
- this._services = _services;
515
- }
848
+ };
516
849
  };
850
+ var createServiceLayer = (context) => {
851
+ return Layer5.unwrapScoped(Effect10.gen(function* () {
852
+ let client;
853
+ if (context.services.dataService && context.services.queryService) {
854
+ client = yield* acquireReleaseResource(() => {
855
+ invariant2(context.services.dataService && context.services.queryService, void 0, {
856
+ F: __dxlog_file2,
857
+ L: 99,
858
+ S: this,
859
+ A: [
860
+ "context.services.dataService && context.services.queryService",
861
+ ""
862
+ ]
863
+ });
864
+ return new EchoClient().connectToService({
865
+ dataService: context.services.dataService,
866
+ queryService: context.services.queryService,
867
+ queueService: context.services.queueService
868
+ });
869
+ });
870
+ }
871
+ const db = client && context.spaceId ? yield* acquireReleaseResource(() => client.constructDatabase({
872
+ spaceId: context.spaceId ?? failedInvariant2(),
873
+ spaceKey: PublicKey.fromHex(context.spaceKey ?? failedInvariant2("spaceKey missing in context")),
874
+ reactiveSchemaQuery: false
875
+ })) : void 0;
876
+ if (db) {
877
+ console.log("Setting space root", context.spaceRootUrl);
878
+ yield* Effect10.promise(() => db.setSpaceRoot(context.spaceRootUrl ?? failedInvariant2("spaceRootUrl missing in context")));
879
+ }
880
+ const queues = client && context.spaceId ? client.constructQueueFactory(context.spaceId) : void 0;
881
+ const dbLayer = db ? DatabaseService2.layer(db) : DatabaseService2.notAvailable;
882
+ const queuesLayer = queues ? QueueService.layer(queues) : QueueService.notAvailable;
883
+ const credentials = dbLayer ? CredentialsService.layerFromDatabase().pipe(Layer5.provide(dbLayer)) : CredentialsService.configuredLayer([]);
884
+ const functionInvocationService = MockedFunctionInvocationService;
885
+ const aiService = AiService.notAvailable;
886
+ const tracing = TracingService.layerNoop;
887
+ return Layer5.mergeAll(dbLayer, queuesLayer, credentials, functionInvocationService, aiService, tracing);
888
+ }));
889
+ };
890
+ var MockedFunctionInvocationService = Layer5.succeed(FunctionInvocationService, {
891
+ invokeFunction: () => Effect10.die("Calling functions from functions is not implemented yet.")
892
+ });
517
893
  export {
518
894
  ComputeEvent,
519
895
  ComputeEventLogger,
@@ -521,46 +897,32 @@ export {
521
897
  ConfiguredCredentialsService,
522
898
  ContextQueueService,
523
899
  CredentialsService,
524
- DatabaseService,
525
- EmailTriggerOutput,
900
+ DatabaseService2 as DatabaseService,
901
+ Example,
526
902
  FUNCTIONS_META_KEY,
527
903
  FUNCTIONS_PRESET_META_KEY,
528
- FUNCTION_TYPES,
904
+ Function_exports as Function,
905
+ FunctionDefinition,
529
906
  FunctionError,
530
- FunctionExecutor,
531
- FunctionManifestSchema,
532
- FunctionTrigger,
533
- FunctionType,
534
- InvocationOutcome,
535
- InvocationTraceEndEvent,
536
- InvocationTraceEventType,
537
- InvocationTraceStartEvent,
538
- LocalFunctionExecutionService,
907
+ FunctionInvocationService,
908
+ FunctionNotFoundError,
539
909
  MESSAGE_PROPERTY_TOOL_CALL_ID,
540
910
  QueueService,
541
- QueueTriggerOutput,
542
- RemoteFunctionExecutionService,
543
- SERVICE_TAGS,
544
- ScriptType,
545
- ServiceContainer,
911
+ Script_exports as Script,
546
912
  ServiceNotAvailableError,
547
- SubscriptionTriggerOutput,
548
- TimerTriggerOutput,
549
- TraceEvent,
550
- TraceEventException,
551
- TraceEventLog,
552
913
  TracingService,
553
- TriggerKinds,
554
- TriggerSchema,
555
- WebhookTriggerOutput,
914
+ Trigger_exports as Trigger,
915
+ TriggerEvent_exports as TriggerEvent,
916
+ TriggerStateNotFoundError,
556
917
  createDefectLogger,
557
918
  createEventLogger,
558
- createInvocationSpans,
559
919
  defineFunction,
560
- getInvocationUrl,
920
+ deserializeFunction,
561
921
  getUserFunctionIdInMetadata,
562
922
  logCustomEvent,
923
+ serializeFunction,
563
924
  setUserFunctionIdInMetadata,
564
- withAuthorization
925
+ withAuthorization,
926
+ wrapFunctionHandler
565
927
  };
566
928
  //# sourceMappingURL=index.mjs.map