@credal/actions 0.2.160 → 0.2.162
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/actionMapper.js +7 -1
- package/dist/actions/autogen/templates.d.ts +1 -0
- package/dist/actions/autogen/templates.js +287 -48
- package/dist/actions/autogen/types.d.ts +452 -79
- package/dist/actions/autogen/types.js +76 -13
- package/dist/actions/providers/firecrawl/scrapeUrl.js +0 -1
- package/dist/actions/providers/gitlab/getMergeRequest.d.ts +3 -0
- package/dist/actions/providers/gitlab/getMergeRequest.js +102 -0
- package/dist/actions/providers/googlemail/searchGmailMessages.d.ts +0 -14
- package/dist/actions/providers/googlemail/searchGmailMessages.js +44 -43
- package/dist/actions/providers/jira/utils.js +0 -1
- package/dist/actions/providers/zendesk/addCommentToTicket.js +1 -2
- package/package.json +1 -1
|
@@ -6154,76 +6154,130 @@ export declare const googlemailSearchGmailMessagesParamsSchema: z.ZodObject<{
|
|
|
6154
6154
|
export type googlemailSearchGmailMessagesParamsType = z.infer<typeof googlemailSearchGmailMessagesParamsSchema>;
|
|
6155
6155
|
export declare const googlemailSearchGmailMessagesOutputSchema: z.ZodObject<{
|
|
6156
6156
|
success: z.ZodBoolean;
|
|
6157
|
-
|
|
6158
|
-
|
|
6159
|
-
|
|
6160
|
-
|
|
6161
|
-
|
|
6162
|
-
|
|
6163
|
-
|
|
6164
|
-
|
|
6165
|
-
|
|
6166
|
-
|
|
6167
|
-
|
|
6168
|
-
|
|
6157
|
+
error: z.ZodOptional<z.ZodString>;
|
|
6158
|
+
pageToken: z.ZodOptional<z.ZodString>;
|
|
6159
|
+
results: z.ZodArray<z.ZodObject<{
|
|
6160
|
+
name: z.ZodString;
|
|
6161
|
+
url: z.ZodString;
|
|
6162
|
+
contents: z.ZodObject<{
|
|
6163
|
+
id: z.ZodString;
|
|
6164
|
+
threadId: z.ZodString;
|
|
6165
|
+
snippet: z.ZodOptional<z.ZodString>;
|
|
6166
|
+
labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6167
|
+
internalDate: z.ZodOptional<z.ZodString>;
|
|
6168
|
+
body: z.ZodOptional<z.ZodString>;
|
|
6169
|
+
from: z.ZodOptional<z.ZodString>;
|
|
6170
|
+
to: z.ZodOptional<z.ZodString>;
|
|
6171
|
+
subject: z.ZodOptional<z.ZodString>;
|
|
6172
|
+
cc: z.ZodOptional<z.ZodString>;
|
|
6173
|
+
bcc: z.ZodOptional<z.ZodString>;
|
|
6174
|
+
error: z.ZodOptional<z.ZodString>;
|
|
6175
|
+
}, "strip", z.ZodTypeAny, {
|
|
6176
|
+
id: string;
|
|
6177
|
+
threadId: string;
|
|
6178
|
+
error?: string | undefined;
|
|
6179
|
+
subject?: string | undefined;
|
|
6180
|
+
body?: string | undefined;
|
|
6181
|
+
to?: string | undefined;
|
|
6182
|
+
snippet?: string | undefined;
|
|
6183
|
+
internalDate?: string | undefined;
|
|
6184
|
+
cc?: string | undefined;
|
|
6185
|
+
bcc?: string | undefined;
|
|
6186
|
+
labels?: string[] | undefined;
|
|
6187
|
+
from?: string | undefined;
|
|
6188
|
+
}, {
|
|
6189
|
+
id: string;
|
|
6190
|
+
threadId: string;
|
|
6191
|
+
error?: string | undefined;
|
|
6192
|
+
subject?: string | undefined;
|
|
6193
|
+
body?: string | undefined;
|
|
6194
|
+
to?: string | undefined;
|
|
6195
|
+
snippet?: string | undefined;
|
|
6196
|
+
internalDate?: string | undefined;
|
|
6197
|
+
cc?: string | undefined;
|
|
6198
|
+
bcc?: string | undefined;
|
|
6199
|
+
labels?: string[] | undefined;
|
|
6200
|
+
from?: string | undefined;
|
|
6201
|
+
}>;
|
|
6169
6202
|
}, "strip", z.ZodTypeAny, {
|
|
6170
|
-
|
|
6171
|
-
|
|
6172
|
-
|
|
6173
|
-
|
|
6174
|
-
|
|
6175
|
-
|
|
6176
|
-
|
|
6177
|
-
|
|
6178
|
-
|
|
6179
|
-
|
|
6180
|
-
|
|
6203
|
+
name: string;
|
|
6204
|
+
url: string;
|
|
6205
|
+
contents: {
|
|
6206
|
+
id: string;
|
|
6207
|
+
threadId: string;
|
|
6208
|
+
error?: string | undefined;
|
|
6209
|
+
subject?: string | undefined;
|
|
6210
|
+
body?: string | undefined;
|
|
6211
|
+
to?: string | undefined;
|
|
6212
|
+
snippet?: string | undefined;
|
|
6213
|
+
internalDate?: string | undefined;
|
|
6214
|
+
cc?: string | undefined;
|
|
6215
|
+
bcc?: string | undefined;
|
|
6216
|
+
labels?: string[] | undefined;
|
|
6217
|
+
from?: string | undefined;
|
|
6218
|
+
};
|
|
6181
6219
|
}, {
|
|
6182
|
-
|
|
6183
|
-
|
|
6184
|
-
|
|
6185
|
-
|
|
6186
|
-
|
|
6187
|
-
|
|
6188
|
-
|
|
6189
|
-
|
|
6190
|
-
|
|
6191
|
-
|
|
6192
|
-
|
|
6220
|
+
name: string;
|
|
6221
|
+
url: string;
|
|
6222
|
+
contents: {
|
|
6223
|
+
id: string;
|
|
6224
|
+
threadId: string;
|
|
6225
|
+
error?: string | undefined;
|
|
6226
|
+
subject?: string | undefined;
|
|
6227
|
+
body?: string | undefined;
|
|
6228
|
+
to?: string | undefined;
|
|
6229
|
+
snippet?: string | undefined;
|
|
6230
|
+
internalDate?: string | undefined;
|
|
6231
|
+
cc?: string | undefined;
|
|
6232
|
+
bcc?: string | undefined;
|
|
6233
|
+
labels?: string[] | undefined;
|
|
6234
|
+
from?: string | undefined;
|
|
6235
|
+
};
|
|
6193
6236
|
}>, "many">;
|
|
6194
|
-
error: z.ZodOptional<z.ZodString>;
|
|
6195
6237
|
}, "strip", z.ZodTypeAny, {
|
|
6196
6238
|
success: boolean;
|
|
6197
|
-
|
|
6198
|
-
|
|
6199
|
-
|
|
6200
|
-
|
|
6201
|
-
|
|
6202
|
-
|
|
6203
|
-
|
|
6204
|
-
|
|
6205
|
-
|
|
6206
|
-
|
|
6207
|
-
|
|
6208
|
-
|
|
6239
|
+
results: {
|
|
6240
|
+
name: string;
|
|
6241
|
+
url: string;
|
|
6242
|
+
contents: {
|
|
6243
|
+
id: string;
|
|
6244
|
+
threadId: string;
|
|
6245
|
+
error?: string | undefined;
|
|
6246
|
+
subject?: string | undefined;
|
|
6247
|
+
body?: string | undefined;
|
|
6248
|
+
to?: string | undefined;
|
|
6249
|
+
snippet?: string | undefined;
|
|
6250
|
+
internalDate?: string | undefined;
|
|
6251
|
+
cc?: string | undefined;
|
|
6252
|
+
bcc?: string | undefined;
|
|
6253
|
+
labels?: string[] | undefined;
|
|
6254
|
+
from?: string | undefined;
|
|
6255
|
+
};
|
|
6209
6256
|
}[];
|
|
6210
6257
|
error?: string | undefined;
|
|
6258
|
+
pageToken?: string | undefined;
|
|
6211
6259
|
}, {
|
|
6212
6260
|
success: boolean;
|
|
6213
|
-
|
|
6214
|
-
|
|
6215
|
-
|
|
6216
|
-
|
|
6217
|
-
|
|
6218
|
-
|
|
6219
|
-
|
|
6220
|
-
|
|
6221
|
-
|
|
6222
|
-
|
|
6223
|
-
|
|
6224
|
-
|
|
6261
|
+
results: {
|
|
6262
|
+
name: string;
|
|
6263
|
+
url: string;
|
|
6264
|
+
contents: {
|
|
6265
|
+
id: string;
|
|
6266
|
+
threadId: string;
|
|
6267
|
+
error?: string | undefined;
|
|
6268
|
+
subject?: string | undefined;
|
|
6269
|
+
body?: string | undefined;
|
|
6270
|
+
to?: string | undefined;
|
|
6271
|
+
snippet?: string | undefined;
|
|
6272
|
+
internalDate?: string | undefined;
|
|
6273
|
+
cc?: string | undefined;
|
|
6274
|
+
bcc?: string | undefined;
|
|
6275
|
+
labels?: string[] | undefined;
|
|
6276
|
+
from?: string | undefined;
|
|
6277
|
+
};
|
|
6225
6278
|
}[];
|
|
6226
6279
|
error?: string | undefined;
|
|
6280
|
+
pageToken?: string | undefined;
|
|
6227
6281
|
}>;
|
|
6228
6282
|
export type googlemailSearchGmailMessagesOutputType = z.infer<typeof googlemailSearchGmailMessagesOutputSchema>;
|
|
6229
6283
|
export type googlemailSearchGmailMessagesFunction = ActionFunction<googlemailSearchGmailMessagesParamsType, AuthParamsType, googlemailSearchGmailMessagesOutputType>;
|
|
@@ -9219,6 +9273,11 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
|
|
|
9219
9273
|
} | undefined;
|
|
9220
9274
|
updatedAt?: string | undefined;
|
|
9221
9275
|
htmlUrl?: string | undefined;
|
|
9276
|
+
labels?: {
|
|
9277
|
+
description?: string | null | undefined;
|
|
9278
|
+
name?: string | undefined;
|
|
9279
|
+
color?: string | undefined;
|
|
9280
|
+
}[] | undefined;
|
|
9222
9281
|
draft?: boolean | undefined;
|
|
9223
9282
|
closedAt?: string | null | undefined;
|
|
9224
9283
|
mergedAt?: string | null | undefined;
|
|
@@ -9228,11 +9287,6 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
|
|
|
9228
9287
|
reviewers?: {
|
|
9229
9288
|
login?: string | undefined;
|
|
9230
9289
|
}[] | undefined;
|
|
9231
|
-
labels?: {
|
|
9232
|
-
description?: string | null | undefined;
|
|
9233
|
-
name?: string | undefined;
|
|
9234
|
-
color?: string | undefined;
|
|
9235
|
-
}[] | undefined;
|
|
9236
9290
|
mergeable?: boolean | null | undefined;
|
|
9237
9291
|
mergeableState?: string | null | undefined;
|
|
9238
9292
|
additions?: number | undefined;
|
|
@@ -9280,6 +9334,11 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
|
|
|
9280
9334
|
} | undefined;
|
|
9281
9335
|
updatedAt?: string | undefined;
|
|
9282
9336
|
htmlUrl?: string | undefined;
|
|
9337
|
+
labels?: {
|
|
9338
|
+
description?: string | null | undefined;
|
|
9339
|
+
name?: string | undefined;
|
|
9340
|
+
color?: string | undefined;
|
|
9341
|
+
}[] | undefined;
|
|
9283
9342
|
draft?: boolean | undefined;
|
|
9284
9343
|
closedAt?: string | null | undefined;
|
|
9285
9344
|
mergedAt?: string | null | undefined;
|
|
@@ -9289,11 +9348,6 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
|
|
|
9289
9348
|
reviewers?: {
|
|
9290
9349
|
login?: string | undefined;
|
|
9291
9350
|
}[] | undefined;
|
|
9292
|
-
labels?: {
|
|
9293
|
-
description?: string | null | undefined;
|
|
9294
|
-
name?: string | undefined;
|
|
9295
|
-
color?: string | undefined;
|
|
9296
|
-
}[] | undefined;
|
|
9297
9351
|
mergeable?: boolean | null | undefined;
|
|
9298
9352
|
mergeableState?: string | null | undefined;
|
|
9299
9353
|
additions?: number | undefined;
|
|
@@ -9345,6 +9399,11 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
|
|
|
9345
9399
|
} | undefined;
|
|
9346
9400
|
updatedAt?: string | undefined;
|
|
9347
9401
|
htmlUrl?: string | undefined;
|
|
9402
|
+
labels?: {
|
|
9403
|
+
description?: string | null | undefined;
|
|
9404
|
+
name?: string | undefined;
|
|
9405
|
+
color?: string | undefined;
|
|
9406
|
+
}[] | undefined;
|
|
9348
9407
|
draft?: boolean | undefined;
|
|
9349
9408
|
closedAt?: string | null | undefined;
|
|
9350
9409
|
mergedAt?: string | null | undefined;
|
|
@@ -9354,11 +9413,6 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
|
|
|
9354
9413
|
reviewers?: {
|
|
9355
9414
|
login?: string | undefined;
|
|
9356
9415
|
}[] | undefined;
|
|
9357
|
-
labels?: {
|
|
9358
|
-
description?: string | null | undefined;
|
|
9359
|
-
name?: string | undefined;
|
|
9360
|
-
color?: string | undefined;
|
|
9361
|
-
}[] | undefined;
|
|
9362
9416
|
mergeable?: boolean | null | undefined;
|
|
9363
9417
|
mergeableState?: string | null | undefined;
|
|
9364
9418
|
additions?: number | undefined;
|
|
@@ -9410,6 +9464,11 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
|
|
|
9410
9464
|
} | undefined;
|
|
9411
9465
|
updatedAt?: string | undefined;
|
|
9412
9466
|
htmlUrl?: string | undefined;
|
|
9467
|
+
labels?: {
|
|
9468
|
+
description?: string | null | undefined;
|
|
9469
|
+
name?: string | undefined;
|
|
9470
|
+
color?: string | undefined;
|
|
9471
|
+
}[] | undefined;
|
|
9413
9472
|
draft?: boolean | undefined;
|
|
9414
9473
|
closedAt?: string | null | undefined;
|
|
9415
9474
|
mergedAt?: string | null | undefined;
|
|
@@ -9419,11 +9478,6 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
|
|
|
9419
9478
|
reviewers?: {
|
|
9420
9479
|
login?: string | undefined;
|
|
9421
9480
|
}[] | undefined;
|
|
9422
|
-
labels?: {
|
|
9423
|
-
description?: string | null | undefined;
|
|
9424
|
-
name?: string | undefined;
|
|
9425
|
-
color?: string | undefined;
|
|
9426
|
-
}[] | undefined;
|
|
9427
9481
|
mergeable?: boolean | null | undefined;
|
|
9428
9482
|
mergeableState?: string | null | undefined;
|
|
9429
9483
|
additions?: number | undefined;
|
|
@@ -11029,6 +11083,325 @@ export declare const gitlabGetFileContentOutputSchema: z.ZodObject<{
|
|
|
11029
11083
|
}>;
|
|
11030
11084
|
export type gitlabGetFileContentOutputType = z.infer<typeof gitlabGetFileContentOutputSchema>;
|
|
11031
11085
|
export type gitlabGetFileContentFunction = ActionFunction<gitlabGetFileContentParamsType, AuthParamsType, gitlabGetFileContentOutputType>;
|
|
11086
|
+
export declare const gitlabGetMergeRequestParamsSchema: z.ZodObject<{
|
|
11087
|
+
project_id: z.ZodNumber;
|
|
11088
|
+
mr_iid: z.ZodString;
|
|
11089
|
+
}, "strip", z.ZodTypeAny, {
|
|
11090
|
+
project_id: number;
|
|
11091
|
+
mr_iid: string;
|
|
11092
|
+
}, {
|
|
11093
|
+
project_id: number;
|
|
11094
|
+
mr_iid: string;
|
|
11095
|
+
}>;
|
|
11096
|
+
export type gitlabGetMergeRequestParamsType = z.infer<typeof gitlabGetMergeRequestParamsSchema>;
|
|
11097
|
+
export declare const gitlabGetMergeRequestOutputSchema: z.ZodObject<{
|
|
11098
|
+
success: z.ZodBoolean;
|
|
11099
|
+
error: z.ZodOptional<z.ZodString>;
|
|
11100
|
+
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11101
|
+
metadata: z.ZodObject<{
|
|
11102
|
+
iid: z.ZodNumber;
|
|
11103
|
+
id: z.ZodNumber;
|
|
11104
|
+
project_id: z.ZodNumber;
|
|
11105
|
+
title: z.ZodString;
|
|
11106
|
+
description: z.ZodString;
|
|
11107
|
+
state: z.ZodString;
|
|
11108
|
+
merged: z.ZodBoolean;
|
|
11109
|
+
sha: z.ZodString;
|
|
11110
|
+
web_url: z.ZodString;
|
|
11111
|
+
source_branch: z.ZodString;
|
|
11112
|
+
target_branch: z.ZodString;
|
|
11113
|
+
source_sha: z.ZodString;
|
|
11114
|
+
target_sha: z.ZodOptional<z.ZodString>;
|
|
11115
|
+
diff_refs: z.ZodObject<{
|
|
11116
|
+
base_sha: z.ZodString;
|
|
11117
|
+
head_sha: z.ZodString;
|
|
11118
|
+
}, "strip", z.ZodTypeAny, {
|
|
11119
|
+
base_sha: string;
|
|
11120
|
+
head_sha: string;
|
|
11121
|
+
}, {
|
|
11122
|
+
base_sha: string;
|
|
11123
|
+
head_sha: string;
|
|
11124
|
+
}>;
|
|
11125
|
+
author: z.ZodObject<{
|
|
11126
|
+
id: z.ZodNumber;
|
|
11127
|
+
name: z.ZodString;
|
|
11128
|
+
username: z.ZodString;
|
|
11129
|
+
}, "strip", z.ZodTypeAny, {
|
|
11130
|
+
name: string;
|
|
11131
|
+
id: number;
|
|
11132
|
+
username: string;
|
|
11133
|
+
}, {
|
|
11134
|
+
name: string;
|
|
11135
|
+
id: number;
|
|
11136
|
+
username: string;
|
|
11137
|
+
}>;
|
|
11138
|
+
}, "strip", z.ZodTypeAny, {
|
|
11139
|
+
description: string;
|
|
11140
|
+
id: number;
|
|
11141
|
+
title: string;
|
|
11142
|
+
state: string;
|
|
11143
|
+
merged: boolean;
|
|
11144
|
+
sha: string;
|
|
11145
|
+
author: {
|
|
11146
|
+
name: string;
|
|
11147
|
+
id: number;
|
|
11148
|
+
username: string;
|
|
11149
|
+
};
|
|
11150
|
+
iid: number;
|
|
11151
|
+
project_id: number;
|
|
11152
|
+
web_url: string;
|
|
11153
|
+
source_branch: string;
|
|
11154
|
+
target_branch: string;
|
|
11155
|
+
source_sha: string;
|
|
11156
|
+
diff_refs: {
|
|
11157
|
+
base_sha: string;
|
|
11158
|
+
head_sha: string;
|
|
11159
|
+
};
|
|
11160
|
+
target_sha?: string | undefined;
|
|
11161
|
+
}, {
|
|
11162
|
+
description: string;
|
|
11163
|
+
id: number;
|
|
11164
|
+
title: string;
|
|
11165
|
+
state: string;
|
|
11166
|
+
merged: boolean;
|
|
11167
|
+
sha: string;
|
|
11168
|
+
author: {
|
|
11169
|
+
name: string;
|
|
11170
|
+
id: number;
|
|
11171
|
+
username: string;
|
|
11172
|
+
};
|
|
11173
|
+
iid: number;
|
|
11174
|
+
project_id: number;
|
|
11175
|
+
web_url: string;
|
|
11176
|
+
source_branch: string;
|
|
11177
|
+
target_branch: string;
|
|
11178
|
+
source_sha: string;
|
|
11179
|
+
diff_refs: {
|
|
11180
|
+
base_sha: string;
|
|
11181
|
+
head_sha: string;
|
|
11182
|
+
};
|
|
11183
|
+
target_sha?: string | undefined;
|
|
11184
|
+
}>;
|
|
11185
|
+
changes: z.ZodArray<z.ZodObject<{
|
|
11186
|
+
old_path: z.ZodString;
|
|
11187
|
+
new_path: z.ZodString;
|
|
11188
|
+
new_file: z.ZodBoolean;
|
|
11189
|
+
renamed_file: z.ZodBoolean;
|
|
11190
|
+
deleted_file: z.ZodBoolean;
|
|
11191
|
+
diff: z.ZodString;
|
|
11192
|
+
}, "strip", z.ZodTypeAny, {
|
|
11193
|
+
old_path: string;
|
|
11194
|
+
new_path: string;
|
|
11195
|
+
diff: string;
|
|
11196
|
+
new_file: boolean;
|
|
11197
|
+
renamed_file: boolean;
|
|
11198
|
+
deleted_file: boolean;
|
|
11199
|
+
}, {
|
|
11200
|
+
old_path: string;
|
|
11201
|
+
new_path: string;
|
|
11202
|
+
diff: string;
|
|
11203
|
+
new_file: boolean;
|
|
11204
|
+
renamed_file: boolean;
|
|
11205
|
+
deleted_file: boolean;
|
|
11206
|
+
}>, "many">;
|
|
11207
|
+
commits: z.ZodArray<z.ZodObject<{
|
|
11208
|
+
id: z.ZodString;
|
|
11209
|
+
title: z.ZodString;
|
|
11210
|
+
message: z.ZodString;
|
|
11211
|
+
author_name: z.ZodString;
|
|
11212
|
+
author_email: z.ZodString;
|
|
11213
|
+
created_at: z.ZodString;
|
|
11214
|
+
}, "strip", z.ZodTypeAny, {
|
|
11215
|
+
message: string;
|
|
11216
|
+
id: string;
|
|
11217
|
+
created_at: string;
|
|
11218
|
+
title: string;
|
|
11219
|
+
author_name: string;
|
|
11220
|
+
author_email: string;
|
|
11221
|
+
}, {
|
|
11222
|
+
message: string;
|
|
11223
|
+
id: string;
|
|
11224
|
+
created_at: string;
|
|
11225
|
+
title: string;
|
|
11226
|
+
author_name: string;
|
|
11227
|
+
author_email: string;
|
|
11228
|
+
}>, "many">;
|
|
11229
|
+
}, "strip", z.ZodTypeAny, {
|
|
11230
|
+
commits: {
|
|
11231
|
+
message: string;
|
|
11232
|
+
id: string;
|
|
11233
|
+
created_at: string;
|
|
11234
|
+
title: string;
|
|
11235
|
+
author_name: string;
|
|
11236
|
+
author_email: string;
|
|
11237
|
+
}[];
|
|
11238
|
+
metadata: {
|
|
11239
|
+
description: string;
|
|
11240
|
+
id: number;
|
|
11241
|
+
title: string;
|
|
11242
|
+
state: string;
|
|
11243
|
+
merged: boolean;
|
|
11244
|
+
sha: string;
|
|
11245
|
+
author: {
|
|
11246
|
+
name: string;
|
|
11247
|
+
id: number;
|
|
11248
|
+
username: string;
|
|
11249
|
+
};
|
|
11250
|
+
iid: number;
|
|
11251
|
+
project_id: number;
|
|
11252
|
+
web_url: string;
|
|
11253
|
+
source_branch: string;
|
|
11254
|
+
target_branch: string;
|
|
11255
|
+
source_sha: string;
|
|
11256
|
+
diff_refs: {
|
|
11257
|
+
base_sha: string;
|
|
11258
|
+
head_sha: string;
|
|
11259
|
+
};
|
|
11260
|
+
target_sha?: string | undefined;
|
|
11261
|
+
};
|
|
11262
|
+
changes: {
|
|
11263
|
+
old_path: string;
|
|
11264
|
+
new_path: string;
|
|
11265
|
+
diff: string;
|
|
11266
|
+
new_file: boolean;
|
|
11267
|
+
renamed_file: boolean;
|
|
11268
|
+
deleted_file: boolean;
|
|
11269
|
+
}[];
|
|
11270
|
+
}, {
|
|
11271
|
+
commits: {
|
|
11272
|
+
message: string;
|
|
11273
|
+
id: string;
|
|
11274
|
+
created_at: string;
|
|
11275
|
+
title: string;
|
|
11276
|
+
author_name: string;
|
|
11277
|
+
author_email: string;
|
|
11278
|
+
}[];
|
|
11279
|
+
metadata: {
|
|
11280
|
+
description: string;
|
|
11281
|
+
id: number;
|
|
11282
|
+
title: string;
|
|
11283
|
+
state: string;
|
|
11284
|
+
merged: boolean;
|
|
11285
|
+
sha: string;
|
|
11286
|
+
author: {
|
|
11287
|
+
name: string;
|
|
11288
|
+
id: number;
|
|
11289
|
+
username: string;
|
|
11290
|
+
};
|
|
11291
|
+
iid: number;
|
|
11292
|
+
project_id: number;
|
|
11293
|
+
web_url: string;
|
|
11294
|
+
source_branch: string;
|
|
11295
|
+
target_branch: string;
|
|
11296
|
+
source_sha: string;
|
|
11297
|
+
diff_refs: {
|
|
11298
|
+
base_sha: string;
|
|
11299
|
+
head_sha: string;
|
|
11300
|
+
};
|
|
11301
|
+
target_sha?: string | undefined;
|
|
11302
|
+
};
|
|
11303
|
+
changes: {
|
|
11304
|
+
old_path: string;
|
|
11305
|
+
new_path: string;
|
|
11306
|
+
diff: string;
|
|
11307
|
+
new_file: boolean;
|
|
11308
|
+
renamed_file: boolean;
|
|
11309
|
+
deleted_file: boolean;
|
|
11310
|
+
}[];
|
|
11311
|
+
}>, "many">>;
|
|
11312
|
+
}, "strip", z.ZodTypeAny, {
|
|
11313
|
+
success: boolean;
|
|
11314
|
+
error?: string | undefined;
|
|
11315
|
+
results?: {
|
|
11316
|
+
commits: {
|
|
11317
|
+
message: string;
|
|
11318
|
+
id: string;
|
|
11319
|
+
created_at: string;
|
|
11320
|
+
title: string;
|
|
11321
|
+
author_name: string;
|
|
11322
|
+
author_email: string;
|
|
11323
|
+
}[];
|
|
11324
|
+
metadata: {
|
|
11325
|
+
description: string;
|
|
11326
|
+
id: number;
|
|
11327
|
+
title: string;
|
|
11328
|
+
state: string;
|
|
11329
|
+
merged: boolean;
|
|
11330
|
+
sha: string;
|
|
11331
|
+
author: {
|
|
11332
|
+
name: string;
|
|
11333
|
+
id: number;
|
|
11334
|
+
username: string;
|
|
11335
|
+
};
|
|
11336
|
+
iid: number;
|
|
11337
|
+
project_id: number;
|
|
11338
|
+
web_url: string;
|
|
11339
|
+
source_branch: string;
|
|
11340
|
+
target_branch: string;
|
|
11341
|
+
source_sha: string;
|
|
11342
|
+
diff_refs: {
|
|
11343
|
+
base_sha: string;
|
|
11344
|
+
head_sha: string;
|
|
11345
|
+
};
|
|
11346
|
+
target_sha?: string | undefined;
|
|
11347
|
+
};
|
|
11348
|
+
changes: {
|
|
11349
|
+
old_path: string;
|
|
11350
|
+
new_path: string;
|
|
11351
|
+
diff: string;
|
|
11352
|
+
new_file: boolean;
|
|
11353
|
+
renamed_file: boolean;
|
|
11354
|
+
deleted_file: boolean;
|
|
11355
|
+
}[];
|
|
11356
|
+
}[] | undefined;
|
|
11357
|
+
}, {
|
|
11358
|
+
success: boolean;
|
|
11359
|
+
error?: string | undefined;
|
|
11360
|
+
results?: {
|
|
11361
|
+
commits: {
|
|
11362
|
+
message: string;
|
|
11363
|
+
id: string;
|
|
11364
|
+
created_at: string;
|
|
11365
|
+
title: string;
|
|
11366
|
+
author_name: string;
|
|
11367
|
+
author_email: string;
|
|
11368
|
+
}[];
|
|
11369
|
+
metadata: {
|
|
11370
|
+
description: string;
|
|
11371
|
+
id: number;
|
|
11372
|
+
title: string;
|
|
11373
|
+
state: string;
|
|
11374
|
+
merged: boolean;
|
|
11375
|
+
sha: string;
|
|
11376
|
+
author: {
|
|
11377
|
+
name: string;
|
|
11378
|
+
id: number;
|
|
11379
|
+
username: string;
|
|
11380
|
+
};
|
|
11381
|
+
iid: number;
|
|
11382
|
+
project_id: number;
|
|
11383
|
+
web_url: string;
|
|
11384
|
+
source_branch: string;
|
|
11385
|
+
target_branch: string;
|
|
11386
|
+
source_sha: string;
|
|
11387
|
+
diff_refs: {
|
|
11388
|
+
base_sha: string;
|
|
11389
|
+
head_sha: string;
|
|
11390
|
+
};
|
|
11391
|
+
target_sha?: string | undefined;
|
|
11392
|
+
};
|
|
11393
|
+
changes: {
|
|
11394
|
+
old_path: string;
|
|
11395
|
+
new_path: string;
|
|
11396
|
+
diff: string;
|
|
11397
|
+
new_file: boolean;
|
|
11398
|
+
renamed_file: boolean;
|
|
11399
|
+
deleted_file: boolean;
|
|
11400
|
+
}[];
|
|
11401
|
+
}[] | undefined;
|
|
11402
|
+
}>;
|
|
11403
|
+
export type gitlabGetMergeRequestOutputType = z.infer<typeof gitlabGetMergeRequestOutputSchema>;
|
|
11404
|
+
export type gitlabGetMergeRequestFunction = ActionFunction<gitlabGetMergeRequestParamsType, AuthParamsType, gitlabGetMergeRequestOutputType>;
|
|
11032
11405
|
export declare const gitlabListDirectoryParamsSchema: z.ZodObject<{
|
|
11033
11406
|
group: z.ZodString;
|
|
11034
11407
|
project: z.ZodString;
|