@celerity-sdk/types 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -105,6 +105,7 @@ interface Schema<T = unknown> {
105
105
 
106
106
  type FunctionHandlerDefinition = {
107
107
  __celerity_handler: true;
108
+ id?: string;
108
109
  type: "http" | "consumer" | "schedule" | "websocket";
109
110
  metadata: Record<string, unknown>;
110
111
  handler: (...args: unknown[]) => unknown;
package/dist/index.d.ts CHANGED
@@ -105,6 +105,7 @@ interface Schema<T = unknown> {
105
105
 
106
106
  type FunctionHandlerDefinition = {
107
107
  __celerity_handler: true;
108
+ id?: string;
108
109
  type: "http" | "consumer" | "schedule" | "websocket";
109
110
  metadata: Record<string, unknown>;
110
111
  handler: (...args: unknown[]) => unknown;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@celerity-sdk/types",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Shared TypeScript interfaces and types for the Celerity Node SDK",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {