@dxos/functions 0.8.4-main.5ea62a8 → 0.8.4-main.66e292d

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