@brivioio/api-server-types 7.37.0 → 7.38.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.
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
/**
|
|
1
|
+
/**
|
|
2
|
+
* Known sources a contact point can come from, so stale/low-trust sources can be
|
|
3
|
+
* reconciled later. These are well-known values, but `source` accepts any string.
|
|
4
|
+
*/
|
|
2
5
|
export declare enum ECandidateContactSource {
|
|
3
6
|
CRUSTDATA = "crustdata",
|
|
4
7
|
MANUAL = "manual"
|
|
@@ -16,12 +19,14 @@ export declare enum ECandidatePhoneType {
|
|
|
16
19
|
export interface ICandidateEmail {
|
|
17
20
|
value: string;
|
|
18
21
|
type: ECandidateEmailType;
|
|
19
|
-
|
|
22
|
+
/** Origin of this contact point; well-known values live in `ECandidateContactSource`. */
|
|
23
|
+
source: string;
|
|
20
24
|
}
|
|
21
25
|
export interface ICandidatePhone {
|
|
22
26
|
value: string;
|
|
23
27
|
type: ECandidatePhoneType;
|
|
24
|
-
|
|
28
|
+
/** Origin of this contact point; well-known values live in `ECandidateContactSource`. */
|
|
29
|
+
source: string;
|
|
25
30
|
}
|
|
26
31
|
/**
|
|
27
32
|
* Contact details (emails / phone numbers) for a candidate, keyed by their
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"candidateContacts.types.d.ts","sourceRoot":"","sources":["../src/candidateContacts.types.ts"],"names":[],"mappings":"AACA
|
|
1
|
+
{"version":3,"file":"candidateContacts.types.d.ts","sourceRoot":"","sources":["../src/candidateContacts.types.ts"],"names":[],"mappings":"AACA;;;GAGG;AACH,oBAAY,uBAAuB;IACjC,SAAS,cAAc;IACvB,MAAM,WAAW;CAClB;AAED,oBAAY,mBAAmB;IAC7B,QAAQ,aAAa;IACrB,IAAI,SAAS;IACb,OAAO,YAAY;CACpB;AAED,oBAAY,mBAAmB;IAC7B,MAAM,WAAW;IACjB,IAAI,SAAS;IACb,OAAO,YAAY;CACpB;AAED,MAAM,WAAW,eAAe;IAC9B,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,mBAAmB,CAAC;IAC1B,yFAAyF;IACzF,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,eAAe;IAC9B,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,mBAAmB,CAAC;IAC1B,yFAAyF;IACzF,MAAM,EAAE,MAAM,CAAC;CAChB;AAED;;;;;;;;GAQG;AACH,MAAM,WAAW,iBAAiB;IAChC,GAAG,EAAE,MAAM,CAAC;IACZ,+EAA+E;IAC/E,YAAY,EAAE,MAAM,CAAC;IACrB,MAAM,EAAE,eAAe,EAAE,CAAC;IAC1B,MAAM,EAAE,eAAe,EAAE,CAAC;IAC1B,SAAS,EAAE,OAAO,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;CACnB"}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
/**
|
|
1
|
+
/**
|
|
2
|
+
* Known sources a contact point can come from, so stale/low-trust sources can be
|
|
3
|
+
* reconciled later. These are well-known values, but `source` accepts any string.
|
|
4
|
+
*/
|
|
2
5
|
export var ECandidateContactSource;
|
|
3
6
|
(function (ECandidateContactSource) {
|
|
4
7
|
ECandidateContactSource["CRUSTDATA"] = "crustdata";
|