@keystrokehq/servicem8 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-job-note.d.cts +13 -1
- package/dist/actions/create-job-note.d.mts +13 -1
- package/dist/actions/create-job-payment.d.cts +13 -1
- package/dist/actions/create-job-payment.d.mts +13 -1
- package/dist/actions/create-jobs.d.cts +13 -1
- package/dist/actions/create-jobs.d.mts +13 -1
- package/dist/actions/delete-custom-field.d.cts +13 -1
- package/dist/actions/delete-custom-field.d.mts +13 -1
- package/dist/actions/delete-job-note.d.cts +13 -1
- package/dist/actions/delete-job-note.d.mts +13 -1
- package/dist/actions/delete-job-payment.d.cts +13 -1
- package/dist/actions/delete-job-payment.d.mts +13 -1
- package/dist/actions/list-all-assets.d.cts +13 -1
- package/dist/actions/list-all-assets.d.mts +13 -1
- package/dist/actions/list-all-clients.d.cts +13 -1
- package/dist/actions/list-all-clients.d.mts +13 -1
- package/dist/actions/list-all-document-templates.d.cts +13 -1
- package/dist/actions/list-all-document-templates.d.mts +13 -1
- package/dist/actions/list-all-forms.d.cts +13 -1
- package/dist/actions/list-all-forms.d.mts +13 -1
- package/dist/actions/list-all-job-notes.d.cts +13 -1
- package/dist/actions/list-all-job-notes.d.mts +13 -1
- package/dist/actions/list-all-job-queues.d.cts +13 -1
- package/dist/actions/list-all-job-queues.d.cts.map +1 -1
- package/dist/actions/list-all-job-queues.d.mts +13 -1
- package/dist/actions/list-all-job-queues.d.mts.map +1 -1
- package/dist/actions/list-all-jobs.d.cts +13 -1
- package/dist/actions/list-all-jobs.d.mts +13 -1
- package/dist/actions/list-all-locations.d.cts +13 -1
- package/dist/actions/list-all-locations.d.mts +13 -1
- package/dist/actions/list-all-materials.d.cts +13 -1
- package/dist/actions/list-all-materials.d.mts +13 -1
- package/dist/actions/list-all-tasks.d.cts +13 -1
- package/dist/actions/list-all-tasks.d.mts +13 -1
- package/dist/actions/retrieve-client.d.cts +13 -1
- package/dist/actions/retrieve-client.d.mts +13 -1
- package/dist/actions/retrieve-form.d.cts +13 -1
- package/dist/actions/retrieve-form.d.mts +13 -1
- package/dist/actions/retrieve-job-activity.d.cts +13 -1
- package/dist/actions/retrieve-job-activity.d.mts +13 -1
- package/dist/actions/retrieve-job-note.d.cts +13 -1
- package/dist/actions/retrieve-job-note.d.mts +13 -1
- package/dist/actions/retrieve-job-payment.d.cts +13 -1
- package/dist/actions/retrieve-job-payment.d.mts +13 -1
- package/dist/actions/retrieve-job-queue.d.cts +13 -1
- package/dist/actions/retrieve-job-queue.d.mts +13 -1
- package/dist/actions/retrieve-job.d.cts +13 -1
- package/dist/actions/retrieve-job.d.mts +13 -1
- package/dist/actions/retrieve-location.d.cts +13 -1
- package/dist/actions/retrieve-location.d.mts +13 -1
- package/dist/actions/retrieve-material.d.cts +13 -1
- package/dist/actions/retrieve-material.d.mts +13 -1
- package/dist/actions/retrieve-staff-member.d.cts +13 -1
- package/dist/actions/retrieve-staff-member.d.mts +13 -1
- package/dist/actions/update-job-note.d.cts +13 -1
- package/dist/actions/update-job-note.d.mts +13 -1
- package/dist/actions/update-job-payment.d.cts +13 -1
- package/dist/actions/update-job-payment.d.mts +13 -1
- package/dist/app.cjs +5 -2
- package/dist/app.cjs.map +1 -1
- package/dist/app.d.cts +9 -1
- package/dist/app.d.cts.map +1 -1
- package/dist/app.d.mts +9 -1
- package/dist/app.d.mts.map +1 -1
- package/dist/app.mjs +3 -1
- package/dist/app.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -7,7 +7,19 @@ declare const Servicem8ListAllMaterialsInput: z.ZodObject<{
|
|
|
7
7
|
declare const Servicem8ListAllMaterialsOutput: z.ZodUnknown;
|
|
8
8
|
declare const servicem8ListAllMaterials: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
9
9
|
filter?: string | undefined;
|
|
10
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
10
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
11
|
+
connectionId: z.ZodString;
|
|
12
|
+
entityId: z.ZodString;
|
|
13
|
+
instanceId: z.ZodString;
|
|
14
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
15
|
+
accessToken: z.ZodString;
|
|
16
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
accessToken: z.ZodString;
|
|
22
|
+
}, z.core.$strip>>]>;
|
|
11
23
|
//#endregion
|
|
12
24
|
export { servicem8ListAllMaterials };
|
|
13
25
|
//# sourceMappingURL=list-all-materials.d.cts.map
|
|
@@ -7,7 +7,19 @@ declare const Servicem8ListAllMaterialsInput: z.ZodObject<{
|
|
|
7
7
|
declare const Servicem8ListAllMaterialsOutput: z.ZodUnknown;
|
|
8
8
|
declare const servicem8ListAllMaterials: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
9
9
|
filter?: string | undefined;
|
|
10
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
10
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
11
|
+
connectionId: z.ZodString;
|
|
12
|
+
entityId: z.ZodString;
|
|
13
|
+
instanceId: z.ZodString;
|
|
14
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
15
|
+
accessToken: z.ZodString;
|
|
16
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
accessToken: z.ZodString;
|
|
22
|
+
}, z.core.$strip>>]>;
|
|
11
23
|
//#endregion
|
|
12
24
|
export { servicem8ListAllMaterials };
|
|
13
25
|
//# sourceMappingURL=list-all-materials.d.mts.map
|
|
@@ -23,7 +23,19 @@ declare const Servicem8ListAllTasksOutput: z.ZodObject<{
|
|
|
23
23
|
declare const servicem8ListAllTasks: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
24
24
|
cursor?: string | undefined;
|
|
25
25
|
filter?: string | undefined;
|
|
26
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
26
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
27
|
+
connectionId: z.ZodString;
|
|
28
|
+
entityId: z.ZodString;
|
|
29
|
+
instanceId: z.ZodString;
|
|
30
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
31
|
+
accessToken: z.ZodString;
|
|
32
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
33
|
+
connectionId: z.ZodString;
|
|
34
|
+
entityId: z.ZodString;
|
|
35
|
+
instanceId: z.ZodString;
|
|
36
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
37
|
+
accessToken: z.ZodString;
|
|
38
|
+
}, z.core.$strip>>]>;
|
|
27
39
|
//#endregion
|
|
28
40
|
export { servicem8ListAllTasks };
|
|
29
41
|
//# sourceMappingURL=list-all-tasks.d.cts.map
|
|
@@ -23,7 +23,19 @@ declare const Servicem8ListAllTasksOutput: z.ZodObject<{
|
|
|
23
23
|
declare const servicem8ListAllTasks: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
24
24
|
cursor?: string | undefined;
|
|
25
25
|
filter?: string | undefined;
|
|
26
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
26
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
27
|
+
connectionId: z.ZodString;
|
|
28
|
+
entityId: z.ZodString;
|
|
29
|
+
instanceId: z.ZodString;
|
|
30
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
31
|
+
accessToken: z.ZodString;
|
|
32
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
33
|
+
connectionId: z.ZodString;
|
|
34
|
+
entityId: z.ZodString;
|
|
35
|
+
instanceId: z.ZodString;
|
|
36
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
37
|
+
accessToken: z.ZodString;
|
|
38
|
+
}, z.core.$strip>>]>;
|
|
27
39
|
//#endregion
|
|
28
40
|
export { servicem8ListAllTasks };
|
|
29
41
|
//# sourceMappingURL=list-all-tasks.d.mts.map
|
|
@@ -32,7 +32,19 @@ declare const Servicem8RetrieveClientOutput: z.ZodObject<{
|
|
|
32
32
|
}, z.core.$loose>;
|
|
33
33
|
declare const servicem8RetrieveClient: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
34
34
|
uuid: string;
|
|
35
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
35
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
36
|
+
connectionId: z.ZodString;
|
|
37
|
+
entityId: z.ZodString;
|
|
38
|
+
instanceId: z.ZodString;
|
|
39
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
40
|
+
accessToken: z.ZodString;
|
|
41
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
42
|
+
connectionId: z.ZodString;
|
|
43
|
+
entityId: z.ZodString;
|
|
44
|
+
instanceId: z.ZodString;
|
|
45
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
46
|
+
accessToken: z.ZodString;
|
|
47
|
+
}, z.core.$strip>>]>;
|
|
36
48
|
//#endregion
|
|
37
49
|
export { servicem8RetrieveClient };
|
|
38
50
|
//# sourceMappingURL=retrieve-client.d.cts.map
|
|
@@ -32,7 +32,19 @@ declare const Servicem8RetrieveClientOutput: z.ZodObject<{
|
|
|
32
32
|
}, z.core.$loose>;
|
|
33
33
|
declare const servicem8RetrieveClient: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
34
34
|
uuid: string;
|
|
35
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
35
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
36
|
+
connectionId: z.ZodString;
|
|
37
|
+
entityId: z.ZodString;
|
|
38
|
+
instanceId: z.ZodString;
|
|
39
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
40
|
+
accessToken: z.ZodString;
|
|
41
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
42
|
+
connectionId: z.ZodString;
|
|
43
|
+
entityId: z.ZodString;
|
|
44
|
+
instanceId: z.ZodString;
|
|
45
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
46
|
+
accessToken: z.ZodString;
|
|
47
|
+
}, z.core.$strip>>]>;
|
|
36
48
|
//#endregion
|
|
37
49
|
export { servicem8RetrieveClient };
|
|
38
50
|
//# sourceMappingURL=retrieve-client.d.mts.map
|
|
@@ -13,7 +13,19 @@ declare const Servicem8RetrieveFormOutput: z.ZodObject<{
|
|
|
13
13
|
}, z.core.$loose>;
|
|
14
14
|
declare const servicem8RetrieveForm: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
15
15
|
uuid: string;
|
|
16
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
16
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
accessToken: z.ZodString;
|
|
22
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
23
|
+
connectionId: z.ZodString;
|
|
24
|
+
entityId: z.ZodString;
|
|
25
|
+
instanceId: z.ZodString;
|
|
26
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
27
|
+
accessToken: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>;
|
|
17
29
|
//#endregion
|
|
18
30
|
export { servicem8RetrieveForm };
|
|
19
31
|
//# sourceMappingURL=retrieve-form.d.cts.map
|
|
@@ -13,7 +13,19 @@ declare const Servicem8RetrieveFormOutput: z.ZodObject<{
|
|
|
13
13
|
}, z.core.$loose>;
|
|
14
14
|
declare const servicem8RetrieveForm: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
15
15
|
uuid: string;
|
|
16
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
16
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
accessToken: z.ZodString;
|
|
22
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
23
|
+
connectionId: z.ZodString;
|
|
24
|
+
entityId: z.ZodString;
|
|
25
|
+
instanceId: z.ZodString;
|
|
26
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
27
|
+
accessToken: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>;
|
|
17
29
|
//#endregion
|
|
18
30
|
export { servicem8RetrieveForm };
|
|
19
31
|
//# sourceMappingURL=retrieve-form.d.mts.map
|
|
@@ -26,7 +26,19 @@ declare const Servicem8RetrieveJobActivityOutput: z.ZodObject<{
|
|
|
26
26
|
}, z.core.$loose>;
|
|
27
27
|
declare const servicem8RetrieveJobActivity: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
28
28
|
uuid: string;
|
|
29
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
29
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
30
|
+
connectionId: z.ZodString;
|
|
31
|
+
entityId: z.ZodString;
|
|
32
|
+
instanceId: z.ZodString;
|
|
33
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
34
|
+
accessToken: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
36
|
+
connectionId: z.ZodString;
|
|
37
|
+
entityId: z.ZodString;
|
|
38
|
+
instanceId: z.ZodString;
|
|
39
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
40
|
+
accessToken: z.ZodString;
|
|
41
|
+
}, z.core.$strip>>]>;
|
|
30
42
|
//#endregion
|
|
31
43
|
export { servicem8RetrieveJobActivity };
|
|
32
44
|
//# sourceMappingURL=retrieve-job-activity.d.cts.map
|
|
@@ -26,7 +26,19 @@ declare const Servicem8RetrieveJobActivityOutput: z.ZodObject<{
|
|
|
26
26
|
}, z.core.$loose>;
|
|
27
27
|
declare const servicem8RetrieveJobActivity: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
28
28
|
uuid: string;
|
|
29
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
29
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
30
|
+
connectionId: z.ZodString;
|
|
31
|
+
entityId: z.ZodString;
|
|
32
|
+
instanceId: z.ZodString;
|
|
33
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
34
|
+
accessToken: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
36
|
+
connectionId: z.ZodString;
|
|
37
|
+
entityId: z.ZodString;
|
|
38
|
+
instanceId: z.ZodString;
|
|
39
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
40
|
+
accessToken: z.ZodString;
|
|
41
|
+
}, z.core.$strip>>]>;
|
|
30
42
|
//#endregion
|
|
31
43
|
export { servicem8RetrieveJobActivity };
|
|
32
44
|
//# sourceMappingURL=retrieve-job-activity.d.mts.map
|
|
@@ -16,7 +16,19 @@ declare const Servicem8RetrieveJobNoteOutput: z.ZodObject<{
|
|
|
16
16
|
}, z.core.$loose>;
|
|
17
17
|
declare const servicem8RetrieveJobNote: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
18
18
|
uuid: string;
|
|
19
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
19
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
20
|
+
connectionId: z.ZodString;
|
|
21
|
+
entityId: z.ZodString;
|
|
22
|
+
instanceId: z.ZodString;
|
|
23
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
24
|
+
accessToken: z.ZodString;
|
|
25
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
26
|
+
connectionId: z.ZodString;
|
|
27
|
+
entityId: z.ZodString;
|
|
28
|
+
instanceId: z.ZodString;
|
|
29
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
30
|
+
accessToken: z.ZodString;
|
|
31
|
+
}, z.core.$strip>>]>;
|
|
20
32
|
//#endregion
|
|
21
33
|
export { servicem8RetrieveJobNote };
|
|
22
34
|
//# sourceMappingURL=retrieve-job-note.d.cts.map
|
|
@@ -16,7 +16,19 @@ declare const Servicem8RetrieveJobNoteOutput: z.ZodObject<{
|
|
|
16
16
|
}, z.core.$loose>;
|
|
17
17
|
declare const servicem8RetrieveJobNote: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
18
18
|
uuid: string;
|
|
19
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
19
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
20
|
+
connectionId: z.ZodString;
|
|
21
|
+
entityId: z.ZodString;
|
|
22
|
+
instanceId: z.ZodString;
|
|
23
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
24
|
+
accessToken: z.ZodString;
|
|
25
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
26
|
+
connectionId: z.ZodString;
|
|
27
|
+
entityId: z.ZodString;
|
|
28
|
+
instanceId: z.ZodString;
|
|
29
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
30
|
+
accessToken: z.ZodString;
|
|
31
|
+
}, z.core.$strip>>]>;
|
|
20
32
|
//#endregion
|
|
21
33
|
export { servicem8RetrieveJobNote };
|
|
22
34
|
//# sourceMappingURL=retrieve-job-note.d.mts.map
|
|
@@ -19,7 +19,19 @@ declare const Servicem8RetrieveJobPaymentOutput: z.ZodObject<{
|
|
|
19
19
|
}, z.core.$loose>;
|
|
20
20
|
declare const servicem8RetrieveJobPayment: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
21
21
|
uuid: string;
|
|
22
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
22
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
23
|
+
connectionId: z.ZodString;
|
|
24
|
+
entityId: z.ZodString;
|
|
25
|
+
instanceId: z.ZodString;
|
|
26
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
27
|
+
accessToken: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
29
|
+
connectionId: z.ZodString;
|
|
30
|
+
entityId: z.ZodString;
|
|
31
|
+
instanceId: z.ZodString;
|
|
32
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33
|
+
accessToken: z.ZodString;
|
|
34
|
+
}, z.core.$strip>>]>;
|
|
23
35
|
//#endregion
|
|
24
36
|
export { servicem8RetrieveJobPayment };
|
|
25
37
|
//# sourceMappingURL=retrieve-job-payment.d.cts.map
|
|
@@ -19,7 +19,19 @@ declare const Servicem8RetrieveJobPaymentOutput: z.ZodObject<{
|
|
|
19
19
|
}, z.core.$loose>;
|
|
20
20
|
declare const servicem8RetrieveJobPayment: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
21
21
|
uuid: string;
|
|
22
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
22
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
23
|
+
connectionId: z.ZodString;
|
|
24
|
+
entityId: z.ZodString;
|
|
25
|
+
instanceId: z.ZodString;
|
|
26
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
27
|
+
accessToken: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
29
|
+
connectionId: z.ZodString;
|
|
30
|
+
entityId: z.ZodString;
|
|
31
|
+
instanceId: z.ZodString;
|
|
32
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33
|
+
accessToken: z.ZodString;
|
|
34
|
+
}, z.core.$strip>>]>;
|
|
23
35
|
//#endregion
|
|
24
36
|
export { servicem8RetrieveJobPayment };
|
|
25
37
|
//# sourceMappingURL=retrieve-job-payment.d.mts.map
|
|
@@ -15,7 +15,19 @@ declare const Servicem8RetrieveJobQueueOutput: z.ZodObject<{
|
|
|
15
15
|
}, z.core.$loose>;
|
|
16
16
|
declare const servicem8RetrieveJobQueue: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
17
17
|
uuid: string;
|
|
18
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
18
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
19
|
+
connectionId: z.ZodString;
|
|
20
|
+
entityId: z.ZodString;
|
|
21
|
+
instanceId: z.ZodString;
|
|
22
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23
|
+
accessToken: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
25
|
+
connectionId: z.ZodString;
|
|
26
|
+
entityId: z.ZodString;
|
|
27
|
+
instanceId: z.ZodString;
|
|
28
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29
|
+
accessToken: z.ZodString;
|
|
30
|
+
}, z.core.$strip>>]>;
|
|
19
31
|
//#endregion
|
|
20
32
|
export { servicem8RetrieveJobQueue };
|
|
21
33
|
//# sourceMappingURL=retrieve-job-queue.d.cts.map
|
|
@@ -15,7 +15,19 @@ declare const Servicem8RetrieveJobQueueOutput: z.ZodObject<{
|
|
|
15
15
|
}, z.core.$loose>;
|
|
16
16
|
declare const servicem8RetrieveJobQueue: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
17
17
|
uuid: string;
|
|
18
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
18
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
19
|
+
connectionId: z.ZodString;
|
|
20
|
+
entityId: z.ZodString;
|
|
21
|
+
instanceId: z.ZodString;
|
|
22
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23
|
+
accessToken: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
25
|
+
connectionId: z.ZodString;
|
|
26
|
+
entityId: z.ZodString;
|
|
27
|
+
instanceId: z.ZodString;
|
|
28
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29
|
+
accessToken: z.ZodString;
|
|
30
|
+
}, z.core.$strip>>]>;
|
|
19
31
|
//#endregion
|
|
20
32
|
export { servicem8RetrieveJobQueue };
|
|
21
33
|
//# sourceMappingURL=retrieve-job-queue.d.mts.map
|
|
@@ -59,7 +59,19 @@ declare const Servicem8RetrieveJobOutput: z.ZodObject<{
|
|
|
59
59
|
}, z.core.$loose>;
|
|
60
60
|
declare const servicem8RetrieveJob: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
61
61
|
uuid: string;
|
|
62
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
62
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
63
|
+
connectionId: z.ZodString;
|
|
64
|
+
entityId: z.ZodString;
|
|
65
|
+
instanceId: z.ZodString;
|
|
66
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
67
|
+
accessToken: z.ZodString;
|
|
68
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
69
|
+
connectionId: z.ZodString;
|
|
70
|
+
entityId: z.ZodString;
|
|
71
|
+
instanceId: z.ZodString;
|
|
72
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
73
|
+
accessToken: z.ZodString;
|
|
74
|
+
}, z.core.$strip>>]>;
|
|
63
75
|
//#endregion
|
|
64
76
|
export { servicem8RetrieveJob };
|
|
65
77
|
//# sourceMappingURL=retrieve-job.d.cts.map
|
|
@@ -59,7 +59,19 @@ declare const Servicem8RetrieveJobOutput: z.ZodObject<{
|
|
|
59
59
|
}, z.core.$loose>;
|
|
60
60
|
declare const servicem8RetrieveJob: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
61
61
|
uuid: string;
|
|
62
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
62
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
63
|
+
connectionId: z.ZodString;
|
|
64
|
+
entityId: z.ZodString;
|
|
65
|
+
instanceId: z.ZodString;
|
|
66
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
67
|
+
accessToken: z.ZodString;
|
|
68
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
69
|
+
connectionId: z.ZodString;
|
|
70
|
+
entityId: z.ZodString;
|
|
71
|
+
instanceId: z.ZodString;
|
|
72
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
73
|
+
accessToken: z.ZodString;
|
|
74
|
+
}, z.core.$strip>>]>;
|
|
63
75
|
//#endregion
|
|
64
76
|
export { servicem8RetrieveJob };
|
|
65
77
|
//# sourceMappingURL=retrieve-job.d.mts.map
|
|
@@ -22,7 +22,19 @@ declare const Servicem8RetrieveLocationOutput: z.ZodObject<{
|
|
|
22
22
|
}, z.core.$loose>;
|
|
23
23
|
declare const servicem8RetrieveLocation: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
24
24
|
uuid: string;
|
|
25
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
25
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
26
|
+
connectionId: z.ZodString;
|
|
27
|
+
entityId: z.ZodString;
|
|
28
|
+
instanceId: z.ZodString;
|
|
29
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
30
|
+
accessToken: z.ZodString;
|
|
31
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
32
|
+
connectionId: z.ZodString;
|
|
33
|
+
entityId: z.ZodString;
|
|
34
|
+
instanceId: z.ZodString;
|
|
35
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
36
|
+
accessToken: z.ZodString;
|
|
37
|
+
}, z.core.$strip>>]>;
|
|
26
38
|
//#endregion
|
|
27
39
|
export { servicem8RetrieveLocation };
|
|
28
40
|
//# sourceMappingURL=retrieve-location.d.cts.map
|
|
@@ -22,7 +22,19 @@ declare const Servicem8RetrieveLocationOutput: z.ZodObject<{
|
|
|
22
22
|
}, z.core.$loose>;
|
|
23
23
|
declare const servicem8RetrieveLocation: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
24
24
|
uuid: string;
|
|
25
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
25
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
26
|
+
connectionId: z.ZodString;
|
|
27
|
+
entityId: z.ZodString;
|
|
28
|
+
instanceId: z.ZodString;
|
|
29
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
30
|
+
accessToken: z.ZodString;
|
|
31
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
32
|
+
connectionId: z.ZodString;
|
|
33
|
+
entityId: z.ZodString;
|
|
34
|
+
instanceId: z.ZodString;
|
|
35
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
36
|
+
accessToken: z.ZodString;
|
|
37
|
+
}, z.core.$strip>>]>;
|
|
26
38
|
//#endregion
|
|
27
39
|
export { servicem8RetrieveLocation };
|
|
28
40
|
//# sourceMappingURL=retrieve-location.d.mts.map
|
|
@@ -22,7 +22,19 @@ declare const Servicem8RetrieveMaterialOutput: z.ZodObject<{
|
|
|
22
22
|
}, z.core.$loose>;
|
|
23
23
|
declare const servicem8RetrieveMaterial: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
24
24
|
uuid: string;
|
|
25
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
25
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
26
|
+
connectionId: z.ZodString;
|
|
27
|
+
entityId: z.ZodString;
|
|
28
|
+
instanceId: z.ZodString;
|
|
29
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
30
|
+
accessToken: z.ZodString;
|
|
31
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
32
|
+
connectionId: z.ZodString;
|
|
33
|
+
entityId: z.ZodString;
|
|
34
|
+
instanceId: z.ZodString;
|
|
35
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
36
|
+
accessToken: z.ZodString;
|
|
37
|
+
}, z.core.$strip>>]>;
|
|
26
38
|
//#endregion
|
|
27
39
|
export { servicem8RetrieveMaterial };
|
|
28
40
|
//# sourceMappingURL=retrieve-material.d.cts.map
|
|
@@ -22,7 +22,19 @@ declare const Servicem8RetrieveMaterialOutput: z.ZodObject<{
|
|
|
22
22
|
}, z.core.$loose>;
|
|
23
23
|
declare const servicem8RetrieveMaterial: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
24
24
|
uuid: string;
|
|
25
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
25
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
26
|
+
connectionId: z.ZodString;
|
|
27
|
+
entityId: z.ZodString;
|
|
28
|
+
instanceId: z.ZodString;
|
|
29
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
30
|
+
accessToken: z.ZodString;
|
|
31
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
32
|
+
connectionId: z.ZodString;
|
|
33
|
+
entityId: z.ZodString;
|
|
34
|
+
instanceId: z.ZodString;
|
|
35
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
36
|
+
accessToken: z.ZodString;
|
|
37
|
+
}, z.core.$strip>>]>;
|
|
26
38
|
//#endregion
|
|
27
39
|
export { servicem8RetrieveMaterial };
|
|
28
40
|
//# sourceMappingURL=retrieve-material.d.mts.map
|
|
@@ -29,7 +29,19 @@ declare const Servicem8RetrieveStaffMemberOutput: z.ZodObject<{
|
|
|
29
29
|
}, z.core.$loose>;
|
|
30
30
|
declare const servicem8RetrieveStaffMember: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
31
31
|
uuid: string;
|
|
32
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
32
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
33
|
+
connectionId: z.ZodString;
|
|
34
|
+
entityId: z.ZodString;
|
|
35
|
+
instanceId: z.ZodString;
|
|
36
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
37
|
+
accessToken: z.ZodString;
|
|
38
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
39
|
+
connectionId: z.ZodString;
|
|
40
|
+
entityId: z.ZodString;
|
|
41
|
+
instanceId: z.ZodString;
|
|
42
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
43
|
+
accessToken: z.ZodString;
|
|
44
|
+
}, z.core.$strip>>]>;
|
|
33
45
|
//#endregion
|
|
34
46
|
export { servicem8RetrieveStaffMember };
|
|
35
47
|
//# sourceMappingURL=retrieve-staff-member.d.cts.map
|
|
@@ -29,7 +29,19 @@ declare const Servicem8RetrieveStaffMemberOutput: z.ZodObject<{
|
|
|
29
29
|
}, z.core.$loose>;
|
|
30
30
|
declare const servicem8RetrieveStaffMember: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
31
31
|
uuid: string;
|
|
32
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
32
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
33
|
+
connectionId: z.ZodString;
|
|
34
|
+
entityId: z.ZodString;
|
|
35
|
+
instanceId: z.ZodString;
|
|
36
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
37
|
+
accessToken: z.ZodString;
|
|
38
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
39
|
+
connectionId: z.ZodString;
|
|
40
|
+
entityId: z.ZodString;
|
|
41
|
+
instanceId: z.ZodString;
|
|
42
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
43
|
+
accessToken: z.ZodString;
|
|
44
|
+
}, z.core.$strip>>]>;
|
|
33
45
|
//#endregion
|
|
34
46
|
export { servicem8RetrieveStaffMember };
|
|
35
47
|
//# sourceMappingURL=retrieve-staff-member.d.mts.map
|
|
@@ -21,7 +21,19 @@ declare const servicem8UpdateJobNote: import("@keystrokehq/action").WorkflowActi
|
|
|
21
21
|
note?: string | undefined;
|
|
22
22
|
active?: number | undefined;
|
|
23
23
|
edit_date?: string | undefined;
|
|
24
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
24
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
25
|
+
connectionId: z.ZodString;
|
|
26
|
+
entityId: z.ZodString;
|
|
27
|
+
instanceId: z.ZodString;
|
|
28
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29
|
+
accessToken: z.ZodString;
|
|
30
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
31
|
+
connectionId: z.ZodString;
|
|
32
|
+
entityId: z.ZodString;
|
|
33
|
+
instanceId: z.ZodString;
|
|
34
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
35
|
+
accessToken: z.ZodString;
|
|
36
|
+
}, z.core.$strip>>]>;
|
|
25
37
|
//#endregion
|
|
26
38
|
export { servicem8UpdateJobNote };
|
|
27
39
|
//# sourceMappingURL=update-job-note.d.cts.map
|
|
@@ -21,7 +21,19 @@ declare const servicem8UpdateJobNote: import("@keystrokehq/action").WorkflowActi
|
|
|
21
21
|
note?: string | undefined;
|
|
22
22
|
active?: number | undefined;
|
|
23
23
|
edit_date?: string | undefined;
|
|
24
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
24
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
25
|
+
connectionId: z.ZodString;
|
|
26
|
+
entityId: z.ZodString;
|
|
27
|
+
instanceId: z.ZodString;
|
|
28
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29
|
+
accessToken: z.ZodString;
|
|
30
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
31
|
+
connectionId: z.ZodString;
|
|
32
|
+
entityId: z.ZodString;
|
|
33
|
+
instanceId: z.ZodString;
|
|
34
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
35
|
+
accessToken: z.ZodString;
|
|
36
|
+
}, z.core.$strip>>]>;
|
|
25
37
|
//#endregion
|
|
26
38
|
export { servicem8UpdateJobNote };
|
|
27
39
|
//# sourceMappingURL=update-job-note.d.mts.map
|
|
@@ -33,7 +33,19 @@ declare const servicem8UpdateJobPayment: import("@keystrokehq/action").WorkflowA
|
|
|
33
33
|
is_deposit?: number | undefined;
|
|
34
34
|
attachment_uuid?: string | undefined;
|
|
35
35
|
actioned_by_uuid?: string | undefined;
|
|
36
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
36
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
37
|
+
connectionId: z.ZodString;
|
|
38
|
+
entityId: z.ZodString;
|
|
39
|
+
instanceId: z.ZodString;
|
|
40
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
41
|
+
accessToken: z.ZodString;
|
|
42
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
43
|
+
connectionId: z.ZodString;
|
|
44
|
+
entityId: z.ZodString;
|
|
45
|
+
instanceId: z.ZodString;
|
|
46
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
47
|
+
accessToken: z.ZodString;
|
|
48
|
+
}, z.core.$strip>>]>;
|
|
37
49
|
//#endregion
|
|
38
50
|
export { servicem8UpdateJobPayment };
|
|
39
51
|
//# sourceMappingURL=update-job-payment.d.cts.map
|
|
@@ -33,7 +33,19 @@ declare const servicem8UpdateJobPayment: import("@keystrokehq/action").WorkflowA
|
|
|
33
33
|
is_deposit?: number | undefined;
|
|
34
34
|
attachment_uuid?: string | undefined;
|
|
35
35
|
actioned_by_uuid?: string | undefined;
|
|
36
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
36
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
37
|
+
connectionId: z.ZodString;
|
|
38
|
+
entityId: z.ZodString;
|
|
39
|
+
instanceId: z.ZodString;
|
|
40
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
41
|
+
accessToken: z.ZodString;
|
|
42
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"servicem8", z.ZodObject<{
|
|
43
|
+
connectionId: z.ZodString;
|
|
44
|
+
entityId: z.ZodString;
|
|
45
|
+
instanceId: z.ZodString;
|
|
46
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
47
|
+
accessToken: z.ZodString;
|
|
48
|
+
}, z.core.$strip>>]>;
|
|
37
49
|
//#endregion
|
|
38
50
|
export { servicem8UpdateJobPayment };
|
|
39
51
|
//# sourceMappingURL=update-job-payment.d.mts.map
|
package/dist/app.cjs
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
|
+
let _keystrokehq_keystroke_app = require("@keystrokehq/keystroke/app");
|
|
2
|
+
let zod = require("zod");
|
|
1
3
|
//#region src/app.ts
|
|
2
|
-
const servicem8 = (0,
|
|
4
|
+
const servicem8 = (0, _keystrokehq_keystroke_app.defineApp)({
|
|
3
5
|
slug: "servicem8",
|
|
4
|
-
auth: "keystroke"
|
|
6
|
+
auth: "keystroke",
|
|
7
|
+
credential: { accessToken: zod.z.string() }
|
|
5
8
|
});
|
|
6
9
|
//#endregion
|
|
7
10
|
exports.servicem8 = servicem8;
|