@new-project-media/client-frontends-shared-types 2.0.15 → 2.0.17
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/package.json +1 -1
- package/src/lib/dataGrid/api/dataCenters.d.ts +29 -0
- package/src/lib/dataGrid/api/dataCenters.js +3 -0
- package/src/lib/dataGrid/api/dataCenters.js.map +1 -1
- package/src/lib/dataGrid/api/entity.d.ts +31 -4
- package/src/lib/dataGrid/api/entity.js +3 -1
- package/src/lib/dataGrid/api/entity.js.map +1 -1
- package/src/lib/dataGrid/api/queues.d.ts +24 -24
- package/src/lib/dataGrid/api/signals.d.ts +4 -4
- package/src/lib/dataGrid/dataGrid.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@new-project-media/client-frontends-shared-types",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.17",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "tsc -p tsconfig.json",
|
|
6
6
|
"postbuild": "mkdir -p ../../dist/packages/client-frontends-shared-types/ && cp package.json ../../dist/packages/client-frontends-shared-types/",
|
|
@@ -15,6 +15,8 @@ export declare const DataCenterSchema: z.ZodObject<{
|
|
|
15
15
|
id?: string;
|
|
16
16
|
identifier?: string;
|
|
17
17
|
}>, "many">;
|
|
18
|
+
allSectors: z.ZodArray<z.ZodString, "many">;
|
|
19
|
+
showProject: z.ZodBoolean;
|
|
18
20
|
projectName: z.ZodString;
|
|
19
21
|
substation: z.ZodOptional<z.ZodString>;
|
|
20
22
|
internalNotes: z.ZodOptional<z.ZodString>;
|
|
@@ -348,6 +350,19 @@ export declare const DataCenterSchema: z.ZodObject<{
|
|
|
348
350
|
id?: string;
|
|
349
351
|
identifier?: string;
|
|
350
352
|
}>, "many">;
|
|
353
|
+
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
354
|
+
source: z.ZodOptional<z.ZodString>;
|
|
355
|
+
identifier: z.ZodString;
|
|
356
|
+
id: z.ZodString;
|
|
357
|
+
}, "strip", z.ZodTypeAny, {
|
|
358
|
+
id?: string;
|
|
359
|
+
identifier?: string;
|
|
360
|
+
source?: string;
|
|
361
|
+
}, {
|
|
362
|
+
id?: string;
|
|
363
|
+
identifier?: string;
|
|
364
|
+
source?: string;
|
|
365
|
+
}>, "many">>;
|
|
351
366
|
plannedOperationalDate: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
352
367
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
353
368
|
identifier: z.ZodString;
|
|
@@ -541,6 +556,11 @@ export declare const DataCenterSchema: z.ZodObject<{
|
|
|
541
556
|
}>, "many">;
|
|
542
557
|
modified: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
543
558
|
}, "strip", z.ZodTypeAny, {
|
|
559
|
+
sectors?: {
|
|
560
|
+
id?: string;
|
|
561
|
+
identifier?: string;
|
|
562
|
+
source?: string;
|
|
563
|
+
}[];
|
|
544
564
|
id?: string;
|
|
545
565
|
location?: {
|
|
546
566
|
id?: string;
|
|
@@ -588,6 +608,7 @@ export declare const DataCenterSchema: z.ZodObject<{
|
|
|
588
608
|
applicationId?: string;
|
|
589
609
|
queueDataset?: string;
|
|
590
610
|
}[];
|
|
611
|
+
allSectors?: string[];
|
|
591
612
|
audiences?: {
|
|
592
613
|
id?: string;
|
|
593
614
|
identifier?: string;
|
|
@@ -634,6 +655,7 @@ export declare const DataCenterSchema: z.ZodObject<{
|
|
|
634
655
|
id?: string;
|
|
635
656
|
identifier?: string;
|
|
636
657
|
}[];
|
|
658
|
+
showProject?: boolean;
|
|
637
659
|
substation?: string;
|
|
638
660
|
internalNotes?: string;
|
|
639
661
|
externalNotes?: string;
|
|
@@ -690,6 +712,11 @@ export declare const DataCenterSchema: z.ZodObject<{
|
|
|
690
712
|
}[];
|
|
691
713
|
modified?: string;
|
|
692
714
|
}, {
|
|
715
|
+
sectors?: {
|
|
716
|
+
id?: string;
|
|
717
|
+
identifier?: string;
|
|
718
|
+
source?: string;
|
|
719
|
+
}[];
|
|
693
720
|
id?: string;
|
|
694
721
|
location?: {
|
|
695
722
|
id?: string;
|
|
@@ -737,6 +764,7 @@ export declare const DataCenterSchema: z.ZodObject<{
|
|
|
737
764
|
applicationId?: string;
|
|
738
765
|
queueDataset?: string;
|
|
739
766
|
}[];
|
|
767
|
+
allSectors?: string[];
|
|
740
768
|
audiences?: {
|
|
741
769
|
id?: string;
|
|
742
770
|
identifier?: string;
|
|
@@ -783,6 +811,7 @@ export declare const DataCenterSchema: z.ZodObject<{
|
|
|
783
811
|
id?: string;
|
|
784
812
|
identifier?: string;
|
|
785
813
|
}[];
|
|
814
|
+
showProject?: boolean;
|
|
786
815
|
substation?: string;
|
|
787
816
|
internalNotes?: string;
|
|
788
817
|
externalNotes?: string;
|
|
@@ -11,6 +11,8 @@ var RegionType;
|
|
|
11
11
|
exports.DataCenterSchema = zod_1.z.object({
|
|
12
12
|
id: zod_1.z.string(),
|
|
13
13
|
audiences: entity_1.EntityItemArraySchema,
|
|
14
|
+
allSectors: zod_1.z.string().array(),
|
|
15
|
+
showProject: zod_1.z.boolean(),
|
|
14
16
|
projectName: zod_1.z.string().min(2),
|
|
15
17
|
substation: entity_1.OptionalStringSchema,
|
|
16
18
|
internalNotes: entity_1.OptionalStringSchema,
|
|
@@ -42,6 +44,7 @@ exports.DataCenterSchema = zod_1.z.object({
|
|
|
42
44
|
.optional(),
|
|
43
45
|
totals: entity_1.TotalsSchema,
|
|
44
46
|
regions: entity_1.EntityItemArraySchema,
|
|
47
|
+
sectors: entity_1.EntityItemSourceArraySchema.optional(),
|
|
45
48
|
plannedOperationalDate: entity_1.YYYYMMDDRegexOptionalSchema,
|
|
46
49
|
organizations: entity_1.OrganizationSchema,
|
|
47
50
|
queueApplications: entity_1.QueueJoinOptionalSchema,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dataCenters.js","sourceRoot":"","sources":["../../../../../../../packages/client-frontends-shared-types/src/lib/dataGrid/api/dataCenters.ts"],"names":[],"mappings":";;;AAAA,6BAAuB;AACvB,
|
|
1
|
+
{"version":3,"file":"dataCenters.js","sourceRoot":"","sources":["../../../../../../../packages/client-frontends-shared-types/src/lib/dataGrid/api/dataCenters.ts"],"names":[],"mappings":";;;AAAA,6BAAuB;AACvB,qCAYiB;AAEjB,IAAY,UAGX;AAHD,WAAY,UAAU;IACpB,+BAAiB,CAAA;IACjB,uBAAS,CAAA;AACX,CAAC,EAHW,UAAU,0BAAV,UAAU,QAGrB;AAEY,QAAA,gBAAgB,GAAG,OAAC,CAAC,MAAM,CAAC;IACvC,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;IACd,SAAS,EAAE,8BAAqB;IAChC,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE;IAC9B,WAAW,EAAE,OAAC,CAAC,OAAO,EAAE;IACxB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC9B,UAAU,EAAE,6BAAoB;IAChC,aAAa,EAAE,6BAAoB;IACnC,aAAa,EAAE,6BAAoB;IACnC,GAAG,EAAE,OAAC,CAAC,MAAM,CAAC;QACZ,OAAO,EAAE,iCAAwB;QACjC,YAAY,EAAE,6BAAoB;QAClC,QAAQ,EAAE,iCAAwB;QAClC,QAAQ,EAAE,iCAAwB;QAClC,MAAM,EAAE,iCAAwB;KACjC,CAAC;IACF,MAAM,EAAE,OAAC,CAAC,UAAU,CAAC,UAAU,CAAC;IAChC,aAAa,EAAE,8CAAqC;IACpD,YAAY,EAAE,qCAA4B;IAC1C,QAAQ,EAAE,qCAA4B;IACtC,IAAI,EAAE,qCAA4B;IAClC,gBAAgB,EAAE,OAAC;SAChB,MAAM,CAAC;QACN,aAAa,EAAE,8CAAqC;QACpD,OAAO,EAAE,qCAA4B;KACtC,CAAC;SACD,QAAQ,EAAE;IACb,gBAAgB,EAAE,OAAC;SAChB,MAAM,CAAC;QACN,OAAO,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;QAC/B,WAAW,EAAE,6BAAoB;QACjC,aAAa,EAAE,8CAAqC;KACrD,CAAC;SACD,QAAQ,EAAE;IACb,MAAM,EAAE,qBAAY;IACpB,OAAO,EAAE,8BAAqB;IAC9B,OAAO,EAAE,oCAA2B,CAAC,QAAQ,EAAE;IAC/C,sBAAsB,EAAE,oCAA2B;IACnD,aAAa,EAAE,2BAAkB;IACjC,iBAAiB,EAAE,gCAAuB;IAC1C,KAAK,EAAE,8BAAqB;IAC5B,QAAQ,EAAE,gCAAuB,CAAC,GAAG,CAAC,CAAC,CAAC;IACxC,MAAM,EAAE,8BAAqB,CAAC,GAAG,CAAC,CAAC,CAAC;IACpC,OAAO,EAAE,oCAA2B;IACpC,SAAS,EAAE,8BAAqB;IAChC,QAAQ,EAAE,oCAA2B;CACtC,CAAC,CAAA"}
|
|
@@ -33,6 +33,19 @@ export declare const OrganizationItemSchema: z.ZodObject<{
|
|
|
33
33
|
role?: string;
|
|
34
34
|
ref?: string;
|
|
35
35
|
}>;
|
|
36
|
+
export declare const EntityItemSourceSchema: z.ZodObject<{
|
|
37
|
+
source: z.ZodOptional<z.ZodString>;
|
|
38
|
+
identifier: z.ZodString;
|
|
39
|
+
id: z.ZodString;
|
|
40
|
+
}, "strip", z.ZodTypeAny, {
|
|
41
|
+
id?: string;
|
|
42
|
+
identifier?: string;
|
|
43
|
+
source?: string;
|
|
44
|
+
}, {
|
|
45
|
+
id?: string;
|
|
46
|
+
identifier?: string;
|
|
47
|
+
source?: string;
|
|
48
|
+
}>;
|
|
36
49
|
export type OrganizationItemType = z.infer<typeof OrganizationItemSchema>;
|
|
37
50
|
export declare const OrganizationSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
38
51
|
identifier: z.ZodString;
|
|
@@ -63,6 +76,20 @@ export declare const EntityItemArraySchema: z.ZodArray<z.ZodObject<{
|
|
|
63
76
|
identifier?: string;
|
|
64
77
|
}>, "many">;
|
|
65
78
|
export type EntityItemArrayType = z.infer<typeof EntityItemArraySchema>;
|
|
79
|
+
export declare const EntityItemSourceArraySchema: z.ZodArray<z.ZodObject<{
|
|
80
|
+
source: z.ZodOptional<z.ZodString>;
|
|
81
|
+
identifier: z.ZodString;
|
|
82
|
+
id: z.ZodString;
|
|
83
|
+
}, "strip", z.ZodTypeAny, {
|
|
84
|
+
id?: string;
|
|
85
|
+
identifier?: string;
|
|
86
|
+
source?: string;
|
|
87
|
+
}, {
|
|
88
|
+
id?: string;
|
|
89
|
+
identifier?: string;
|
|
90
|
+
source?: string;
|
|
91
|
+
}>, "many">;
|
|
92
|
+
export type EntityItemSourceArrayType = z.infer<typeof EntityItemSourceArraySchema>;
|
|
66
93
|
export declare const EntityItemArrayOptionalSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
67
94
|
identifier: z.ZodString;
|
|
68
95
|
id: z.ZodString;
|
|
@@ -444,20 +471,20 @@ export declare const LinkedPeopleSchema: z.ZodArray<z.ZodObject<{
|
|
|
444
471
|
id?: string;
|
|
445
472
|
identifier?: string;
|
|
446
473
|
role?: string;
|
|
474
|
+
source?: string;
|
|
447
475
|
linkedinUrl?: string;
|
|
448
476
|
fullName?: string;
|
|
449
477
|
email?: string;
|
|
450
478
|
phone?: string;
|
|
451
|
-
source?: string;
|
|
452
479
|
}, {
|
|
453
480
|
id?: string;
|
|
454
481
|
identifier?: string;
|
|
455
482
|
role?: string;
|
|
483
|
+
source?: string;
|
|
456
484
|
linkedinUrl?: string;
|
|
457
485
|
fullName?: string;
|
|
458
486
|
email?: string;
|
|
459
487
|
phone?: string;
|
|
460
|
-
source?: string;
|
|
461
488
|
}>, "many">;
|
|
462
489
|
export declare const LinkedPeopleOptionalSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
463
490
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -472,20 +499,20 @@ export declare const LinkedPeopleOptionalSchema: z.ZodOptional<z.ZodArray<z.ZodO
|
|
|
472
499
|
id?: string;
|
|
473
500
|
identifier?: string;
|
|
474
501
|
role?: string;
|
|
502
|
+
source?: string;
|
|
475
503
|
linkedinUrl?: string;
|
|
476
504
|
fullName?: string;
|
|
477
505
|
email?: string;
|
|
478
506
|
phone?: string;
|
|
479
|
-
source?: string;
|
|
480
507
|
}, {
|
|
481
508
|
id?: string;
|
|
482
509
|
identifier?: string;
|
|
483
510
|
role?: string;
|
|
511
|
+
source?: string;
|
|
484
512
|
linkedinUrl?: string;
|
|
485
513
|
fullName?: string;
|
|
486
514
|
email?: string;
|
|
487
515
|
phone?: string;
|
|
488
|
-
source?: string;
|
|
489
516
|
}>, "many">>;
|
|
490
517
|
export type LinkedPeopleOptionalSchemaType = z.infer<typeof LinkedPeopleOptionalSchema>;
|
|
491
518
|
export declare const AddressSchema: z.ZodObject<{
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.OptionalNumberWithUnitAndSectorSchema = exports.OptionalNumberWithUnitSchema = exports.FingerprintSchema = exports.TotalsSchema = exports.GeoSchema = exports.geoPoint = exports.defaultValue = exports.DocumentRecordSchema = exports.OptionalDocumentLinkSchema = exports.DocumentLinkSchema = exports.OptionalS3DocumentSchema = exports.DocumentS3RecordSchema = exports.OptionalCoordinateSchema = exports.CoordinateSchema = exports.OptionalAddressSchema = exports.AddressSchema = exports.LinkedPeopleOptionalSchema = exports.LinkedPeopleSchema = exports.QueueJoinOptionalSchema = exports.QueueJoinSchema = exports.ISODateTimeOptionalSchema = exports.ISODateTimeSchema = exports.FlexibleDateRegexOptionalSchema = exports.FlexibleDateRegexSchema = exports.YYYYMMDDRegexOptionalSchema = exports.YYYYMMDDRegexSchema = exports.YYYYMMDDRegex = exports.LocationItemArraySchema = exports.LocationItemSchema = exports.GeometrySchema = exports.ComponentsSchema = exports.OptionalNumberSchema = exports.OptionalStringSchema = exports.EntityItemArrayOptionalSchema = exports.EntityItemArraySchema = exports.OrganizationSchema = exports.OrganizationItemSchema = exports.IdentifierOnlyEntityItemSchema = exports.EntityItemSchema = void 0;
|
|
3
|
+
exports.OptionalNumberWithUnitAndSectorSchema = exports.OptionalNumberWithUnitSchema = exports.FingerprintSchema = exports.TotalsSchema = exports.GeoSchema = exports.geoPoint = exports.defaultValue = exports.DocumentRecordSchema = exports.OptionalDocumentLinkSchema = exports.DocumentLinkSchema = exports.OptionalS3DocumentSchema = exports.DocumentS3RecordSchema = exports.OptionalCoordinateSchema = exports.CoordinateSchema = exports.OptionalAddressSchema = exports.AddressSchema = exports.LinkedPeopleOptionalSchema = exports.LinkedPeopleSchema = exports.QueueJoinOptionalSchema = exports.QueueJoinSchema = exports.ISODateTimeOptionalSchema = exports.ISODateTimeSchema = exports.FlexibleDateRegexOptionalSchema = exports.FlexibleDateRegexSchema = exports.YYYYMMDDRegexOptionalSchema = exports.YYYYMMDDRegexSchema = exports.YYYYMMDDRegex = exports.LocationItemArraySchema = exports.LocationItemSchema = exports.GeometrySchema = exports.ComponentsSchema = exports.OptionalNumberSchema = exports.OptionalStringSchema = exports.EntityItemArrayOptionalSchema = exports.EntityItemSourceArraySchema = exports.EntityItemArraySchema = exports.OrganizationSchema = exports.EntityItemSourceSchema = exports.OrganizationItemSchema = exports.IdentifierOnlyEntityItemSchema = exports.EntityItemSchema = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
exports.EntityItemSchema = zod_1.z.object({
|
|
6
6
|
identifier: zod_1.z.string().min(1),
|
|
@@ -13,8 +13,10 @@ exports.OrganizationItemSchema = exports.EntityItemSchema.extend({
|
|
|
13
13
|
role: zod_1.z.string().min(1),
|
|
14
14
|
ref: zod_1.z.string().optional(),
|
|
15
15
|
});
|
|
16
|
+
exports.EntityItemSourceSchema = zod_1.z.object(Object.assign(Object.assign({}, exports.EntityItemSchema.shape), { source: zod_1.z.string().optional() }));
|
|
16
17
|
exports.OrganizationSchema = zod_1.z.array(exports.OrganizationItemSchema).optional();
|
|
17
18
|
exports.EntityItemArraySchema = zod_1.z.array(exports.EntityItemSchema);
|
|
19
|
+
exports.EntityItemSourceArraySchema = zod_1.z.array(exports.EntityItemSourceSchema);
|
|
18
20
|
exports.EntityItemArrayOptionalSchema = exports.EntityItemArraySchema.optional();
|
|
19
21
|
exports.OptionalStringSchema = zod_1.z.string().optional();
|
|
20
22
|
exports.OptionalNumberSchema = zod_1.z.number().optional();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"entity.js","sourceRoot":"","sources":["../../../../../../../packages/client-frontends-shared-types/src/lib/dataGrid/api/entity.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"entity.js","sourceRoot":"","sources":["../../../../../../../packages/client-frontends-shared-types/src/lib/dataGrid/api/entity.ts"],"names":[],"mappings":";;;AAAA,6BAAiC;AAEpB,QAAA,gBAAgB,GAAG,OAAC,CAAC,MAAM,CAAC;IACvC,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC7B,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;CACtB,CAAC,CAAA;AAEW,QAAA,8BAA8B,GAAG,OAAC,CAAC,MAAM,CAAC;IACrD,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;CAC9B,CAAC,CAAA;AAEW,QAAA,sBAAsB,GAAG,wBAAgB,CAAC,MAAM,CAAC;IAC5D,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IACvB,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC3B,CAAC,CAAA;AAEW,QAAA,sBAAsB,GAAG,OAAC,CAAC,MAAM,iCACzC,wBAAgB,CAAC,KAAK,KACzB,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,IAC7B,CAAA;AAIW,QAAA,kBAAkB,GAAG,OAAC,CAAC,KAAK,CAAC,8BAAsB,CAAC,CAAC,QAAQ,EAAE,CAAA;AAG/D,QAAA,qBAAqB,GAAG,OAAC,CAAC,KAAK,CAAC,wBAAgB,CAAC,CAAA;AAGjD,QAAA,2BAA2B,GAAG,OAAC,CAAC,KAAK,CAAC,8BAAsB,CAAC,CAAA;AAK7D,QAAA,6BAA6B,GAAG,6BAAqB,CAAC,QAAQ,EAAE,CAAA;AAKhE,QAAA,oBAAoB,GAAG,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAA;AAC5C,QAAA,oBAAoB,GAAG,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAA;AAE5C,QAAA,gBAAgB,GAAG,OAAC,CAAC,MAAM,CAAC;IACvC,oBAAoB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3C,oBAAoB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3C,YAAY,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;IAC5C,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,gBAAgB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACvC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3B,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnC,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnC,eAAe,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACtC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,cAAc,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACtC,CAAC,CAAA;AAEW,QAAA,cAAc,GAAG,OAAC,CAAC,MAAM,CAAC;IACrC,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE;IACf,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE;CAChB,CAAC,CAAA;AAEW,QAAA,kBAAkB,GAAG,wBAAgB,CAAC,MAAM,CAAC;IACxD,aAAa,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACrC,UAAU,EAAE,wBAAgB,CAAC,QAAQ,EAAE;IACvC,QAAQ,EAAE,sBAAc,CAAC,QAAQ,EAAE;IACnC,QAAQ,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;CACjC,CAAC,CAAA;AAEW,QAAA,uBAAuB,GAAG,OAAC,CAAC,KAAK,CAAC,0BAAkB,CAAC,CAAA;AAErD,QAAA,aAAa,GAAG,mDAAmD,CAAA;AACnE,QAAA,mBAAmB,GAAG,OAAC;KACjC,MAAM,EAAE;KACR,MAAM,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,qBAAa,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE;IAC5C,OAAO,EAAE,qBAAqB;CAC/B,CAAC,CAAA;AACS,QAAA,2BAA2B,GACtC,2BAAmB,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE,CAAA;AAE3C,MAAM,iBAAiB,GACrB,uDAAuD,CAAA;AAE5C,QAAA,uBAAuB,GAAG,OAAC;KACrC,MAAM,EAAE;KACR,MAAM,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,iBAAiB,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE;IAChD,OAAO,EAAE,iEAAiE;CAC3E,CAAC,CAAA;AAES,QAAA,+BAA+B,GAC1C,+BAAuB,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE,CAAA;AAE/C,MAAM,yBAAyB,GAAG,OAAC;KAChC,MAAM,EAAE;KACR,KAAK,CAAC,+CAA+C,CAAC,CAAA;AAE5C,QAAA,iBAAiB,GAAG,OAAC,CAAC,KAAK,CAAC;IACvC,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACrB,yBAAyB;IACzB,+BAAuB;CACxB,CAAC,CAAA;AAEW,QAAA,yBAAyB,GAAG,OAAC;KACvC,KAAK,CAAC;IACL,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACrB,yBAAyB;IACzB,+BAAuB;CACxB,CAAC;KACD,QAAQ,EAAE,CAAA;AAEA,QAAA,eAAe,GAAG,OAAC;KAC7B,MAAM,CAAC;IACN,QAAQ,EAAE,4BAAoB;IAC9B,aAAa,EAAE,4BAAoB;IACnC,YAAY,EAAE,4BAAoB;IAClC,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;IACd,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE;CACvB,CAAC;KACD,KAAK,EAAE,CAAA;AAEG,QAAA,uBAAuB,GAAG,uBAAe,CAAC,QAAQ,EAAE,CAAA;AAKpD,QAAA,kBAAkB,GAAG,OAAC;KAChC,MAAM,CAAC;IACN,EAAE,EAAE,4BAAoB;IACxB,UAAU,EAAE,4BAAoB;IAChC,WAAW,EAAE,IAAA,cAAQ,EAAC,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC;IACvC,IAAI,EAAE,4BAAoB;IAC1B,QAAQ,EAAE,4BAAoB;IAC9B,KAAK,EAAE,4BAAoB;IAC3B,KAAK,EAAE,4BAAoB;IAC3B,MAAM,EAAE,4BAAoB;CAC7B,CAAC;KACD,KAAK,EAAE,CAAA;AAEG,QAAA,0BAA0B,GAAG,0BAAkB,CAAC,QAAQ,EAAE,CAAA;AAK1D,QAAA,aAAa,GAAG,OAAC,CAAC,MAAM,CAAC;IACpC,IAAI,EAAE,4BAAoB;IAC1B,IAAI,EAAE,4BAAoB;IAC1B,KAAK,EAAE,4BAAoB;IAC3B,MAAM,EAAE,4BAAoB;IAC5B,OAAO,EAAE,4BAAoB;IAC7B,GAAG,EAAE,4BAAoB;IACzB,OAAO,EAAE,4BAAoB;IAC7B,QAAQ,EAAE,4BAAoB;IAC9B,SAAS,EAAE,4BAAoB;CAChC,CAAC,CAAA;AAEW,QAAA,qBAAqB,GAAG,qBAAa,CAAC,QAAQ,EAAE,CAAA;AAGhD,QAAA,gBAAgB,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE,EAAE,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAA;AACjE,QAAA,wBAAwB,GAAG,wBAAgB,CAAC,QAAQ,EAAE,CAAA;AAEtD,QAAA,sBAAsB,GAAG,OAAC;KACpC,MAAM,CAAC;IACN,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE;IACpB,OAAO,EAAE,2BAAmB;IAC5B,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE;IACpB,gBAAgB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACvC,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IACnC,GAAG,EAAE,4BAAoB;IACzB,QAAQ,EAAE,4BAAoB;CAC/B,CAAC;KACD,KAAK,EAAE,CAAA;AAEG,QAAA,wBAAwB,GAAG,8BAAsB,CAAC,QAAQ,EAAE,CAAA;AAG5D,QAAA,kBAAkB,GAAG,OAAC;KAChC,MAAM,CAAC;IACN,IAAI,EAAE,4BAAoB;IAC1B,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACrB,OAAO,EAAE,4BAAoB;IAC7B,IAAI,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC;IACzB,gBAAgB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACvC,YAAY,EAAE,2BAAmB;IACjC,MAAM,EAAE,4BAAoB;IAC5B,EAAE,EAAE,4BAAoB;CACzB,CAAC;KACD,KAAK,EAAE,CAAA;AAEG,QAAA,0BAA0B,GAAG,0BAAkB,CAAC,QAAQ,EAAE,CAAA;AAK1D,QAAA,oBAAoB,GAAG,OAAC;KAClC,KAAK,CAAC,CAAC,8BAAsB,EAAE,0BAAkB,CAAC,CAAC;KACnD,QAAQ,EAAE,CAAA;AAMA,QAAA,YAAY,GAAG,OAAC,CAAC,MAAM,EAAE,CAAA;AACzB,QAAA,QAAQ,GAAG,OAAC,CAAC,MAAM,CAAC;IAC/B,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE;IACf,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE;CAChB,CAAC,CAAA;AACW,QAAA,SAAS,GAAG,OAAC;KACvB,MAAM,CAAC;IACN,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE;IACxB,OAAO,EAAE,gBAAQ;IACjB,OAAO,EAAE,gBAAQ;IACjB,MAAM,EAAE,gBAAQ;IAChB,QAAQ,EAAE,gBAAQ;CACnB,CAAC;KACD,OAAO,EAAE,CAAA;AAIC,QAAA,YAAY,GAAG,OAAC;KAC1B,MAAM,CAAC;IACN,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACpC,iBAAiB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACxC,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC1B,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC1B,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC9B,CAAC;KACD,MAAM,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,MAAM,GAAG,CAAC,EAAE;IAC5C,OAAO,EAAE,+DAA+D;CACzE,CAAC;KACD,QAAQ,EAAE,CAAA;AAEb,MAAM,WAAW,GAAG,wBAAwB,CAAA;AAE/B,QAAA,iBAAiB,GAAG,OAAC;KAC/B,MAAM,EAAE;KACR,KAAK,CAAC,WAAW,EAAE,uBAAuB,CAAC;KAC3C,GAAG,CAAC,CAAC,EAAE,6BAA6B,CAAC,CAAA;AAExC,MAAM,QAAQ,GAAG,OAAC,CAAC,IAAI,CAAC;IACtB,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,KAAK;IACL,KAAK;IACL,KAAK;IACL,MAAM;IACN,SAAS;IACT,aAAa;IACb,cAAc;IACd,KAAK;IACL,KAAK;IACL,KAAK;CACN,CAAC,CAAA;AAEF,MAAM,oBAAoB,GAAG,OAAC,CAAC,MAAM,CAAC;IACpC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,IAAI,EAAE,QAAQ;CACf,CAAC,CAAA;AAEW,QAAA,4BAA4B,GAAG,oBAAoB,CAAC,QAAQ,EAAE,CAAA;AAE3E,MAAM,6BAA6B,GAAG,OAAC,CAAC,MAAM,CAAC;IAC7C,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,IAAI,EAAE,QAAQ;IACd,OAAO,EAAE,OAAC;SACP,KAAK,CAAC,OAAC,CAAC,MAAM,CAAC,EAAE,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,EAAE,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,QAAQ,EAAE,CAAC;SACtE,QAAQ,EAAE;CACd,CAAC,CAAA;AAEW,QAAA,qCAAqC,GAChD,6BAA6B,CAAC,QAAQ,EAAE,CAAA"}
|
|
@@ -790,20 +790,20 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
790
790
|
source: z.ZodOptional<z.ZodString>;
|
|
791
791
|
}, "strip", z.ZodTypeAny, {
|
|
792
792
|
id?: string;
|
|
793
|
+
source?: string;
|
|
793
794
|
linkedinUrl?: string;
|
|
794
795
|
fullName?: string;
|
|
795
796
|
email?: string;
|
|
796
797
|
phone?: string;
|
|
797
|
-
source?: string;
|
|
798
798
|
created?: string;
|
|
799
799
|
roles?: string[];
|
|
800
800
|
}, {
|
|
801
801
|
id?: string;
|
|
802
|
+
source?: string;
|
|
802
803
|
linkedinUrl?: string;
|
|
803
804
|
fullName?: string;
|
|
804
805
|
email?: string;
|
|
805
806
|
phone?: string;
|
|
806
|
-
source?: string;
|
|
807
807
|
created?: string;
|
|
808
808
|
roles?: string[];
|
|
809
809
|
}>, "many">;
|
|
@@ -1021,11 +1021,11 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
1021
1021
|
}[];
|
|
1022
1022
|
keyPeople?: {
|
|
1023
1023
|
id?: string;
|
|
1024
|
+
source?: string;
|
|
1024
1025
|
linkedinUrl?: string;
|
|
1025
1026
|
fullName?: string;
|
|
1026
1027
|
email?: string;
|
|
1027
1028
|
phone?: string;
|
|
1028
|
-
source?: string;
|
|
1029
1029
|
created?: string;
|
|
1030
1030
|
roles?: string[];
|
|
1031
1031
|
}[];
|
|
@@ -1168,11 +1168,11 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
1168
1168
|
}[];
|
|
1169
1169
|
keyPeople?: {
|
|
1170
1170
|
id?: string;
|
|
1171
|
+
source?: string;
|
|
1171
1172
|
linkedinUrl?: string;
|
|
1172
1173
|
fullName?: string;
|
|
1173
1174
|
email?: string;
|
|
1174
1175
|
phone?: string;
|
|
1175
|
-
source?: string;
|
|
1176
1176
|
created?: string;
|
|
1177
1177
|
roles?: string[];
|
|
1178
1178
|
}[];
|
|
@@ -1631,20 +1631,20 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1631
1631
|
source: z.ZodOptional<z.ZodString>;
|
|
1632
1632
|
}, "strip", z.ZodTypeAny, {
|
|
1633
1633
|
id?: string;
|
|
1634
|
+
source?: string;
|
|
1634
1635
|
linkedinUrl?: string;
|
|
1635
1636
|
fullName?: string;
|
|
1636
1637
|
email?: string;
|
|
1637
1638
|
phone?: string;
|
|
1638
|
-
source?: string;
|
|
1639
1639
|
created?: string;
|
|
1640
1640
|
roles?: string[];
|
|
1641
1641
|
}, {
|
|
1642
1642
|
id?: string;
|
|
1643
|
+
source?: string;
|
|
1643
1644
|
linkedinUrl?: string;
|
|
1644
1645
|
fullName?: string;
|
|
1645
1646
|
email?: string;
|
|
1646
1647
|
phone?: string;
|
|
1647
|
-
source?: string;
|
|
1648
1648
|
created?: string;
|
|
1649
1649
|
roles?: string[];
|
|
1650
1650
|
}>, "many">;
|
|
@@ -1862,11 +1862,11 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1862
1862
|
}[];
|
|
1863
1863
|
keyPeople?: {
|
|
1864
1864
|
id?: string;
|
|
1865
|
+
source?: string;
|
|
1865
1866
|
linkedinUrl?: string;
|
|
1866
1867
|
fullName?: string;
|
|
1867
1868
|
email?: string;
|
|
1868
1869
|
phone?: string;
|
|
1869
|
-
source?: string;
|
|
1870
1870
|
created?: string;
|
|
1871
1871
|
roles?: string[];
|
|
1872
1872
|
}[];
|
|
@@ -2009,11 +2009,11 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2009
2009
|
}[];
|
|
2010
2010
|
keyPeople?: {
|
|
2011
2011
|
id?: string;
|
|
2012
|
+
source?: string;
|
|
2012
2013
|
linkedinUrl?: string;
|
|
2013
2014
|
fullName?: string;
|
|
2014
2015
|
email?: string;
|
|
2015
2016
|
phone?: string;
|
|
2016
|
-
source?: string;
|
|
2017
2017
|
created?: string;
|
|
2018
2018
|
roles?: string[];
|
|
2019
2019
|
}[];
|
|
@@ -2472,20 +2472,20 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2472
2472
|
source: z.ZodOptional<z.ZodString>;
|
|
2473
2473
|
}, "strip", z.ZodTypeAny, {
|
|
2474
2474
|
id?: string;
|
|
2475
|
+
source?: string;
|
|
2475
2476
|
linkedinUrl?: string;
|
|
2476
2477
|
fullName?: string;
|
|
2477
2478
|
email?: string;
|
|
2478
2479
|
phone?: string;
|
|
2479
|
-
source?: string;
|
|
2480
2480
|
created?: string;
|
|
2481
2481
|
roles?: string[];
|
|
2482
2482
|
}, {
|
|
2483
2483
|
id?: string;
|
|
2484
|
+
source?: string;
|
|
2484
2485
|
linkedinUrl?: string;
|
|
2485
2486
|
fullName?: string;
|
|
2486
2487
|
email?: string;
|
|
2487
2488
|
phone?: string;
|
|
2488
|
-
source?: string;
|
|
2489
2489
|
created?: string;
|
|
2490
2490
|
roles?: string[];
|
|
2491
2491
|
}>, "many">;
|
|
@@ -2703,11 +2703,11 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2703
2703
|
}[];
|
|
2704
2704
|
keyPeople?: {
|
|
2705
2705
|
id?: string;
|
|
2706
|
+
source?: string;
|
|
2706
2707
|
linkedinUrl?: string;
|
|
2707
2708
|
fullName?: string;
|
|
2708
2709
|
email?: string;
|
|
2709
2710
|
phone?: string;
|
|
2710
|
-
source?: string;
|
|
2711
2711
|
created?: string;
|
|
2712
2712
|
roles?: string[];
|
|
2713
2713
|
}[];
|
|
@@ -2850,11 +2850,11 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2850
2850
|
}[];
|
|
2851
2851
|
keyPeople?: {
|
|
2852
2852
|
id?: string;
|
|
2853
|
+
source?: string;
|
|
2853
2854
|
linkedinUrl?: string;
|
|
2854
2855
|
fullName?: string;
|
|
2855
2856
|
email?: string;
|
|
2856
2857
|
phone?: string;
|
|
2857
|
-
source?: string;
|
|
2858
2858
|
created?: string;
|
|
2859
2859
|
roles?: string[];
|
|
2860
2860
|
}[];
|
|
@@ -5344,20 +5344,20 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5344
5344
|
source: z.ZodOptional<z.ZodString>;
|
|
5345
5345
|
}, "strip", z.ZodTypeAny, {
|
|
5346
5346
|
id?: string;
|
|
5347
|
+
source?: string;
|
|
5347
5348
|
linkedinUrl?: string;
|
|
5348
5349
|
fullName?: string;
|
|
5349
5350
|
email?: string;
|
|
5350
5351
|
phone?: string;
|
|
5351
|
-
source?: string;
|
|
5352
5352
|
created?: string;
|
|
5353
5353
|
roles?: string[];
|
|
5354
5354
|
}, {
|
|
5355
5355
|
id?: string;
|
|
5356
|
+
source?: string;
|
|
5356
5357
|
linkedinUrl?: string;
|
|
5357
5358
|
fullName?: string;
|
|
5358
5359
|
email?: string;
|
|
5359
5360
|
phone?: string;
|
|
5360
|
-
source?: string;
|
|
5361
5361
|
created?: string;
|
|
5362
5362
|
roles?: string[];
|
|
5363
5363
|
}>, "many">;
|
|
@@ -5703,11 +5703,11 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5703
5703
|
}[];
|
|
5704
5704
|
keyPeople?: {
|
|
5705
5705
|
id?: string;
|
|
5706
|
+
source?: string;
|
|
5706
5707
|
linkedinUrl?: string;
|
|
5707
5708
|
fullName?: string;
|
|
5708
5709
|
email?: string;
|
|
5709
5710
|
phone?: string;
|
|
5710
|
-
source?: string;
|
|
5711
5711
|
created?: string;
|
|
5712
5712
|
roles?: string[];
|
|
5713
5713
|
}[];
|
|
@@ -5883,11 +5883,11 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5883
5883
|
}[];
|
|
5884
5884
|
keyPeople?: {
|
|
5885
5885
|
id?: string;
|
|
5886
|
+
source?: string;
|
|
5886
5887
|
linkedinUrl?: string;
|
|
5887
5888
|
fullName?: string;
|
|
5888
5889
|
email?: string;
|
|
5889
5890
|
phone?: string;
|
|
5890
|
-
source?: string;
|
|
5891
5891
|
created?: string;
|
|
5892
5892
|
roles?: string[];
|
|
5893
5893
|
}[];
|
|
@@ -6546,20 +6546,20 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6546
6546
|
source: z.ZodOptional<z.ZodString>;
|
|
6547
6547
|
}, "strip", z.ZodTypeAny, {
|
|
6548
6548
|
id?: string;
|
|
6549
|
+
source?: string;
|
|
6549
6550
|
linkedinUrl?: string;
|
|
6550
6551
|
fullName?: string;
|
|
6551
6552
|
email?: string;
|
|
6552
6553
|
phone?: string;
|
|
6553
|
-
source?: string;
|
|
6554
6554
|
created?: string;
|
|
6555
6555
|
roles?: string[];
|
|
6556
6556
|
}, {
|
|
6557
6557
|
id?: string;
|
|
6558
|
+
source?: string;
|
|
6558
6559
|
linkedinUrl?: string;
|
|
6559
6560
|
fullName?: string;
|
|
6560
6561
|
email?: string;
|
|
6561
6562
|
phone?: string;
|
|
6562
|
-
source?: string;
|
|
6563
6563
|
created?: string;
|
|
6564
6564
|
roles?: string[];
|
|
6565
6565
|
}>, "many">;
|
|
@@ -6905,11 +6905,11 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6905
6905
|
}[];
|
|
6906
6906
|
keyPeople?: {
|
|
6907
6907
|
id?: string;
|
|
6908
|
+
source?: string;
|
|
6908
6909
|
linkedinUrl?: string;
|
|
6909
6910
|
fullName?: string;
|
|
6910
6911
|
email?: string;
|
|
6911
6912
|
phone?: string;
|
|
6912
|
-
source?: string;
|
|
6913
6913
|
created?: string;
|
|
6914
6914
|
roles?: string[];
|
|
6915
6915
|
}[];
|
|
@@ -7085,11 +7085,11 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7085
7085
|
}[];
|
|
7086
7086
|
keyPeople?: {
|
|
7087
7087
|
id?: string;
|
|
7088
|
+
source?: string;
|
|
7088
7089
|
linkedinUrl?: string;
|
|
7089
7090
|
fullName?: string;
|
|
7090
7091
|
email?: string;
|
|
7091
7092
|
phone?: string;
|
|
7092
|
-
source?: string;
|
|
7093
7093
|
created?: string;
|
|
7094
7094
|
roles?: string[];
|
|
7095
7095
|
}[];
|
|
@@ -7438,20 +7438,20 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
7438
7438
|
source: z.ZodOptional<z.ZodString>;
|
|
7439
7439
|
}, "strip", z.ZodTypeAny, {
|
|
7440
7440
|
id?: string;
|
|
7441
|
+
source?: string;
|
|
7441
7442
|
linkedinUrl?: string;
|
|
7442
7443
|
fullName?: string;
|
|
7443
7444
|
email?: string;
|
|
7444
7445
|
phone?: string;
|
|
7445
|
-
source?: string;
|
|
7446
7446
|
created?: string;
|
|
7447
7447
|
roles?: string[];
|
|
7448
7448
|
}, {
|
|
7449
7449
|
id?: string;
|
|
7450
|
+
source?: string;
|
|
7450
7451
|
linkedinUrl?: string;
|
|
7451
7452
|
fullName?: string;
|
|
7452
7453
|
email?: string;
|
|
7453
7454
|
phone?: string;
|
|
7454
|
-
source?: string;
|
|
7455
7455
|
created?: string;
|
|
7456
7456
|
roles?: string[];
|
|
7457
7457
|
}>, "many">;
|
|
@@ -7797,11 +7797,11 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
7797
7797
|
}[];
|
|
7798
7798
|
keyPeople?: {
|
|
7799
7799
|
id?: string;
|
|
7800
|
+
source?: string;
|
|
7800
7801
|
linkedinUrl?: string;
|
|
7801
7802
|
fullName?: string;
|
|
7802
7803
|
email?: string;
|
|
7803
7804
|
phone?: string;
|
|
7804
|
-
source?: string;
|
|
7805
7805
|
created?: string;
|
|
7806
7806
|
roles?: string[];
|
|
7807
7807
|
}[];
|
|
@@ -7977,11 +7977,11 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
7977
7977
|
}[];
|
|
7978
7978
|
keyPeople?: {
|
|
7979
7979
|
id?: string;
|
|
7980
|
+
source?: string;
|
|
7980
7981
|
linkedinUrl?: string;
|
|
7981
7982
|
fullName?: string;
|
|
7982
7983
|
email?: string;
|
|
7983
7984
|
phone?: string;
|
|
7984
|
-
source?: string;
|
|
7985
7985
|
created?: string;
|
|
7986
7986
|
roles?: string[];
|
|
7987
7987
|
}[];
|
|
@@ -236,20 +236,20 @@ export declare const SignalSchema: z.ZodObject<{
|
|
|
236
236
|
id?: string;
|
|
237
237
|
identifier?: string;
|
|
238
238
|
role?: string;
|
|
239
|
+
source?: string;
|
|
239
240
|
linkedinUrl?: string;
|
|
240
241
|
fullName?: string;
|
|
241
242
|
email?: string;
|
|
242
243
|
phone?: string;
|
|
243
|
-
source?: string;
|
|
244
244
|
}, {
|
|
245
245
|
id?: string;
|
|
246
246
|
identifier?: string;
|
|
247
247
|
role?: string;
|
|
248
|
+
source?: string;
|
|
248
249
|
linkedinUrl?: string;
|
|
249
250
|
fullName?: string;
|
|
250
251
|
email?: string;
|
|
251
252
|
phone?: string;
|
|
252
|
-
source?: string;
|
|
253
253
|
}>, "many">>;
|
|
254
254
|
location: z.ZodArray<z.ZodObject<{
|
|
255
255
|
identifier: z.ZodString;
|
|
@@ -580,11 +580,11 @@ export declare const SignalSchema: z.ZodObject<{
|
|
|
580
580
|
id?: string;
|
|
581
581
|
identifier?: string;
|
|
582
582
|
role?: string;
|
|
583
|
+
source?: string;
|
|
583
584
|
linkedinUrl?: string;
|
|
584
585
|
fullName?: string;
|
|
585
586
|
email?: string;
|
|
586
587
|
phone?: string;
|
|
587
|
-
source?: string;
|
|
588
588
|
}[];
|
|
589
589
|
id?: string;
|
|
590
590
|
location?: {
|
|
@@ -755,11 +755,11 @@ export declare const SignalSchema: z.ZodObject<{
|
|
|
755
755
|
id?: string;
|
|
756
756
|
identifier?: string;
|
|
757
757
|
role?: string;
|
|
758
|
+
source?: string;
|
|
758
759
|
linkedinUrl?: string;
|
|
759
760
|
fullName?: string;
|
|
760
761
|
email?: string;
|
|
761
762
|
phone?: string;
|
|
762
|
-
source?: string;
|
|
763
763
|
}[];
|
|
764
764
|
id?: string;
|
|
765
765
|
location?: {
|