@sprucelabs/mercury-core-events 28.0.15 → 28.0.16
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/build/.spruce/schemas/mercury/v2020_12_25/sendMessageMessagePayload.schema.js +6 -0
- package/build/.spruce/schemas/schemas.types.d.ts +8 -0
- package/build/esm/.spruce/schemas/mercury/v2020_12_25/sendMessageMessagePayload.schema.js +6 -0
- package/build/esm/.spruce/schemas/schemas.types.d.ts +8 -0
- package/package.json +9 -9
|
@@ -65,6 +65,12 @@ const sendMessageMessagePayloadSchema = {
|
|
|
65
65
|
isArray: true,
|
|
66
66
|
options: { schema: choice_schema_1.default, }
|
|
67
67
|
},
|
|
68
|
+
/** . An arbitrary log associated with the message. Is used for debugging purposes. */
|
|
69
|
+
'log': {
|
|
70
|
+
type: 'text',
|
|
71
|
+
hint: 'An arbitrary log associated with the message. Is used for debugging purposes.',
|
|
72
|
+
options: undefined
|
|
73
|
+
},
|
|
68
74
|
}
|
|
69
75
|
};
|
|
70
76
|
schema_1.SchemaRegistry.getInstance().trackSchema(sendMessageMessagePayloadSchema);
|
|
@@ -7492,6 +7492,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
7492
7492
|
'topicId'?: string | undefined | null;
|
|
7493
7493
|
'links'?: SpruceSchemas.Spruce.v2020_07_22.Link[] | undefined | null;
|
|
7494
7494
|
'choices'?: SpruceSchemas.Spruce.v2020_07_22.Choice[] | undefined | null;
|
|
7495
|
+
/** . An arbitrary log associated with the message. Is used for debugging purposes. */
|
|
7496
|
+
'log'?: string | undefined | null;
|
|
7495
7497
|
}
|
|
7496
7498
|
interface SendMessageMessagePayloadSchema extends SpruceSchema.Schema {
|
|
7497
7499
|
id: 'sendMessageMessagePayload';
|
|
@@ -7572,6 +7574,12 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
7572
7574
|
schema: SpruceSchemas.Spruce.v2020_07_22.ChoiceSchema;
|
|
7573
7575
|
};
|
|
7574
7576
|
};
|
|
7577
|
+
/** . An arbitrary log associated with the message. Is used for debugging purposes. */
|
|
7578
|
+
'log': {
|
|
7579
|
+
type: 'text';
|
|
7580
|
+
hint: 'An arbitrary log associated with the message. Is used for debugging purposes.';
|
|
7581
|
+
options: undefined;
|
|
7582
|
+
};
|
|
7575
7583
|
};
|
|
7576
7584
|
}
|
|
7577
7585
|
interface SendMessageMessagePayloadEntity extends SchemaEntity<SpruceSchemas.Mercury.v2020_12_25.SendMessageMessagePayloadSchema> {
|
|
@@ -60,6 +60,12 @@ const sendMessageMessagePayloadSchema = {
|
|
|
60
60
|
isArray: true,
|
|
61
61
|
options: { schema: choiceSchema_v2020_07_22, }
|
|
62
62
|
},
|
|
63
|
+
/** . An arbitrary log associated with the message. Is used for debugging purposes. */
|
|
64
|
+
'log': {
|
|
65
|
+
type: 'text',
|
|
66
|
+
hint: 'An arbitrary log associated with the message. Is used for debugging purposes.',
|
|
67
|
+
options: undefined
|
|
68
|
+
},
|
|
63
69
|
}
|
|
64
70
|
};
|
|
65
71
|
SchemaRegistry.getInstance().trackSchema(sendMessageMessagePayloadSchema);
|
|
@@ -7492,6 +7492,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
7492
7492
|
'topicId'?: string | undefined | null;
|
|
7493
7493
|
'links'?: SpruceSchemas.Spruce.v2020_07_22.Link[] | undefined | null;
|
|
7494
7494
|
'choices'?: SpruceSchemas.Spruce.v2020_07_22.Choice[] | undefined | null;
|
|
7495
|
+
/** . An arbitrary log associated with the message. Is used for debugging purposes. */
|
|
7496
|
+
'log'?: string | undefined | null;
|
|
7495
7497
|
}
|
|
7496
7498
|
interface SendMessageMessagePayloadSchema extends SpruceSchema.Schema {
|
|
7497
7499
|
id: 'sendMessageMessagePayload';
|
|
@@ -7572,6 +7574,12 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
7572
7574
|
schema: SpruceSchemas.Spruce.v2020_07_22.ChoiceSchema;
|
|
7573
7575
|
};
|
|
7574
7576
|
};
|
|
7577
|
+
/** . An arbitrary log associated with the message. Is used for debugging purposes. */
|
|
7578
|
+
'log': {
|
|
7579
|
+
type: 'text';
|
|
7580
|
+
hint: 'An arbitrary log associated with the message. Is used for debugging purposes.';
|
|
7581
|
+
options: undefined;
|
|
7582
|
+
};
|
|
7575
7583
|
};
|
|
7576
7584
|
}
|
|
7577
7585
|
interface SendMessageMessagePayloadEntity extends SchemaEntity<SpruceSchemas.Mercury.v2020_12_25.SendMessageMessagePayloadSchema> {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sprucelabs/mercury-core-events",
|
|
3
|
-
"version": "28.0.
|
|
3
|
+
"version": "28.0.16",
|
|
4
4
|
"description": "Events Mercury provides out of the box.",
|
|
5
5
|
"skill": {
|
|
6
6
|
"namespace": "mercury-core-events",
|
|
@@ -58,11 +58,11 @@
|
|
|
58
58
|
"watch.tsc": "tsc -w"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@sprucelabs/esm-postbuild": "^9.0.
|
|
62
|
-
"@sprucelabs/jest-json-reporter": "^10.0.
|
|
63
|
-
"@sprucelabs/resolve-path-aliases": "^4.0.
|
|
61
|
+
"@sprucelabs/esm-postbuild": "^9.0.5",
|
|
62
|
+
"@sprucelabs/jest-json-reporter": "^10.0.7",
|
|
63
|
+
"@sprucelabs/resolve-path-aliases": "^4.0.6",
|
|
64
64
|
"@sprucelabs/semantic-release": "^6.0.0",
|
|
65
|
-
"@sprucelabs/test": "^11.0.
|
|
65
|
+
"@sprucelabs/test": "^11.0.1",
|
|
66
66
|
"@types/node": "^24.10.1",
|
|
67
67
|
"chokidar-cli": "^3.0.0",
|
|
68
68
|
"eslint": "^9.39.1",
|
|
@@ -76,10 +76,10 @@
|
|
|
76
76
|
"typescript": "^5.9.3"
|
|
77
77
|
},
|
|
78
78
|
"dependencies": {
|
|
79
|
-
"@sprucelabs/mercury-types": "^49.0.
|
|
80
|
-
"@sprucelabs/schema": "^33.0.
|
|
81
|
-
"@sprucelabs/spruce-core-schemas": "^42.0.
|
|
82
|
-
"@sprucelabs/spruce-event-utils": "^42.0.
|
|
79
|
+
"@sprucelabs/mercury-types": "^49.0.14",
|
|
80
|
+
"@sprucelabs/schema": "^33.0.10",
|
|
81
|
+
"@sprucelabs/spruce-core-schemas": "^42.0.13",
|
|
82
|
+
"@sprucelabs/spruce-event-utils": "^42.0.13"
|
|
83
83
|
},
|
|
84
84
|
"jest": {
|
|
85
85
|
"testRunner": "jest-circus/runner",
|