@sprucelabs/mercury-core-events 24.0.82 → 24.0.84
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/createPersonEmitPayload.schema.js +8 -1
- package/build/.spruce/schemas/mercury/v2020_12_25/createPersonEmitTargetAndPayload.schema.js +0 -1
- package/build/.spruce/schemas/mercury/v2020_12_25/list-person.schema.js +8 -0
- package/build/.spruce/schemas/mercury/v2020_12_25/loginEmitTarget.schema.js +6 -2
- package/build/.spruce/schemas/mercury/v2020_12_25/loginEmitTargetAndPayload.schema.js +0 -1
- package/build/.spruce/schemas/mercury/v2020_12_25/signupEmitPayload.schema.js +5 -1
- package/build/.spruce/schemas/mercury/v2020_12_25/updatePersonEmitPayload.schema.js +8 -0
- package/build/.spruce/schemas/schemas.types.d.ts +48 -11
- package/build/esm/.spruce/schemas/mercury/v2020_12_25/createPersonEmitPayload.schema.js +8 -1
- package/build/esm/.spruce/schemas/mercury/v2020_12_25/createPersonEmitTargetAndPayload.schema.js +0 -1
- package/build/esm/.spruce/schemas/mercury/v2020_12_25/list-person.schema.js +8 -0
- package/build/esm/.spruce/schemas/mercury/v2020_12_25/loginEmitTarget.schema.js +6 -2
- package/build/esm/.spruce/schemas/mercury/v2020_12_25/loginEmitTargetAndPayload.schema.js +0 -1
- package/build/esm/.spruce/schemas/mercury/v2020_12_25/signupEmitPayload.schema.js +5 -1
- package/build/esm/.spruce/schemas/mercury/v2020_12_25/updatePersonEmitPayload.schema.js +8 -0
- package/build/esm/.spruce/schemas/schemas.types.d.ts +48 -11
- package/package.json +9 -9
|
@@ -47,10 +47,17 @@ const createPersonEmitPayloadSchema = {
|
|
|
47
47
|
label: 'Phone',
|
|
48
48
|
type: 'phone',
|
|
49
49
|
isPrivate: true,
|
|
50
|
-
isRequired: true,
|
|
51
50
|
hint: 'A number that can be texted',
|
|
52
51
|
options: undefined
|
|
53
52
|
},
|
|
53
|
+
/** Username. An optional username if the person does not want to login using their phone */
|
|
54
|
+
'username': {
|
|
55
|
+
label: 'Username',
|
|
56
|
+
type: 'text',
|
|
57
|
+
isPrivate: true,
|
|
58
|
+
hint: 'An optional username if the person does not want to login using their phone',
|
|
59
|
+
options: undefined
|
|
60
|
+
},
|
|
54
61
|
/** . */
|
|
55
62
|
'password': {
|
|
56
63
|
type: 'text',
|
|
@@ -50,6 +50,14 @@ const listPersonSchema = {
|
|
|
50
50
|
hint: 'A number that can be texted',
|
|
51
51
|
options: undefined
|
|
52
52
|
},
|
|
53
|
+
/** Username. An optional username if the person does not want to login using their phone */
|
|
54
|
+
'username': {
|
|
55
|
+
label: 'Username',
|
|
56
|
+
type: 'text',
|
|
57
|
+
isPrivate: true,
|
|
58
|
+
hint: 'An optional username if the person does not want to login using their phone',
|
|
59
|
+
options: undefined
|
|
60
|
+
},
|
|
53
61
|
/** Avatar src. */
|
|
54
62
|
'avatar': {
|
|
55
63
|
label: 'Avatar src',
|
|
@@ -45,6 +45,14 @@ const updatePersonEmitPayloadSchema = {
|
|
|
45
45
|
hint: 'A number that can be texted',
|
|
46
46
|
options: undefined
|
|
47
47
|
},
|
|
48
|
+
/** Username. An optional username if the person does not want to login using their phone */
|
|
49
|
+
'username': {
|
|
50
|
+
label: 'Username',
|
|
51
|
+
type: 'text',
|
|
52
|
+
isPrivate: true,
|
|
53
|
+
hint: 'An optional username if the person does not want to login using their phone',
|
|
54
|
+
options: undefined
|
|
55
|
+
},
|
|
48
56
|
/** . */
|
|
49
57
|
'password': {
|
|
50
58
|
type: 'text',
|
|
@@ -2791,7 +2791,9 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
2791
2791
|
'avatar'?: SpruceSchema.ImageFieldValue | undefined | null;
|
|
2792
2792
|
'dateScrambled'?: SpruceSchema.DateTimeFieldValue | undefined | null;
|
|
2793
2793
|
/** Phone. A number that can be texted */
|
|
2794
|
-
'phone'
|
|
2794
|
+
'phone'?: string | undefined | null;
|
|
2795
|
+
/** Username. An optional username if the person does not want to login using their phone */
|
|
2796
|
+
'username'?: string | undefined | null;
|
|
2795
2797
|
'password'?: string | undefined | null;
|
|
2796
2798
|
'securityQuestions'?: SpruceSchemas.Mercury.v2020_12_25.SecurityQuestion[] | undefined | null;
|
|
2797
2799
|
}
|
|
@@ -3858,10 +3860,17 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
3858
3860
|
label: 'Phone';
|
|
3859
3861
|
type: 'phone';
|
|
3860
3862
|
isPrivate: true;
|
|
3861
|
-
isRequired: true;
|
|
3862
3863
|
hint: 'A number that can be texted';
|
|
3863
3864
|
options: undefined;
|
|
3864
3865
|
};
|
|
3866
|
+
/** Username. An optional username if the person does not want to login using their phone */
|
|
3867
|
+
'username': {
|
|
3868
|
+
label: 'Username';
|
|
3869
|
+
type: 'text';
|
|
3870
|
+
isPrivate: true;
|
|
3871
|
+
hint: 'An optional username if the person does not want to login using their phone';
|
|
3872
|
+
options: undefined;
|
|
3873
|
+
};
|
|
3865
3874
|
/** . */
|
|
3866
3875
|
'password': {
|
|
3867
3876
|
type: 'text';
|
|
@@ -3884,7 +3893,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
3884
3893
|
interface CreatePersonEmitTargetAndPayload {
|
|
3885
3894
|
/** Source. */
|
|
3886
3895
|
'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource | undefined | null;
|
|
3887
|
-
'payload'
|
|
3896
|
+
'payload'?: SpruceSchemas.Mercury.v2020_12_25.CreatePersonEmitPayload | undefined | null;
|
|
3888
3897
|
}
|
|
3889
3898
|
interface CreatePersonEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
|
|
3890
3899
|
id: 'createPersonEmitTargetAndPayload';
|
|
@@ -3903,7 +3912,6 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
3903
3912
|
/** . */
|
|
3904
3913
|
'payload': {
|
|
3905
3914
|
type: 'schema';
|
|
3906
|
-
isRequired: true;
|
|
3907
3915
|
options: {
|
|
3908
3916
|
schema: SpruceSchemas.Mercury.v2020_12_25.CreatePersonEmitPayloadSchema;
|
|
3909
3917
|
};
|
|
@@ -6524,6 +6532,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
6524
6532
|
'timezone'?: ("Pacific/Niue" | "Pacific/Pago_Pago" | "Pacific/Rarotonga" | "Pacific/Honolulu" | "Pacific/Tahiti" | "Pacific/Marquesas" | "Pacific/Gambier" | "America/Adak" | "America/Anchorage" | "America/Juneau" | "America/Metlakatla" | "America/Nome" | "America/Sitka" | "America/Yakutat" | "Pacific/Pitcairn" | "America/Hermosillo" | "America/Dawson_Creek" | "America/Fort_Nelson" | "America/Phoenix" | "America/Los_Angeles" | "America/Tijuana" | "America/Vancouver" | "America/Dawson" | "America/Whitehorse" | "America/Belize" | "America/Costa_Rica" | "America/El_Salvador" | "America/Guatemala" | "America/Managua" | "America/Regina" | "America/Swift_Current" | "America/Tegucigalpa" | "Pacific/Easter" | "Pacific/Galapagos" | "America/Chihuahua" | "America/Mazatlan" | "America/Boise" | "America/Cambridge_Bay" | "America/Denver" | "America/Edmonton" | "America/Inuvik" | "America/Ojinaga" | "America/Yellowknife" | "America/Eirunepe" | "America/Rio_Branco" | "America/Bahia_Banderas" | "America/North_Dakota/Beulah" | "America/North_Dakota/Center" | "America/Chicago" | "America/Indiana/Knox" | "America/Matamoros" | "America/Menominee" | "America/Merida" | "America/Mexico_City" | "America/Monterrey" | "America/North_Dakota/New_Salem" | "America/Rainy_River" | "America/Rankin_Inlet" | "America/Resolute" | "America/Indiana/Tell_City" | "America/Winnipeg" | "America/Bogota" | "America/Cancun" | "America/Jamaica" | "America/Panama" | "America/Guayaquil" | "America/Lima" | "America/Boa_Vista" | "America/Campo_Grande" | "America/Cuiaba" | "America/Manaus" | "America/Porto_Velho" | "America/Barbados" | "America/Martinique" | "America/Puerto_Rico" | "America/Santo_Domingo" | "America/La_Paz" | "America/Santiago" | "America/Havana" | "America/Detroit" | "America/Grand_Turk" | "America/Indiana/Indianapolis" | "America/Iqaluit" | "America/Kentucky/Louisville" | "America/Indiana/Marengo" | "America/Kentucky/Monticello" | "America/New_York" | "America/Nipigon" | "America/Pangnirtung" | "America/Indiana/Petersburg" | "America/Port-au-Prince" | "America/Thunder_Bay" | "America/Toronto" | "America/Indiana/Vevay" | "America/Indiana/Vincennes" | "America/Indiana/Winamac" | "America/Guyana" | "America/Asuncion" | "America/Caracas" | "America/Argentina/Buenos_Aires" | "America/Argentina/Catamarca" | "America/Argentina/Cordoba" | "America/Argentina/Jujuy" | "America/Argentina/La_Rioja" | "America/Argentina/Mendoza" | "America/Argentina/Rio_Gallegos" | "America/Argentina/Salta" | "America/Argentina/San_Juan" | "America/Argentina/San_Luis" | "America/Argentina/Tucuman" | "America/Argentina/Ushuaia" | "Atlantic/Bermuda" | "America/Glace_Bay" | "America/Goose_Bay" | "America/Halifax" | "America/Moncton" | "America/Thule" | "America/Araguaina" | "America/Bahia" | "America/Belem" | "America/Fortaleza" | "America/Maceio" | "America/Recife" | "America/Santarem" | "America/Sao_Paulo" | "Atlantic/Stanley" | "America/Cayenne" | "Antarctica/Palmer" | "America/Punta_Arenas" | "Antarctica/Rothera" | "America/Paramaribo" | "America/Montevideo" | "America/St_Johns" | "America/Noronha" | "Atlantic/South_Georgia" | "America/Miquelon" | "America/Nuuk" | "Atlantic/Cape_Verde" | "Atlantic/Azores" | "UTC" | "America/Scoresbysund" | "Etc/GMT" | "Africa/Abidjan" | "Africa/Bissau" | "America/Danmarkshavn" | "Africa/Monrovia" | "Atlantic/Reykjavik" | "Africa/Sao_Tome" | "Africa/Algiers" | "Africa/Tunis" | "Europe/Dublin" | "Africa/Casablanca" | "Europe/London" | "Africa/Lagos" | "Africa/Ndjamena" | "Atlantic/Canary" | "Atlantic/Faroe" | "Europe/Lisbon" | "Atlantic/Madeira" | "Africa/El_Aaiun" | "Africa/Juba" | "Africa/Khartoum" | "Africa/Maputo" | "Africa/Windhoek" | "Europe/Amsterdam" | "Europe/Andorra" | "Europe/Belgrade" | "Europe/Berlin" | "Europe/Brussels" | "Europe/Budapest" | "Africa/Ceuta" | "Europe/Copenhagen" | "Europe/Gibraltar" | "Europe/Luxembourg" | "Europe/Madrid" | "Europe/Malta" | "Europe/Monaco" | "Europe/Oslo" | "Europe/Paris" | "Europe/Prague" | "Europe/Rome" | "Europe/Stockholm" | "Europe/Tirane" | "Europe/Vienna" | "Europe/Warsaw" | "Europe/Zurich" | "Africa/Cairo" | "Europe/Kaliningrad" | "Africa/Tripoli" | "Africa/Johannesburg" | "Antarctica/Troll" | "Asia/Baghdad" | "Asia/Qatar" | "Asia/Riyadh" | "Africa/Nairobi" | "Asia/Amman" | "Europe/Athens" | "Asia/Beirut" | "Europe/Bucharest" | "Europe/Chisinau" | "Asia/Damascus" | "Asia/Gaza" | "Asia/Hebron" | "Europe/Helsinki" | "Europe/Kiev" | "Asia/Nicosia" | "Europe/Riga" | "Europe/Sofia" | "Europe/Tallinn" | "Europe/Uzhgorod" | "Europe/Vilnius" | "Europe/Zaporozhye" | "Asia/Famagusta" | "Asia/Jerusalem" | "Europe/Kirov" | "Europe/Minsk" | "Europe/Moscow" | "Europe/Simferopol" | "Europe/Istanbul" | "Europe/Volgograd" | "Asia/Yerevan" | "Europe/Astrakhan" | "Asia/Baku" | "Asia/Tbilisi" | "Asia/Dubai" | "Indian/Mauritius" | "Indian/Reunion" | "Europe/Samara" | "Europe/Saratov" | "Indian/Mahe" | "Europe/Ulyanovsk" | "Asia/Kabul" | "Asia/Tehran" | "Indian/Kerguelen" | "Indian/Maldives" | "Antarctica/Mawson" | "Asia/Karachi" | "Asia/Dushanbe" | "Asia/Ashgabat" | "Asia/Samarkand" | "Asia/Tashkent" | "Asia/Aqtau" | "Asia/Aqtobe" | "Asia/Atyrau" | "Asia/Oral" | "Asia/Qyzylorda" | "Asia/Yekaterinburg" | "Asia/Colombo" | "Asia/Kolkata" | "Asia/Kathmandu" | "Asia/Dhaka" | "Asia/Thimphu" | "Asia/Almaty" | "Asia/Qostanay" | "Indian/Chagos" | "Asia/Bishkek" | "Asia/Omsk" | "Asia/Urumqi" | "Antarctica/Vostok" | "Indian/Cocos" | "Asia/Yangon" | "Asia/Barnaul" | "Indian/Christmas" | "Antarctica/Davis" | "Asia/Hovd" | "Asia/Bangkok" | "Asia/Ho_Chi_Minh" | "Asia/Krasnoyarsk" | "Asia/Novokuznetsk" | "Asia/Novosibirsk" | "Asia/Tomsk" | "Asia/Jakarta" | "Asia/Pontianak" | "Australia/Perth" | "Asia/Brunei" | "Asia/Makassar" | "Asia/Macau" | "Asia/Shanghai" | "Asia/Hong_Kong" | "Asia/Irkutsk" | "Asia/Kuala_Lumpur" | "Asia/Kuching" | "Asia/Manila" | "Asia/Singapore" | "Asia/Taipei" | "Asia/Choibalsan" | "Asia/Ulaanbaatar" | "Australia/Eucla" | "Asia/Dili" | "Asia/Jayapura" | "Asia/Tokyo" | "Asia/Pyongyang" | "Asia/Seoul" | "Pacific/Palau" | "Asia/Chita" | "Asia/Khandyga" | "Asia/Yakutsk" | "Australia/Darwin" | "Australia/Adelaide" | "Australia/Broken_Hill" | "Australia/Brisbane" | "Australia/Lindeman" | "Pacific/Guam" | "Pacific/Chuuk" | "Australia/Hobart" | "Antarctica/Macquarie" | "Australia/Melbourne" | "Australia/Sydney" | "Pacific/Port_Moresby" | "Asia/Ust-Nera" | "Asia/Vladivostok" | "Australia/Lord_Howe" | "Pacific/Bougainville" | "Antarctica/Casey" | "Pacific/Kosrae" | "Asia/Magadan" | "Pacific/Noumea" | "Pacific/Norfolk" | "Pacific/Pohnpei" | "Asia/Sakhalin" | "Pacific/Guadalcanal" | "Asia/Srednekolymsk" | "Pacific/Efate" | "Asia/Anadyr" | "Pacific/Fiji" | "Pacific/Tarawa" | "Pacific/Kwajalein" | "Pacific/Majuro" | "Pacific/Nauru" | "Pacific/Auckland" | "Asia/Kamchatka" | "Pacific/Funafuti" | "Pacific/Wake" | "Pacific/Wallis" | "Pacific/Chatham" | "Pacific/Apia" | "Pacific/Fakaofo" | "Pacific/Tongatapu" | "Pacific/Kiritimati") | undefined | null;
|
|
6525
6533
|
/** Phone. A number that can be texted */
|
|
6526
6534
|
'phone'?: string | undefined | null;
|
|
6535
|
+
/** Username. An optional username if the person does not want to login using their phone */
|
|
6536
|
+
'username'?: string | undefined | null;
|
|
6527
6537
|
/** Avatar src. */
|
|
6528
6538
|
'avatar'?: SpruceSchema.ImageFieldValue | undefined | null;
|
|
6529
6539
|
'dateCreated': SpruceSchema.DateTimeFieldValue;
|
|
@@ -7599,6 +7609,14 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
7599
7609
|
hint: 'A number that can be texted';
|
|
7600
7610
|
options: undefined;
|
|
7601
7611
|
};
|
|
7612
|
+
/** Username. An optional username if the person does not want to login using their phone */
|
|
7613
|
+
'username': {
|
|
7614
|
+
label: 'Username';
|
|
7615
|
+
type: 'text';
|
|
7616
|
+
isPrivate: true;
|
|
7617
|
+
hint: 'An optional username if the person does not want to login using their phone';
|
|
7618
|
+
options: undefined;
|
|
7619
|
+
};
|
|
7602
7620
|
/** Avatar src. */
|
|
7603
7621
|
'avatar': {
|
|
7604
7622
|
label: 'Avatar src';
|
|
@@ -8227,7 +8245,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
8227
8245
|
}
|
|
8228
8246
|
namespace SpruceSchemas.Mercury.v2020_12_25 {
|
|
8229
8247
|
interface LoginEmitTarget {
|
|
8230
|
-
'phone'
|
|
8248
|
+
'phone'?: string | undefined | null;
|
|
8249
|
+
'username'?: string | undefined | null;
|
|
8231
8250
|
}
|
|
8232
8251
|
interface LoginEmitTargetSchema extends SpruceSchema.Schema {
|
|
8233
8252
|
id: 'loginEmitTarget';
|
|
@@ -8237,8 +8256,12 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
8237
8256
|
fields: {
|
|
8238
8257
|
/** . */
|
|
8239
8258
|
'phone': {
|
|
8240
|
-
type: '
|
|
8241
|
-
|
|
8259
|
+
type: 'text';
|
|
8260
|
+
options: undefined;
|
|
8261
|
+
};
|
|
8262
|
+
/** . */
|
|
8263
|
+
'username': {
|
|
8264
|
+
type: 'text';
|
|
8242
8265
|
options: undefined;
|
|
8243
8266
|
};
|
|
8244
8267
|
};
|
|
@@ -8271,7 +8294,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
8271
8294
|
interface LoginEmitTargetAndPayload {
|
|
8272
8295
|
/** Source. */
|
|
8273
8296
|
'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource | undefined | null;
|
|
8274
|
-
'target'
|
|
8297
|
+
'target'?: SpruceSchemas.Mercury.v2020_12_25.LoginEmitTarget | undefined | null;
|
|
8275
8298
|
'payload': SpruceSchemas.Mercury.v2020_12_25.LoginEmitPayload;
|
|
8276
8299
|
}
|
|
8277
8300
|
interface LoginEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
|
|
@@ -8291,7 +8314,6 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
8291
8314
|
/** . */
|
|
8292
8315
|
'target': {
|
|
8293
8316
|
type: 'schema';
|
|
8294
|
-
isRequired: true;
|
|
8295
8317
|
options: {
|
|
8296
8318
|
schema: SpruceSchemas.Mercury.v2020_12_25.LoginEmitTargetSchema;
|
|
8297
8319
|
};
|
|
@@ -9679,7 +9701,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
9679
9701
|
}
|
|
9680
9702
|
namespace SpruceSchemas.Mercury.v2020_12_25 {
|
|
9681
9703
|
interface SignupEmitPayload {
|
|
9682
|
-
'phone'
|
|
9704
|
+
'phone'?: string | undefined | null;
|
|
9705
|
+
'username'?: string | undefined | null;
|
|
9683
9706
|
'firstName'?: string | undefined | null;
|
|
9684
9707
|
'lastName'?: string | undefined | null;
|
|
9685
9708
|
'password': string;
|
|
@@ -9695,7 +9718,11 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
9695
9718
|
/** . */
|
|
9696
9719
|
'phone': {
|
|
9697
9720
|
type: 'phone';
|
|
9698
|
-
|
|
9721
|
+
options: undefined;
|
|
9722
|
+
};
|
|
9723
|
+
/** . */
|
|
9724
|
+
'username': {
|
|
9725
|
+
type: 'text';
|
|
9699
9726
|
options: undefined;
|
|
9700
9727
|
};
|
|
9701
9728
|
/** . */
|
|
@@ -11935,6 +11962,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
11935
11962
|
'avatar'?: SpruceSchema.ImageFieldValue | undefined | null;
|
|
11936
11963
|
/** Phone. A number that can be texted */
|
|
11937
11964
|
'phone'?: string | undefined | null;
|
|
11965
|
+
/** Username. An optional username if the person does not want to login using their phone */
|
|
11966
|
+
'username'?: string | undefined | null;
|
|
11938
11967
|
'password'?: string | undefined | null;
|
|
11939
11968
|
'securityQuestions'?: SpruceSchemas.Mercury.v2020_12_25.SecurityQuestion[] | undefined | null;
|
|
11940
11969
|
}
|
|
@@ -12999,6 +13028,14 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
12999
13028
|
hint: 'A number that can be texted';
|
|
13000
13029
|
options: undefined;
|
|
13001
13030
|
};
|
|
13031
|
+
/** Username. An optional username if the person does not want to login using their phone */
|
|
13032
|
+
'username': {
|
|
13033
|
+
label: 'Username';
|
|
13034
|
+
type: 'text';
|
|
13035
|
+
isPrivate: true;
|
|
13036
|
+
hint: 'An optional username if the person does not want to login using their phone';
|
|
13037
|
+
options: undefined;
|
|
13038
|
+
};
|
|
13002
13039
|
/** . */
|
|
13003
13040
|
'password': {
|
|
13004
13041
|
type: 'text';
|
|
@@ -42,10 +42,17 @@ const createPersonEmitPayloadSchema = {
|
|
|
42
42
|
label: 'Phone',
|
|
43
43
|
type: 'phone',
|
|
44
44
|
isPrivate: true,
|
|
45
|
-
isRequired: true,
|
|
46
45
|
hint: 'A number that can be texted',
|
|
47
46
|
options: undefined
|
|
48
47
|
},
|
|
48
|
+
/** Username. An optional username if the person does not want to login using their phone */
|
|
49
|
+
'username': {
|
|
50
|
+
label: 'Username',
|
|
51
|
+
type: 'text',
|
|
52
|
+
isPrivate: true,
|
|
53
|
+
hint: 'An optional username if the person does not want to login using their phone',
|
|
54
|
+
options: undefined
|
|
55
|
+
},
|
|
49
56
|
/** . */
|
|
50
57
|
'password': {
|
|
51
58
|
type: 'text',
|
|
@@ -48,6 +48,14 @@ const listPersonSchema = {
|
|
|
48
48
|
hint: 'A number that can be texted',
|
|
49
49
|
options: undefined
|
|
50
50
|
},
|
|
51
|
+
/** Username. An optional username if the person does not want to login using their phone */
|
|
52
|
+
'username': {
|
|
53
|
+
label: 'Username',
|
|
54
|
+
type: 'text',
|
|
55
|
+
isPrivate: true,
|
|
56
|
+
hint: 'An optional username if the person does not want to login using their phone',
|
|
57
|
+
options: undefined
|
|
58
|
+
},
|
|
51
59
|
/** Avatar src. */
|
|
52
60
|
'avatar': {
|
|
53
61
|
label: 'Avatar src',
|
|
@@ -40,6 +40,14 @@ const updatePersonEmitPayloadSchema = {
|
|
|
40
40
|
hint: 'A number that can be texted',
|
|
41
41
|
options: undefined
|
|
42
42
|
},
|
|
43
|
+
/** Username. An optional username if the person does not want to login using their phone */
|
|
44
|
+
'username': {
|
|
45
|
+
label: 'Username',
|
|
46
|
+
type: 'text',
|
|
47
|
+
isPrivate: true,
|
|
48
|
+
hint: 'An optional username if the person does not want to login using their phone',
|
|
49
|
+
options: undefined
|
|
50
|
+
},
|
|
43
51
|
/** . */
|
|
44
52
|
'password': {
|
|
45
53
|
type: 'text',
|
|
@@ -2791,7 +2791,9 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
2791
2791
|
'avatar'?: SpruceSchema.ImageFieldValue | undefined | null;
|
|
2792
2792
|
'dateScrambled'?: SpruceSchema.DateTimeFieldValue | undefined | null;
|
|
2793
2793
|
/** Phone. A number that can be texted */
|
|
2794
|
-
'phone'
|
|
2794
|
+
'phone'?: string | undefined | null;
|
|
2795
|
+
/** Username. An optional username if the person does not want to login using their phone */
|
|
2796
|
+
'username'?: string | undefined | null;
|
|
2795
2797
|
'password'?: string | undefined | null;
|
|
2796
2798
|
'securityQuestions'?: SpruceSchemas.Mercury.v2020_12_25.SecurityQuestion[] | undefined | null;
|
|
2797
2799
|
}
|
|
@@ -3858,10 +3860,17 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
3858
3860
|
label: 'Phone';
|
|
3859
3861
|
type: 'phone';
|
|
3860
3862
|
isPrivate: true;
|
|
3861
|
-
isRequired: true;
|
|
3862
3863
|
hint: 'A number that can be texted';
|
|
3863
3864
|
options: undefined;
|
|
3864
3865
|
};
|
|
3866
|
+
/** Username. An optional username if the person does not want to login using their phone */
|
|
3867
|
+
'username': {
|
|
3868
|
+
label: 'Username';
|
|
3869
|
+
type: 'text';
|
|
3870
|
+
isPrivate: true;
|
|
3871
|
+
hint: 'An optional username if the person does not want to login using their phone';
|
|
3872
|
+
options: undefined;
|
|
3873
|
+
};
|
|
3865
3874
|
/** . */
|
|
3866
3875
|
'password': {
|
|
3867
3876
|
type: 'text';
|
|
@@ -3884,7 +3893,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
3884
3893
|
interface CreatePersonEmitTargetAndPayload {
|
|
3885
3894
|
/** Source. */
|
|
3886
3895
|
'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource | undefined | null;
|
|
3887
|
-
'payload'
|
|
3896
|
+
'payload'?: SpruceSchemas.Mercury.v2020_12_25.CreatePersonEmitPayload | undefined | null;
|
|
3888
3897
|
}
|
|
3889
3898
|
interface CreatePersonEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
|
|
3890
3899
|
id: 'createPersonEmitTargetAndPayload';
|
|
@@ -3903,7 +3912,6 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
3903
3912
|
/** . */
|
|
3904
3913
|
'payload': {
|
|
3905
3914
|
type: 'schema';
|
|
3906
|
-
isRequired: true;
|
|
3907
3915
|
options: {
|
|
3908
3916
|
schema: SpruceSchemas.Mercury.v2020_12_25.CreatePersonEmitPayloadSchema;
|
|
3909
3917
|
};
|
|
@@ -6524,6 +6532,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
6524
6532
|
'timezone'?: ("Pacific/Niue" | "Pacific/Pago_Pago" | "Pacific/Rarotonga" | "Pacific/Honolulu" | "Pacific/Tahiti" | "Pacific/Marquesas" | "Pacific/Gambier" | "America/Adak" | "America/Anchorage" | "America/Juneau" | "America/Metlakatla" | "America/Nome" | "America/Sitka" | "America/Yakutat" | "Pacific/Pitcairn" | "America/Hermosillo" | "America/Dawson_Creek" | "America/Fort_Nelson" | "America/Phoenix" | "America/Los_Angeles" | "America/Tijuana" | "America/Vancouver" | "America/Dawson" | "America/Whitehorse" | "America/Belize" | "America/Costa_Rica" | "America/El_Salvador" | "America/Guatemala" | "America/Managua" | "America/Regina" | "America/Swift_Current" | "America/Tegucigalpa" | "Pacific/Easter" | "Pacific/Galapagos" | "America/Chihuahua" | "America/Mazatlan" | "America/Boise" | "America/Cambridge_Bay" | "America/Denver" | "America/Edmonton" | "America/Inuvik" | "America/Ojinaga" | "America/Yellowknife" | "America/Eirunepe" | "America/Rio_Branco" | "America/Bahia_Banderas" | "America/North_Dakota/Beulah" | "America/North_Dakota/Center" | "America/Chicago" | "America/Indiana/Knox" | "America/Matamoros" | "America/Menominee" | "America/Merida" | "America/Mexico_City" | "America/Monterrey" | "America/North_Dakota/New_Salem" | "America/Rainy_River" | "America/Rankin_Inlet" | "America/Resolute" | "America/Indiana/Tell_City" | "America/Winnipeg" | "America/Bogota" | "America/Cancun" | "America/Jamaica" | "America/Panama" | "America/Guayaquil" | "America/Lima" | "America/Boa_Vista" | "America/Campo_Grande" | "America/Cuiaba" | "America/Manaus" | "America/Porto_Velho" | "America/Barbados" | "America/Martinique" | "America/Puerto_Rico" | "America/Santo_Domingo" | "America/La_Paz" | "America/Santiago" | "America/Havana" | "America/Detroit" | "America/Grand_Turk" | "America/Indiana/Indianapolis" | "America/Iqaluit" | "America/Kentucky/Louisville" | "America/Indiana/Marengo" | "America/Kentucky/Monticello" | "America/New_York" | "America/Nipigon" | "America/Pangnirtung" | "America/Indiana/Petersburg" | "America/Port-au-Prince" | "America/Thunder_Bay" | "America/Toronto" | "America/Indiana/Vevay" | "America/Indiana/Vincennes" | "America/Indiana/Winamac" | "America/Guyana" | "America/Asuncion" | "America/Caracas" | "America/Argentina/Buenos_Aires" | "America/Argentina/Catamarca" | "America/Argentina/Cordoba" | "America/Argentina/Jujuy" | "America/Argentina/La_Rioja" | "America/Argentina/Mendoza" | "America/Argentina/Rio_Gallegos" | "America/Argentina/Salta" | "America/Argentina/San_Juan" | "America/Argentina/San_Luis" | "America/Argentina/Tucuman" | "America/Argentina/Ushuaia" | "Atlantic/Bermuda" | "America/Glace_Bay" | "America/Goose_Bay" | "America/Halifax" | "America/Moncton" | "America/Thule" | "America/Araguaina" | "America/Bahia" | "America/Belem" | "America/Fortaleza" | "America/Maceio" | "America/Recife" | "America/Santarem" | "America/Sao_Paulo" | "Atlantic/Stanley" | "America/Cayenne" | "Antarctica/Palmer" | "America/Punta_Arenas" | "Antarctica/Rothera" | "America/Paramaribo" | "America/Montevideo" | "America/St_Johns" | "America/Noronha" | "Atlantic/South_Georgia" | "America/Miquelon" | "America/Nuuk" | "Atlantic/Cape_Verde" | "Atlantic/Azores" | "UTC" | "America/Scoresbysund" | "Etc/GMT" | "Africa/Abidjan" | "Africa/Bissau" | "America/Danmarkshavn" | "Africa/Monrovia" | "Atlantic/Reykjavik" | "Africa/Sao_Tome" | "Africa/Algiers" | "Africa/Tunis" | "Europe/Dublin" | "Africa/Casablanca" | "Europe/London" | "Africa/Lagos" | "Africa/Ndjamena" | "Atlantic/Canary" | "Atlantic/Faroe" | "Europe/Lisbon" | "Atlantic/Madeira" | "Africa/El_Aaiun" | "Africa/Juba" | "Africa/Khartoum" | "Africa/Maputo" | "Africa/Windhoek" | "Europe/Amsterdam" | "Europe/Andorra" | "Europe/Belgrade" | "Europe/Berlin" | "Europe/Brussels" | "Europe/Budapest" | "Africa/Ceuta" | "Europe/Copenhagen" | "Europe/Gibraltar" | "Europe/Luxembourg" | "Europe/Madrid" | "Europe/Malta" | "Europe/Monaco" | "Europe/Oslo" | "Europe/Paris" | "Europe/Prague" | "Europe/Rome" | "Europe/Stockholm" | "Europe/Tirane" | "Europe/Vienna" | "Europe/Warsaw" | "Europe/Zurich" | "Africa/Cairo" | "Europe/Kaliningrad" | "Africa/Tripoli" | "Africa/Johannesburg" | "Antarctica/Troll" | "Asia/Baghdad" | "Asia/Qatar" | "Asia/Riyadh" | "Africa/Nairobi" | "Asia/Amman" | "Europe/Athens" | "Asia/Beirut" | "Europe/Bucharest" | "Europe/Chisinau" | "Asia/Damascus" | "Asia/Gaza" | "Asia/Hebron" | "Europe/Helsinki" | "Europe/Kiev" | "Asia/Nicosia" | "Europe/Riga" | "Europe/Sofia" | "Europe/Tallinn" | "Europe/Uzhgorod" | "Europe/Vilnius" | "Europe/Zaporozhye" | "Asia/Famagusta" | "Asia/Jerusalem" | "Europe/Kirov" | "Europe/Minsk" | "Europe/Moscow" | "Europe/Simferopol" | "Europe/Istanbul" | "Europe/Volgograd" | "Asia/Yerevan" | "Europe/Astrakhan" | "Asia/Baku" | "Asia/Tbilisi" | "Asia/Dubai" | "Indian/Mauritius" | "Indian/Reunion" | "Europe/Samara" | "Europe/Saratov" | "Indian/Mahe" | "Europe/Ulyanovsk" | "Asia/Kabul" | "Asia/Tehran" | "Indian/Kerguelen" | "Indian/Maldives" | "Antarctica/Mawson" | "Asia/Karachi" | "Asia/Dushanbe" | "Asia/Ashgabat" | "Asia/Samarkand" | "Asia/Tashkent" | "Asia/Aqtau" | "Asia/Aqtobe" | "Asia/Atyrau" | "Asia/Oral" | "Asia/Qyzylorda" | "Asia/Yekaterinburg" | "Asia/Colombo" | "Asia/Kolkata" | "Asia/Kathmandu" | "Asia/Dhaka" | "Asia/Thimphu" | "Asia/Almaty" | "Asia/Qostanay" | "Indian/Chagos" | "Asia/Bishkek" | "Asia/Omsk" | "Asia/Urumqi" | "Antarctica/Vostok" | "Indian/Cocos" | "Asia/Yangon" | "Asia/Barnaul" | "Indian/Christmas" | "Antarctica/Davis" | "Asia/Hovd" | "Asia/Bangkok" | "Asia/Ho_Chi_Minh" | "Asia/Krasnoyarsk" | "Asia/Novokuznetsk" | "Asia/Novosibirsk" | "Asia/Tomsk" | "Asia/Jakarta" | "Asia/Pontianak" | "Australia/Perth" | "Asia/Brunei" | "Asia/Makassar" | "Asia/Macau" | "Asia/Shanghai" | "Asia/Hong_Kong" | "Asia/Irkutsk" | "Asia/Kuala_Lumpur" | "Asia/Kuching" | "Asia/Manila" | "Asia/Singapore" | "Asia/Taipei" | "Asia/Choibalsan" | "Asia/Ulaanbaatar" | "Australia/Eucla" | "Asia/Dili" | "Asia/Jayapura" | "Asia/Tokyo" | "Asia/Pyongyang" | "Asia/Seoul" | "Pacific/Palau" | "Asia/Chita" | "Asia/Khandyga" | "Asia/Yakutsk" | "Australia/Darwin" | "Australia/Adelaide" | "Australia/Broken_Hill" | "Australia/Brisbane" | "Australia/Lindeman" | "Pacific/Guam" | "Pacific/Chuuk" | "Australia/Hobart" | "Antarctica/Macquarie" | "Australia/Melbourne" | "Australia/Sydney" | "Pacific/Port_Moresby" | "Asia/Ust-Nera" | "Asia/Vladivostok" | "Australia/Lord_Howe" | "Pacific/Bougainville" | "Antarctica/Casey" | "Pacific/Kosrae" | "Asia/Magadan" | "Pacific/Noumea" | "Pacific/Norfolk" | "Pacific/Pohnpei" | "Asia/Sakhalin" | "Pacific/Guadalcanal" | "Asia/Srednekolymsk" | "Pacific/Efate" | "Asia/Anadyr" | "Pacific/Fiji" | "Pacific/Tarawa" | "Pacific/Kwajalein" | "Pacific/Majuro" | "Pacific/Nauru" | "Pacific/Auckland" | "Asia/Kamchatka" | "Pacific/Funafuti" | "Pacific/Wake" | "Pacific/Wallis" | "Pacific/Chatham" | "Pacific/Apia" | "Pacific/Fakaofo" | "Pacific/Tongatapu" | "Pacific/Kiritimati") | undefined | null;
|
|
6525
6533
|
/** Phone. A number that can be texted */
|
|
6526
6534
|
'phone'?: string | undefined | null;
|
|
6535
|
+
/** Username. An optional username if the person does not want to login using their phone */
|
|
6536
|
+
'username'?: string | undefined | null;
|
|
6527
6537
|
/** Avatar src. */
|
|
6528
6538
|
'avatar'?: SpruceSchema.ImageFieldValue | undefined | null;
|
|
6529
6539
|
'dateCreated': SpruceSchema.DateTimeFieldValue;
|
|
@@ -7599,6 +7609,14 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
7599
7609
|
hint: 'A number that can be texted';
|
|
7600
7610
|
options: undefined;
|
|
7601
7611
|
};
|
|
7612
|
+
/** Username. An optional username if the person does not want to login using their phone */
|
|
7613
|
+
'username': {
|
|
7614
|
+
label: 'Username';
|
|
7615
|
+
type: 'text';
|
|
7616
|
+
isPrivate: true;
|
|
7617
|
+
hint: 'An optional username if the person does not want to login using their phone';
|
|
7618
|
+
options: undefined;
|
|
7619
|
+
};
|
|
7602
7620
|
/** Avatar src. */
|
|
7603
7621
|
'avatar': {
|
|
7604
7622
|
label: 'Avatar src';
|
|
@@ -8227,7 +8245,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
8227
8245
|
}
|
|
8228
8246
|
namespace SpruceSchemas.Mercury.v2020_12_25 {
|
|
8229
8247
|
interface LoginEmitTarget {
|
|
8230
|
-
'phone'
|
|
8248
|
+
'phone'?: string | undefined | null;
|
|
8249
|
+
'username'?: string | undefined | null;
|
|
8231
8250
|
}
|
|
8232
8251
|
interface LoginEmitTargetSchema extends SpruceSchema.Schema {
|
|
8233
8252
|
id: 'loginEmitTarget';
|
|
@@ -8237,8 +8256,12 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
8237
8256
|
fields: {
|
|
8238
8257
|
/** . */
|
|
8239
8258
|
'phone': {
|
|
8240
|
-
type: '
|
|
8241
|
-
|
|
8259
|
+
type: 'text';
|
|
8260
|
+
options: undefined;
|
|
8261
|
+
};
|
|
8262
|
+
/** . */
|
|
8263
|
+
'username': {
|
|
8264
|
+
type: 'text';
|
|
8242
8265
|
options: undefined;
|
|
8243
8266
|
};
|
|
8244
8267
|
};
|
|
@@ -8271,7 +8294,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
8271
8294
|
interface LoginEmitTargetAndPayload {
|
|
8272
8295
|
/** Source. */
|
|
8273
8296
|
'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource | undefined | null;
|
|
8274
|
-
'target'
|
|
8297
|
+
'target'?: SpruceSchemas.Mercury.v2020_12_25.LoginEmitTarget | undefined | null;
|
|
8275
8298
|
'payload': SpruceSchemas.Mercury.v2020_12_25.LoginEmitPayload;
|
|
8276
8299
|
}
|
|
8277
8300
|
interface LoginEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
|
|
@@ -8291,7 +8314,6 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
8291
8314
|
/** . */
|
|
8292
8315
|
'target': {
|
|
8293
8316
|
type: 'schema';
|
|
8294
|
-
isRequired: true;
|
|
8295
8317
|
options: {
|
|
8296
8318
|
schema: SpruceSchemas.Mercury.v2020_12_25.LoginEmitTargetSchema;
|
|
8297
8319
|
};
|
|
@@ -9679,7 +9701,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
9679
9701
|
}
|
|
9680
9702
|
namespace SpruceSchemas.Mercury.v2020_12_25 {
|
|
9681
9703
|
interface SignupEmitPayload {
|
|
9682
|
-
'phone'
|
|
9704
|
+
'phone'?: string | undefined | null;
|
|
9705
|
+
'username'?: string | undefined | null;
|
|
9683
9706
|
'firstName'?: string | undefined | null;
|
|
9684
9707
|
'lastName'?: string | undefined | null;
|
|
9685
9708
|
'password': string;
|
|
@@ -9695,7 +9718,11 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
9695
9718
|
/** . */
|
|
9696
9719
|
'phone': {
|
|
9697
9720
|
type: 'phone';
|
|
9698
|
-
|
|
9721
|
+
options: undefined;
|
|
9722
|
+
};
|
|
9723
|
+
/** . */
|
|
9724
|
+
'username': {
|
|
9725
|
+
type: 'text';
|
|
9699
9726
|
options: undefined;
|
|
9700
9727
|
};
|
|
9701
9728
|
/** . */
|
|
@@ -11935,6 +11962,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
11935
11962
|
'avatar'?: SpruceSchema.ImageFieldValue | undefined | null;
|
|
11936
11963
|
/** Phone. A number that can be texted */
|
|
11937
11964
|
'phone'?: string | undefined | null;
|
|
11965
|
+
/** Username. An optional username if the person does not want to login using their phone */
|
|
11966
|
+
'username'?: string | undefined | null;
|
|
11938
11967
|
'password'?: string | undefined | null;
|
|
11939
11968
|
'securityQuestions'?: SpruceSchemas.Mercury.v2020_12_25.SecurityQuestion[] | undefined | null;
|
|
11940
11969
|
}
|
|
@@ -12999,6 +13028,14 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
12999
13028
|
hint: 'A number that can be texted';
|
|
13000
13029
|
options: undefined;
|
|
13001
13030
|
};
|
|
13031
|
+
/** Username. An optional username if the person does not want to login using their phone */
|
|
13032
|
+
'username': {
|
|
13033
|
+
label: 'Username';
|
|
13034
|
+
type: 'text';
|
|
13035
|
+
isPrivate: true;
|
|
13036
|
+
hint: 'An optional username if the person does not want to login using their phone';
|
|
13037
|
+
options: undefined;
|
|
13038
|
+
};
|
|
13002
13039
|
/** . */
|
|
13003
13040
|
'password': {
|
|
13004
13041
|
type: 'text';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sprucelabs/mercury-core-events",
|
|
3
|
-
"version": "24.0.
|
|
3
|
+
"version": "24.0.84",
|
|
4
4
|
"description": "Events Mercury provides out of the box.",
|
|
5
5
|
"skill": {
|
|
6
6
|
"namespace": "mercury-core-events",
|
|
@@ -61,15 +61,15 @@
|
|
|
61
61
|
"watch.tsc": "tsc -w"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@sprucelabs/esm-postbuild": "^6.0.
|
|
65
|
-
"@sprucelabs/jest-json-reporter": "^8.0.
|
|
66
|
-
"@sprucelabs/resolve-path-aliases": "^2.0.
|
|
64
|
+
"@sprucelabs/esm-postbuild": "^6.0.31",
|
|
65
|
+
"@sprucelabs/jest-json-reporter": "^8.0.43",
|
|
66
|
+
"@sprucelabs/resolve-path-aliases": "^2.0.31",
|
|
67
67
|
"@sprucelabs/semantic-release": "^5.0.1",
|
|
68
68
|
"@sprucelabs/test": "^9.0.20",
|
|
69
69
|
"@types/node": "^20.13.0",
|
|
70
70
|
"chokidar-cli": "^3.0.0",
|
|
71
71
|
"eslint": "^9.4.0",
|
|
72
|
-
"eslint-config-spruce": "^11.2.
|
|
72
|
+
"eslint-config-spruce": "^11.2.21",
|
|
73
73
|
"jest": "^29.7.0",
|
|
74
74
|
"jest-circus": "^29.7.0",
|
|
75
75
|
"prettier": "^3.2.5",
|
|
@@ -79,10 +79,10 @@
|
|
|
79
79
|
"typescript": "^5.4.5"
|
|
80
80
|
},
|
|
81
81
|
"dependencies": {
|
|
82
|
-
"@sprucelabs/mercury-types": "^47.0.
|
|
83
|
-
"@sprucelabs/schema": "^30.0.
|
|
84
|
-
"@sprucelabs/spruce-core-schemas": "^40.1.
|
|
85
|
-
"@sprucelabs/spruce-event-utils": "^40.0.
|
|
82
|
+
"@sprucelabs/mercury-types": "^47.0.69",
|
|
83
|
+
"@sprucelabs/schema": "^30.0.69",
|
|
84
|
+
"@sprucelabs/spruce-core-schemas": "^40.1.8",
|
|
85
|
+
"@sprucelabs/spruce-event-utils": "^40.0.74"
|
|
86
86
|
},
|
|
87
87
|
"jest": {
|
|
88
88
|
"testRunner": "jest-circus/runner",
|