@sprucelabs/mercury-types 47.0.661 → 47.2.0
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/eventSignature.schema.js +10 -0
- package/build/.spruce/schemas/schemas.types.d.ts +12 -0
- package/build/esm/.spruce/schemas/mercury/v2020_12_25/eventSignature.schema.js +10 -0
- package/build/esm/.spruce/schemas/schemas.types.d.ts +12 -0
- package/build/esm/schemas/v2020_12_25/eventContract.builder.d.ts +6 -0
- package/build/esm/schemas/v2020_12_25/eventContract.builder.js +6 -0
- package/build/schemas/v2020_12_25/eventContract.builder.d.ts +6 -0
- package/build/schemas/v2020_12_25/eventContract.builder.js +6 -0
- package/package.json +1 -1
@@ -14,6 +14,16 @@ const eventSignatureSchema = {
|
|
14
14
|
name: 'Event Signature',
|
15
15
|
moduleToImportFromWhenRemote: '@sprucelabs/mercury-types',
|
16
16
|
fields: {
|
17
|
+
/** . */
|
18
|
+
'description': {
|
19
|
+
type: 'text',
|
20
|
+
options: undefined
|
21
|
+
},
|
22
|
+
/** . */
|
23
|
+
'aiInstructions': {
|
24
|
+
type: 'text',
|
25
|
+
options: undefined
|
26
|
+
},
|
17
27
|
/** . */
|
18
28
|
'isGlobal': {
|
19
29
|
type: 'boolean',
|
@@ -422,6 +422,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
422
422
|
}
|
423
423
|
namespace SpruceSchemas.Mercury.v2020_12_25 {
|
424
424
|
interface EventSignature {
|
425
|
+
'description'?: string | undefined | null;
|
426
|
+
'aiInstructions'?: string | undefined | null;
|
425
427
|
'isGlobal'?: boolean | undefined | null;
|
426
428
|
'responsePayloadSchema'?: (SpruceSchema.Schema) | undefined | null;
|
427
429
|
'emitPayloadSchema'?: (SpruceSchema.Schema) | undefined | null;
|
@@ -438,6 +440,16 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
438
440
|
name: 'Event Signature';
|
439
441
|
moduleToImportFromWhenRemote: '@sprucelabs/mercury-types';
|
440
442
|
fields: {
|
443
|
+
/** . */
|
444
|
+
'description': {
|
445
|
+
type: 'text';
|
446
|
+
options: undefined;
|
447
|
+
};
|
448
|
+
/** . */
|
449
|
+
'aiInstructions': {
|
450
|
+
type: 'text';
|
451
|
+
options: undefined;
|
452
|
+
};
|
441
453
|
/** . */
|
442
454
|
'isGlobal': {
|
443
455
|
type: 'boolean';
|
@@ -9,6 +9,16 @@ const eventSignatureSchema = {
|
|
9
9
|
name: 'Event Signature',
|
10
10
|
moduleToImportFromWhenRemote: '@sprucelabs/mercury-types',
|
11
11
|
fields: {
|
12
|
+
/** . */
|
13
|
+
'description': {
|
14
|
+
type: 'text',
|
15
|
+
options: undefined
|
16
|
+
},
|
17
|
+
/** . */
|
18
|
+
'aiInstructions': {
|
19
|
+
type: 'text',
|
20
|
+
options: undefined
|
21
|
+
},
|
12
22
|
/** . */
|
13
23
|
'isGlobal': {
|
14
24
|
type: 'boolean',
|
@@ -422,6 +422,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
422
422
|
}
|
423
423
|
namespace SpruceSchemas.Mercury.v2020_12_25 {
|
424
424
|
interface EventSignature {
|
425
|
+
'description'?: string | undefined | null;
|
426
|
+
'aiInstructions'?: string | undefined | null;
|
425
427
|
'isGlobal'?: boolean | undefined | null;
|
426
428
|
'responsePayloadSchema'?: (SpruceSchema.Schema) | undefined | null;
|
427
429
|
'emitPayloadSchema'?: (SpruceSchema.Schema) | undefined | null;
|
@@ -438,6 +440,16 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
438
440
|
name: 'Event Signature';
|
439
441
|
moduleToImportFromWhenRemote: '@sprucelabs/mercury-types';
|
440
442
|
fields: {
|
443
|
+
/** . */
|
444
|
+
'description': {
|
445
|
+
type: 'text';
|
446
|
+
options: undefined;
|
447
|
+
};
|
448
|
+
/** . */
|
449
|
+
'aiInstructions': {
|
450
|
+
type: 'text';
|
451
|
+
options: undefined;
|
452
|
+
};
|
441
453
|
/** . */
|
442
454
|
'isGlobal': {
|
443
455
|
type: 'boolean';
|