@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.
package/dist/types/form.d.ts
CHANGED
|
@@ -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>;
|
package/dist/types/user.d.ts
CHANGED
package/package.json
CHANGED
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>;
|