@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.
@@ -0,0 +1,3 @@
1
+ import { SpruceSchemas } from '../../schemas.types';
2
+ declare const confirmPinEmitTargetSchema: SpruceSchemas.Mercury.v2020_12_25.ConfirmPinEmitTargetSchema;
3
+ export default confirmPinEmitTargetSchema;
@@ -0,0 +1,16 @@
1
+ import { SchemaRegistry } from '@sprucelabs/schema';
2
+ const confirmPinEmitTargetSchema = {
3
+ id: 'confirmPinEmitTarget',
4
+ version: 'v2020_12_25',
5
+ namespace: 'Mercury',
6
+ name: '',
7
+ fields: {
8
+ /** . */
9
+ 'locationId': {
10
+ type: 'id',
11
+ options: undefined
12
+ },
13
+ }
14
+ };
15
+ SchemaRegistry.getInstance().trackSchema(confirmPinEmitTargetSchema);
16
+ export default confirmPinEmitTargetSchema;
@@ -1,5 +1,6 @@
1
1
  import { SchemaRegistry } from '@sprucelabs/schema';
2
2
  import eventSourceSchema_v2021_09_13 from './../../spruceEventUtils/v2021_09_13/eventSource.schema.js';
3
+ import confirmPinEmitTargetSchema_v2020_12_25 from './confirmPinEmitTarget.schema.js';
3
4
  import confirmPinEmitPayloadSchema_v2020_12_25 from './confirmPinEmitPayload.schema.js';
4
5
  const confirmPinEmitTargetAndPayloadSchema = {
5
6
  id: 'confirmPinEmitTargetAndPayload',
@@ -14,6 +15,11 @@ const confirmPinEmitTargetAndPayloadSchema = {
14
15
  options: { schema: eventSourceSchema_v2021_09_13, }
15
16
  },
16
17
  /** . */
18
+ 'target': {
19
+ type: 'schema',
20
+ options: { schema: confirmPinEmitTargetSchema_v2020_12_25, }
21
+ },
22
+ /** . */
17
23
  'payload': {
18
24
  type: 'schema',
19
25
  isRequired: true,
@@ -15,6 +15,11 @@ const loginEmitTargetSchema = {
15
15
  type: 'text',
16
16
  options: undefined
17
17
  },
18
+ /** . */
19
+ 'locationId': {
20
+ type: 'id',
21
+ options: undefined
22
+ },
18
23
  }
19
24
  };
20
25
  SchemaRegistry.getInstance().trackSchema(loginEmitTargetSchema);
@@ -0,0 +1,3 @@
1
+ import { SpruceSchemas } from '../../schemas.types';
2
+ declare const signupEmitTargetSchema: SpruceSchemas.Mercury.v2020_12_25.SignupEmitTargetSchema;
3
+ export default signupEmitTargetSchema;
@@ -0,0 +1,16 @@
1
+ import { SchemaRegistry } from '@sprucelabs/schema';
2
+ const signupEmitTargetSchema = {
3
+ id: 'signupEmitTarget',
4
+ version: 'v2020_12_25',
5
+ namespace: 'Mercury',
6
+ name: '',
7
+ fields: {
8
+ /** . */
9
+ 'locationId': {
10
+ type: 'id',
11
+ options: undefined
12
+ },
13
+ }
14
+ };
15
+ SchemaRegistry.getInstance().trackSchema(signupEmitTargetSchema);
16
+ export default signupEmitTargetSchema;
@@ -1,5 +1,6 @@
1
1
  import { SchemaRegistry } from '@sprucelabs/schema';
2
2
  import eventSourceSchema_v2021_09_13 from './../../spruceEventUtils/v2021_09_13/eventSource.schema.js';
3
+ import signupEmitTargetSchema_v2020_12_25 from './signupEmitTarget.schema.js';
3
4
  import signupEmitPayloadSchema_v2020_12_25 from './signupEmitPayload.schema.js';
4
5
  const signupEmitTargetAndPayloadSchema = {
5
6
  id: 'signupEmitTargetAndPayload',
@@ -14,6 +15,11 @@ const signupEmitTargetAndPayloadSchema = {
14
15
  options: { schema: eventSourceSchema_v2021_09_13, }
15
16
  },
16
17
  /** . */
18
+ 'target': {
19
+ type: 'schema',
20
+ options: { schema: signupEmitTargetSchema_v2020_12_25, }
21
+ },
22
+ /** . */
17
23
  'payload': {
18
24
  type: 'schema',
19
25
  isRequired: true,