@sprucelabs/mercury-core-events 24.2.4 → 24.3.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/confirmPinEmitTarget.schema.d.ts +3 -0
- package/build/.spruce/schemas/mercury/v2020_12_25/confirmPinEmitTarget.schema.js +18 -0
- package/build/.spruce/schemas/mercury/v2020_12_25/confirmPinEmitTargetAndPayload.schema.js +6 -0
- package/build/.spruce/schemas/mercury/v2020_12_25/loginEmitTarget.schema.js +5 -0
- package/build/.spruce/schemas/mercury/v2020_12_25/signupEmitTarget.schema.d.ts +3 -0
- package/build/.spruce/schemas/mercury/v2020_12_25/signupEmitTarget.schema.js +18 -0
- package/build/.spruce/schemas/mercury/v2020_12_25/signupEmitTargetAndPayload.schema.js +6 -0
- package/build/.spruce/schemas/schemas.types.d.ts +9256 -9194
- package/build/esm/.spruce/schemas/mercury/v2020_12_25/confirmPinEmitTarget.schema.d.ts +3 -0
- package/build/esm/.spruce/schemas/mercury/v2020_12_25/confirmPinEmitTarget.schema.js +16 -0
- package/build/esm/.spruce/schemas/mercury/v2020_12_25/confirmPinEmitTargetAndPayload.schema.js +6 -0
- package/build/esm/.spruce/schemas/mercury/v2020_12_25/loginEmitTarget.schema.js +5 -0
- package/build/esm/.spruce/schemas/mercury/v2020_12_25/signupEmitTarget.schema.d.ts +3 -0
- package/build/esm/.spruce/schemas/mercury/v2020_12_25/signupEmitTarget.schema.js +16 -0
- package/build/esm/.spruce/schemas/mercury/v2020_12_25/signupEmitTargetAndPayload.schema.js +6 -0
- package/build/esm/.spruce/schemas/schemas.types.d.ts +9256 -9194
- package/package.json +2 -2
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const schema_1 = require("@sprucelabs/schema");
|
|
4
|
+
const confirmPinEmitTargetSchema = {
|
|
5
|
+
id: 'confirmPinEmitTarget',
|
|
6
|
+
version: 'v2020_12_25',
|
|
7
|
+
namespace: 'Mercury',
|
|
8
|
+
name: '',
|
|
9
|
+
fields: {
|
|
10
|
+
/** . */
|
|
11
|
+
'locationId': {
|
|
12
|
+
type: 'id',
|
|
13
|
+
options: undefined
|
|
14
|
+
},
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
schema_1.SchemaRegistry.getInstance().trackSchema(confirmPinEmitTargetSchema);
|
|
18
|
+
exports.default = confirmPinEmitTargetSchema;
|
|
@@ -5,6 +5,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
const schema_1 = require("@sprucelabs/schema");
|
|
7
7
|
const eventSource_schema_1 = __importDefault(require("./../../spruceEventUtils/v2021_09_13/eventSource.schema"));
|
|
8
|
+
const confirmPinEmitTarget_schema_1 = __importDefault(require("./confirmPinEmitTarget.schema"));
|
|
8
9
|
const confirmPinEmitPayload_schema_1 = __importDefault(require("./confirmPinEmitPayload.schema"));
|
|
9
10
|
const confirmPinEmitTargetAndPayloadSchema = {
|
|
10
11
|
id: 'confirmPinEmitTargetAndPayload',
|
|
@@ -19,6 +20,11 @@ const confirmPinEmitTargetAndPayloadSchema = {
|
|
|
19
20
|
options: { schema: eventSource_schema_1.default, }
|
|
20
21
|
},
|
|
21
22
|
/** . */
|
|
23
|
+
'target': {
|
|
24
|
+
type: 'schema',
|
|
25
|
+
options: { schema: confirmPinEmitTarget_schema_1.default, }
|
|
26
|
+
},
|
|
27
|
+
/** . */
|
|
22
28
|
'payload': {
|
|
23
29
|
type: 'schema',
|
|
24
30
|
isRequired: true,
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const schema_1 = require("@sprucelabs/schema");
|
|
4
|
+
const signupEmitTargetSchema = {
|
|
5
|
+
id: 'signupEmitTarget',
|
|
6
|
+
version: 'v2020_12_25',
|
|
7
|
+
namespace: 'Mercury',
|
|
8
|
+
name: '',
|
|
9
|
+
fields: {
|
|
10
|
+
/** . */
|
|
11
|
+
'locationId': {
|
|
12
|
+
type: 'id',
|
|
13
|
+
options: undefined
|
|
14
|
+
},
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
schema_1.SchemaRegistry.getInstance().trackSchema(signupEmitTargetSchema);
|
|
18
|
+
exports.default = signupEmitTargetSchema;
|
|
@@ -5,6 +5,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
const schema_1 = require("@sprucelabs/schema");
|
|
7
7
|
const eventSource_schema_1 = __importDefault(require("./../../spruceEventUtils/v2021_09_13/eventSource.schema"));
|
|
8
|
+
const signupEmitTarget_schema_1 = __importDefault(require("./signupEmitTarget.schema"));
|
|
8
9
|
const signupEmitPayload_schema_1 = __importDefault(require("./signupEmitPayload.schema"));
|
|
9
10
|
const signupEmitTargetAndPayloadSchema = {
|
|
10
11
|
id: 'signupEmitTargetAndPayload',
|
|
@@ -19,6 +20,11 @@ const signupEmitTargetAndPayloadSchema = {
|
|
|
19
20
|
options: { schema: eventSource_schema_1.default, }
|
|
20
21
|
},
|
|
21
22
|
/** . */
|
|
23
|
+
'target': {
|
|
24
|
+
type: 'schema',
|
|
25
|
+
options: { schema: signupEmitTarget_schema_1.default, }
|
|
26
|
+
},
|
|
27
|
+
/** . */
|
|
22
28
|
'payload': {
|
|
23
29
|
type: 'schema',
|
|
24
30
|
isRequired: true,
|