@keystrokehq/safetyculture 0.1.3 → 0.1.4
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/actions/create-directory-folder.d.cts +3 -3
- package/dist/actions/create-directory-folder.d.mts +3 -3
- package/dist/actions/create-incidents-detail-field.d.cts +3 -3
- package/dist/actions/create-incidents-detail-field.d.mts +3 -3
- package/dist/actions/create-incidents-osha-case.d.cts +2 -2
- package/dist/actions/create-incidents-osha-case.d.mts +2 -2
- package/dist/actions/create-schedules-schedule-items.d.cts +2 -2
- package/dist/actions/create-schedules-schedule-items.d.mts +2 -2
- package/dist/actions/create-tasks-custom-field.d.cts +2 -2
- package/dist/actions/create-tasks-custom-field.d.mts +2 -2
- package/dist/actions/create-user-field.d.cts +3 -3
- package/dist/actions/create-user-field.d.mts +3 -3
- package/dist/actions/update-user-field.d.cts +1 -1
- package/dist/actions/update-user-field.d.mts +1 -1
- package/dist/catalog.cjs +1 -1
- package/dist/catalog.cjs.map +1 -1
- package/dist/catalog.d.cts +1 -1
- package/dist/catalog.d.mts +1 -1
- package/dist/catalog.mjs +1 -1
- package/dist/catalog.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -7,11 +7,11 @@ declare const SafetycultureCreateDirectoryFolderInput: z.ZodObject<{
|
|
|
7
7
|
domain: z.ZodOptional<z.ZodString>;
|
|
8
8
|
parent_id: z.ZodOptional<z.ZodString>;
|
|
9
9
|
meta_label: z.ZodEnum<{
|
|
10
|
-
state: "state";
|
|
11
10
|
location: "location";
|
|
12
|
-
country: "country";
|
|
13
11
|
area: "area";
|
|
14
12
|
region: "region";
|
|
13
|
+
state: "state";
|
|
14
|
+
country: "country";
|
|
15
15
|
}>;
|
|
16
16
|
}, z.core.$strip>;
|
|
17
17
|
declare const SafetycultureCreateDirectoryFolderOutput: z.ZodObject<{
|
|
@@ -29,7 +29,7 @@ declare const SafetycultureCreateDirectoryFolderOutput: z.ZodObject<{
|
|
|
29
29
|
}, z.core.$loose>;
|
|
30
30
|
declare const safetycultureCreateDirectoryFolder: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
31
31
|
name: string;
|
|
32
|
-
meta_label: "
|
|
32
|
+
meta_label: "location" | "area" | "region" | "state" | "country";
|
|
33
33
|
id?: string | undefined;
|
|
34
34
|
domain?: string | undefined;
|
|
35
35
|
parent_id?: string | undefined;
|
|
@@ -7,11 +7,11 @@ declare const SafetycultureCreateDirectoryFolderInput: z.ZodObject<{
|
|
|
7
7
|
domain: z.ZodOptional<z.ZodString>;
|
|
8
8
|
parent_id: z.ZodOptional<z.ZodString>;
|
|
9
9
|
meta_label: z.ZodEnum<{
|
|
10
|
-
state: "state";
|
|
11
10
|
location: "location";
|
|
12
|
-
country: "country";
|
|
13
11
|
area: "area";
|
|
14
12
|
region: "region";
|
|
13
|
+
state: "state";
|
|
14
|
+
country: "country";
|
|
15
15
|
}>;
|
|
16
16
|
}, z.core.$strip>;
|
|
17
17
|
declare const SafetycultureCreateDirectoryFolderOutput: z.ZodObject<{
|
|
@@ -29,7 +29,7 @@ declare const SafetycultureCreateDirectoryFolderOutput: z.ZodObject<{
|
|
|
29
29
|
}, z.core.$loose>;
|
|
30
30
|
declare const safetycultureCreateDirectoryFolder: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
31
31
|
name: string;
|
|
32
|
-
meta_label: "
|
|
32
|
+
meta_label: "location" | "area" | "region" | "state" | "country";
|
|
33
33
|
id?: string | undefined;
|
|
34
34
|
domain?: string | undefined;
|
|
35
35
|
parent_id?: string | undefined;
|
|
@@ -11,8 +11,8 @@ declare const SafetycultureCreateIncidentsDetailFieldInput: z.ZodObject<{
|
|
|
11
11
|
FIELD_VALUE_TYPE_STRING: "FIELD_VALUE_TYPE_STRING";
|
|
12
12
|
FIELD_VALUE_TYPE_MONEY: "FIELD_VALUE_TYPE_MONEY";
|
|
13
13
|
FIELD_VALUE_TYPE_TIMESTAMP: "FIELD_VALUE_TYPE_TIMESTAMP";
|
|
14
|
-
FIELD_VALUE_TYPE_USER_ID: "FIELD_VALUE_TYPE_USER_ID";
|
|
15
14
|
FIELD_VALUE_TYPE_SELECT: "FIELD_VALUE_TYPE_SELECT";
|
|
15
|
+
FIELD_VALUE_TYPE_USER_ID: "FIELD_VALUE_TYPE_USER_ID";
|
|
16
16
|
FIELD_VALUE_TYPE_TEMPLATE_ID: "FIELD_VALUE_TYPE_TEMPLATE_ID";
|
|
17
17
|
FIELD_VALUE_TYPE_MULTI_SELECT: "FIELD_VALUE_TYPE_MULTI_SELECT";
|
|
18
18
|
FIELD_VALUE_TYPE_SITE: "FIELD_VALUE_TYPE_SITE";
|
|
@@ -51,8 +51,8 @@ declare const SafetycultureCreateIncidentsDetailFieldOutput: z.ZodObject<{
|
|
|
51
51
|
FIELD_VALUE_TYPE_STRING: "FIELD_VALUE_TYPE_STRING";
|
|
52
52
|
FIELD_VALUE_TYPE_MONEY: "FIELD_VALUE_TYPE_MONEY";
|
|
53
53
|
FIELD_VALUE_TYPE_TIMESTAMP: "FIELD_VALUE_TYPE_TIMESTAMP";
|
|
54
|
-
FIELD_VALUE_TYPE_USER_ID: "FIELD_VALUE_TYPE_USER_ID";
|
|
55
54
|
FIELD_VALUE_TYPE_SELECT: "FIELD_VALUE_TYPE_SELECT";
|
|
55
|
+
FIELD_VALUE_TYPE_USER_ID: "FIELD_VALUE_TYPE_USER_ID";
|
|
56
56
|
FIELD_VALUE_TYPE_TEMPLATE_ID: "FIELD_VALUE_TYPE_TEMPLATE_ID";
|
|
57
57
|
FIELD_VALUE_TYPE_MULTI_SELECT: "FIELD_VALUE_TYPE_MULTI_SELECT";
|
|
58
58
|
FIELD_VALUE_TYPE_SITE: "FIELD_VALUE_TYPE_SITE";
|
|
@@ -85,7 +85,7 @@ declare const safetycultureCreateIncidentsDetailField: import("@keystrokehq/acti
|
|
|
85
85
|
name: string;
|
|
86
86
|
id?: string | undefined;
|
|
87
87
|
created_by?: string | undefined;
|
|
88
|
-
value_type?: "FIELD_VALUE_TYPE_UNSPECIFIED" | "FIELD_VALUE_TYPE_STRING" | "FIELD_VALUE_TYPE_MONEY" | "FIELD_VALUE_TYPE_TIMESTAMP" | "
|
|
88
|
+
value_type?: "FIELD_VALUE_TYPE_UNSPECIFIED" | "FIELD_VALUE_TYPE_STRING" | "FIELD_VALUE_TYPE_MONEY" | "FIELD_VALUE_TYPE_TIMESTAMP" | "FIELD_VALUE_TYPE_SELECT" | "FIELD_VALUE_TYPE_USER_ID" | "FIELD_VALUE_TYPE_TEMPLATE_ID" | "FIELD_VALUE_TYPE_MULTI_SELECT" | "FIELD_VALUE_TYPE_SITE" | "FIELD_VALUE_TYPE_MULTI_SITE" | "FIELD_VALUE_TYPE_INTEGER" | "FIELD_VALUE_TYPE_LOCATION" | "FIELD_VALUE_TYPE_TIMEZONE" | "FIELD_VALUE_TYPE_CONTACT_DETAILS" | undefined;
|
|
89
89
|
description?: string | undefined;
|
|
90
90
|
select_options?: {
|
|
91
91
|
[x: string]: unknown;
|
|
@@ -11,8 +11,8 @@ declare const SafetycultureCreateIncidentsDetailFieldInput: z.ZodObject<{
|
|
|
11
11
|
FIELD_VALUE_TYPE_STRING: "FIELD_VALUE_TYPE_STRING";
|
|
12
12
|
FIELD_VALUE_TYPE_MONEY: "FIELD_VALUE_TYPE_MONEY";
|
|
13
13
|
FIELD_VALUE_TYPE_TIMESTAMP: "FIELD_VALUE_TYPE_TIMESTAMP";
|
|
14
|
-
FIELD_VALUE_TYPE_USER_ID: "FIELD_VALUE_TYPE_USER_ID";
|
|
15
14
|
FIELD_VALUE_TYPE_SELECT: "FIELD_VALUE_TYPE_SELECT";
|
|
15
|
+
FIELD_VALUE_TYPE_USER_ID: "FIELD_VALUE_TYPE_USER_ID";
|
|
16
16
|
FIELD_VALUE_TYPE_TEMPLATE_ID: "FIELD_VALUE_TYPE_TEMPLATE_ID";
|
|
17
17
|
FIELD_VALUE_TYPE_MULTI_SELECT: "FIELD_VALUE_TYPE_MULTI_SELECT";
|
|
18
18
|
FIELD_VALUE_TYPE_SITE: "FIELD_VALUE_TYPE_SITE";
|
|
@@ -51,8 +51,8 @@ declare const SafetycultureCreateIncidentsDetailFieldOutput: z.ZodObject<{
|
|
|
51
51
|
FIELD_VALUE_TYPE_STRING: "FIELD_VALUE_TYPE_STRING";
|
|
52
52
|
FIELD_VALUE_TYPE_MONEY: "FIELD_VALUE_TYPE_MONEY";
|
|
53
53
|
FIELD_VALUE_TYPE_TIMESTAMP: "FIELD_VALUE_TYPE_TIMESTAMP";
|
|
54
|
-
FIELD_VALUE_TYPE_USER_ID: "FIELD_VALUE_TYPE_USER_ID";
|
|
55
54
|
FIELD_VALUE_TYPE_SELECT: "FIELD_VALUE_TYPE_SELECT";
|
|
55
|
+
FIELD_VALUE_TYPE_USER_ID: "FIELD_VALUE_TYPE_USER_ID";
|
|
56
56
|
FIELD_VALUE_TYPE_TEMPLATE_ID: "FIELD_VALUE_TYPE_TEMPLATE_ID";
|
|
57
57
|
FIELD_VALUE_TYPE_MULTI_SELECT: "FIELD_VALUE_TYPE_MULTI_SELECT";
|
|
58
58
|
FIELD_VALUE_TYPE_SITE: "FIELD_VALUE_TYPE_SITE";
|
|
@@ -85,7 +85,7 @@ declare const safetycultureCreateIncidentsDetailField: import("@keystrokehq/acti
|
|
|
85
85
|
name: string;
|
|
86
86
|
id?: string | undefined;
|
|
87
87
|
created_by?: string | undefined;
|
|
88
|
-
value_type?: "FIELD_VALUE_TYPE_UNSPECIFIED" | "FIELD_VALUE_TYPE_STRING" | "FIELD_VALUE_TYPE_MONEY" | "FIELD_VALUE_TYPE_TIMESTAMP" | "
|
|
88
|
+
value_type?: "FIELD_VALUE_TYPE_UNSPECIFIED" | "FIELD_VALUE_TYPE_STRING" | "FIELD_VALUE_TYPE_MONEY" | "FIELD_VALUE_TYPE_TIMESTAMP" | "FIELD_VALUE_TYPE_SELECT" | "FIELD_VALUE_TYPE_USER_ID" | "FIELD_VALUE_TYPE_TEMPLATE_ID" | "FIELD_VALUE_TYPE_MULTI_SELECT" | "FIELD_VALUE_TYPE_SITE" | "FIELD_VALUE_TYPE_MULTI_SITE" | "FIELD_VALUE_TYPE_INTEGER" | "FIELD_VALUE_TYPE_LOCATION" | "FIELD_VALUE_TYPE_TIMEZONE" | "FIELD_VALUE_TYPE_CONTACT_DETAILS" | undefined;
|
|
89
89
|
description?: string | undefined;
|
|
90
90
|
select_options?: {
|
|
91
91
|
[x: string]: unknown;
|
|
@@ -111,9 +111,9 @@ declare const safetycultureCreateIncidentsOshaCase: import("@keystrokehq/action"
|
|
|
111
111
|
year_of_filing: number;
|
|
112
112
|
date_of_incident: string;
|
|
113
113
|
establishment_id: string;
|
|
114
|
-
incident_outcome: 1 |
|
|
114
|
+
incident_outcome: 1 | 4 | 2 | 3;
|
|
115
115
|
time_of_incident: string;
|
|
116
|
-
type_of_incident: 1 | 2 | 3 |
|
|
116
|
+
type_of_incident: 1 | 4 | 2 | 3 | 5 | 6;
|
|
117
117
|
incident_location: string;
|
|
118
118
|
time_started_work: string;
|
|
119
119
|
incident_description: string;
|
|
@@ -111,9 +111,9 @@ declare const safetycultureCreateIncidentsOshaCase: import("@keystrokehq/action"
|
|
|
111
111
|
year_of_filing: number;
|
|
112
112
|
date_of_incident: string;
|
|
113
113
|
establishment_id: string;
|
|
114
|
-
incident_outcome: 1 |
|
|
114
|
+
incident_outcome: 1 | 4 | 2 | 3;
|
|
115
115
|
time_of_incident: string;
|
|
116
|
-
type_of_incident: 1 | 2 | 3 |
|
|
116
|
+
type_of_incident: 1 | 4 | 2 | 3 | 5 | 6;
|
|
117
117
|
incident_location: string;
|
|
118
118
|
time_started_work: string;
|
|
119
119
|
incident_description: string;
|
|
@@ -17,8 +17,8 @@ declare const SafetycultureCreateSchedulesScheduleItemsInput: z.ZodObject<{
|
|
|
17
17
|
id: z.ZodString;
|
|
18
18
|
name: z.ZodOptional<z.ZodString>;
|
|
19
19
|
type: z.ZodEnum<{
|
|
20
|
-
ENTITY_TYPE_UNSPECIFIED: "ENTITY_TYPE_UNSPECIFIED";
|
|
21
20
|
USER: "USER";
|
|
21
|
+
ENTITY_TYPE_UNSPECIFIED: "ENTITY_TYPE_UNSPECIFIED";
|
|
22
22
|
ROLE: "ROLE";
|
|
23
23
|
}>;
|
|
24
24
|
}, z.core.$loose>>;
|
|
@@ -58,7 +58,7 @@ declare const safetycultureCreateSchedulesScheduleItems: import("@keystrokehq/ac
|
|
|
58
58
|
assignees: {
|
|
59
59
|
[x: string]: unknown;
|
|
60
60
|
id: string;
|
|
61
|
-
type: "
|
|
61
|
+
type: "USER" | "ENTITY_TYPE_UNSPECIFIED" | "ROLE";
|
|
62
62
|
name?: string | undefined;
|
|
63
63
|
}[];
|
|
64
64
|
from_date: string;
|
|
@@ -17,8 +17,8 @@ declare const SafetycultureCreateSchedulesScheduleItemsInput: z.ZodObject<{
|
|
|
17
17
|
id: z.ZodString;
|
|
18
18
|
name: z.ZodOptional<z.ZodString>;
|
|
19
19
|
type: z.ZodEnum<{
|
|
20
|
-
ENTITY_TYPE_UNSPECIFIED: "ENTITY_TYPE_UNSPECIFIED";
|
|
21
20
|
USER: "USER";
|
|
21
|
+
ENTITY_TYPE_UNSPECIFIED: "ENTITY_TYPE_UNSPECIFIED";
|
|
22
22
|
ROLE: "ROLE";
|
|
23
23
|
}>;
|
|
24
24
|
}, z.core.$loose>>;
|
|
@@ -58,7 +58,7 @@ declare const safetycultureCreateSchedulesScheduleItems: import("@keystrokehq/ac
|
|
|
58
58
|
assignees: {
|
|
59
59
|
[x: string]: unknown;
|
|
60
60
|
id: string;
|
|
61
|
-
type: "
|
|
61
|
+
type: "USER" | "ENTITY_TYPE_UNSPECIFIED" | "ROLE";
|
|
62
62
|
name?: string | undefined;
|
|
63
63
|
}[];
|
|
64
64
|
from_date: string;
|
|
@@ -12,8 +12,8 @@ declare const SafetycultureCreateTasksCustomFieldInput: z.ZodObject<{
|
|
|
12
12
|
FIELD_VALUE_TYPE_STRING: "FIELD_VALUE_TYPE_STRING";
|
|
13
13
|
FIELD_VALUE_TYPE_MONEY: "FIELD_VALUE_TYPE_MONEY";
|
|
14
14
|
FIELD_VALUE_TYPE_TIMESTAMP: "FIELD_VALUE_TYPE_TIMESTAMP";
|
|
15
|
-
FIELD_VALUE_TYPE_USER_ID: "FIELD_VALUE_TYPE_USER_ID";
|
|
16
15
|
FIELD_VALUE_TYPE_SELECT: "FIELD_VALUE_TYPE_SELECT";
|
|
16
|
+
FIELD_VALUE_TYPE_USER_ID: "FIELD_VALUE_TYPE_USER_ID";
|
|
17
17
|
FIELD_VALUE_TYPE_TEMPLATE_ID: "FIELD_VALUE_TYPE_TEMPLATE_ID";
|
|
18
18
|
FIELD_VALUE_TYPE_MULTI_SELECT: "FIELD_VALUE_TYPE_MULTI_SELECT";
|
|
19
19
|
FIELD_VALUE_TYPE_SITE: "FIELD_VALUE_TYPE_SITE";
|
|
@@ -39,7 +39,7 @@ declare const safetycultureCreateTasksCustomField: import("@keystrokehq/action")
|
|
|
39
39
|
name: string;
|
|
40
40
|
id?: string | undefined;
|
|
41
41
|
created_by?: string | undefined;
|
|
42
|
-
value_type?: "FIELD_VALUE_TYPE_UNSPECIFIED" | "FIELD_VALUE_TYPE_STRING" | "FIELD_VALUE_TYPE_MONEY" | "FIELD_VALUE_TYPE_TIMESTAMP" | "
|
|
42
|
+
value_type?: "FIELD_VALUE_TYPE_UNSPECIFIED" | "FIELD_VALUE_TYPE_STRING" | "FIELD_VALUE_TYPE_MONEY" | "FIELD_VALUE_TYPE_TIMESTAMP" | "FIELD_VALUE_TYPE_SELECT" | "FIELD_VALUE_TYPE_USER_ID" | "FIELD_VALUE_TYPE_TEMPLATE_ID" | "FIELD_VALUE_TYPE_MULTI_SELECT" | "FIELD_VALUE_TYPE_SITE" | "FIELD_VALUE_TYPE_MULTI_SITE" | "FIELD_VALUE_TYPE_INTEGER" | "FIELD_VALUE_TYPE_LOCATION" | "FIELD_VALUE_TYPE_TIMEZONE" | "FIELD_VALUE_TYPE_CONTACT_DETAILS" | undefined;
|
|
43
43
|
description?: string | undefined;
|
|
44
44
|
select_options?: {
|
|
45
45
|
[x: string]: unknown;
|
|
@@ -12,8 +12,8 @@ declare const SafetycultureCreateTasksCustomFieldInput: z.ZodObject<{
|
|
|
12
12
|
FIELD_VALUE_TYPE_STRING: "FIELD_VALUE_TYPE_STRING";
|
|
13
13
|
FIELD_VALUE_TYPE_MONEY: "FIELD_VALUE_TYPE_MONEY";
|
|
14
14
|
FIELD_VALUE_TYPE_TIMESTAMP: "FIELD_VALUE_TYPE_TIMESTAMP";
|
|
15
|
-
FIELD_VALUE_TYPE_USER_ID: "FIELD_VALUE_TYPE_USER_ID";
|
|
16
15
|
FIELD_VALUE_TYPE_SELECT: "FIELD_VALUE_TYPE_SELECT";
|
|
16
|
+
FIELD_VALUE_TYPE_USER_ID: "FIELD_VALUE_TYPE_USER_ID";
|
|
17
17
|
FIELD_VALUE_TYPE_TEMPLATE_ID: "FIELD_VALUE_TYPE_TEMPLATE_ID";
|
|
18
18
|
FIELD_VALUE_TYPE_MULTI_SELECT: "FIELD_VALUE_TYPE_MULTI_SELECT";
|
|
19
19
|
FIELD_VALUE_TYPE_SITE: "FIELD_VALUE_TYPE_SITE";
|
|
@@ -39,7 +39,7 @@ declare const safetycultureCreateTasksCustomField: import("@keystrokehq/action")
|
|
|
39
39
|
name: string;
|
|
40
40
|
id?: string | undefined;
|
|
41
41
|
created_by?: string | undefined;
|
|
42
|
-
value_type?: "FIELD_VALUE_TYPE_UNSPECIFIED" | "FIELD_VALUE_TYPE_STRING" | "FIELD_VALUE_TYPE_MONEY" | "FIELD_VALUE_TYPE_TIMESTAMP" | "
|
|
42
|
+
value_type?: "FIELD_VALUE_TYPE_UNSPECIFIED" | "FIELD_VALUE_TYPE_STRING" | "FIELD_VALUE_TYPE_MONEY" | "FIELD_VALUE_TYPE_TIMESTAMP" | "FIELD_VALUE_TYPE_SELECT" | "FIELD_VALUE_TYPE_USER_ID" | "FIELD_VALUE_TYPE_TEMPLATE_ID" | "FIELD_VALUE_TYPE_MULTI_SELECT" | "FIELD_VALUE_TYPE_SITE" | "FIELD_VALUE_TYPE_MULTI_SITE" | "FIELD_VALUE_TYPE_INTEGER" | "FIELD_VALUE_TYPE_LOCATION" | "FIELD_VALUE_TYPE_TIMEZONE" | "FIELD_VALUE_TYPE_CONTACT_DETAILS" | undefined;
|
|
43
43
|
description?: string | undefined;
|
|
44
44
|
select_options?: {
|
|
45
45
|
[x: string]: unknown;
|
|
@@ -12,8 +12,8 @@ declare const SafetycultureCreateUserFieldInput: z.ZodObject<{
|
|
|
12
12
|
FIELD_VALUE_TYPE_STRING: "FIELD_VALUE_TYPE_STRING";
|
|
13
13
|
FIELD_VALUE_TYPE_MONEY: "FIELD_VALUE_TYPE_MONEY";
|
|
14
14
|
FIELD_VALUE_TYPE_TIMESTAMP: "FIELD_VALUE_TYPE_TIMESTAMP";
|
|
15
|
-
FIELD_VALUE_TYPE_USER_ID: "FIELD_VALUE_TYPE_USER_ID";
|
|
16
15
|
FIELD_VALUE_TYPE_SELECT: "FIELD_VALUE_TYPE_SELECT";
|
|
16
|
+
FIELD_VALUE_TYPE_USER_ID: "FIELD_VALUE_TYPE_USER_ID";
|
|
17
17
|
FIELD_VALUE_TYPE_TEMPLATE_ID: "FIELD_VALUE_TYPE_TEMPLATE_ID";
|
|
18
18
|
FIELD_VALUE_TYPE_MULTI_SELECT: "FIELD_VALUE_TYPE_MULTI_SELECT";
|
|
19
19
|
FIELD_VALUE_TYPE_SITE: "FIELD_VALUE_TYPE_SITE";
|
|
@@ -52,8 +52,8 @@ declare const SafetycultureCreateUserFieldOutput: z.ZodObject<{
|
|
|
52
52
|
FIELD_VALUE_TYPE_STRING: "FIELD_VALUE_TYPE_STRING";
|
|
53
53
|
FIELD_VALUE_TYPE_MONEY: "FIELD_VALUE_TYPE_MONEY";
|
|
54
54
|
FIELD_VALUE_TYPE_TIMESTAMP: "FIELD_VALUE_TYPE_TIMESTAMP";
|
|
55
|
-
FIELD_VALUE_TYPE_USER_ID: "FIELD_VALUE_TYPE_USER_ID";
|
|
56
55
|
FIELD_VALUE_TYPE_SELECT: "FIELD_VALUE_TYPE_SELECT";
|
|
56
|
+
FIELD_VALUE_TYPE_USER_ID: "FIELD_VALUE_TYPE_USER_ID";
|
|
57
57
|
FIELD_VALUE_TYPE_TEMPLATE_ID: "FIELD_VALUE_TYPE_TEMPLATE_ID";
|
|
58
58
|
FIELD_VALUE_TYPE_MULTI_SELECT: "FIELD_VALUE_TYPE_MULTI_SELECT";
|
|
59
59
|
FIELD_VALUE_TYPE_SITE: "FIELD_VALUE_TYPE_SITE";
|
|
@@ -77,7 +77,7 @@ declare const safetycultureCreateUserField: import("@keystrokehq/action").Workfl
|
|
|
77
77
|
show_on_profile: boolean;
|
|
78
78
|
allow_self_update: boolean;
|
|
79
79
|
};
|
|
80
|
-
data_type?: "FIELD_VALUE_TYPE_UNSPECIFIED" | "FIELD_VALUE_TYPE_STRING" | "FIELD_VALUE_TYPE_MONEY" | "FIELD_VALUE_TYPE_TIMESTAMP" | "
|
|
80
|
+
data_type?: "FIELD_VALUE_TYPE_UNSPECIFIED" | "FIELD_VALUE_TYPE_STRING" | "FIELD_VALUE_TYPE_MONEY" | "FIELD_VALUE_TYPE_TIMESTAMP" | "FIELD_VALUE_TYPE_SELECT" | "FIELD_VALUE_TYPE_USER_ID" | "FIELD_VALUE_TYPE_TEMPLATE_ID" | "FIELD_VALUE_TYPE_MULTI_SELECT" | "FIELD_VALUE_TYPE_SITE" | "FIELD_VALUE_TYPE_MULTI_SITE" | "FIELD_VALUE_TYPE_INTEGER" | "FIELD_VALUE_TYPE_LOCATION" | "FIELD_VALUE_TYPE_TIMEZONE" | "FIELD_VALUE_TYPE_CONTACT_DETAILS" | undefined;
|
|
81
81
|
description?: string | undefined;
|
|
82
82
|
select_options?: {
|
|
83
83
|
[x: string]: unknown;
|
|
@@ -12,8 +12,8 @@ declare const SafetycultureCreateUserFieldInput: z.ZodObject<{
|
|
|
12
12
|
FIELD_VALUE_TYPE_STRING: "FIELD_VALUE_TYPE_STRING";
|
|
13
13
|
FIELD_VALUE_TYPE_MONEY: "FIELD_VALUE_TYPE_MONEY";
|
|
14
14
|
FIELD_VALUE_TYPE_TIMESTAMP: "FIELD_VALUE_TYPE_TIMESTAMP";
|
|
15
|
-
FIELD_VALUE_TYPE_USER_ID: "FIELD_VALUE_TYPE_USER_ID";
|
|
16
15
|
FIELD_VALUE_TYPE_SELECT: "FIELD_VALUE_TYPE_SELECT";
|
|
16
|
+
FIELD_VALUE_TYPE_USER_ID: "FIELD_VALUE_TYPE_USER_ID";
|
|
17
17
|
FIELD_VALUE_TYPE_TEMPLATE_ID: "FIELD_VALUE_TYPE_TEMPLATE_ID";
|
|
18
18
|
FIELD_VALUE_TYPE_MULTI_SELECT: "FIELD_VALUE_TYPE_MULTI_SELECT";
|
|
19
19
|
FIELD_VALUE_TYPE_SITE: "FIELD_VALUE_TYPE_SITE";
|
|
@@ -52,8 +52,8 @@ declare const SafetycultureCreateUserFieldOutput: z.ZodObject<{
|
|
|
52
52
|
FIELD_VALUE_TYPE_STRING: "FIELD_VALUE_TYPE_STRING";
|
|
53
53
|
FIELD_VALUE_TYPE_MONEY: "FIELD_VALUE_TYPE_MONEY";
|
|
54
54
|
FIELD_VALUE_TYPE_TIMESTAMP: "FIELD_VALUE_TYPE_TIMESTAMP";
|
|
55
|
-
FIELD_VALUE_TYPE_USER_ID: "FIELD_VALUE_TYPE_USER_ID";
|
|
56
55
|
FIELD_VALUE_TYPE_SELECT: "FIELD_VALUE_TYPE_SELECT";
|
|
56
|
+
FIELD_VALUE_TYPE_USER_ID: "FIELD_VALUE_TYPE_USER_ID";
|
|
57
57
|
FIELD_VALUE_TYPE_TEMPLATE_ID: "FIELD_VALUE_TYPE_TEMPLATE_ID";
|
|
58
58
|
FIELD_VALUE_TYPE_MULTI_SELECT: "FIELD_VALUE_TYPE_MULTI_SELECT";
|
|
59
59
|
FIELD_VALUE_TYPE_SITE: "FIELD_VALUE_TYPE_SITE";
|
|
@@ -77,7 +77,7 @@ declare const safetycultureCreateUserField: import("@keystrokehq/action").Workfl
|
|
|
77
77
|
show_on_profile: boolean;
|
|
78
78
|
allow_self_update: boolean;
|
|
79
79
|
};
|
|
80
|
-
data_type?: "FIELD_VALUE_TYPE_UNSPECIFIED" | "FIELD_VALUE_TYPE_STRING" | "FIELD_VALUE_TYPE_MONEY" | "FIELD_VALUE_TYPE_TIMESTAMP" | "
|
|
80
|
+
data_type?: "FIELD_VALUE_TYPE_UNSPECIFIED" | "FIELD_VALUE_TYPE_STRING" | "FIELD_VALUE_TYPE_MONEY" | "FIELD_VALUE_TYPE_TIMESTAMP" | "FIELD_VALUE_TYPE_SELECT" | "FIELD_VALUE_TYPE_USER_ID" | "FIELD_VALUE_TYPE_TEMPLATE_ID" | "FIELD_VALUE_TYPE_MULTI_SELECT" | "FIELD_VALUE_TYPE_SITE" | "FIELD_VALUE_TYPE_MULTI_SITE" | "FIELD_VALUE_TYPE_INTEGER" | "FIELD_VALUE_TYPE_LOCATION" | "FIELD_VALUE_TYPE_TIMEZONE" | "FIELD_VALUE_TYPE_CONTACT_DETAILS" | undefined;
|
|
81
81
|
description?: string | undefined;
|
|
82
82
|
select_options?: {
|
|
83
83
|
[x: string]: unknown;
|
|
@@ -34,8 +34,8 @@ declare const SafetycultureUpdateUserFieldOutput: z.ZodObject<{
|
|
|
34
34
|
FIELD_VALUE_TYPE_STRING: "FIELD_VALUE_TYPE_STRING";
|
|
35
35
|
FIELD_VALUE_TYPE_MONEY: "FIELD_VALUE_TYPE_MONEY";
|
|
36
36
|
FIELD_VALUE_TYPE_TIMESTAMP: "FIELD_VALUE_TYPE_TIMESTAMP";
|
|
37
|
-
FIELD_VALUE_TYPE_USER_ID: "FIELD_VALUE_TYPE_USER_ID";
|
|
38
37
|
FIELD_VALUE_TYPE_SELECT: "FIELD_VALUE_TYPE_SELECT";
|
|
38
|
+
FIELD_VALUE_TYPE_USER_ID: "FIELD_VALUE_TYPE_USER_ID";
|
|
39
39
|
FIELD_VALUE_TYPE_TEMPLATE_ID: "FIELD_VALUE_TYPE_TEMPLATE_ID";
|
|
40
40
|
FIELD_VALUE_TYPE_MULTI_SELECT: "FIELD_VALUE_TYPE_MULTI_SELECT";
|
|
41
41
|
FIELD_VALUE_TYPE_SITE: "FIELD_VALUE_TYPE_SITE";
|
|
@@ -34,8 +34,8 @@ declare const SafetycultureUpdateUserFieldOutput: z.ZodObject<{
|
|
|
34
34
|
FIELD_VALUE_TYPE_STRING: "FIELD_VALUE_TYPE_STRING";
|
|
35
35
|
FIELD_VALUE_TYPE_MONEY: "FIELD_VALUE_TYPE_MONEY";
|
|
36
36
|
FIELD_VALUE_TYPE_TIMESTAMP: "FIELD_VALUE_TYPE_TIMESTAMP";
|
|
37
|
-
FIELD_VALUE_TYPE_USER_ID: "FIELD_VALUE_TYPE_USER_ID";
|
|
38
37
|
FIELD_VALUE_TYPE_SELECT: "FIELD_VALUE_TYPE_SELECT";
|
|
38
|
+
FIELD_VALUE_TYPE_USER_ID: "FIELD_VALUE_TYPE_USER_ID";
|
|
39
39
|
FIELD_VALUE_TYPE_TEMPLATE_ID: "FIELD_VALUE_TYPE_TEMPLATE_ID";
|
|
40
40
|
FIELD_VALUE_TYPE_MULTI_SELECT: "FIELD_VALUE_TYPE_MULTI_SELECT";
|
|
41
41
|
FIELD_VALUE_TYPE_SITE: "FIELD_VALUE_TYPE_SITE";
|
package/dist/catalog.cjs
CHANGED
|
@@ -8,7 +8,7 @@ const safetycultureCatalog = {
|
|
|
8
8
|
"logo": "https://logos.composio.dev/api/safetyculture",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
10
|
"oauthScopes": [],
|
|
11
|
-
"credentialFields": { "
|
|
11
|
+
"credentialFields": { "generic_api_key": {
|
|
12
12
|
"label": "SafetyCulture API Token",
|
|
13
13
|
"secret": true,
|
|
14
14
|
"description": "The API token generated from your SafetyCulture account."
|
package/dist/catalog.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const safetycultureCatalog = {\n \"slug\": \"safetyculture\",\n \"name\": \"SafetyCulture\",\n \"description\": \"SafetyCulture (formerly iAuditor) is a workplace operations platform that enables teams to conduct digital inspections, manage audits, track issues, schedule tasks, and maintain compliance through mobile and web applications.\",\n \"category\": \"Forms & Surveys\",\n \"logo\": \"https://logos.composio.dev/api/safetyculture\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"
|
|
1
|
+
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const safetycultureCatalog = {\n \"slug\": \"safetyculture\",\n \"name\": \"SafetyCulture\",\n \"description\": \"SafetyCulture (formerly iAuditor) is a workplace operations platform that enables teams to conduct digital inspections, manage audits, track issues, schedule tasks, and maintain compliance through mobile and web applications.\",\n \"category\": \"Forms & Surveys\",\n \"logo\": \"https://logos.composio.dev/api/safetyculture\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"SafetyCulture API Token\",\n \"secret\": true,\n \"description\": \"The API token generated from your SafetyCulture account.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,uBAAuB;CAClC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,mBAAmB;EACjB,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
|
package/dist/catalog.d.cts
CHANGED
|
@@ -9,7 +9,7 @@ declare const safetycultureCatalog: {
|
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
11
|
readonly credentialFields: {
|
|
12
|
-
readonly
|
|
12
|
+
readonly generic_api_key: {
|
|
13
13
|
readonly label: "SafetyCulture API Token";
|
|
14
14
|
readonly secret: true;
|
|
15
15
|
readonly description: "The API token generated from your SafetyCulture account.";
|
package/dist/catalog.d.mts
CHANGED
|
@@ -9,7 +9,7 @@ declare const safetycultureCatalog: {
|
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
11
|
readonly credentialFields: {
|
|
12
|
-
readonly
|
|
12
|
+
readonly generic_api_key: {
|
|
13
13
|
readonly label: "SafetyCulture API Token";
|
|
14
14
|
readonly secret: true;
|
|
15
15
|
readonly description: "The API token generated from your SafetyCulture account.";
|
package/dist/catalog.mjs
CHANGED
|
@@ -8,7 +8,7 @@ const safetycultureCatalog = {
|
|
|
8
8
|
"logo": "https://logos.composio.dev/api/safetyculture",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
10
|
"oauthScopes": [],
|
|
11
|
-
"credentialFields": { "
|
|
11
|
+
"credentialFields": { "generic_api_key": {
|
|
12
12
|
"label": "SafetyCulture API Token",
|
|
13
13
|
"secret": true,
|
|
14
14
|
"description": "The API token generated from your SafetyCulture account."
|
package/dist/catalog.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const safetycultureCatalog = {\n \"slug\": \"safetyculture\",\n \"name\": \"SafetyCulture\",\n \"description\": \"SafetyCulture (formerly iAuditor) is a workplace operations platform that enables teams to conduct digital inspections, manage audits, track issues, schedule tasks, and maintain compliance through mobile and web applications.\",\n \"category\": \"Forms & Surveys\",\n \"logo\": \"https://logos.composio.dev/api/safetyculture\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"
|
|
1
|
+
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const safetycultureCatalog = {\n \"slug\": \"safetyculture\",\n \"name\": \"SafetyCulture\",\n \"description\": \"SafetyCulture (formerly iAuditor) is a workplace operations platform that enables teams to conduct digital inspections, manage audits, track issues, schedule tasks, and maintain compliance through mobile and web applications.\",\n \"category\": \"Forms & Surveys\",\n \"logo\": \"https://logos.composio.dev/api/safetyculture\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"SafetyCulture API Token\",\n \"secret\": true,\n \"description\": \"The API token generated from your SafetyCulture account.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,uBAAuB;CAClC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,mBAAmB;EACjB,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
|