@keystrokehq/rocketlane 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-task.d.cts +2 -2
- package/dist/actions/create-task.d.mts +2 -2
- package/dist/actions/get-all-tasks.d.cts +2 -2
- package/dist/actions/get-all-tasks.d.mts +2 -2
- package/dist/actions/list-project-phases.d.cts +2 -2
- package/dist/actions/list-project-phases.d.mts +2 -2
- package/dist/actions/list-projects.d.cts +3 -3
- package/dist/actions/list-projects.d.mts +3 -3
- package/dist/actions/update-task-by-id.d.cts +2 -2
- package/dist/actions/update-task-by-id.d.mts +2 -2
- 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
|
@@ -3,8 +3,8 @@ import { z } from "zod";
|
|
|
3
3
|
//#region src/actions/create-task.d.ts
|
|
4
4
|
declare const RocketlaneCreateTaskInput: z.ZodObject<{
|
|
5
5
|
type: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
6
|
-
TASK: "TASK";
|
|
7
6
|
MILESTONE: "MILESTONE";
|
|
7
|
+
TASK: "TASK";
|
|
8
8
|
}>>>;
|
|
9
9
|
phase: z.ZodOptional<z.ZodObject<{
|
|
10
10
|
id: z.ZodString;
|
|
@@ -56,7 +56,7 @@ declare const rocketlaneCreateTask: import("@keystrokehq/action").WorkflowAction
|
|
|
56
56
|
id: string;
|
|
57
57
|
};
|
|
58
58
|
taskName: string;
|
|
59
|
-
type?: "
|
|
59
|
+
type?: "MILESTONE" | "TASK" | undefined;
|
|
60
60
|
phase?: {
|
|
61
61
|
id: string;
|
|
62
62
|
} | undefined;
|
|
@@ -3,8 +3,8 @@ import { z } from "zod";
|
|
|
3
3
|
//#region src/actions/create-task.d.ts
|
|
4
4
|
declare const RocketlaneCreateTaskInput: z.ZodObject<{
|
|
5
5
|
type: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
6
|
-
TASK: "TASK";
|
|
7
6
|
MILESTONE: "MILESTONE";
|
|
7
|
+
TASK: "TASK";
|
|
8
8
|
}>>>;
|
|
9
9
|
phase: z.ZodOptional<z.ZodObject<{
|
|
10
10
|
id: z.ZodString;
|
|
@@ -56,7 +56,7 @@ declare const rocketlaneCreateTask: import("@keystrokehq/action").WorkflowAction
|
|
|
56
56
|
id: string;
|
|
57
57
|
};
|
|
58
58
|
taskName: string;
|
|
59
|
-
type?: "
|
|
59
|
+
type?: "MILESTONE" | "TASK" | undefined;
|
|
60
60
|
phase?: {
|
|
61
61
|
id: string;
|
|
62
62
|
} | undefined;
|
|
@@ -11,8 +11,8 @@ declare const RocketlaneGetAllTasksInput: z.ZodObject<{
|
|
|
11
11
|
dueDate: "dueDate";
|
|
12
12
|
taskName: "taskName";
|
|
13
13
|
startDate: "startDate";
|
|
14
|
-
dueDateActual: "dueDateActual";
|
|
15
14
|
startDateActual: "startDateActual";
|
|
15
|
+
dueDateActual: "dueDateActual";
|
|
16
16
|
}>>;
|
|
17
17
|
billable: z.ZodOptional<z.ZodBoolean>;
|
|
18
18
|
phase_id: z.ZodOptional<z.ZodString>;
|
|
@@ -154,7 +154,7 @@ declare const RocketlaneGetAllTasksOutput: z.ZodObject<{
|
|
|
154
154
|
declare const rocketlaneGetAllTasks: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
155
155
|
match?: "any" | "all" | undefined;
|
|
156
156
|
at_risk?: boolean | undefined;
|
|
157
|
-
sort_by?: "dueDate" | "taskName" | "startDate" | "
|
|
157
|
+
sort_by?: "dueDate" | "taskName" | "startDate" | "startDateActual" | "dueDateActual" | undefined;
|
|
158
158
|
billable?: boolean | undefined;
|
|
159
159
|
phase_id?: string | undefined;
|
|
160
160
|
page_size?: number | undefined;
|
|
@@ -11,8 +11,8 @@ declare const RocketlaneGetAllTasksInput: z.ZodObject<{
|
|
|
11
11
|
dueDate: "dueDate";
|
|
12
12
|
taskName: "taskName";
|
|
13
13
|
startDate: "startDate";
|
|
14
|
-
dueDateActual: "dueDateActual";
|
|
15
14
|
startDateActual: "startDateActual";
|
|
15
|
+
dueDateActual: "dueDateActual";
|
|
16
16
|
}>>;
|
|
17
17
|
billable: z.ZodOptional<z.ZodBoolean>;
|
|
18
18
|
phase_id: z.ZodOptional<z.ZodString>;
|
|
@@ -154,7 +154,7 @@ declare const RocketlaneGetAllTasksOutput: z.ZodObject<{
|
|
|
154
154
|
declare const rocketlaneGetAllTasks: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
155
155
|
match?: "any" | "all" | undefined;
|
|
156
156
|
at_risk?: boolean | undefined;
|
|
157
|
-
sort_by?: "dueDate" | "taskName" | "startDate" | "
|
|
157
|
+
sort_by?: "dueDate" | "taskName" | "startDate" | "startDateActual" | "dueDateActual" | undefined;
|
|
158
158
|
billable?: boolean | undefined;
|
|
159
159
|
phase_id?: string | undefined;
|
|
160
160
|
page_size?: number | undefined;
|
|
@@ -10,8 +10,8 @@ declare const RocketlaneListProjectPhasesInput: z.ZodObject<{
|
|
|
10
10
|
phaseName: "phaseName";
|
|
11
11
|
dueDate: "dueDate";
|
|
12
12
|
startDate: "startDate";
|
|
13
|
-
dueDateActual: "dueDateActual";
|
|
14
13
|
startDateActual: "startDateActual";
|
|
14
|
+
dueDateActual: "dueDateActual";
|
|
15
15
|
}>>;
|
|
16
16
|
page_size: z.ZodOptional<z.ZodNumber>;
|
|
17
17
|
page_token: z.ZodOptional<z.ZodString>;
|
|
@@ -99,7 +99,7 @@ declare const RocketlaneListProjectPhasesOutput: z.ZodObject<{
|
|
|
99
99
|
declare const rocketlaneListProjectPhases: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
100
100
|
project_id: number;
|
|
101
101
|
match?: "any" | "all" | undefined;
|
|
102
|
-
sort_by?: "phaseName" | "dueDate" | "startDate" | "
|
|
102
|
+
sort_by?: "phaseName" | "dueDate" | "startDate" | "startDateActual" | "dueDateActual" | undefined;
|
|
103
103
|
page_size?: number | undefined;
|
|
104
104
|
page_token?: string | undefined;
|
|
105
105
|
sort_order?: "ASC" | "DESC" | undefined;
|
|
@@ -10,8 +10,8 @@ declare const RocketlaneListProjectPhasesInput: z.ZodObject<{
|
|
|
10
10
|
phaseName: "phaseName";
|
|
11
11
|
dueDate: "dueDate";
|
|
12
12
|
startDate: "startDate";
|
|
13
|
-
dueDateActual: "dueDateActual";
|
|
14
13
|
startDateActual: "startDateActual";
|
|
14
|
+
dueDateActual: "dueDateActual";
|
|
15
15
|
}>>;
|
|
16
16
|
page_size: z.ZodOptional<z.ZodNumber>;
|
|
17
17
|
page_token: z.ZodOptional<z.ZodString>;
|
|
@@ -99,7 +99,7 @@ declare const RocketlaneListProjectPhasesOutput: z.ZodObject<{
|
|
|
99
99
|
declare const rocketlaneListProjectPhases: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
100
100
|
project_id: number;
|
|
101
101
|
match?: "any" | "all" | undefined;
|
|
102
|
-
sort_by?: "phaseName" | "dueDate" | "startDate" | "
|
|
102
|
+
sort_by?: "phaseName" | "dueDate" | "startDate" | "startDateActual" | "dueDateActual" | undefined;
|
|
103
103
|
page_size?: number | undefined;
|
|
104
104
|
page_token?: string | undefined;
|
|
105
105
|
sort_order?: "ASC" | "DESC" | undefined;
|
|
@@ -6,10 +6,10 @@ declare const RocketlaneListProjectsInput: z.ZodObject<{
|
|
|
6
6
|
dueDate: "dueDate";
|
|
7
7
|
projectName: "projectName";
|
|
8
8
|
startDate: "startDate";
|
|
9
|
+
startDateActual: "startDateActual";
|
|
10
|
+
dueDateActual: "dueDateActual";
|
|
9
11
|
projectFee: "projectFee";
|
|
10
12
|
annualizedRecurringRevenue: "annualizedRecurringRevenue";
|
|
11
|
-
dueDateActual: "dueDateActual";
|
|
12
|
-
startDateActual: "startDateActual";
|
|
13
13
|
}>>;
|
|
14
14
|
page_size: z.ZodOptional<z.ZodNumber>;
|
|
15
15
|
page_token: z.ZodOptional<z.ZodString>;
|
|
@@ -63,7 +63,7 @@ declare const RocketlaneListProjectsOutput: z.ZodObject<{
|
|
|
63
63
|
}, z.core.$loose>>>;
|
|
64
64
|
}, z.core.$loose>;
|
|
65
65
|
declare const rocketlaneListProjects: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
66
|
-
sort_by?: "dueDate" | "projectName" | "startDate" | "
|
|
66
|
+
sort_by?: "dueDate" | "projectName" | "startDate" | "startDateActual" | "dueDateActual" | "projectFee" | "annualizedRecurringRevenue" | undefined;
|
|
67
67
|
page_size?: number | undefined;
|
|
68
68
|
page_token?: string | undefined;
|
|
69
69
|
sort_order?: "ASC" | "DESC" | undefined;
|
|
@@ -6,10 +6,10 @@ declare const RocketlaneListProjectsInput: z.ZodObject<{
|
|
|
6
6
|
dueDate: "dueDate";
|
|
7
7
|
projectName: "projectName";
|
|
8
8
|
startDate: "startDate";
|
|
9
|
+
startDateActual: "startDateActual";
|
|
10
|
+
dueDateActual: "dueDateActual";
|
|
9
11
|
projectFee: "projectFee";
|
|
10
12
|
annualizedRecurringRevenue: "annualizedRecurringRevenue";
|
|
11
|
-
dueDateActual: "dueDateActual";
|
|
12
|
-
startDateActual: "startDateActual";
|
|
13
13
|
}>>;
|
|
14
14
|
page_size: z.ZodOptional<z.ZodNumber>;
|
|
15
15
|
page_token: z.ZodOptional<z.ZodString>;
|
|
@@ -63,7 +63,7 @@ declare const RocketlaneListProjectsOutput: z.ZodObject<{
|
|
|
63
63
|
}, z.core.$loose>>>;
|
|
64
64
|
}, z.core.$loose>;
|
|
65
65
|
declare const rocketlaneListProjects: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
66
|
-
sort_by?: "dueDate" | "projectName" | "startDate" | "
|
|
66
|
+
sort_by?: "dueDate" | "projectName" | "startDate" | "startDateActual" | "dueDateActual" | "projectFee" | "annualizedRecurringRevenue" | undefined;
|
|
67
67
|
page_size?: number | undefined;
|
|
68
68
|
page_token?: string | undefined;
|
|
69
69
|
sort_order?: "ASC" | "DESC" | undefined;
|
|
@@ -3,8 +3,8 @@ import { z } from "zod";
|
|
|
3
3
|
//#region src/actions/update-task-by-id.d.ts
|
|
4
4
|
declare const RocketlaneUpdateTaskByIdInput: z.ZodObject<{
|
|
5
5
|
type: z.ZodOptional<z.ZodEnum<{
|
|
6
|
-
TASK: "TASK";
|
|
7
6
|
MILESTONE: "MILESTONE";
|
|
7
|
+
TASK: "TASK";
|
|
8
8
|
}>>;
|
|
9
9
|
atRisk: z.ZodOptional<z.ZodBoolean>;
|
|
10
10
|
fields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -31,7 +31,7 @@ declare const RocketlaneUpdateTaskByIdOutput: z.ZodObject<{
|
|
|
31
31
|
}, z.core.$loose>;
|
|
32
32
|
declare const rocketlaneUpdateTaskById: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
33
33
|
taskId: string;
|
|
34
|
-
type?: "
|
|
34
|
+
type?: "MILESTONE" | "TASK" | undefined;
|
|
35
35
|
atRisk?: boolean | undefined;
|
|
36
36
|
fields?: {
|
|
37
37
|
[x: string]: unknown;
|
|
@@ -3,8 +3,8 @@ import { z } from "zod";
|
|
|
3
3
|
//#region src/actions/update-task-by-id.d.ts
|
|
4
4
|
declare const RocketlaneUpdateTaskByIdInput: z.ZodObject<{
|
|
5
5
|
type: z.ZodOptional<z.ZodEnum<{
|
|
6
|
-
TASK: "TASK";
|
|
7
6
|
MILESTONE: "MILESTONE";
|
|
7
|
+
TASK: "TASK";
|
|
8
8
|
}>>;
|
|
9
9
|
atRisk: z.ZodOptional<z.ZodBoolean>;
|
|
10
10
|
fields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -31,7 +31,7 @@ declare const RocketlaneUpdateTaskByIdOutput: z.ZodObject<{
|
|
|
31
31
|
}, z.core.$loose>;
|
|
32
32
|
declare const rocketlaneUpdateTaskById: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
33
33
|
taskId: string;
|
|
34
|
-
type?: "
|
|
34
|
+
type?: "MILESTONE" | "TASK" | undefined;
|
|
35
35
|
atRisk?: boolean | undefined;
|
|
36
36
|
fields?: {
|
|
37
37
|
[x: string]: unknown;
|
package/dist/catalog.cjs
CHANGED
|
@@ -8,7 +8,7 @@ const rocketlaneCatalog = {
|
|
|
8
8
|
"logo": "https://logos.composio.dev/api/rocketlane",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
10
|
"oauthScopes": [],
|
|
11
|
-
"credentialFields": { "
|
|
11
|
+
"credentialFields": { "generic_api_key": {
|
|
12
12
|
"label": "API Key",
|
|
13
13
|
"secret": true,
|
|
14
14
|
"description": "The API key generated from the Rocketlane Developer Console, used for authenticating API requests."
|
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 rocketlaneCatalog = {\n \"slug\": \"rocketlane\",\n \"name\": \"Rocketlane\",\n \"description\": \"Collaborative customer onboarding and implementation platform for professional services teams.\",\n \"category\": \"Project Management\",\n \"logo\": \"https://logos.composio.dev/api/rocketlane\",\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 rocketlaneCatalog = {\n \"slug\": \"rocketlane\",\n \"name\": \"Rocketlane\",\n \"description\": \"Collaborative customer onboarding and implementation platform for professional services teams.\",\n \"category\": \"Project Management\",\n \"logo\": \"https://logos.composio.dev/api/rocketlane\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"The API key generated from the Rocketlane Developer Console, used for authenticating API requests.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,oBAAoB;CAC/B,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 rocketlaneCatalog: {
|
|
|
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: "API Key";
|
|
14
14
|
readonly secret: true;
|
|
15
15
|
readonly description: "The API key generated from the Rocketlane Developer Console, used for authenticating API requests.";
|
package/dist/catalog.d.mts
CHANGED
|
@@ -9,7 +9,7 @@ declare const rocketlaneCatalog: {
|
|
|
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: "API Key";
|
|
14
14
|
readonly secret: true;
|
|
15
15
|
readonly description: "The API key generated from the Rocketlane Developer Console, used for authenticating API requests.";
|
package/dist/catalog.mjs
CHANGED
|
@@ -8,7 +8,7 @@ const rocketlaneCatalog = {
|
|
|
8
8
|
"logo": "https://logos.composio.dev/api/rocketlane",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
10
|
"oauthScopes": [],
|
|
11
|
-
"credentialFields": { "
|
|
11
|
+
"credentialFields": { "generic_api_key": {
|
|
12
12
|
"label": "API Key",
|
|
13
13
|
"secret": true,
|
|
14
14
|
"description": "The API key generated from the Rocketlane Developer Console, used for authenticating API requests."
|
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 rocketlaneCatalog = {\n \"slug\": \"rocketlane\",\n \"name\": \"Rocketlane\",\n \"description\": \"Collaborative customer onboarding and implementation platform for professional services teams.\",\n \"category\": \"Project Management\",\n \"logo\": \"https://logos.composio.dev/api/rocketlane\",\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 rocketlaneCatalog = {\n \"slug\": \"rocketlane\",\n \"name\": \"Rocketlane\",\n \"description\": \"Collaborative customer onboarding and implementation platform for professional services teams.\",\n \"category\": \"Project Management\",\n \"logo\": \"https://logos.composio.dev/api/rocketlane\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"The API key generated from the Rocketlane Developer Console, used for authenticating API requests.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,oBAAoB;CAC/B,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"}
|