@credal/actions 0.2.105 → 0.2.107
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/README.md +2 -2
- package/dist/actions/actionMapper.js +21 -1
- package/dist/actions/autogen/templates.d.ts +3 -0
- package/dist/actions/autogen/templates.js +542 -0
- package/dist/actions/autogen/types.d.ts +769 -2
- package/dist/actions/autogen/types.js +175 -0
- package/dist/actions/groups.js +1 -11
- package/dist/actions/providers/github/fetchFile.d.ts +3 -0
- package/dist/actions/providers/github/fetchFile.js +131 -0
- package/dist/actions/providers/github/getContents.d.ts +3 -0
- package/dist/actions/providers/github/getContents.js +41 -0
- package/dist/actions/providers/github/getPullRequestDetails.d.ts +3 -0
- package/dist/actions/providers/github/getPullRequestDetails.js +61 -0
- package/dist/actions/providers/github/listCommits.d.ts +3 -0
- package/dist/actions/providers/github/listCommits.js +73 -0
- package/dist/actions/providers/perplexity/perplexityDeepResearch.d.ts +3 -0
- package/dist/actions/providers/perplexity/perplexityDeepResearch.js +62 -0
- package/package.json +1 -1
- package/dist/actions/providers/confluence/updatePage.d.ts +0 -3
- package/dist/actions/providers/confluence/updatePage.js +0 -47
- package/dist/actions/providers/credal/callCopilot.d.ts +0 -3
- package/dist/actions/providers/credal/callCopilot.js +0 -36
- package/dist/actions/providers/jamf/types.d.ts +0 -8
- package/dist/actions/providers/jamf/types.js +0 -7
- package/dist/actions/providers/math/index.d.ts +0 -1
- package/dist/actions/providers/math/index.js +0 -37
- package/dist/actions/providers/slack/index.d.ts +0 -1
- package/dist/actions/providers/slack/index.js +0 -37
- package/dist/actions/providers/slack/listConversations.d.ts +0 -3
- package/dist/actions/providers/slack/listConversations.js +0 -41
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare enum ProviderName {
|
|
3
3
|
GENERIC = "generic",
|
|
4
|
+
PERPLEXITY = "perplexity",
|
|
4
5
|
ASANA = "asana",
|
|
5
6
|
SLACK = "slack",
|
|
6
7
|
MATH = "math",
|
|
@@ -118,6 +119,68 @@ export declare const genericFillTemplateOutputSchema: z.ZodObject<{
|
|
|
118
119
|
}>;
|
|
119
120
|
export type genericFillTemplateOutputType = z.infer<typeof genericFillTemplateOutputSchema>;
|
|
120
121
|
export type genericFillTemplateFunction = ActionFunction<genericFillTemplateParamsType, AuthParamsType, genericFillTemplateOutputType>;
|
|
122
|
+
export declare const perplexityPerplexityDeepResearchParamsSchema: z.ZodObject<{
|
|
123
|
+
query: z.ZodString;
|
|
124
|
+
reasoningEffort: z.ZodOptional<z.ZodString>;
|
|
125
|
+
}, "strip", z.ZodTypeAny, {
|
|
126
|
+
query: string;
|
|
127
|
+
reasoningEffort?: string | undefined;
|
|
128
|
+
}, {
|
|
129
|
+
query: string;
|
|
130
|
+
reasoningEffort?: string | undefined;
|
|
131
|
+
}>;
|
|
132
|
+
export type perplexityPerplexityDeepResearchParamsType = z.infer<typeof perplexityPerplexityDeepResearchParamsSchema>;
|
|
133
|
+
export declare const perplexityPerplexityDeepResearchOutputSchema: z.ZodObject<{
|
|
134
|
+
error: z.ZodOptional<z.ZodString>;
|
|
135
|
+
success: z.ZodBoolean;
|
|
136
|
+
result: z.ZodOptional<z.ZodObject<{
|
|
137
|
+
content: z.ZodOptional<z.ZodString>;
|
|
138
|
+
sources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
139
|
+
title: z.ZodOptional<z.ZodString>;
|
|
140
|
+
url: z.ZodOptional<z.ZodString>;
|
|
141
|
+
}, "strip", z.ZodTypeAny, {
|
|
142
|
+
title?: string | undefined;
|
|
143
|
+
url?: string | undefined;
|
|
144
|
+
}, {
|
|
145
|
+
title?: string | undefined;
|
|
146
|
+
url?: string | undefined;
|
|
147
|
+
}>, "many">>;
|
|
148
|
+
}, "strip", z.ZodTypeAny, {
|
|
149
|
+
content?: string | undefined;
|
|
150
|
+
sources?: {
|
|
151
|
+
title?: string | undefined;
|
|
152
|
+
url?: string | undefined;
|
|
153
|
+
}[] | undefined;
|
|
154
|
+
}, {
|
|
155
|
+
content?: string | undefined;
|
|
156
|
+
sources?: {
|
|
157
|
+
title?: string | undefined;
|
|
158
|
+
url?: string | undefined;
|
|
159
|
+
}[] | undefined;
|
|
160
|
+
}>>;
|
|
161
|
+
}, "strip", z.ZodTypeAny, {
|
|
162
|
+
success: boolean;
|
|
163
|
+
result?: {
|
|
164
|
+
content?: string | undefined;
|
|
165
|
+
sources?: {
|
|
166
|
+
title?: string | undefined;
|
|
167
|
+
url?: string | undefined;
|
|
168
|
+
}[] | undefined;
|
|
169
|
+
} | undefined;
|
|
170
|
+
error?: string | undefined;
|
|
171
|
+
}, {
|
|
172
|
+
success: boolean;
|
|
173
|
+
result?: {
|
|
174
|
+
content?: string | undefined;
|
|
175
|
+
sources?: {
|
|
176
|
+
title?: string | undefined;
|
|
177
|
+
url?: string | undefined;
|
|
178
|
+
}[] | undefined;
|
|
179
|
+
} | undefined;
|
|
180
|
+
error?: string | undefined;
|
|
181
|
+
}>;
|
|
182
|
+
export type perplexityPerplexityDeepResearchOutputType = z.infer<typeof perplexityPerplexityDeepResearchOutputSchema>;
|
|
183
|
+
export type perplexityPerplexityDeepResearchFunction = ActionFunction<perplexityPerplexityDeepResearchParamsType, AuthParamsType, perplexityPerplexityDeepResearchOutputType>;
|
|
121
184
|
export declare const asanaCommentTaskParamsSchema: z.ZodObject<{
|
|
122
185
|
taskId: z.ZodString;
|
|
123
186
|
commentText: z.ZodString;
|
|
@@ -4486,14 +4549,14 @@ export declare const googleOauthQueryGoogleBigQueryParamsSchema: z.ZodObject<{
|
|
|
4486
4549
|
timeoutMs: z.ZodOptional<z.ZodNumber>;
|
|
4487
4550
|
maximumBytesProcessed: z.ZodOptional<z.ZodString>;
|
|
4488
4551
|
}, "strip", z.ZodTypeAny, {
|
|
4489
|
-
projectId: string;
|
|
4490
4552
|
query: string;
|
|
4553
|
+
projectId: string;
|
|
4491
4554
|
maxResults?: number | undefined;
|
|
4492
4555
|
timeoutMs?: number | undefined;
|
|
4493
4556
|
maximumBytesProcessed?: string | undefined;
|
|
4494
4557
|
}, {
|
|
4495
|
-
projectId: string;
|
|
4496
4558
|
query: string;
|
|
4559
|
+
projectId: string;
|
|
4497
4560
|
maxResults?: number | undefined;
|
|
4498
4561
|
timeoutMs?: number | undefined;
|
|
4499
4562
|
maximumBytesProcessed?: string | undefined;
|
|
@@ -6982,6 +7045,442 @@ export declare const githubListPullRequestsOutputSchema: z.ZodObject<{
|
|
|
6982
7045
|
}>;
|
|
6983
7046
|
export type githubListPullRequestsOutputType = z.infer<typeof githubListPullRequestsOutputSchema>;
|
|
6984
7047
|
export type githubListPullRequestsFunction = ActionFunction<githubListPullRequestsParamsType, AuthParamsType, githubListPullRequestsOutputType>;
|
|
7048
|
+
export declare const githubGetPullRequestDetailsParamsSchema: z.ZodObject<{
|
|
7049
|
+
repositoryOwner: z.ZodString;
|
|
7050
|
+
repositoryName: z.ZodString;
|
|
7051
|
+
pullRequestNumber: z.ZodNumber;
|
|
7052
|
+
}, "strip", z.ZodTypeAny, {
|
|
7053
|
+
repositoryOwner: string;
|
|
7054
|
+
repositoryName: string;
|
|
7055
|
+
pullRequestNumber: number;
|
|
7056
|
+
}, {
|
|
7057
|
+
repositoryOwner: string;
|
|
7058
|
+
repositoryName: string;
|
|
7059
|
+
pullRequestNumber: number;
|
|
7060
|
+
}>;
|
|
7061
|
+
export type githubGetPullRequestDetailsParamsType = z.infer<typeof githubGetPullRequestDetailsParamsSchema>;
|
|
7062
|
+
export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
|
|
7063
|
+
success: z.ZodBoolean;
|
|
7064
|
+
error: z.ZodOptional<z.ZodString>;
|
|
7065
|
+
pullRequest: z.ZodOptional<z.ZodObject<{
|
|
7066
|
+
number: z.ZodOptional<z.ZodNumber>;
|
|
7067
|
+
title: z.ZodOptional<z.ZodString>;
|
|
7068
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7069
|
+
state: z.ZodOptional<z.ZodEnum<["open", "closed", "merged"]>>;
|
|
7070
|
+
draft: z.ZodOptional<z.ZodBoolean>;
|
|
7071
|
+
url: z.ZodOptional<z.ZodString>;
|
|
7072
|
+
htmlUrl: z.ZodOptional<z.ZodString>;
|
|
7073
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
7074
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7075
|
+
closedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7076
|
+
mergedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7077
|
+
author: z.ZodOptional<z.ZodObject<{
|
|
7078
|
+
login: z.ZodOptional<z.ZodString>;
|
|
7079
|
+
}, "strip", z.ZodTypeAny, {
|
|
7080
|
+
login?: string | undefined;
|
|
7081
|
+
}, {
|
|
7082
|
+
login?: string | undefined;
|
|
7083
|
+
}>>;
|
|
7084
|
+
assignees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7085
|
+
login: z.ZodOptional<z.ZodString>;
|
|
7086
|
+
}, "strip", z.ZodTypeAny, {
|
|
7087
|
+
login?: string | undefined;
|
|
7088
|
+
}, {
|
|
7089
|
+
login?: string | undefined;
|
|
7090
|
+
}>, "many">>;
|
|
7091
|
+
reviewers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7092
|
+
login: z.ZodOptional<z.ZodString>;
|
|
7093
|
+
}, "strip", z.ZodTypeAny, {
|
|
7094
|
+
login?: string | undefined;
|
|
7095
|
+
}, {
|
|
7096
|
+
login?: string | undefined;
|
|
7097
|
+
}>, "many">>;
|
|
7098
|
+
labels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7099
|
+
name: z.ZodOptional<z.ZodString>;
|
|
7100
|
+
color: z.ZodOptional<z.ZodString>;
|
|
7101
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7102
|
+
}, "strip", z.ZodTypeAny, {
|
|
7103
|
+
description?: string | null | undefined;
|
|
7104
|
+
name?: string | undefined;
|
|
7105
|
+
color?: string | undefined;
|
|
7106
|
+
}, {
|
|
7107
|
+
description?: string | null | undefined;
|
|
7108
|
+
name?: string | undefined;
|
|
7109
|
+
color?: string | undefined;
|
|
7110
|
+
}>, "many">>;
|
|
7111
|
+
head: z.ZodOptional<z.ZodObject<{
|
|
7112
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
7113
|
+
sha: z.ZodOptional<z.ZodString>;
|
|
7114
|
+
repo: z.ZodOptional<z.ZodObject<{
|
|
7115
|
+
name: z.ZodOptional<z.ZodString>;
|
|
7116
|
+
fullName: z.ZodOptional<z.ZodString>;
|
|
7117
|
+
owner: z.ZodOptional<z.ZodObject<{
|
|
7118
|
+
login: z.ZodOptional<z.ZodString>;
|
|
7119
|
+
}, "strip", z.ZodTypeAny, {
|
|
7120
|
+
login?: string | undefined;
|
|
7121
|
+
}, {
|
|
7122
|
+
login?: string | undefined;
|
|
7123
|
+
}>>;
|
|
7124
|
+
}, "strip", z.ZodTypeAny, {
|
|
7125
|
+
name?: string | undefined;
|
|
7126
|
+
fullName?: string | undefined;
|
|
7127
|
+
owner?: {
|
|
7128
|
+
login?: string | undefined;
|
|
7129
|
+
} | undefined;
|
|
7130
|
+
}, {
|
|
7131
|
+
name?: string | undefined;
|
|
7132
|
+
fullName?: string | undefined;
|
|
7133
|
+
owner?: {
|
|
7134
|
+
login?: string | undefined;
|
|
7135
|
+
} | undefined;
|
|
7136
|
+
}>>;
|
|
7137
|
+
}, "strip", z.ZodTypeAny, {
|
|
7138
|
+
sha?: string | undefined;
|
|
7139
|
+
ref?: string | undefined;
|
|
7140
|
+
repo?: {
|
|
7141
|
+
name?: string | undefined;
|
|
7142
|
+
fullName?: string | undefined;
|
|
7143
|
+
owner?: {
|
|
7144
|
+
login?: string | undefined;
|
|
7145
|
+
} | undefined;
|
|
7146
|
+
} | undefined;
|
|
7147
|
+
}, {
|
|
7148
|
+
sha?: string | undefined;
|
|
7149
|
+
ref?: string | undefined;
|
|
7150
|
+
repo?: {
|
|
7151
|
+
name?: string | undefined;
|
|
7152
|
+
fullName?: string | undefined;
|
|
7153
|
+
owner?: {
|
|
7154
|
+
login?: string | undefined;
|
|
7155
|
+
} | undefined;
|
|
7156
|
+
} | undefined;
|
|
7157
|
+
}>>;
|
|
7158
|
+
base: z.ZodOptional<z.ZodObject<{
|
|
7159
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
7160
|
+
sha: z.ZodOptional<z.ZodString>;
|
|
7161
|
+
repo: z.ZodOptional<z.ZodObject<{
|
|
7162
|
+
name: z.ZodOptional<z.ZodString>;
|
|
7163
|
+
fullName: z.ZodOptional<z.ZodString>;
|
|
7164
|
+
owner: z.ZodOptional<z.ZodObject<{
|
|
7165
|
+
login: z.ZodOptional<z.ZodString>;
|
|
7166
|
+
}, "strip", z.ZodTypeAny, {
|
|
7167
|
+
login?: string | undefined;
|
|
7168
|
+
}, {
|
|
7169
|
+
login?: string | undefined;
|
|
7170
|
+
}>>;
|
|
7171
|
+
}, "strip", z.ZodTypeAny, {
|
|
7172
|
+
name?: string | undefined;
|
|
7173
|
+
fullName?: string | undefined;
|
|
7174
|
+
owner?: {
|
|
7175
|
+
login?: string | undefined;
|
|
7176
|
+
} | undefined;
|
|
7177
|
+
}, {
|
|
7178
|
+
name?: string | undefined;
|
|
7179
|
+
fullName?: string | undefined;
|
|
7180
|
+
owner?: {
|
|
7181
|
+
login?: string | undefined;
|
|
7182
|
+
} | undefined;
|
|
7183
|
+
}>>;
|
|
7184
|
+
}, "strip", z.ZodTypeAny, {
|
|
7185
|
+
sha?: string | undefined;
|
|
7186
|
+
ref?: string | undefined;
|
|
7187
|
+
repo?: {
|
|
7188
|
+
name?: string | undefined;
|
|
7189
|
+
fullName?: string | undefined;
|
|
7190
|
+
owner?: {
|
|
7191
|
+
login?: string | undefined;
|
|
7192
|
+
} | undefined;
|
|
7193
|
+
} | undefined;
|
|
7194
|
+
}, {
|
|
7195
|
+
sha?: string | undefined;
|
|
7196
|
+
ref?: string | undefined;
|
|
7197
|
+
repo?: {
|
|
7198
|
+
name?: string | undefined;
|
|
7199
|
+
fullName?: string | undefined;
|
|
7200
|
+
owner?: {
|
|
7201
|
+
login?: string | undefined;
|
|
7202
|
+
} | undefined;
|
|
7203
|
+
} | undefined;
|
|
7204
|
+
}>>;
|
|
7205
|
+
mergeable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
7206
|
+
mergeableState: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7207
|
+
merged: z.ZodOptional<z.ZodBoolean>;
|
|
7208
|
+
commits: z.ZodOptional<z.ZodNumber>;
|
|
7209
|
+
additions: z.ZodOptional<z.ZodNumber>;
|
|
7210
|
+
deletions: z.ZodOptional<z.ZodNumber>;
|
|
7211
|
+
changedFiles: z.ZodOptional<z.ZodNumber>;
|
|
7212
|
+
milestone: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
7213
|
+
title: z.ZodOptional<z.ZodString>;
|
|
7214
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7215
|
+
state: z.ZodOptional<z.ZodString>;
|
|
7216
|
+
dueOn: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7217
|
+
}, "strip", z.ZodTypeAny, {
|
|
7218
|
+
description?: string | null | undefined;
|
|
7219
|
+
title?: string | undefined;
|
|
7220
|
+
state?: string | undefined;
|
|
7221
|
+
dueOn?: string | null | undefined;
|
|
7222
|
+
}, {
|
|
7223
|
+
description?: string | null | undefined;
|
|
7224
|
+
title?: string | undefined;
|
|
7225
|
+
state?: string | undefined;
|
|
7226
|
+
dueOn?: string | null | undefined;
|
|
7227
|
+
}>>>;
|
|
7228
|
+
}, "strip", z.ZodTypeAny, {
|
|
7229
|
+
number?: number | undefined;
|
|
7230
|
+
description?: string | null | undefined;
|
|
7231
|
+
title?: string | undefined;
|
|
7232
|
+
url?: string | undefined;
|
|
7233
|
+
createdAt?: string | undefined;
|
|
7234
|
+
head?: {
|
|
7235
|
+
sha?: string | undefined;
|
|
7236
|
+
ref?: string | undefined;
|
|
7237
|
+
repo?: {
|
|
7238
|
+
name?: string | undefined;
|
|
7239
|
+
fullName?: string | undefined;
|
|
7240
|
+
owner?: {
|
|
7241
|
+
login?: string | undefined;
|
|
7242
|
+
} | undefined;
|
|
7243
|
+
} | undefined;
|
|
7244
|
+
} | undefined;
|
|
7245
|
+
base?: {
|
|
7246
|
+
sha?: string | undefined;
|
|
7247
|
+
ref?: string | undefined;
|
|
7248
|
+
repo?: {
|
|
7249
|
+
name?: string | undefined;
|
|
7250
|
+
fullName?: string | undefined;
|
|
7251
|
+
owner?: {
|
|
7252
|
+
login?: string | undefined;
|
|
7253
|
+
} | undefined;
|
|
7254
|
+
} | undefined;
|
|
7255
|
+
} | undefined;
|
|
7256
|
+
state?: "open" | "closed" | "merged" | undefined;
|
|
7257
|
+
merged?: boolean | undefined;
|
|
7258
|
+
htmlUrl?: string | undefined;
|
|
7259
|
+
commits?: number | undefined;
|
|
7260
|
+
author?: {
|
|
7261
|
+
login?: string | undefined;
|
|
7262
|
+
} | undefined;
|
|
7263
|
+
updatedAt?: string | undefined;
|
|
7264
|
+
draft?: boolean | undefined;
|
|
7265
|
+
closedAt?: string | null | undefined;
|
|
7266
|
+
mergedAt?: string | null | undefined;
|
|
7267
|
+
assignees?: {
|
|
7268
|
+
login?: string | undefined;
|
|
7269
|
+
}[] | undefined;
|
|
7270
|
+
reviewers?: {
|
|
7271
|
+
login?: string | undefined;
|
|
7272
|
+
}[] | undefined;
|
|
7273
|
+
labels?: {
|
|
7274
|
+
description?: string | null | undefined;
|
|
7275
|
+
name?: string | undefined;
|
|
7276
|
+
color?: string | undefined;
|
|
7277
|
+
}[] | undefined;
|
|
7278
|
+
mergeable?: boolean | null | undefined;
|
|
7279
|
+
mergeableState?: string | null | undefined;
|
|
7280
|
+
additions?: number | undefined;
|
|
7281
|
+
deletions?: number | undefined;
|
|
7282
|
+
changedFiles?: number | undefined;
|
|
7283
|
+
milestone?: {
|
|
7284
|
+
description?: string | null | undefined;
|
|
7285
|
+
title?: string | undefined;
|
|
7286
|
+
state?: string | undefined;
|
|
7287
|
+
dueOn?: string | null | undefined;
|
|
7288
|
+
} | null | undefined;
|
|
7289
|
+
}, {
|
|
7290
|
+
number?: number | undefined;
|
|
7291
|
+
description?: string | null | undefined;
|
|
7292
|
+
title?: string | undefined;
|
|
7293
|
+
url?: string | undefined;
|
|
7294
|
+
createdAt?: string | undefined;
|
|
7295
|
+
head?: {
|
|
7296
|
+
sha?: string | undefined;
|
|
7297
|
+
ref?: string | undefined;
|
|
7298
|
+
repo?: {
|
|
7299
|
+
name?: string | undefined;
|
|
7300
|
+
fullName?: string | undefined;
|
|
7301
|
+
owner?: {
|
|
7302
|
+
login?: string | undefined;
|
|
7303
|
+
} | undefined;
|
|
7304
|
+
} | undefined;
|
|
7305
|
+
} | undefined;
|
|
7306
|
+
base?: {
|
|
7307
|
+
sha?: string | undefined;
|
|
7308
|
+
ref?: string | undefined;
|
|
7309
|
+
repo?: {
|
|
7310
|
+
name?: string | undefined;
|
|
7311
|
+
fullName?: string | undefined;
|
|
7312
|
+
owner?: {
|
|
7313
|
+
login?: string | undefined;
|
|
7314
|
+
} | undefined;
|
|
7315
|
+
} | undefined;
|
|
7316
|
+
} | undefined;
|
|
7317
|
+
state?: "open" | "closed" | "merged" | undefined;
|
|
7318
|
+
merged?: boolean | undefined;
|
|
7319
|
+
htmlUrl?: string | undefined;
|
|
7320
|
+
commits?: number | undefined;
|
|
7321
|
+
author?: {
|
|
7322
|
+
login?: string | undefined;
|
|
7323
|
+
} | undefined;
|
|
7324
|
+
updatedAt?: string | undefined;
|
|
7325
|
+
draft?: boolean | undefined;
|
|
7326
|
+
closedAt?: string | null | undefined;
|
|
7327
|
+
mergedAt?: string | null | undefined;
|
|
7328
|
+
assignees?: {
|
|
7329
|
+
login?: string | undefined;
|
|
7330
|
+
}[] | undefined;
|
|
7331
|
+
reviewers?: {
|
|
7332
|
+
login?: string | undefined;
|
|
7333
|
+
}[] | undefined;
|
|
7334
|
+
labels?: {
|
|
7335
|
+
description?: string | null | undefined;
|
|
7336
|
+
name?: string | undefined;
|
|
7337
|
+
color?: string | undefined;
|
|
7338
|
+
}[] | undefined;
|
|
7339
|
+
mergeable?: boolean | null | undefined;
|
|
7340
|
+
mergeableState?: string | null | undefined;
|
|
7341
|
+
additions?: number | undefined;
|
|
7342
|
+
deletions?: number | undefined;
|
|
7343
|
+
changedFiles?: number | undefined;
|
|
7344
|
+
milestone?: {
|
|
7345
|
+
description?: string | null | undefined;
|
|
7346
|
+
title?: string | undefined;
|
|
7347
|
+
state?: string | undefined;
|
|
7348
|
+
dueOn?: string | null | undefined;
|
|
7349
|
+
} | null | undefined;
|
|
7350
|
+
}>>;
|
|
7351
|
+
}, "strip", z.ZodTypeAny, {
|
|
7352
|
+
success: boolean;
|
|
7353
|
+
error?: string | undefined;
|
|
7354
|
+
pullRequest?: {
|
|
7355
|
+
number?: number | undefined;
|
|
7356
|
+
description?: string | null | undefined;
|
|
7357
|
+
title?: string | undefined;
|
|
7358
|
+
url?: string | undefined;
|
|
7359
|
+
createdAt?: string | undefined;
|
|
7360
|
+
head?: {
|
|
7361
|
+
sha?: string | undefined;
|
|
7362
|
+
ref?: string | undefined;
|
|
7363
|
+
repo?: {
|
|
7364
|
+
name?: string | undefined;
|
|
7365
|
+
fullName?: string | undefined;
|
|
7366
|
+
owner?: {
|
|
7367
|
+
login?: string | undefined;
|
|
7368
|
+
} | undefined;
|
|
7369
|
+
} | undefined;
|
|
7370
|
+
} | undefined;
|
|
7371
|
+
base?: {
|
|
7372
|
+
sha?: string | undefined;
|
|
7373
|
+
ref?: string | undefined;
|
|
7374
|
+
repo?: {
|
|
7375
|
+
name?: string | undefined;
|
|
7376
|
+
fullName?: string | undefined;
|
|
7377
|
+
owner?: {
|
|
7378
|
+
login?: string | undefined;
|
|
7379
|
+
} | undefined;
|
|
7380
|
+
} | undefined;
|
|
7381
|
+
} | undefined;
|
|
7382
|
+
state?: "open" | "closed" | "merged" | undefined;
|
|
7383
|
+
merged?: boolean | undefined;
|
|
7384
|
+
htmlUrl?: string | undefined;
|
|
7385
|
+
commits?: number | undefined;
|
|
7386
|
+
author?: {
|
|
7387
|
+
login?: string | undefined;
|
|
7388
|
+
} | undefined;
|
|
7389
|
+
updatedAt?: string | undefined;
|
|
7390
|
+
draft?: boolean | undefined;
|
|
7391
|
+
closedAt?: string | null | undefined;
|
|
7392
|
+
mergedAt?: string | null | undefined;
|
|
7393
|
+
assignees?: {
|
|
7394
|
+
login?: string | undefined;
|
|
7395
|
+
}[] | undefined;
|
|
7396
|
+
reviewers?: {
|
|
7397
|
+
login?: string | undefined;
|
|
7398
|
+
}[] | undefined;
|
|
7399
|
+
labels?: {
|
|
7400
|
+
description?: string | null | undefined;
|
|
7401
|
+
name?: string | undefined;
|
|
7402
|
+
color?: string | undefined;
|
|
7403
|
+
}[] | undefined;
|
|
7404
|
+
mergeable?: boolean | null | undefined;
|
|
7405
|
+
mergeableState?: string | null | undefined;
|
|
7406
|
+
additions?: number | undefined;
|
|
7407
|
+
deletions?: number | undefined;
|
|
7408
|
+
changedFiles?: number | undefined;
|
|
7409
|
+
milestone?: {
|
|
7410
|
+
description?: string | null | undefined;
|
|
7411
|
+
title?: string | undefined;
|
|
7412
|
+
state?: string | undefined;
|
|
7413
|
+
dueOn?: string | null | undefined;
|
|
7414
|
+
} | null | undefined;
|
|
7415
|
+
} | undefined;
|
|
7416
|
+
}, {
|
|
7417
|
+
success: boolean;
|
|
7418
|
+
error?: string | undefined;
|
|
7419
|
+
pullRequest?: {
|
|
7420
|
+
number?: number | undefined;
|
|
7421
|
+
description?: string | null | undefined;
|
|
7422
|
+
title?: string | undefined;
|
|
7423
|
+
url?: string | undefined;
|
|
7424
|
+
createdAt?: string | undefined;
|
|
7425
|
+
head?: {
|
|
7426
|
+
sha?: string | undefined;
|
|
7427
|
+
ref?: string | undefined;
|
|
7428
|
+
repo?: {
|
|
7429
|
+
name?: string | undefined;
|
|
7430
|
+
fullName?: string | undefined;
|
|
7431
|
+
owner?: {
|
|
7432
|
+
login?: string | undefined;
|
|
7433
|
+
} | undefined;
|
|
7434
|
+
} | undefined;
|
|
7435
|
+
} | undefined;
|
|
7436
|
+
base?: {
|
|
7437
|
+
sha?: string | undefined;
|
|
7438
|
+
ref?: string | undefined;
|
|
7439
|
+
repo?: {
|
|
7440
|
+
name?: string | undefined;
|
|
7441
|
+
fullName?: string | undefined;
|
|
7442
|
+
owner?: {
|
|
7443
|
+
login?: string | undefined;
|
|
7444
|
+
} | undefined;
|
|
7445
|
+
} | undefined;
|
|
7446
|
+
} | undefined;
|
|
7447
|
+
state?: "open" | "closed" | "merged" | undefined;
|
|
7448
|
+
merged?: boolean | undefined;
|
|
7449
|
+
htmlUrl?: string | undefined;
|
|
7450
|
+
commits?: number | undefined;
|
|
7451
|
+
author?: {
|
|
7452
|
+
login?: string | undefined;
|
|
7453
|
+
} | undefined;
|
|
7454
|
+
updatedAt?: string | undefined;
|
|
7455
|
+
draft?: boolean | undefined;
|
|
7456
|
+
closedAt?: string | null | undefined;
|
|
7457
|
+
mergedAt?: string | null | undefined;
|
|
7458
|
+
assignees?: {
|
|
7459
|
+
login?: string | undefined;
|
|
7460
|
+
}[] | undefined;
|
|
7461
|
+
reviewers?: {
|
|
7462
|
+
login?: string | undefined;
|
|
7463
|
+
}[] | undefined;
|
|
7464
|
+
labels?: {
|
|
7465
|
+
description?: string | null | undefined;
|
|
7466
|
+
name?: string | undefined;
|
|
7467
|
+
color?: string | undefined;
|
|
7468
|
+
}[] | undefined;
|
|
7469
|
+
mergeable?: boolean | null | undefined;
|
|
7470
|
+
mergeableState?: string | null | undefined;
|
|
7471
|
+
additions?: number | undefined;
|
|
7472
|
+
deletions?: number | undefined;
|
|
7473
|
+
changedFiles?: number | undefined;
|
|
7474
|
+
milestone?: {
|
|
7475
|
+
description?: string | null | undefined;
|
|
7476
|
+
title?: string | undefined;
|
|
7477
|
+
state?: string | undefined;
|
|
7478
|
+
dueOn?: string | null | undefined;
|
|
7479
|
+
} | null | undefined;
|
|
7480
|
+
} | undefined;
|
|
7481
|
+
}>;
|
|
7482
|
+
export type githubGetPullRequestDetailsOutputType = z.infer<typeof githubGetPullRequestDetailsOutputSchema>;
|
|
7483
|
+
export type githubGetPullRequestDetailsFunction = ActionFunction<githubGetPullRequestDetailsParamsType, AuthParamsType, githubGetPullRequestDetailsOutputType>;
|
|
6985
7484
|
export declare const githubGetFileContentParamsSchema: z.ZodObject<{
|
|
6986
7485
|
organization: z.ZodString;
|
|
6987
7486
|
repository: z.ZodString;
|
|
@@ -7631,6 +8130,274 @@ export declare const githubSearchOrganizationOutputSchema: z.ZodObject<{
|
|
|
7631
8130
|
}>;
|
|
7632
8131
|
export type githubSearchOrganizationOutputType = z.infer<typeof githubSearchOrganizationOutputSchema>;
|
|
7633
8132
|
export type githubSearchOrganizationFunction = ActionFunction<githubSearchOrganizationParamsType, AuthParamsType, githubSearchOrganizationOutputType>;
|
|
8133
|
+
export declare const githubListCommitsParamsSchema: z.ZodObject<{
|
|
8134
|
+
repositoryOwner: z.ZodString;
|
|
8135
|
+
repositoryName: z.ZodString;
|
|
8136
|
+
branch: z.ZodOptional<z.ZodString>;
|
|
8137
|
+
since: z.ZodOptional<z.ZodString>;
|
|
8138
|
+
until: z.ZodOptional<z.ZodString>;
|
|
8139
|
+
author: z.ZodOptional<z.ZodString>;
|
|
8140
|
+
perPage: z.ZodOptional<z.ZodNumber>;
|
|
8141
|
+
page: z.ZodOptional<z.ZodNumber>;
|
|
8142
|
+
}, "strip", z.ZodTypeAny, {
|
|
8143
|
+
repositoryOwner: string;
|
|
8144
|
+
repositoryName: string;
|
|
8145
|
+
branch?: string | undefined;
|
|
8146
|
+
author?: string | undefined;
|
|
8147
|
+
since?: string | undefined;
|
|
8148
|
+
until?: string | undefined;
|
|
8149
|
+
perPage?: number | undefined;
|
|
8150
|
+
page?: number | undefined;
|
|
8151
|
+
}, {
|
|
8152
|
+
repositoryOwner: string;
|
|
8153
|
+
repositoryName: string;
|
|
8154
|
+
branch?: string | undefined;
|
|
8155
|
+
author?: string | undefined;
|
|
8156
|
+
since?: string | undefined;
|
|
8157
|
+
until?: string | undefined;
|
|
8158
|
+
perPage?: number | undefined;
|
|
8159
|
+
page?: number | undefined;
|
|
8160
|
+
}>;
|
|
8161
|
+
export type githubListCommitsParamsType = z.infer<typeof githubListCommitsParamsSchema>;
|
|
8162
|
+
export declare const githubListCommitsOutputSchema: z.ZodObject<{
|
|
8163
|
+
success: z.ZodBoolean;
|
|
8164
|
+
error: z.ZodOptional<z.ZodString>;
|
|
8165
|
+
commits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8166
|
+
sha: z.ZodString;
|
|
8167
|
+
url: z.ZodString;
|
|
8168
|
+
htmlUrl: z.ZodString;
|
|
8169
|
+
commit: z.ZodObject<{
|
|
8170
|
+
message: z.ZodString;
|
|
8171
|
+
author: z.ZodObject<{
|
|
8172
|
+
name: z.ZodString;
|
|
8173
|
+
email: z.ZodString;
|
|
8174
|
+
date: z.ZodString;
|
|
8175
|
+
}, "strip", z.ZodTypeAny, {
|
|
8176
|
+
date: string;
|
|
8177
|
+
name: string;
|
|
8178
|
+
email: string;
|
|
8179
|
+
}, {
|
|
8180
|
+
date: string;
|
|
8181
|
+
name: string;
|
|
8182
|
+
email: string;
|
|
8183
|
+
}>;
|
|
8184
|
+
committer: z.ZodObject<{
|
|
8185
|
+
name: z.ZodString;
|
|
8186
|
+
email: z.ZodString;
|
|
8187
|
+
date: z.ZodString;
|
|
8188
|
+
}, "strip", z.ZodTypeAny, {
|
|
8189
|
+
date: string;
|
|
8190
|
+
name: string;
|
|
8191
|
+
email: string;
|
|
8192
|
+
}, {
|
|
8193
|
+
date: string;
|
|
8194
|
+
name: string;
|
|
8195
|
+
email: string;
|
|
8196
|
+
}>;
|
|
8197
|
+
tree: z.ZodObject<{
|
|
8198
|
+
sha: z.ZodString;
|
|
8199
|
+
url: z.ZodString;
|
|
8200
|
+
}, "strip", z.ZodTypeAny, {
|
|
8201
|
+
url: string;
|
|
8202
|
+
sha: string;
|
|
8203
|
+
}, {
|
|
8204
|
+
url: string;
|
|
8205
|
+
sha: string;
|
|
8206
|
+
}>;
|
|
8207
|
+
commentCount: z.ZodOptional<z.ZodNumber>;
|
|
8208
|
+
}, "strip", z.ZodTypeAny, {
|
|
8209
|
+
message: string;
|
|
8210
|
+
author: {
|
|
8211
|
+
date: string;
|
|
8212
|
+
name: string;
|
|
8213
|
+
email: string;
|
|
8214
|
+
};
|
|
8215
|
+
committer: {
|
|
8216
|
+
date: string;
|
|
8217
|
+
name: string;
|
|
8218
|
+
email: string;
|
|
8219
|
+
};
|
|
8220
|
+
tree: {
|
|
8221
|
+
url: string;
|
|
8222
|
+
sha: string;
|
|
8223
|
+
};
|
|
8224
|
+
commentCount?: number | undefined;
|
|
8225
|
+
}, {
|
|
8226
|
+
message: string;
|
|
8227
|
+
author: {
|
|
8228
|
+
date: string;
|
|
8229
|
+
name: string;
|
|
8230
|
+
email: string;
|
|
8231
|
+
};
|
|
8232
|
+
committer: {
|
|
8233
|
+
date: string;
|
|
8234
|
+
name: string;
|
|
8235
|
+
email: string;
|
|
8236
|
+
};
|
|
8237
|
+
tree: {
|
|
8238
|
+
url: string;
|
|
8239
|
+
sha: string;
|
|
8240
|
+
};
|
|
8241
|
+
commentCount?: number | undefined;
|
|
8242
|
+
}>;
|
|
8243
|
+
author: z.ZodNullable<z.ZodObject<{
|
|
8244
|
+
login: z.ZodOptional<z.ZodString>;
|
|
8245
|
+
}, "strip", z.ZodTypeAny, {
|
|
8246
|
+
login?: string | undefined;
|
|
8247
|
+
}, {
|
|
8248
|
+
login?: string | undefined;
|
|
8249
|
+
}>>;
|
|
8250
|
+
parents: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8251
|
+
sha: z.ZodString;
|
|
8252
|
+
url: z.ZodString;
|
|
8253
|
+
htmlUrl: z.ZodString;
|
|
8254
|
+
}, "strip", z.ZodTypeAny, {
|
|
8255
|
+
url: string;
|
|
8256
|
+
htmlUrl: string;
|
|
8257
|
+
sha: string;
|
|
8258
|
+
}, {
|
|
8259
|
+
url: string;
|
|
8260
|
+
htmlUrl: string;
|
|
8261
|
+
sha: string;
|
|
8262
|
+
}>, "many">>;
|
|
8263
|
+
}, "strip", z.ZodTypeAny, {
|
|
8264
|
+
url: string;
|
|
8265
|
+
htmlUrl: string;
|
|
8266
|
+
sha: string;
|
|
8267
|
+
author: {
|
|
8268
|
+
login?: string | undefined;
|
|
8269
|
+
} | null;
|
|
8270
|
+
commit: {
|
|
8271
|
+
message: string;
|
|
8272
|
+
author: {
|
|
8273
|
+
date: string;
|
|
8274
|
+
name: string;
|
|
8275
|
+
email: string;
|
|
8276
|
+
};
|
|
8277
|
+
committer: {
|
|
8278
|
+
date: string;
|
|
8279
|
+
name: string;
|
|
8280
|
+
email: string;
|
|
8281
|
+
};
|
|
8282
|
+
tree: {
|
|
8283
|
+
url: string;
|
|
8284
|
+
sha: string;
|
|
8285
|
+
};
|
|
8286
|
+
commentCount?: number | undefined;
|
|
8287
|
+
};
|
|
8288
|
+
parents?: {
|
|
8289
|
+
url: string;
|
|
8290
|
+
htmlUrl: string;
|
|
8291
|
+
sha: string;
|
|
8292
|
+
}[] | undefined;
|
|
8293
|
+
}, {
|
|
8294
|
+
url: string;
|
|
8295
|
+
htmlUrl: string;
|
|
8296
|
+
sha: string;
|
|
8297
|
+
author: {
|
|
8298
|
+
login?: string | undefined;
|
|
8299
|
+
} | null;
|
|
8300
|
+
commit: {
|
|
8301
|
+
message: string;
|
|
8302
|
+
author: {
|
|
8303
|
+
date: string;
|
|
8304
|
+
name: string;
|
|
8305
|
+
email: string;
|
|
8306
|
+
};
|
|
8307
|
+
committer: {
|
|
8308
|
+
date: string;
|
|
8309
|
+
name: string;
|
|
8310
|
+
email: string;
|
|
8311
|
+
};
|
|
8312
|
+
tree: {
|
|
8313
|
+
url: string;
|
|
8314
|
+
sha: string;
|
|
8315
|
+
};
|
|
8316
|
+
commentCount?: number | undefined;
|
|
8317
|
+
};
|
|
8318
|
+
parents?: {
|
|
8319
|
+
url: string;
|
|
8320
|
+
htmlUrl: string;
|
|
8321
|
+
sha: string;
|
|
8322
|
+
}[] | undefined;
|
|
8323
|
+
}>, "many">>;
|
|
8324
|
+
totalCount: z.ZodOptional<z.ZodNumber>;
|
|
8325
|
+
hasMore: z.ZodOptional<z.ZodBoolean>;
|
|
8326
|
+
}, "strip", z.ZodTypeAny, {
|
|
8327
|
+
success: boolean;
|
|
8328
|
+
error?: string | undefined;
|
|
8329
|
+
commits?: {
|
|
8330
|
+
url: string;
|
|
8331
|
+
htmlUrl: string;
|
|
8332
|
+
sha: string;
|
|
8333
|
+
author: {
|
|
8334
|
+
login?: string | undefined;
|
|
8335
|
+
} | null;
|
|
8336
|
+
commit: {
|
|
8337
|
+
message: string;
|
|
8338
|
+
author: {
|
|
8339
|
+
date: string;
|
|
8340
|
+
name: string;
|
|
8341
|
+
email: string;
|
|
8342
|
+
};
|
|
8343
|
+
committer: {
|
|
8344
|
+
date: string;
|
|
8345
|
+
name: string;
|
|
8346
|
+
email: string;
|
|
8347
|
+
};
|
|
8348
|
+
tree: {
|
|
8349
|
+
url: string;
|
|
8350
|
+
sha: string;
|
|
8351
|
+
};
|
|
8352
|
+
commentCount?: number | undefined;
|
|
8353
|
+
};
|
|
8354
|
+
parents?: {
|
|
8355
|
+
url: string;
|
|
8356
|
+
htmlUrl: string;
|
|
8357
|
+
sha: string;
|
|
8358
|
+
}[] | undefined;
|
|
8359
|
+
}[] | undefined;
|
|
8360
|
+
totalCount?: number | undefined;
|
|
8361
|
+
hasMore?: boolean | undefined;
|
|
8362
|
+
}, {
|
|
8363
|
+
success: boolean;
|
|
8364
|
+
error?: string | undefined;
|
|
8365
|
+
commits?: {
|
|
8366
|
+
url: string;
|
|
8367
|
+
htmlUrl: string;
|
|
8368
|
+
sha: string;
|
|
8369
|
+
author: {
|
|
8370
|
+
login?: string | undefined;
|
|
8371
|
+
} | null;
|
|
8372
|
+
commit: {
|
|
8373
|
+
message: string;
|
|
8374
|
+
author: {
|
|
8375
|
+
date: string;
|
|
8376
|
+
name: string;
|
|
8377
|
+
email: string;
|
|
8378
|
+
};
|
|
8379
|
+
committer: {
|
|
8380
|
+
date: string;
|
|
8381
|
+
name: string;
|
|
8382
|
+
email: string;
|
|
8383
|
+
};
|
|
8384
|
+
tree: {
|
|
8385
|
+
url: string;
|
|
8386
|
+
sha: string;
|
|
8387
|
+
};
|
|
8388
|
+
commentCount?: number | undefined;
|
|
8389
|
+
};
|
|
8390
|
+
parents?: {
|
|
8391
|
+
url: string;
|
|
8392
|
+
htmlUrl: string;
|
|
8393
|
+
sha: string;
|
|
8394
|
+
}[] | undefined;
|
|
8395
|
+
}[] | undefined;
|
|
8396
|
+
totalCount?: number | undefined;
|
|
8397
|
+
hasMore?: boolean | undefined;
|
|
8398
|
+
}>;
|
|
8399
|
+
export type githubListCommitsOutputType = z.infer<typeof githubListCommitsOutputSchema>;
|
|
8400
|
+
export type githubListCommitsFunction = ActionFunction<githubListCommitsParamsType, AuthParamsType, githubListCommitsOutputType>;
|
|
7634
8401
|
export declare const notionSearchByTitleParamsSchema: z.ZodObject<{
|
|
7635
8402
|
query: z.ZodString;
|
|
7636
8403
|
}, "strip", z.ZodTypeAny, {
|