@abcagency/hire-control-sdk 1.0.78 → 1.0.80
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/dist/types/JobListing.d.ts +7 -7
- package/dist/types/event.d.ts +2 -0
- package/package.json +1 -1
- package/types/JobListing.ts +7 -7
- package/types/event.ts +2 -0
|
@@ -13,7 +13,7 @@ export type JobListing = {
|
|
|
13
13
|
eoeStatement: string | null;
|
|
14
14
|
status: JobStatus;
|
|
15
15
|
};
|
|
16
|
-
type JobFields = {
|
|
16
|
+
export type JobFields = {
|
|
17
17
|
position: string | null;
|
|
18
18
|
category: string | null;
|
|
19
19
|
categoryClass: string | null;
|
|
@@ -39,18 +39,18 @@ type JobFields = {
|
|
|
39
39
|
dateCreated: string;
|
|
40
40
|
dateLastEdited: string | null;
|
|
41
41
|
};
|
|
42
|
-
type CustomField = {
|
|
42
|
+
export type CustomField = {
|
|
43
43
|
id: string | null;
|
|
44
44
|
name: string | null;
|
|
45
45
|
value: any | null;
|
|
46
46
|
};
|
|
47
|
-
type JobDescription = {
|
|
47
|
+
export type JobDescription = {
|
|
48
48
|
id: string | null;
|
|
49
49
|
name: string | null;
|
|
50
50
|
content: string | null;
|
|
51
51
|
versions: Array<JobDescriptionVersion>;
|
|
52
52
|
};
|
|
53
|
-
type JobDescriptionVersion = {
|
|
53
|
+
export type JobDescriptionVersion = {
|
|
54
54
|
id: number;
|
|
55
55
|
timestamp: string;
|
|
56
56
|
source: string | null;
|
|
@@ -58,7 +58,7 @@ type JobDescriptionVersion = {
|
|
|
58
58
|
content: string | null;
|
|
59
59
|
needsApproval: boolean;
|
|
60
60
|
};
|
|
61
|
-
type VersionData = {
|
|
61
|
+
export type VersionData = {
|
|
62
62
|
fieldVersions: Record<string, Array<FieldVersion>>;
|
|
63
63
|
auditTrail: Array<AuditTrailEntry>;
|
|
64
64
|
};
|
|
@@ -69,14 +69,14 @@ type FieldVersion = {
|
|
|
69
69
|
user: string | null;
|
|
70
70
|
needsApproval: boolean;
|
|
71
71
|
};
|
|
72
|
-
type AuditTrailEntry = {
|
|
72
|
+
export type AuditTrailEntry = {
|
|
73
73
|
timestamp: string;
|
|
74
74
|
action: string | null;
|
|
75
75
|
user: string | null;
|
|
76
76
|
details: string | null;
|
|
77
77
|
source: string | null;
|
|
78
78
|
};
|
|
79
|
-
declare enum JobStatus {
|
|
79
|
+
export declare enum JobStatus {
|
|
80
80
|
UpdatedByFeed = 0,
|
|
81
81
|
PendingReview = 1,
|
|
82
82
|
EditedByHireControl = 2
|
package/dist/types/event.d.ts
CHANGED
package/package.json
CHANGED
package/types/JobListing.ts
CHANGED
|
@@ -14,7 +14,7 @@ export type JobListing = {
|
|
|
14
14
|
status: JobStatus;
|
|
15
15
|
};
|
|
16
16
|
|
|
17
|
-
type JobFields = {
|
|
17
|
+
export type JobFields = {
|
|
18
18
|
position: string | null;
|
|
19
19
|
category: string | null;
|
|
20
20
|
categoryClass: string | null;
|
|
@@ -41,20 +41,20 @@ type JobFields = {
|
|
|
41
41
|
dateLastEdited: string | null;
|
|
42
42
|
};
|
|
43
43
|
|
|
44
|
-
type CustomField = {
|
|
44
|
+
export type CustomField = {
|
|
45
45
|
id: string | null;
|
|
46
46
|
name: string | null;
|
|
47
47
|
value: any | null;
|
|
48
48
|
};
|
|
49
49
|
|
|
50
|
-
type JobDescription = {
|
|
50
|
+
export type JobDescription = {
|
|
51
51
|
id: string | null;
|
|
52
52
|
name: string | null;
|
|
53
53
|
content: string | null;
|
|
54
54
|
versions: Array<JobDescriptionVersion>;
|
|
55
55
|
};
|
|
56
56
|
|
|
57
|
-
type JobDescriptionVersion = {
|
|
57
|
+
export type JobDescriptionVersion = {
|
|
58
58
|
id: number;
|
|
59
59
|
timestamp: string;
|
|
60
60
|
source: string | null;
|
|
@@ -63,7 +63,7 @@ type JobDescriptionVersion = {
|
|
|
63
63
|
needsApproval: boolean;
|
|
64
64
|
};
|
|
65
65
|
|
|
66
|
-
type VersionData = {
|
|
66
|
+
export type VersionData = {
|
|
67
67
|
fieldVersions: Record<string, Array<FieldVersion>>;
|
|
68
68
|
auditTrail: Array<AuditTrailEntry>;
|
|
69
69
|
};
|
|
@@ -76,7 +76,7 @@ type FieldVersion = {
|
|
|
76
76
|
needsApproval: boolean;
|
|
77
77
|
};
|
|
78
78
|
|
|
79
|
-
type AuditTrailEntry = {
|
|
79
|
+
export type AuditTrailEntry = {
|
|
80
80
|
timestamp: string;
|
|
81
81
|
action: string | null;
|
|
82
82
|
user: string | null;
|
|
@@ -84,7 +84,7 @@ type AuditTrailEntry = {
|
|
|
84
84
|
source: string | null;
|
|
85
85
|
};
|
|
86
86
|
|
|
87
|
-
enum JobStatus {
|
|
87
|
+
export enum JobStatus {
|
|
88
88
|
UpdatedByFeed = 0,
|
|
89
89
|
PendingReview = 1,
|
|
90
90
|
EditedByHireControl = 2,
|
package/types/event.ts
CHANGED
|
@@ -36,6 +36,8 @@ type Event = {
|
|
|
36
36
|
includeOnEventLeads?: boolean;
|
|
37
37
|
leadsFormId?: string;
|
|
38
38
|
eventStatus: number; // 0: Published, 1: Draft, 2: Archived
|
|
39
|
+
onGoing: boolean;
|
|
40
|
+
onGoingDescription?: string;
|
|
39
41
|
leadsForm?: Form;
|
|
40
42
|
registrationFormId?: string;
|
|
41
43
|
registrationForm?: Form;
|