@credal/actions 0.2.174 → 0.2.177
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.d.ts +2 -0
- package/dist/actions/actionMapper.js +125 -7
- package/dist/actions/autogen/templates.d.ts +1 -1
- package/dist/actions/autogen/templates.js +94 -238
- package/dist/actions/autogen/types.d.ts +214 -447
- package/dist/actions/autogen/types.js +10 -64
- package/dist/actions/groups.js +11 -1
- package/dist/actions/providers/confluence/updatePage.d.ts +3 -0
- package/dist/actions/providers/confluence/updatePage.js +47 -0
- package/dist/actions/providers/credal/callCopilot.d.ts +3 -0
- package/dist/actions/providers/credal/callCopilot.js +36 -0
- package/dist/actions/providers/jamf/types.d.ts +8 -0
- package/dist/actions/providers/jamf/types.js +7 -0
- package/dist/actions/providers/math/index.d.ts +1 -0
- package/dist/actions/providers/math/index.js +37 -0
- package/dist/actions/providers/slack/getChannelMembers.d.ts +3 -0
- package/dist/actions/providers/slack/getChannelMembers.js +67 -0
- package/dist/actions/providers/slack/index.d.ts +1 -0
- package/dist/actions/providers/slack/index.js +37 -0
- package/dist/actions/providers/slack/listConversations.d.ts +3 -0
- package/dist/actions/providers/slack/listConversations.js +41 -0
- package/package.json +1 -1
- package/dist/actions/providers/github/fetchFile.d.ts +0 -3
- package/dist/actions/providers/github/fetchFile.js +0 -131
- package/dist/actions/providers/github/getContents.d.ts +0 -3
- package/dist/actions/providers/github/getContents.js +0 -41
|
@@ -915,6 +915,49 @@ export declare const slackGetChannelMessagesOutputSchema: z.ZodObject<{
|
|
|
915
915
|
}>;
|
|
916
916
|
export type slackGetChannelMessagesOutputType = z.infer<typeof slackGetChannelMessagesOutputSchema>;
|
|
917
917
|
export type slackGetChannelMessagesFunction = ActionFunction<slackGetChannelMessagesParamsType, AuthParamsType, slackGetChannelMessagesOutputType>;
|
|
918
|
+
export declare const slackGetChannelMembersParamsSchema: z.ZodObject<{
|
|
919
|
+
channelId: z.ZodOptional<z.ZodString>;
|
|
920
|
+
channelName: z.ZodOptional<z.ZodString>;
|
|
921
|
+
}, "strip", z.ZodTypeAny, {
|
|
922
|
+
channelId?: string | undefined;
|
|
923
|
+
channelName?: string | undefined;
|
|
924
|
+
}, {
|
|
925
|
+
channelId?: string | undefined;
|
|
926
|
+
channelName?: string | undefined;
|
|
927
|
+
}>;
|
|
928
|
+
export type slackGetChannelMembersParamsType = z.infer<typeof slackGetChannelMembersParamsSchema>;
|
|
929
|
+
export declare const slackGetChannelMembersOutputSchema: z.ZodObject<{
|
|
930
|
+
success: z.ZodBoolean;
|
|
931
|
+
members: z.ZodArray<z.ZodObject<{
|
|
932
|
+
id: z.ZodString;
|
|
933
|
+
name: z.ZodString;
|
|
934
|
+
email: z.ZodString;
|
|
935
|
+
}, "strip", z.ZodTypeAny, {
|
|
936
|
+
name: string;
|
|
937
|
+
id: string;
|
|
938
|
+
email: string;
|
|
939
|
+
}, {
|
|
940
|
+
name: string;
|
|
941
|
+
id: string;
|
|
942
|
+
email: string;
|
|
943
|
+
}>, "many">;
|
|
944
|
+
}, "strip", z.ZodTypeAny, {
|
|
945
|
+
members: {
|
|
946
|
+
name: string;
|
|
947
|
+
id: string;
|
|
948
|
+
email: string;
|
|
949
|
+
}[];
|
|
950
|
+
success: boolean;
|
|
951
|
+
}, {
|
|
952
|
+
members: {
|
|
953
|
+
name: string;
|
|
954
|
+
id: string;
|
|
955
|
+
email: string;
|
|
956
|
+
}[];
|
|
957
|
+
success: boolean;
|
|
958
|
+
}>;
|
|
959
|
+
export type slackGetChannelMembersOutputType = z.infer<typeof slackGetChannelMembersOutputSchema>;
|
|
960
|
+
export type slackGetChannelMembersFunction = ActionFunction<slackGetChannelMembersParamsType, AuthParamsType, slackGetChannelMembersOutputType>;
|
|
918
961
|
export declare const slackUserSearchSlackParamsSchema: z.ZodObject<{
|
|
919
962
|
emails: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
920
963
|
channel: z.ZodOptional<z.ZodString>;
|
|
@@ -7859,18 +7902,18 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
|
|
|
7859
7902
|
} | undefined;
|
|
7860
7903
|
state?: "open" | "closed" | "merged" | undefined;
|
|
7861
7904
|
merged?: boolean | undefined;
|
|
7862
|
-
commits?: number | undefined;
|
|
7863
7905
|
author?: {
|
|
7864
7906
|
login?: string | undefined;
|
|
7865
7907
|
} | undefined;
|
|
7866
|
-
|
|
7867
|
-
updatedAt?: string | undefined;
|
|
7908
|
+
commits?: number | undefined;
|
|
7868
7909
|
htmlUrl?: string | undefined;
|
|
7869
7910
|
labels?: {
|
|
7870
7911
|
description?: string | null | undefined;
|
|
7871
7912
|
name?: string | undefined;
|
|
7872
7913
|
color?: string | undefined;
|
|
7873
7914
|
}[] | undefined;
|
|
7915
|
+
createdAt?: string | undefined;
|
|
7916
|
+
updatedAt?: string | undefined;
|
|
7874
7917
|
draft?: boolean | undefined;
|
|
7875
7918
|
closedAt?: string | null | undefined;
|
|
7876
7919
|
mergedAt?: string | null | undefined;
|
|
@@ -7920,18 +7963,18 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
|
|
|
7920
7963
|
} | undefined;
|
|
7921
7964
|
state?: "open" | "closed" | "merged" | undefined;
|
|
7922
7965
|
merged?: boolean | undefined;
|
|
7923
|
-
commits?: number | undefined;
|
|
7924
7966
|
author?: {
|
|
7925
7967
|
login?: string | undefined;
|
|
7926
7968
|
} | undefined;
|
|
7927
|
-
|
|
7928
|
-
updatedAt?: string | undefined;
|
|
7969
|
+
commits?: number | undefined;
|
|
7929
7970
|
htmlUrl?: string | undefined;
|
|
7930
7971
|
labels?: {
|
|
7931
7972
|
description?: string | null | undefined;
|
|
7932
7973
|
name?: string | undefined;
|
|
7933
7974
|
color?: string | undefined;
|
|
7934
7975
|
}[] | undefined;
|
|
7976
|
+
createdAt?: string | undefined;
|
|
7977
|
+
updatedAt?: string | undefined;
|
|
7935
7978
|
draft?: boolean | undefined;
|
|
7936
7979
|
closedAt?: string | null | undefined;
|
|
7937
7980
|
mergedAt?: string | null | undefined;
|
|
@@ -7985,18 +8028,18 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
|
|
|
7985
8028
|
} | undefined;
|
|
7986
8029
|
state?: "open" | "closed" | "merged" | undefined;
|
|
7987
8030
|
merged?: boolean | undefined;
|
|
7988
|
-
commits?: number | undefined;
|
|
7989
8031
|
author?: {
|
|
7990
8032
|
login?: string | undefined;
|
|
7991
8033
|
} | undefined;
|
|
7992
|
-
|
|
7993
|
-
updatedAt?: string | undefined;
|
|
8034
|
+
commits?: number | undefined;
|
|
7994
8035
|
htmlUrl?: string | undefined;
|
|
7995
8036
|
labels?: {
|
|
7996
8037
|
description?: string | null | undefined;
|
|
7997
8038
|
name?: string | undefined;
|
|
7998
8039
|
color?: string | undefined;
|
|
7999
8040
|
}[] | undefined;
|
|
8041
|
+
createdAt?: string | undefined;
|
|
8042
|
+
updatedAt?: string | undefined;
|
|
8000
8043
|
draft?: boolean | undefined;
|
|
8001
8044
|
closedAt?: string | null | undefined;
|
|
8002
8045
|
mergedAt?: string | null | undefined;
|
|
@@ -8050,18 +8093,18 @@ export declare const githubGetPullRequestDetailsOutputSchema: z.ZodObject<{
|
|
|
8050
8093
|
} | undefined;
|
|
8051
8094
|
state?: "open" | "closed" | "merged" | undefined;
|
|
8052
8095
|
merged?: boolean | undefined;
|
|
8053
|
-
commits?: number | undefined;
|
|
8054
8096
|
author?: {
|
|
8055
8097
|
login?: string | undefined;
|
|
8056
8098
|
} | undefined;
|
|
8057
|
-
|
|
8058
|
-
updatedAt?: string | undefined;
|
|
8099
|
+
commits?: number | undefined;
|
|
8059
8100
|
htmlUrl?: string | undefined;
|
|
8060
8101
|
labels?: {
|
|
8061
8102
|
description?: string | null | undefined;
|
|
8062
8103
|
name?: string | undefined;
|
|
8063
8104
|
color?: string | undefined;
|
|
8064
8105
|
}[] | undefined;
|
|
8106
|
+
createdAt?: string | undefined;
|
|
8107
|
+
updatedAt?: string | undefined;
|
|
8065
8108
|
draft?: boolean | undefined;
|
|
8066
8109
|
closedAt?: string | null | undefined;
|
|
8067
8110
|
mergedAt?: string | null | undefined;
|
|
@@ -8247,282 +8290,6 @@ export declare const githubListDirectoryOutputSchema: z.ZodObject<{
|
|
|
8247
8290
|
}>;
|
|
8248
8291
|
export type githubListDirectoryOutputType = z.infer<typeof githubListDirectoryOutputSchema>;
|
|
8249
8292
|
export type githubListDirectoryFunction = ActionFunction<githubListDirectoryParamsType, AuthParamsType, githubListDirectoryOutputType>;
|
|
8250
|
-
export declare const githubSearchRepositoryParamsSchema: z.ZodObject<{
|
|
8251
|
-
organization: z.ZodString;
|
|
8252
|
-
repository: z.ZodString;
|
|
8253
|
-
query: z.ZodString;
|
|
8254
|
-
}, "strip", z.ZodTypeAny, {
|
|
8255
|
-
query: string;
|
|
8256
|
-
organization: string;
|
|
8257
|
-
repository: string;
|
|
8258
|
-
}, {
|
|
8259
|
-
query: string;
|
|
8260
|
-
organization: string;
|
|
8261
|
-
repository: string;
|
|
8262
|
-
}>;
|
|
8263
|
-
export type githubSearchRepositoryParamsType = z.infer<typeof githubSearchRepositoryParamsSchema>;
|
|
8264
|
-
export declare const githubSearchRepositoryOutputSchema: z.ZodObject<{
|
|
8265
|
-
code: z.ZodArray<z.ZodObject<{
|
|
8266
|
-
name: z.ZodString;
|
|
8267
|
-
path: z.ZodString;
|
|
8268
|
-
sha: z.ZodString;
|
|
8269
|
-
url: z.ZodString;
|
|
8270
|
-
score: z.ZodNumber;
|
|
8271
|
-
textMatches: z.ZodArray<z.ZodObject<{
|
|
8272
|
-
object_url: z.ZodOptional<z.ZodString>;
|
|
8273
|
-
object_type: z.ZodOptional<z.ZodString>;
|
|
8274
|
-
fragment: z.ZodOptional<z.ZodString>;
|
|
8275
|
-
matches: z.ZodArray<z.ZodObject<{
|
|
8276
|
-
text: z.ZodOptional<z.ZodString>;
|
|
8277
|
-
indices: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
8278
|
-
}, "strip", z.ZodTypeAny, {
|
|
8279
|
-
text?: string | undefined;
|
|
8280
|
-
indices?: number[] | undefined;
|
|
8281
|
-
}, {
|
|
8282
|
-
text?: string | undefined;
|
|
8283
|
-
indices?: number[] | undefined;
|
|
8284
|
-
}>, "many">;
|
|
8285
|
-
}, "strip", z.ZodTypeAny, {
|
|
8286
|
-
matches: {
|
|
8287
|
-
text?: string | undefined;
|
|
8288
|
-
indices?: number[] | undefined;
|
|
8289
|
-
}[];
|
|
8290
|
-
object_url?: string | undefined;
|
|
8291
|
-
object_type?: string | undefined;
|
|
8292
|
-
fragment?: string | undefined;
|
|
8293
|
-
}, {
|
|
8294
|
-
matches: {
|
|
8295
|
-
text?: string | undefined;
|
|
8296
|
-
indices?: number[] | undefined;
|
|
8297
|
-
}[];
|
|
8298
|
-
object_url?: string | undefined;
|
|
8299
|
-
object_type?: string | undefined;
|
|
8300
|
-
fragment?: string | undefined;
|
|
8301
|
-
}>, "many">;
|
|
8302
|
-
}, "strip", z.ZodTypeAny, {
|
|
8303
|
-
path: string;
|
|
8304
|
-
name: string;
|
|
8305
|
-
url: string;
|
|
8306
|
-
sha: string;
|
|
8307
|
-
score: number;
|
|
8308
|
-
textMatches: {
|
|
8309
|
-
matches: {
|
|
8310
|
-
text?: string | undefined;
|
|
8311
|
-
indices?: number[] | undefined;
|
|
8312
|
-
}[];
|
|
8313
|
-
object_url?: string | undefined;
|
|
8314
|
-
object_type?: string | undefined;
|
|
8315
|
-
fragment?: string | undefined;
|
|
8316
|
-
}[];
|
|
8317
|
-
}, {
|
|
8318
|
-
path: string;
|
|
8319
|
-
name: string;
|
|
8320
|
-
url: string;
|
|
8321
|
-
sha: string;
|
|
8322
|
-
score: number;
|
|
8323
|
-
textMatches: {
|
|
8324
|
-
matches: {
|
|
8325
|
-
text?: string | undefined;
|
|
8326
|
-
indices?: number[] | undefined;
|
|
8327
|
-
}[];
|
|
8328
|
-
object_url?: string | undefined;
|
|
8329
|
-
object_type?: string | undefined;
|
|
8330
|
-
fragment?: string | undefined;
|
|
8331
|
-
}[];
|
|
8332
|
-
}>, "many">;
|
|
8333
|
-
commits: z.ZodArray<z.ZodObject<{
|
|
8334
|
-
sha: z.ZodString;
|
|
8335
|
-
url: z.ZodString;
|
|
8336
|
-
commit: z.ZodOptional<z.ZodObject<{
|
|
8337
|
-
author: z.ZodObject<{
|
|
8338
|
-
name: z.ZodString;
|
|
8339
|
-
email: z.ZodString;
|
|
8340
|
-
date: z.ZodString;
|
|
8341
|
-
}, "strip", z.ZodTypeAny, {
|
|
8342
|
-
date: string;
|
|
8343
|
-
name: string;
|
|
8344
|
-
email: string;
|
|
8345
|
-
}, {
|
|
8346
|
-
date: string;
|
|
8347
|
-
name: string;
|
|
8348
|
-
email: string;
|
|
8349
|
-
}>;
|
|
8350
|
-
message: z.ZodString;
|
|
8351
|
-
}, "strip", z.ZodTypeAny, {
|
|
8352
|
-
message: string;
|
|
8353
|
-
author: {
|
|
8354
|
-
date: string;
|
|
8355
|
-
name: string;
|
|
8356
|
-
email: string;
|
|
8357
|
-
};
|
|
8358
|
-
}, {
|
|
8359
|
-
message: string;
|
|
8360
|
-
author: {
|
|
8361
|
-
date: string;
|
|
8362
|
-
name: string;
|
|
8363
|
-
email: string;
|
|
8364
|
-
};
|
|
8365
|
-
}>>;
|
|
8366
|
-
}, "strip", z.ZodTypeAny, {
|
|
8367
|
-
url: string;
|
|
8368
|
-
sha: string;
|
|
8369
|
-
commit?: {
|
|
8370
|
-
message: string;
|
|
8371
|
-
author: {
|
|
8372
|
-
date: string;
|
|
8373
|
-
name: string;
|
|
8374
|
-
email: string;
|
|
8375
|
-
};
|
|
8376
|
-
} | undefined;
|
|
8377
|
-
}, {
|
|
8378
|
-
url: string;
|
|
8379
|
-
sha: string;
|
|
8380
|
-
commit?: {
|
|
8381
|
-
message: string;
|
|
8382
|
-
author: {
|
|
8383
|
-
date: string;
|
|
8384
|
-
name: string;
|
|
8385
|
-
email: string;
|
|
8386
|
-
};
|
|
8387
|
-
} | undefined;
|
|
8388
|
-
}>, "many">;
|
|
8389
|
-
issuesAndPullRequests: z.ZodArray<z.ZodObject<{
|
|
8390
|
-
number: z.ZodOptional<z.ZodNumber>;
|
|
8391
|
-
title: z.ZodString;
|
|
8392
|
-
html_url: z.ZodOptional<z.ZodString>;
|
|
8393
|
-
state: z.ZodEnum<["open", "closed"]>;
|
|
8394
|
-
isPullRequest: z.ZodOptional<z.ZodBoolean>;
|
|
8395
|
-
body: z.ZodOptional<z.ZodString>;
|
|
8396
|
-
score: z.ZodOptional<z.ZodNumber>;
|
|
8397
|
-
files: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8398
|
-
filename: z.ZodString;
|
|
8399
|
-
status: z.ZodString;
|
|
8400
|
-
patch: z.ZodOptional<z.ZodString>;
|
|
8401
|
-
}, "strip", z.ZodTypeAny, {
|
|
8402
|
-
status: string;
|
|
8403
|
-
filename: string;
|
|
8404
|
-
patch?: string | undefined;
|
|
8405
|
-
}, {
|
|
8406
|
-
status: string;
|
|
8407
|
-
filename: string;
|
|
8408
|
-
patch?: string | undefined;
|
|
8409
|
-
}>, "many">>;
|
|
8410
|
-
}, "strip", z.ZodTypeAny, {
|
|
8411
|
-
title: string;
|
|
8412
|
-
state: "open" | "closed";
|
|
8413
|
-
number?: number | undefined;
|
|
8414
|
-
body?: string | undefined;
|
|
8415
|
-
files?: {
|
|
8416
|
-
status: string;
|
|
8417
|
-
filename: string;
|
|
8418
|
-
patch?: string | undefined;
|
|
8419
|
-
}[] | undefined;
|
|
8420
|
-
score?: number | undefined;
|
|
8421
|
-
html_url?: string | undefined;
|
|
8422
|
-
isPullRequest?: boolean | undefined;
|
|
8423
|
-
}, {
|
|
8424
|
-
title: string;
|
|
8425
|
-
state: "open" | "closed";
|
|
8426
|
-
number?: number | undefined;
|
|
8427
|
-
body?: string | undefined;
|
|
8428
|
-
files?: {
|
|
8429
|
-
status: string;
|
|
8430
|
-
filename: string;
|
|
8431
|
-
patch?: string | undefined;
|
|
8432
|
-
}[] | undefined;
|
|
8433
|
-
score?: number | undefined;
|
|
8434
|
-
html_url?: string | undefined;
|
|
8435
|
-
isPullRequest?: boolean | undefined;
|
|
8436
|
-
}>, "many">;
|
|
8437
|
-
}, "strip", z.ZodTypeAny, {
|
|
8438
|
-
code: {
|
|
8439
|
-
path: string;
|
|
8440
|
-
name: string;
|
|
8441
|
-
url: string;
|
|
8442
|
-
sha: string;
|
|
8443
|
-
score: number;
|
|
8444
|
-
textMatches: {
|
|
8445
|
-
matches: {
|
|
8446
|
-
text?: string | undefined;
|
|
8447
|
-
indices?: number[] | undefined;
|
|
8448
|
-
}[];
|
|
8449
|
-
object_url?: string | undefined;
|
|
8450
|
-
object_type?: string | undefined;
|
|
8451
|
-
fragment?: string | undefined;
|
|
8452
|
-
}[];
|
|
8453
|
-
}[];
|
|
8454
|
-
commits: {
|
|
8455
|
-
url: string;
|
|
8456
|
-
sha: string;
|
|
8457
|
-
commit?: {
|
|
8458
|
-
message: string;
|
|
8459
|
-
author: {
|
|
8460
|
-
date: string;
|
|
8461
|
-
name: string;
|
|
8462
|
-
email: string;
|
|
8463
|
-
};
|
|
8464
|
-
} | undefined;
|
|
8465
|
-
}[];
|
|
8466
|
-
issuesAndPullRequests: {
|
|
8467
|
-
title: string;
|
|
8468
|
-
state: "open" | "closed";
|
|
8469
|
-
number?: number | undefined;
|
|
8470
|
-
body?: string | undefined;
|
|
8471
|
-
files?: {
|
|
8472
|
-
status: string;
|
|
8473
|
-
filename: string;
|
|
8474
|
-
patch?: string | undefined;
|
|
8475
|
-
}[] | undefined;
|
|
8476
|
-
score?: number | undefined;
|
|
8477
|
-
html_url?: string | undefined;
|
|
8478
|
-
isPullRequest?: boolean | undefined;
|
|
8479
|
-
}[];
|
|
8480
|
-
}, {
|
|
8481
|
-
code: {
|
|
8482
|
-
path: string;
|
|
8483
|
-
name: string;
|
|
8484
|
-
url: string;
|
|
8485
|
-
sha: string;
|
|
8486
|
-
score: number;
|
|
8487
|
-
textMatches: {
|
|
8488
|
-
matches: {
|
|
8489
|
-
text?: string | undefined;
|
|
8490
|
-
indices?: number[] | undefined;
|
|
8491
|
-
}[];
|
|
8492
|
-
object_url?: string | undefined;
|
|
8493
|
-
object_type?: string | undefined;
|
|
8494
|
-
fragment?: string | undefined;
|
|
8495
|
-
}[];
|
|
8496
|
-
}[];
|
|
8497
|
-
commits: {
|
|
8498
|
-
url: string;
|
|
8499
|
-
sha: string;
|
|
8500
|
-
commit?: {
|
|
8501
|
-
message: string;
|
|
8502
|
-
author: {
|
|
8503
|
-
date: string;
|
|
8504
|
-
name: string;
|
|
8505
|
-
email: string;
|
|
8506
|
-
};
|
|
8507
|
-
} | undefined;
|
|
8508
|
-
}[];
|
|
8509
|
-
issuesAndPullRequests: {
|
|
8510
|
-
title: string;
|
|
8511
|
-
state: "open" | "closed";
|
|
8512
|
-
number?: number | undefined;
|
|
8513
|
-
body?: string | undefined;
|
|
8514
|
-
files?: {
|
|
8515
|
-
status: string;
|
|
8516
|
-
filename: string;
|
|
8517
|
-
patch?: string | undefined;
|
|
8518
|
-
}[] | undefined;
|
|
8519
|
-
score?: number | undefined;
|
|
8520
|
-
html_url?: string | undefined;
|
|
8521
|
-
isPullRequest?: boolean | undefined;
|
|
8522
|
-
}[];
|
|
8523
|
-
}>;
|
|
8524
|
-
export type githubSearchRepositoryOutputType = z.infer<typeof githubSearchRepositoryOutputSchema>;
|
|
8525
|
-
export type githubSearchRepositoryFunction = ActionFunction<githubSearchRepositoryParamsType, AuthParamsType, githubSearchRepositoryOutputType>;
|
|
8526
8293
|
export declare const githubSearchOrganizationParamsSchema: z.ZodObject<{
|
|
8527
8294
|
organization: z.ZodString;
|
|
8528
8295
|
query: z.ZodString;
|
|
@@ -8738,6 +8505,25 @@ export declare const githubGetBranchOutputSchema: z.ZodObject<{
|
|
|
8738
8505
|
}>, "many">>;
|
|
8739
8506
|
}, "strip", z.ZodTypeAny, {
|
|
8740
8507
|
url?: string | undefined;
|
|
8508
|
+
commit?: {
|
|
8509
|
+
message?: string | undefined;
|
|
8510
|
+
url?: string | undefined;
|
|
8511
|
+
author?: {
|
|
8512
|
+
date?: string | undefined;
|
|
8513
|
+
name?: string | undefined;
|
|
8514
|
+
email?: string | undefined;
|
|
8515
|
+
} | null | undefined;
|
|
8516
|
+
committer?: {
|
|
8517
|
+
date?: string | undefined;
|
|
8518
|
+
name?: string | undefined;
|
|
8519
|
+
email?: string | undefined;
|
|
8520
|
+
} | null | undefined;
|
|
8521
|
+
tree?: {
|
|
8522
|
+
url?: string | undefined;
|
|
8523
|
+
sha?: string | undefined;
|
|
8524
|
+
} | undefined;
|
|
8525
|
+
comment_count?: number | undefined;
|
|
8526
|
+
} | undefined;
|
|
8741
8527
|
sha?: string | undefined;
|
|
8742
8528
|
author?: {
|
|
8743
8529
|
type?: string | undefined;
|
|
@@ -8747,6 +8533,7 @@ export declare const githubGetBranchOutputSchema: z.ZodObject<{
|
|
|
8747
8533
|
node_id?: string | undefined;
|
|
8748
8534
|
avatar_url?: string | undefined;
|
|
8749
8535
|
} | null | undefined;
|
|
8536
|
+
html_url?: string | undefined;
|
|
8750
8537
|
committer?: {
|
|
8751
8538
|
type?: string | undefined;
|
|
8752
8539
|
id?: number | undefined;
|
|
@@ -8755,11 +8542,15 @@ export declare const githubGetBranchOutputSchema: z.ZodObject<{
|
|
|
8755
8542
|
node_id?: string | undefined;
|
|
8756
8543
|
avatar_url?: string | undefined;
|
|
8757
8544
|
} | null | undefined;
|
|
8545
|
+
node_id?: string | undefined;
|
|
8546
|
+
comments_url?: string | undefined;
|
|
8758
8547
|
parents?: {
|
|
8759
8548
|
url?: string | undefined;
|
|
8760
8549
|
sha?: string | undefined;
|
|
8761
8550
|
html_url?: string | undefined;
|
|
8762
8551
|
}[] | undefined;
|
|
8552
|
+
}, {
|
|
8553
|
+
url?: string | undefined;
|
|
8763
8554
|
commit?: {
|
|
8764
8555
|
message?: string | undefined;
|
|
8765
8556
|
url?: string | undefined;
|
|
@@ -8779,11 +8570,6 @@ export declare const githubGetBranchOutputSchema: z.ZodObject<{
|
|
|
8779
8570
|
} | undefined;
|
|
8780
8571
|
comment_count?: number | undefined;
|
|
8781
8572
|
} | undefined;
|
|
8782
|
-
html_url?: string | undefined;
|
|
8783
|
-
node_id?: string | undefined;
|
|
8784
|
-
comments_url?: string | undefined;
|
|
8785
|
-
}, {
|
|
8786
|
-
url?: string | undefined;
|
|
8787
8573
|
sha?: string | undefined;
|
|
8788
8574
|
author?: {
|
|
8789
8575
|
type?: string | undefined;
|
|
@@ -8793,6 +8579,7 @@ export declare const githubGetBranchOutputSchema: z.ZodObject<{
|
|
|
8793
8579
|
node_id?: string | undefined;
|
|
8794
8580
|
avatar_url?: string | undefined;
|
|
8795
8581
|
} | null | undefined;
|
|
8582
|
+
html_url?: string | undefined;
|
|
8796
8583
|
committer?: {
|
|
8797
8584
|
type?: string | undefined;
|
|
8798
8585
|
id?: number | undefined;
|
|
@@ -8801,33 +8588,13 @@ export declare const githubGetBranchOutputSchema: z.ZodObject<{
|
|
|
8801
8588
|
node_id?: string | undefined;
|
|
8802
8589
|
avatar_url?: string | undefined;
|
|
8803
8590
|
} | null | undefined;
|
|
8591
|
+
node_id?: string | undefined;
|
|
8592
|
+
comments_url?: string | undefined;
|
|
8804
8593
|
parents?: {
|
|
8805
8594
|
url?: string | undefined;
|
|
8806
8595
|
sha?: string | undefined;
|
|
8807
8596
|
html_url?: string | undefined;
|
|
8808
8597
|
}[] | undefined;
|
|
8809
|
-
commit?: {
|
|
8810
|
-
message?: string | undefined;
|
|
8811
|
-
url?: string | undefined;
|
|
8812
|
-
author?: {
|
|
8813
|
-
date?: string | undefined;
|
|
8814
|
-
name?: string | undefined;
|
|
8815
|
-
email?: string | undefined;
|
|
8816
|
-
} | null | undefined;
|
|
8817
|
-
committer?: {
|
|
8818
|
-
date?: string | undefined;
|
|
8819
|
-
name?: string | undefined;
|
|
8820
|
-
email?: string | undefined;
|
|
8821
|
-
} | null | undefined;
|
|
8822
|
-
tree?: {
|
|
8823
|
-
url?: string | undefined;
|
|
8824
|
-
sha?: string | undefined;
|
|
8825
|
-
} | undefined;
|
|
8826
|
-
comment_count?: number | undefined;
|
|
8827
|
-
} | undefined;
|
|
8828
|
-
html_url?: string | undefined;
|
|
8829
|
-
node_id?: string | undefined;
|
|
8830
|
-
comments_url?: string | undefined;
|
|
8831
8598
|
}>>;
|
|
8832
8599
|
_links: z.ZodOptional<z.ZodObject<{
|
|
8833
8600
|
html: z.ZodOptional<z.ZodString>;
|
|
@@ -8875,28 +8642,6 @@ export declare const githubGetBranchOutputSchema: z.ZodObject<{
|
|
|
8875
8642
|
name?: string | undefined;
|
|
8876
8643
|
commit?: {
|
|
8877
8644
|
url?: string | undefined;
|
|
8878
|
-
sha?: string | undefined;
|
|
8879
|
-
author?: {
|
|
8880
|
-
type?: string | undefined;
|
|
8881
|
-
id?: number | undefined;
|
|
8882
|
-
html_url?: string | undefined;
|
|
8883
|
-
login?: string | undefined;
|
|
8884
|
-
node_id?: string | undefined;
|
|
8885
|
-
avatar_url?: string | undefined;
|
|
8886
|
-
} | null | undefined;
|
|
8887
|
-
committer?: {
|
|
8888
|
-
type?: string | undefined;
|
|
8889
|
-
id?: number | undefined;
|
|
8890
|
-
html_url?: string | undefined;
|
|
8891
|
-
login?: string | undefined;
|
|
8892
|
-
node_id?: string | undefined;
|
|
8893
|
-
avatar_url?: string | undefined;
|
|
8894
|
-
} | null | undefined;
|
|
8895
|
-
parents?: {
|
|
8896
|
-
url?: string | undefined;
|
|
8897
|
-
sha?: string | undefined;
|
|
8898
|
-
html_url?: string | undefined;
|
|
8899
|
-
}[] | undefined;
|
|
8900
8645
|
commit?: {
|
|
8901
8646
|
message?: string | undefined;
|
|
8902
8647
|
url?: string | undefined;
|
|
@@ -8916,28 +8661,6 @@ export declare const githubGetBranchOutputSchema: z.ZodObject<{
|
|
|
8916
8661
|
} | undefined;
|
|
8917
8662
|
comment_count?: number | undefined;
|
|
8918
8663
|
} | undefined;
|
|
8919
|
-
html_url?: string | undefined;
|
|
8920
|
-
node_id?: string | undefined;
|
|
8921
|
-
comments_url?: string | undefined;
|
|
8922
|
-
} | undefined;
|
|
8923
|
-
_links?: {
|
|
8924
|
-
html?: string | undefined;
|
|
8925
|
-
self?: string | undefined;
|
|
8926
|
-
} | undefined;
|
|
8927
|
-
protected?: boolean | undefined;
|
|
8928
|
-
protection?: {
|
|
8929
|
-
enabled?: boolean | undefined;
|
|
8930
|
-
required_status_checks?: {
|
|
8931
|
-
strict?: boolean | undefined;
|
|
8932
|
-
enforcement_level?: string | undefined;
|
|
8933
|
-
contexts?: string[] | undefined;
|
|
8934
|
-
} | null | undefined;
|
|
8935
|
-
} | null | undefined;
|
|
8936
|
-
protection_url?: string | undefined;
|
|
8937
|
-
}, {
|
|
8938
|
-
name?: string | undefined;
|
|
8939
|
-
commit?: {
|
|
8940
|
-
url?: string | undefined;
|
|
8941
8664
|
sha?: string | undefined;
|
|
8942
8665
|
author?: {
|
|
8943
8666
|
type?: string | undefined;
|
|
@@ -8947,6 +8670,7 @@ export declare const githubGetBranchOutputSchema: z.ZodObject<{
|
|
|
8947
8670
|
node_id?: string | undefined;
|
|
8948
8671
|
avatar_url?: string | undefined;
|
|
8949
8672
|
} | null | undefined;
|
|
8673
|
+
html_url?: string | undefined;
|
|
8950
8674
|
committer?: {
|
|
8951
8675
|
type?: string | undefined;
|
|
8952
8676
|
id?: number | undefined;
|
|
@@ -8955,11 +8679,32 @@ export declare const githubGetBranchOutputSchema: z.ZodObject<{
|
|
|
8955
8679
|
node_id?: string | undefined;
|
|
8956
8680
|
avatar_url?: string | undefined;
|
|
8957
8681
|
} | null | undefined;
|
|
8682
|
+
node_id?: string | undefined;
|
|
8683
|
+
comments_url?: string | undefined;
|
|
8958
8684
|
parents?: {
|
|
8959
8685
|
url?: string | undefined;
|
|
8960
8686
|
sha?: string | undefined;
|
|
8961
8687
|
html_url?: string | undefined;
|
|
8962
8688
|
}[] | undefined;
|
|
8689
|
+
} | undefined;
|
|
8690
|
+
_links?: {
|
|
8691
|
+
html?: string | undefined;
|
|
8692
|
+
self?: string | undefined;
|
|
8693
|
+
} | undefined;
|
|
8694
|
+
protected?: boolean | undefined;
|
|
8695
|
+
protection?: {
|
|
8696
|
+
enabled?: boolean | undefined;
|
|
8697
|
+
required_status_checks?: {
|
|
8698
|
+
strict?: boolean | undefined;
|
|
8699
|
+
enforcement_level?: string | undefined;
|
|
8700
|
+
contexts?: string[] | undefined;
|
|
8701
|
+
} | null | undefined;
|
|
8702
|
+
} | null | undefined;
|
|
8703
|
+
protection_url?: string | undefined;
|
|
8704
|
+
}, {
|
|
8705
|
+
name?: string | undefined;
|
|
8706
|
+
commit?: {
|
|
8707
|
+
url?: string | undefined;
|
|
8963
8708
|
commit?: {
|
|
8964
8709
|
message?: string | undefined;
|
|
8965
8710
|
url?: string | undefined;
|
|
@@ -8979,9 +8724,31 @@ export declare const githubGetBranchOutputSchema: z.ZodObject<{
|
|
|
8979
8724
|
} | undefined;
|
|
8980
8725
|
comment_count?: number | undefined;
|
|
8981
8726
|
} | undefined;
|
|
8727
|
+
sha?: string | undefined;
|
|
8728
|
+
author?: {
|
|
8729
|
+
type?: string | undefined;
|
|
8730
|
+
id?: number | undefined;
|
|
8731
|
+
html_url?: string | undefined;
|
|
8732
|
+
login?: string | undefined;
|
|
8733
|
+
node_id?: string | undefined;
|
|
8734
|
+
avatar_url?: string | undefined;
|
|
8735
|
+
} | null | undefined;
|
|
8982
8736
|
html_url?: string | undefined;
|
|
8737
|
+
committer?: {
|
|
8738
|
+
type?: string | undefined;
|
|
8739
|
+
id?: number | undefined;
|
|
8740
|
+
html_url?: string | undefined;
|
|
8741
|
+
login?: string | undefined;
|
|
8742
|
+
node_id?: string | undefined;
|
|
8743
|
+
avatar_url?: string | undefined;
|
|
8744
|
+
} | null | undefined;
|
|
8983
8745
|
node_id?: string | undefined;
|
|
8984
8746
|
comments_url?: string | undefined;
|
|
8747
|
+
parents?: {
|
|
8748
|
+
url?: string | undefined;
|
|
8749
|
+
sha?: string | undefined;
|
|
8750
|
+
html_url?: string | undefined;
|
|
8751
|
+
}[] | undefined;
|
|
8985
8752
|
} | undefined;
|
|
8986
8753
|
_links?: {
|
|
8987
8754
|
html?: string | undefined;
|
|
@@ -9005,28 +8772,6 @@ export declare const githubGetBranchOutputSchema: z.ZodObject<{
|
|
|
9005
8772
|
name?: string | undefined;
|
|
9006
8773
|
commit?: {
|
|
9007
8774
|
url?: string | undefined;
|
|
9008
|
-
sha?: string | undefined;
|
|
9009
|
-
author?: {
|
|
9010
|
-
type?: string | undefined;
|
|
9011
|
-
id?: number | undefined;
|
|
9012
|
-
html_url?: string | undefined;
|
|
9013
|
-
login?: string | undefined;
|
|
9014
|
-
node_id?: string | undefined;
|
|
9015
|
-
avatar_url?: string | undefined;
|
|
9016
|
-
} | null | undefined;
|
|
9017
|
-
committer?: {
|
|
9018
|
-
type?: string | undefined;
|
|
9019
|
-
id?: number | undefined;
|
|
9020
|
-
html_url?: string | undefined;
|
|
9021
|
-
login?: string | undefined;
|
|
9022
|
-
node_id?: string | undefined;
|
|
9023
|
-
avatar_url?: string | undefined;
|
|
9024
|
-
} | null | undefined;
|
|
9025
|
-
parents?: {
|
|
9026
|
-
url?: string | undefined;
|
|
9027
|
-
sha?: string | undefined;
|
|
9028
|
-
html_url?: string | undefined;
|
|
9029
|
-
}[] | undefined;
|
|
9030
8775
|
commit?: {
|
|
9031
8776
|
message?: string | undefined;
|
|
9032
8777
|
url?: string | undefined;
|
|
@@ -9046,9 +8791,31 @@ export declare const githubGetBranchOutputSchema: z.ZodObject<{
|
|
|
9046
8791
|
} | undefined;
|
|
9047
8792
|
comment_count?: number | undefined;
|
|
9048
8793
|
} | undefined;
|
|
8794
|
+
sha?: string | undefined;
|
|
8795
|
+
author?: {
|
|
8796
|
+
type?: string | undefined;
|
|
8797
|
+
id?: number | undefined;
|
|
8798
|
+
html_url?: string | undefined;
|
|
8799
|
+
login?: string | undefined;
|
|
8800
|
+
node_id?: string | undefined;
|
|
8801
|
+
avatar_url?: string | undefined;
|
|
8802
|
+
} | null | undefined;
|
|
9049
8803
|
html_url?: string | undefined;
|
|
8804
|
+
committer?: {
|
|
8805
|
+
type?: string | undefined;
|
|
8806
|
+
id?: number | undefined;
|
|
8807
|
+
html_url?: string | undefined;
|
|
8808
|
+
login?: string | undefined;
|
|
8809
|
+
node_id?: string | undefined;
|
|
8810
|
+
avatar_url?: string | undefined;
|
|
8811
|
+
} | null | undefined;
|
|
9050
8812
|
node_id?: string | undefined;
|
|
9051
8813
|
comments_url?: string | undefined;
|
|
8814
|
+
parents?: {
|
|
8815
|
+
url?: string | undefined;
|
|
8816
|
+
sha?: string | undefined;
|
|
8817
|
+
html_url?: string | undefined;
|
|
8818
|
+
}[] | undefined;
|
|
9052
8819
|
} | undefined;
|
|
9053
8820
|
_links?: {
|
|
9054
8821
|
html?: string | undefined;
|
|
@@ -9072,28 +8839,6 @@ export declare const githubGetBranchOutputSchema: z.ZodObject<{
|
|
|
9072
8839
|
name?: string | undefined;
|
|
9073
8840
|
commit?: {
|
|
9074
8841
|
url?: string | undefined;
|
|
9075
|
-
sha?: string | undefined;
|
|
9076
|
-
author?: {
|
|
9077
|
-
type?: string | undefined;
|
|
9078
|
-
id?: number | undefined;
|
|
9079
|
-
html_url?: string | undefined;
|
|
9080
|
-
login?: string | undefined;
|
|
9081
|
-
node_id?: string | undefined;
|
|
9082
|
-
avatar_url?: string | undefined;
|
|
9083
|
-
} | null | undefined;
|
|
9084
|
-
committer?: {
|
|
9085
|
-
type?: string | undefined;
|
|
9086
|
-
id?: number | undefined;
|
|
9087
|
-
html_url?: string | undefined;
|
|
9088
|
-
login?: string | undefined;
|
|
9089
|
-
node_id?: string | undefined;
|
|
9090
|
-
avatar_url?: string | undefined;
|
|
9091
|
-
} | null | undefined;
|
|
9092
|
-
parents?: {
|
|
9093
|
-
url?: string | undefined;
|
|
9094
|
-
sha?: string | undefined;
|
|
9095
|
-
html_url?: string | undefined;
|
|
9096
|
-
}[] | undefined;
|
|
9097
8842
|
commit?: {
|
|
9098
8843
|
message?: string | undefined;
|
|
9099
8844
|
url?: string | undefined;
|
|
@@ -9113,9 +8858,31 @@ export declare const githubGetBranchOutputSchema: z.ZodObject<{
|
|
|
9113
8858
|
} | undefined;
|
|
9114
8859
|
comment_count?: number | undefined;
|
|
9115
8860
|
} | undefined;
|
|
8861
|
+
sha?: string | undefined;
|
|
8862
|
+
author?: {
|
|
8863
|
+
type?: string | undefined;
|
|
8864
|
+
id?: number | undefined;
|
|
8865
|
+
html_url?: string | undefined;
|
|
8866
|
+
login?: string | undefined;
|
|
8867
|
+
node_id?: string | undefined;
|
|
8868
|
+
avatar_url?: string | undefined;
|
|
8869
|
+
} | null | undefined;
|
|
9116
8870
|
html_url?: string | undefined;
|
|
8871
|
+
committer?: {
|
|
8872
|
+
type?: string | undefined;
|
|
8873
|
+
id?: number | undefined;
|
|
8874
|
+
html_url?: string | undefined;
|
|
8875
|
+
login?: string | undefined;
|
|
8876
|
+
node_id?: string | undefined;
|
|
8877
|
+
avatar_url?: string | undefined;
|
|
8878
|
+
} | null | undefined;
|
|
9117
8879
|
node_id?: string | undefined;
|
|
9118
8880
|
comments_url?: string | undefined;
|
|
8881
|
+
parents?: {
|
|
8882
|
+
url?: string | undefined;
|
|
8883
|
+
sha?: string | undefined;
|
|
8884
|
+
html_url?: string | undefined;
|
|
8885
|
+
}[] | undefined;
|
|
9119
8886
|
} | undefined;
|
|
9120
8887
|
_links?: {
|
|
9121
8888
|
html?: string | undefined;
|
|
@@ -9267,10 +9034,6 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
|
|
|
9267
9034
|
}>, "many">>;
|
|
9268
9035
|
}, "strip", z.ZodTypeAny, {
|
|
9269
9036
|
url: string;
|
|
9270
|
-
sha: string;
|
|
9271
|
-
author: {
|
|
9272
|
-
login?: string | undefined;
|
|
9273
|
-
} | null;
|
|
9274
9037
|
commit: {
|
|
9275
9038
|
message: string;
|
|
9276
9039
|
author: {
|
|
@@ -9289,6 +9052,10 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
|
|
|
9289
9052
|
};
|
|
9290
9053
|
commentCount?: number | undefined;
|
|
9291
9054
|
};
|
|
9055
|
+
sha: string;
|
|
9056
|
+
author: {
|
|
9057
|
+
login?: string | undefined;
|
|
9058
|
+
} | null;
|
|
9292
9059
|
htmlUrl: string;
|
|
9293
9060
|
parents?: {
|
|
9294
9061
|
url: string;
|
|
@@ -9297,10 +9064,6 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
|
|
|
9297
9064
|
}[] | undefined;
|
|
9298
9065
|
}, {
|
|
9299
9066
|
url: string;
|
|
9300
|
-
sha: string;
|
|
9301
|
-
author: {
|
|
9302
|
-
login?: string | undefined;
|
|
9303
|
-
} | null;
|
|
9304
9067
|
commit: {
|
|
9305
9068
|
message: string;
|
|
9306
9069
|
author: {
|
|
@@ -9319,6 +9082,10 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
|
|
|
9319
9082
|
};
|
|
9320
9083
|
commentCount?: number | undefined;
|
|
9321
9084
|
};
|
|
9085
|
+
sha: string;
|
|
9086
|
+
author: {
|
|
9087
|
+
login?: string | undefined;
|
|
9088
|
+
} | null;
|
|
9322
9089
|
htmlUrl: string;
|
|
9323
9090
|
parents?: {
|
|
9324
9091
|
url: string;
|
|
@@ -9334,10 +9101,6 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
|
|
|
9334
9101
|
hasMore?: boolean | undefined;
|
|
9335
9102
|
commits?: {
|
|
9336
9103
|
url: string;
|
|
9337
|
-
sha: string;
|
|
9338
|
-
author: {
|
|
9339
|
-
login?: string | undefined;
|
|
9340
|
-
} | null;
|
|
9341
9104
|
commit: {
|
|
9342
9105
|
message: string;
|
|
9343
9106
|
author: {
|
|
@@ -9356,6 +9119,10 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
|
|
|
9356
9119
|
};
|
|
9357
9120
|
commentCount?: number | undefined;
|
|
9358
9121
|
};
|
|
9122
|
+
sha: string;
|
|
9123
|
+
author: {
|
|
9124
|
+
login?: string | undefined;
|
|
9125
|
+
} | null;
|
|
9359
9126
|
htmlUrl: string;
|
|
9360
9127
|
parents?: {
|
|
9361
9128
|
url: string;
|
|
@@ -9370,10 +9137,6 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
|
|
|
9370
9137
|
hasMore?: boolean | undefined;
|
|
9371
9138
|
commits?: {
|
|
9372
9139
|
url: string;
|
|
9373
|
-
sha: string;
|
|
9374
|
-
author: {
|
|
9375
|
-
login?: string | undefined;
|
|
9376
|
-
} | null;
|
|
9377
9140
|
commit: {
|
|
9378
9141
|
message: string;
|
|
9379
9142
|
author: {
|
|
@@ -9392,6 +9155,10 @@ export declare const githubListCommitsOutputSchema: z.ZodObject<{
|
|
|
9392
9155
|
};
|
|
9393
9156
|
commentCount?: number | undefined;
|
|
9394
9157
|
};
|
|
9158
|
+
sha: string;
|
|
9159
|
+
author: {
|
|
9160
|
+
login?: string | undefined;
|
|
9161
|
+
} | null;
|
|
9395
9162
|
htmlUrl: string;
|
|
9396
9163
|
parents?: {
|
|
9397
9164
|
url: string;
|
|
@@ -10259,8 +10026,6 @@ export declare const linearGetIssueDetailsOutputSchema: z.ZodObject<{
|
|
|
10259
10026
|
} | undefined;
|
|
10260
10027
|
priority?: number | undefined;
|
|
10261
10028
|
state?: string | undefined;
|
|
10262
|
-
createdAt?: string | undefined;
|
|
10263
|
-
updatedAt?: string | undefined;
|
|
10264
10029
|
team?: {
|
|
10265
10030
|
name?: string | undefined;
|
|
10266
10031
|
id?: string | undefined;
|
|
@@ -10271,6 +10036,8 @@ export declare const linearGetIssueDetailsOutputSchema: z.ZodObject<{
|
|
|
10271
10036
|
} | undefined;
|
|
10272
10037
|
dueDate?: string | undefined;
|
|
10273
10038
|
labels?: string[] | undefined;
|
|
10039
|
+
createdAt?: string | undefined;
|
|
10040
|
+
updatedAt?: string | undefined;
|
|
10274
10041
|
estimate?: number | undefined;
|
|
10275
10042
|
}, {
|
|
10276
10043
|
description?: string | undefined;
|
|
@@ -10292,8 +10059,6 @@ export declare const linearGetIssueDetailsOutputSchema: z.ZodObject<{
|
|
|
10292
10059
|
} | undefined;
|
|
10293
10060
|
priority?: number | undefined;
|
|
10294
10061
|
state?: string | undefined;
|
|
10295
|
-
createdAt?: string | undefined;
|
|
10296
|
-
updatedAt?: string | undefined;
|
|
10297
10062
|
team?: {
|
|
10298
10063
|
name?: string | undefined;
|
|
10299
10064
|
id?: string | undefined;
|
|
@@ -10304,6 +10069,8 @@ export declare const linearGetIssueDetailsOutputSchema: z.ZodObject<{
|
|
|
10304
10069
|
} | undefined;
|
|
10305
10070
|
dueDate?: string | undefined;
|
|
10306
10071
|
labels?: string[] | undefined;
|
|
10072
|
+
createdAt?: string | undefined;
|
|
10073
|
+
updatedAt?: string | undefined;
|
|
10307
10074
|
estimate?: number | undefined;
|
|
10308
10075
|
}>>;
|
|
10309
10076
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -10329,8 +10096,6 @@ export declare const linearGetIssueDetailsOutputSchema: z.ZodObject<{
|
|
|
10329
10096
|
} | undefined;
|
|
10330
10097
|
priority?: number | undefined;
|
|
10331
10098
|
state?: string | undefined;
|
|
10332
|
-
createdAt?: string | undefined;
|
|
10333
|
-
updatedAt?: string | undefined;
|
|
10334
10099
|
team?: {
|
|
10335
10100
|
name?: string | undefined;
|
|
10336
10101
|
id?: string | undefined;
|
|
@@ -10341,6 +10106,8 @@ export declare const linearGetIssueDetailsOutputSchema: z.ZodObject<{
|
|
|
10341
10106
|
} | undefined;
|
|
10342
10107
|
dueDate?: string | undefined;
|
|
10343
10108
|
labels?: string[] | undefined;
|
|
10109
|
+
createdAt?: string | undefined;
|
|
10110
|
+
updatedAt?: string | undefined;
|
|
10344
10111
|
estimate?: number | undefined;
|
|
10345
10112
|
} | undefined;
|
|
10346
10113
|
}, {
|
|
@@ -10366,8 +10133,6 @@ export declare const linearGetIssueDetailsOutputSchema: z.ZodObject<{
|
|
|
10366
10133
|
} | undefined;
|
|
10367
10134
|
priority?: number | undefined;
|
|
10368
10135
|
state?: string | undefined;
|
|
10369
|
-
createdAt?: string | undefined;
|
|
10370
|
-
updatedAt?: string | undefined;
|
|
10371
10136
|
team?: {
|
|
10372
10137
|
name?: string | undefined;
|
|
10373
10138
|
id?: string | undefined;
|
|
@@ -10378,6 +10143,8 @@ export declare const linearGetIssueDetailsOutputSchema: z.ZodObject<{
|
|
|
10378
10143
|
} | undefined;
|
|
10379
10144
|
dueDate?: string | undefined;
|
|
10380
10145
|
labels?: string[] | undefined;
|
|
10146
|
+
createdAt?: string | undefined;
|
|
10147
|
+
updatedAt?: string | undefined;
|
|
10381
10148
|
estimate?: number | undefined;
|
|
10382
10149
|
} | undefined;
|
|
10383
10150
|
}>;
|
|
@@ -10582,12 +10349,12 @@ export declare const linearGetProjectDetailsOutputSchema: z.ZodObject<{
|
|
|
10582
10349
|
author_name?: string | undefined;
|
|
10583
10350
|
}[] | undefined;
|
|
10584
10351
|
state?: string | undefined;
|
|
10585
|
-
createdAt?: string | undefined;
|
|
10586
|
-
updatedAt?: string | undefined;
|
|
10587
10352
|
team?: {
|
|
10588
10353
|
name?: string | undefined;
|
|
10589
10354
|
id?: string | undefined;
|
|
10590
10355
|
} | undefined;
|
|
10356
|
+
createdAt?: string | undefined;
|
|
10357
|
+
updatedAt?: string | undefined;
|
|
10591
10358
|
lead?: {
|
|
10592
10359
|
name?: string | undefined;
|
|
10593
10360
|
id?: string | undefined;
|
|
@@ -10611,12 +10378,12 @@ export declare const linearGetProjectDetailsOutputSchema: z.ZodObject<{
|
|
|
10611
10378
|
author_name?: string | undefined;
|
|
10612
10379
|
}[] | undefined;
|
|
10613
10380
|
state?: string | undefined;
|
|
10614
|
-
createdAt?: string | undefined;
|
|
10615
|
-
updatedAt?: string | undefined;
|
|
10616
10381
|
team?: {
|
|
10617
10382
|
name?: string | undefined;
|
|
10618
10383
|
id?: string | undefined;
|
|
10619
10384
|
} | undefined;
|
|
10385
|
+
createdAt?: string | undefined;
|
|
10386
|
+
updatedAt?: string | undefined;
|
|
10620
10387
|
lead?: {
|
|
10621
10388
|
name?: string | undefined;
|
|
10622
10389
|
id?: string | undefined;
|
|
@@ -10644,12 +10411,12 @@ export declare const linearGetProjectDetailsOutputSchema: z.ZodObject<{
|
|
|
10644
10411
|
author_name?: string | undefined;
|
|
10645
10412
|
}[] | undefined;
|
|
10646
10413
|
state?: string | undefined;
|
|
10647
|
-
createdAt?: string | undefined;
|
|
10648
|
-
updatedAt?: string | undefined;
|
|
10649
10414
|
team?: {
|
|
10650
10415
|
name?: string | undefined;
|
|
10651
10416
|
id?: string | undefined;
|
|
10652
10417
|
} | undefined;
|
|
10418
|
+
createdAt?: string | undefined;
|
|
10419
|
+
updatedAt?: string | undefined;
|
|
10653
10420
|
lead?: {
|
|
10654
10421
|
name?: string | undefined;
|
|
10655
10422
|
id?: string | undefined;
|
|
@@ -10677,12 +10444,12 @@ export declare const linearGetProjectDetailsOutputSchema: z.ZodObject<{
|
|
|
10677
10444
|
author_name?: string | undefined;
|
|
10678
10445
|
}[] | undefined;
|
|
10679
10446
|
state?: string | undefined;
|
|
10680
|
-
createdAt?: string | undefined;
|
|
10681
|
-
updatedAt?: string | undefined;
|
|
10682
10447
|
team?: {
|
|
10683
10448
|
name?: string | undefined;
|
|
10684
10449
|
id?: string | undefined;
|
|
10685
10450
|
} | undefined;
|
|
10451
|
+
createdAt?: string | undefined;
|
|
10452
|
+
updatedAt?: string | undefined;
|
|
10686
10453
|
lead?: {
|
|
10687
10454
|
name?: string | undefined;
|
|
10688
10455
|
id?: string | undefined;
|
|
@@ -10889,10 +10656,10 @@ export declare const hubspotGetContactDetailsOutputSchema: z.ZodObject<{
|
|
|
10889
10656
|
id?: string | undefined;
|
|
10890
10657
|
email?: string | undefined;
|
|
10891
10658
|
state?: string | undefined;
|
|
10892
|
-
createdAt?: string | undefined;
|
|
10893
|
-
updatedAt?: string | undefined;
|
|
10894
10659
|
company?: string | undefined;
|
|
10895
10660
|
address?: string | undefined;
|
|
10661
|
+
createdAt?: string | undefined;
|
|
10662
|
+
updatedAt?: string | undefined;
|
|
10896
10663
|
firstname?: string | undefined;
|
|
10897
10664
|
lastname?: string | undefined;
|
|
10898
10665
|
phone?: string | undefined;
|
|
@@ -10906,10 +10673,10 @@ export declare const hubspotGetContactDetailsOutputSchema: z.ZodObject<{
|
|
|
10906
10673
|
id?: string | undefined;
|
|
10907
10674
|
email?: string | undefined;
|
|
10908
10675
|
state?: string | undefined;
|
|
10909
|
-
createdAt?: string | undefined;
|
|
10910
|
-
updatedAt?: string | undefined;
|
|
10911
10676
|
company?: string | undefined;
|
|
10912
10677
|
address?: string | undefined;
|
|
10678
|
+
createdAt?: string | undefined;
|
|
10679
|
+
updatedAt?: string | undefined;
|
|
10913
10680
|
firstname?: string | undefined;
|
|
10914
10681
|
lastname?: string | undefined;
|
|
10915
10682
|
phone?: string | undefined;
|
|
@@ -10927,10 +10694,10 @@ export declare const hubspotGetContactDetailsOutputSchema: z.ZodObject<{
|
|
|
10927
10694
|
id?: string | undefined;
|
|
10928
10695
|
email?: string | undefined;
|
|
10929
10696
|
state?: string | undefined;
|
|
10930
|
-
createdAt?: string | undefined;
|
|
10931
|
-
updatedAt?: string | undefined;
|
|
10932
10697
|
company?: string | undefined;
|
|
10933
10698
|
address?: string | undefined;
|
|
10699
|
+
createdAt?: string | undefined;
|
|
10700
|
+
updatedAt?: string | undefined;
|
|
10934
10701
|
firstname?: string | undefined;
|
|
10935
10702
|
lastname?: string | undefined;
|
|
10936
10703
|
phone?: string | undefined;
|
|
@@ -10948,10 +10715,10 @@ export declare const hubspotGetContactDetailsOutputSchema: z.ZodObject<{
|
|
|
10948
10715
|
id?: string | undefined;
|
|
10949
10716
|
email?: string | undefined;
|
|
10950
10717
|
state?: string | undefined;
|
|
10951
|
-
createdAt?: string | undefined;
|
|
10952
|
-
updatedAt?: string | undefined;
|
|
10953
10718
|
company?: string | undefined;
|
|
10954
10719
|
address?: string | undefined;
|
|
10720
|
+
createdAt?: string | undefined;
|
|
10721
|
+
updatedAt?: string | undefined;
|
|
10955
10722
|
firstname?: string | undefined;
|
|
10956
10723
|
lastname?: string | undefined;
|
|
10957
10724
|
phone?: string | undefined;
|
|
@@ -11046,9 +10813,9 @@ export declare const hubspotGetCompanyDetailsOutputSchema: z.ZodObject<{
|
|
|
11046
10813
|
name?: string | undefined;
|
|
11047
10814
|
id?: string | undefined;
|
|
11048
10815
|
state?: string | undefined;
|
|
10816
|
+
address?: string | undefined;
|
|
11049
10817
|
createdAt?: string | undefined;
|
|
11050
10818
|
updatedAt?: string | undefined;
|
|
11051
|
-
address?: string | undefined;
|
|
11052
10819
|
phone?: string | undefined;
|
|
11053
10820
|
city?: string | undefined;
|
|
11054
10821
|
zip?: string | undefined;
|
|
@@ -11061,9 +10828,9 @@ export declare const hubspotGetCompanyDetailsOutputSchema: z.ZodObject<{
|
|
|
11061
10828
|
name?: string | undefined;
|
|
11062
10829
|
id?: string | undefined;
|
|
11063
10830
|
state?: string | undefined;
|
|
10831
|
+
address?: string | undefined;
|
|
11064
10832
|
createdAt?: string | undefined;
|
|
11065
10833
|
updatedAt?: string | undefined;
|
|
11066
|
-
address?: string | undefined;
|
|
11067
10834
|
phone?: string | undefined;
|
|
11068
10835
|
city?: string | undefined;
|
|
11069
10836
|
zip?: string | undefined;
|
|
@@ -11080,9 +10847,9 @@ export declare const hubspotGetCompanyDetailsOutputSchema: z.ZodObject<{
|
|
|
11080
10847
|
name?: string | undefined;
|
|
11081
10848
|
id?: string | undefined;
|
|
11082
10849
|
state?: string | undefined;
|
|
10850
|
+
address?: string | undefined;
|
|
11083
10851
|
createdAt?: string | undefined;
|
|
11084
10852
|
updatedAt?: string | undefined;
|
|
11085
|
-
address?: string | undefined;
|
|
11086
10853
|
phone?: string | undefined;
|
|
11087
10854
|
city?: string | undefined;
|
|
11088
10855
|
zip?: string | undefined;
|
|
@@ -11099,9 +10866,9 @@ export declare const hubspotGetCompanyDetailsOutputSchema: z.ZodObject<{
|
|
|
11099
10866
|
name?: string | undefined;
|
|
11100
10867
|
id?: string | undefined;
|
|
11101
10868
|
state?: string | undefined;
|
|
10869
|
+
address?: string | undefined;
|
|
11102
10870
|
createdAt?: string | undefined;
|
|
11103
10871
|
updatedAt?: string | undefined;
|
|
11104
|
-
address?: string | undefined;
|
|
11105
10872
|
phone?: string | undefined;
|
|
11106
10873
|
city?: string | undefined;
|
|
11107
10874
|
zip?: string | undefined;
|