@abcagency/hire-control-sdk 1.0.40 → 1.0.42

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.
@@ -15,5 +15,7 @@ interface Form {
15
15
  lastName: string;
16
16
  dateTime: string;
17
17
  };
18
+ jsonSchema?: string;
19
+ type: string;
18
20
  }
19
21
  export default Form;
@@ -37,6 +37,7 @@ export interface HireControlConfig {
37
37
  hideLocations?: boolean;
38
38
  fieldsShown?: string[];
39
39
  fieldFiltersShown?: string[];
40
+ visibleFilterFields?: string[];
40
41
  locationFiltersShown?: string[];
41
42
  fieldNames?: Record<string, string>;
42
43
  specialFeatures?: Record<string, string>;
@@ -11,6 +11,11 @@ type User = {
11
11
  active?: boolean;
12
12
  comments?: string;
13
13
  title?: string;
14
+ profileImageUrl?: string;
15
+ imageFocalPoint: {
16
+ x: number;
17
+ y: number;
18
+ };
14
19
  additionalFields?: any;
15
20
  };
16
21
  export default User;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abcagency/hire-control-sdk",
3
- "version": "1.0.40",
3
+ "version": "1.0.42",
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "types": "dist/index.d.ts",
package/types/form.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  interface Form {
2
- id: string;
3
- legacyFormId?: number;
4
- companyId: number;
5
- name?: string;
2
+ id: string;
3
+ legacyFormId?: number;
4
+ companyId: number;
5
+ name?: string;
6
6
  createdBy: {
7
7
  userId: string;
8
8
  firstName: string;
@@ -15,6 +15,8 @@ interface Form {
15
15
  lastName: string;
16
16
  dateTime: string;
17
17
  };
18
+ jsonSchema?: string;
19
+ type: string;
18
20
  }
19
21
 
20
22
  export default Form;
@@ -44,6 +44,7 @@ export interface HireControlConfig {
44
44
  hideLocations?: boolean;
45
45
  fieldsShown?: string[];
46
46
  fieldFiltersShown?: string[];
47
+ visibleFilterFields?: string[];
47
48
  locationFiltersShown?: string[];
48
49
  fieldNames?: Record<string, string>;
49
50
  specialFeatures?: Record<string, string>;
package/types/user.ts CHANGED
@@ -11,7 +11,11 @@ type User = {
11
11
  active?: boolean;
12
12
  comments?: string;
13
13
  title?: string;
14
-
14
+ profileImageUrl?: string;
15
+ imageFocalPoint: {
16
+ x: number;
17
+ y: number;
18
+ };
15
19
  additionalFields?: any;
16
20
  };
17
21