@restatedev/restate-sdk 1.10.3 → 1.10.4

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 (58) hide show
  1. package/dist/_virtual/rolldown_runtime.js +13 -0
  2. package/dist/common_api.cjs +1 -0
  3. package/dist/common_api.d.cts +1 -0
  4. package/dist/common_api.d.cts.map +1 -1
  5. package/dist/common_api.d.ts +1 -0
  6. package/dist/common_api.d.ts.map +1 -1
  7. package/dist/common_api.js +1 -0
  8. package/dist/common_api.js.map +1 -1
  9. package/dist/context_impl.cjs +3 -0
  10. package/dist/context_impl.d.ts +3 -1
  11. package/dist/context_impl.d.ts.map +1 -1
  12. package/dist/context_impl.js +3 -0
  13. package/dist/context_impl.js.map +1 -1
  14. package/dist/endpoint/handlers/generic.cjs +6 -1
  15. package/dist/endpoint/handlers/generic.d.ts.map +1 -1
  16. package/dist/endpoint/handlers/generic.js +6 -1
  17. package/dist/endpoint/handlers/generic.js.map +1 -1
  18. package/dist/endpoint/handlers/vm/sdk_shared_core_wasm_bindings.cjs +287 -287
  19. package/dist/endpoint/handlers/vm/sdk_shared_core_wasm_bindings.d.ts +107 -107
  20. package/dist/endpoint/handlers/vm/sdk_shared_core_wasm_bindings.d.ts.map +1 -1
  21. package/dist/endpoint/handlers/vm/sdk_shared_core_wasm_bindings.js +287 -287
  22. package/dist/endpoint/handlers/vm/sdk_shared_core_wasm_bindings.js.map +1 -1
  23. package/dist/fetch.cjs +7 -0
  24. package/dist/fetch.d.cts +2 -1
  25. package/dist/fetch.d.cts.map +1 -1
  26. package/dist/fetch.d.ts +2 -1
  27. package/dist/fetch.d.ts.map +1 -1
  28. package/dist/fetch.js +2 -1
  29. package/dist/fetch.js.map +1 -1
  30. package/dist/index.cjs +7 -0
  31. package/dist/index.d.cts +2 -1
  32. package/dist/index.d.ts +2 -1
  33. package/dist/index.js +2 -1
  34. package/dist/internal.cjs +11 -0
  35. package/dist/internal.d.cts +27 -0
  36. package/dist/internal.d.cts.map +1 -0
  37. package/dist/internal.d.ts +27 -0
  38. package/dist/internal.d.ts.map +1 -0
  39. package/dist/internal.js +6 -0
  40. package/dist/internal.js.map +1 -0
  41. package/dist/lambda.cjs +7 -0
  42. package/dist/lambda.d.cts +2 -1
  43. package/dist/lambda.d.cts.map +1 -1
  44. package/dist/lambda.d.ts +2 -1
  45. package/dist/lambda.d.ts.map +1 -1
  46. package/dist/lambda.js +2 -1
  47. package/dist/lambda.js.map +1 -1
  48. package/dist/node.cjs +7 -0
  49. package/dist/node.d.cts +2 -1
  50. package/dist/node.d.cts.map +1 -1
  51. package/dist/node.d.ts +2 -1
  52. package/dist/node.d.ts.map +1 -1
  53. package/dist/node.js +2 -1
  54. package/dist/node.js.map +1 -1
  55. package/dist/package.cjs +1 -1
  56. package/dist/package.js +1 -1
  57. package/dist/package.js.map +1 -1
  58. package/package.json +2 -2
@@ -1,7 +1,3 @@
1
- /**
2
- * Setups the WASM module
3
- */
4
- export function start(): void;
5
1
  /**
6
2
  * This will set the log level of the overall log subscriber.
7
3
  * @param {LogLevel} level
@@ -11,6 +7,10 @@ export function set_log_level(level: LogLevel): void;
11
7
  * @returns {number}
12
8
  */
13
9
  export function cancel_handle(): number;
10
+ /**
11
+ * Setups the WASM module
12
+ */
13
+ export function start(): void;
14
14
  export type LogLevel = 0 | 1 | 2 | 3 | 4;
15
15
  /**
16
16
  * @enum {0 | 1 | 2 | 3 | 4}
@@ -157,75 +157,41 @@ export class WasmVM {
157
157
  __wbg_ptr: number;
158
158
  free(): void;
159
159
  /**
160
- * @returns {WasmResponseHead}
161
- */
162
- get_response_head(): WasmResponseHead;
163
- /**
164
- * @param {Uint8Array} buffer
165
- */
166
- notify_input(buffer: Uint8Array): void;
167
- notify_input_closed(): void;
168
- /**
169
- * @param {string} error_message
170
- * @param {string | null} [stacktrace]
171
- */
172
- notify_error(error_message: string, stacktrace?: string | null): void;
173
- /**
174
- * @param {string} error_message
175
- * @param {string | null} [stacktrace]
176
- * @param {bigint | null} [delay_override]
177
- */
178
- notify_error_with_delay_override(error_message: string, stacktrace?: string | null, delay_override?: bigint | null): void;
179
- /**
180
- * @param {string} error_message
181
- * @param {string | null | undefined} stacktrace
182
- * @param {WasmCommandType} wasm_command_type
183
- */
184
- notify_error_for_next_command(error_message: string, stacktrace: string | null | undefined, wasm_command_type: WasmCommandType): void;
185
- /**
186
- * @param {string} error_message
187
- * @param {string | null | undefined} stacktrace
188
- * @param {WasmCommandType} wasm_command_type
189
- * @param {number} command_index
190
- * @param {string | null} [command_name]
160
+ * @param {Uint32Array} handles
161
+ * @returns {WasmDoProgressResult}
191
162
  */
192
- notify_error_for_specific_command(error_message: string, stacktrace: string | null | undefined, wasm_command_type: WasmCommandType, command_index: number, command_name?: string | null): void;
163
+ do_progress(handles: Uint32Array): WasmDoProgressResult;
193
164
  /**
194
165
  * @returns {any}
195
166
  */
196
167
  take_output(): any;
197
- /**
198
- * @returns {boolean}
199
- */
200
- is_ready_to_execute(): boolean;
201
168
  /**
202
169
  * @param {number} handle
203
170
  * @returns {boolean}
204
171
  */
205
172
  is_completed(handle: number): boolean;
206
173
  /**
207
- * @param {Uint32Array} handles
208
- * @returns {WasmDoProgressResult}
174
+ * @param {string} error_message
175
+ * @param {string | null} [stacktrace]
209
176
  */
210
- do_progress(handles: Uint32Array): WasmDoProgressResult;
177
+ notify_error(error_message: string, stacktrace?: string | null): void;
211
178
  /**
212
- * @param {number} handle
213
- * @returns {WasmAsyncResultValue}
179
+ * @param {Uint8Array} buffer
214
180
  */
215
- take_notification(handle: number): WasmAsyncResultValue;
181
+ notify_input(buffer: Uint8Array): void;
216
182
  /**
217
- * @returns {WasmInput}
183
+ * @returns {boolean}
218
184
  */
219
- sys_input(): WasmInput;
185
+ is_processing(): boolean;
220
186
  /**
221
- * @param {string} key
222
- * @returns {number}
187
+ * @returns {WasmAwakeable}
223
188
  */
224
- sys_get_state(key: string): number;
189
+ sys_awakeable(): WasmAwakeable;
225
190
  /**
191
+ * @param {string} key
226
192
  * @returns {number}
227
193
  */
228
- sys_get_state_keys(): number;
194
+ sys_get_state(key: string): number;
229
195
  /**
230
196
  * @param {string} key
231
197
  * @param {Uint8Array} buffer
@@ -235,70 +201,67 @@ export class WasmVM {
235
201
  * @param {string} key
236
202
  */
237
203
  sys_clear_state(key: string): void;
238
- sys_clear_all_state(): void;
239
204
  /**
240
- * @param {bigint} millis
241
- * @param {string | null} [name]
205
+ * @param {string} key
242
206
  * @returns {number}
243
207
  */
244
- sys_sleep(millis: bigint, name?: string | null): number;
208
+ sys_get_promise(key: string): number;
245
209
  /**
246
- * @param {string} invocation_id
210
+ * @param {string} key
247
211
  * @returns {number}
248
212
  */
249
- sys_attach_invocation(invocation_id: string): number;
213
+ sys_peek_promise(key: string): number;
214
+ /**
215
+ * @returns {WasmResponseHead}
216
+ */
217
+ get_response_head(): WasmResponseHead;
218
+ /**
219
+ * @param {number} handle
220
+ * @returns {WasmAsyncResultValue}
221
+ */
222
+ take_notification(handle: number): WasmAsyncResultValue;
250
223
  /**
251
- * @param {string} invocation_id
252
224
  * @returns {number}
253
225
  */
254
- sys_get_invocation_output(invocation_id: string): number;
226
+ last_command_index(): number;
255
227
  /**
256
- * @param {string} service
257
- * @param {string} handler
258
- * @param {Uint8Array} buffer
259
- * @param {string | null | undefined} key
260
- * @param {WasmHeader[]} headers
261
- * @param {string | null} [idempotency_key]
262
- * @param {string | null} [name]
263
- * @returns {WasmCallHandle}
228
+ * @returns {number}
264
229
  */
265
- sys_call(service: string, handler: string, buffer: Uint8Array, key: string | null | undefined, headers: WasmHeader[], idempotency_key?: string | null, name?: string | null): WasmCallHandle;
230
+ sys_get_state_keys(): number;
266
231
  /**
267
- * @param {string} service
268
- * @param {string} handler
269
- * @param {Uint8Array} buffer
270
- * @param {string | null | undefined} key
271
- * @param {WasmHeader[]} headers
272
- * @param {bigint | null} [delay]
273
- * @param {string | null} [idempotency_key]
274
- * @param {string | null} [name]
275
- * @returns {WasmSendHandle}
232
+ * @returns {boolean}
276
233
  */
277
- sys_send(service: string, handler: string, buffer: Uint8Array, key: string | null | undefined, headers: WasmHeader[], delay?: bigint | null, idempotency_key?: string | null, name?: string | null): WasmSendHandle;
234
+ is_ready_to_execute(): boolean;
235
+ notify_input_closed(): void;
236
+ sys_clear_all_state(): void;
278
237
  /**
279
- * @returns {WasmAwakeable}
238
+ * @param {string} invocation_id
239
+ * @returns {number}
280
240
  */
281
- sys_awakeable(): WasmAwakeable;
241
+ sys_attach_invocation(invocation_id: string): number;
282
242
  /**
283
- * @param {string} id
284
- * @param {Uint8Array} buffer
243
+ * @param {string} target_invocation_id
285
244
  */
286
- sys_complete_awakeable_success(id: string, buffer: Uint8Array): void;
245
+ sys_cancel_invocation(target_invocation_id: string): void;
287
246
  /**
288
- * @param {string} id
289
247
  * @param {WasmFailure} value
290
248
  */
291
- sys_complete_awakeable_failure(id: string, value: WasmFailure): void;
249
+ sys_write_output_failure(value: WasmFailure): void;
292
250
  /**
293
- * @param {string} key
251
+ * @param {Uint8Array} buffer
252
+ */
253
+ sys_write_output_success(buffer: Uint8Array): void;
254
+ /**
255
+ * @param {string} invocation_id
294
256
  * @returns {number}
295
257
  */
296
- sys_get_promise(key: string): number;
258
+ sys_get_invocation_output(invocation_id: string): number;
297
259
  /**
298
260
  * @param {string} key
261
+ * @param {WasmFailure} value
299
262
  * @returns {number}
300
263
  */
301
- sys_peek_promise(key: string): number;
264
+ sys_complete_promise_failure(key: string, value: WasmFailure): number;
302
265
  /**
303
266
  * @param {string} key
304
267
  * @param {Uint8Array} buffer
@@ -306,26 +269,45 @@ export class WasmVM {
306
269
  */
307
270
  sys_complete_promise_success(key: string, buffer: Uint8Array): number;
308
271
  /**
309
- * @param {string} key
310
- * @param {WasmFailure} value
311
- * @returns {number}
272
+ * @param {string} error_message
273
+ * @param {string | null | undefined} stacktrace
274
+ * @param {WasmCommandType} wasm_command_type
312
275
  */
313
- sys_complete_promise_failure(key: string, value: WasmFailure): number;
276
+ notify_error_for_next_command(error_message: string, stacktrace: string | null | undefined, wasm_command_type: WasmCommandType): void;
314
277
  /**
315
- * @param {string} name
316
- * @returns {number}
278
+ * @param {number} handle
279
+ * @param {WasmFailure} value
317
280
  */
318
- sys_run(name: string): number;
281
+ propose_run_completion_failure(handle: number, value: WasmFailure): void;
319
282
  /**
320
283
  * @param {number} handle
321
284
  * @param {Uint8Array} buffer
322
285
  */
323
286
  propose_run_completion_success(handle: number, buffer: Uint8Array): void;
324
287
  /**
325
- * @param {number} handle
288
+ * @param {string} id
326
289
  * @param {WasmFailure} value
327
290
  */
328
- propose_run_completion_failure(handle: number, value: WasmFailure): void;
291
+ sys_complete_awakeable_failure(id: string, value: WasmFailure): void;
292
+ /**
293
+ * @param {string} id
294
+ * @param {Uint8Array} buffer
295
+ */
296
+ sys_complete_awakeable_success(id: string, buffer: Uint8Array): void;
297
+ /**
298
+ * @param {string} error_message
299
+ * @param {string | null} [stacktrace]
300
+ * @param {bigint | null} [delay_override]
301
+ */
302
+ notify_error_with_delay_override(error_message: string, stacktrace?: string | null, delay_override?: bigint | null): void;
303
+ /**
304
+ * @param {string} error_message
305
+ * @param {string | null | undefined} stacktrace
306
+ * @param {WasmCommandType} wasm_command_type
307
+ * @param {number} command_index
308
+ * @param {string | null} [command_name]
309
+ */
310
+ notify_error_for_specific_command(error_message: string, stacktrace: string | null | undefined, wasm_command_type: WasmCommandType, command_index: number, command_name?: string | null): void;
329
311
  /**
330
312
  * @param {number} handle
331
313
  * @param {string} error_message
@@ -344,26 +326,44 @@ export class WasmVM {
344
326
  * @param {bigint | null} [max_retry_duration_override]
345
327
  */
346
328
  propose_run_completion_failure_transient_with_delay_override(handle: number, error_message: string, error_stacktrace: string | null | undefined, attempt_duration: bigint, delay_override?: bigint | null, max_retry_attempts_override?: number | null, max_retry_duration_override?: bigint | null): void;
329
+ sys_end(): void;
347
330
  /**
348
- * @param {string} target_invocation_id
331
+ * @param {string} name
332
+ * @returns {number}
349
333
  */
350
- sys_cancel_invocation(target_invocation_id: string): void;
334
+ sys_run(name: string): number;
351
335
  /**
336
+ * @param {string} service
337
+ * @param {string} handler
352
338
  * @param {Uint8Array} buffer
339
+ * @param {string | null | undefined} key
340
+ * @param {WasmHeader[]} headers
341
+ * @param {string | null} [idempotency_key]
342
+ * @param {string | null} [name]
343
+ * @returns {WasmCallHandle}
353
344
  */
354
- sys_write_output_success(buffer: Uint8Array): void;
345
+ sys_call(service: string, handler: string, buffer: Uint8Array, key: string | null | undefined, headers: WasmHeader[], idempotency_key?: string | null, name?: string | null): WasmCallHandle;
355
346
  /**
356
- * @param {WasmFailure} value
347
+ * @param {string} service
348
+ * @param {string} handler
349
+ * @param {Uint8Array} buffer
350
+ * @param {string | null | undefined} key
351
+ * @param {WasmHeader[]} headers
352
+ * @param {bigint | null} [delay]
353
+ * @param {string | null} [idempotency_key]
354
+ * @param {string | null} [name]
355
+ * @returns {WasmSendHandle}
357
356
  */
358
- sys_write_output_failure(value: WasmFailure): void;
359
- sys_end(): void;
357
+ sys_send(service: string, handler: string, buffer: Uint8Array, key: string | null | undefined, headers: WasmHeader[], delay?: bigint | null, idempotency_key?: string | null, name?: string | null): WasmSendHandle;
360
358
  /**
361
- * @returns {boolean}
359
+ * @returns {WasmInput}
362
360
  */
363
- is_processing(): boolean;
361
+ sys_input(): WasmInput;
364
362
  /**
363
+ * @param {bigint} millis
364
+ * @param {string | null} [name]
365
365
  * @returns {number}
366
366
  */
367
- last_command_index(): number;
367
+ sys_sleep(millis: bigint, name?: string | null): number;
368
368
  }
369
369
  //# sourceMappingURL=sdk_shared_core_wasm_bindings.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sdk_shared_core_wasm_bindings.d.ts","sourceRoot":"","sources":["../../../../src/endpoint/handlers/vm/sdk_shared_core_wasm_bindings.js"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"sdk_shared_core_wasm_bindings.d.ts","sourceRoot":"","sources":["../../../../src/endpoint/handlers/vm/sdk_shared_core_wasm_bindings.js"],"names":[],"mappings":"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"}