@credal/actions 0.2.36 → 0.2.38
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 -1
- package/dist/actions/autogen/templates.js +166 -165
- package/dist/actions/autogen/types.d.ts +51 -48
- package/dist/actions/autogen/types.js +118 -132
- package/dist/actions/groups.js +2 -1
- package/dist/actions/providers/google-oauth/searchDriveAndGetContentByKeywords.d.ts +3 -0
- package/dist/actions/providers/google-oauth/searchDriveAndGetContentByKeywords.js +110 -0
- package/dist/actions/providers/google-oauth/searchDriveByQuery.d.ts +3 -0
- package/dist/actions/providers/google-oauth/searchDriveByQuery.js +42 -0
- package/dist/actions/providers/google-oauth/utils/extractContentFromDriveFileId.d.ts +1 -2
- package/dist/actions/providers/google-oauth/utils/extractContentFromDriveFileId.js +6 -51
- package/package.json +1 -1
@@ -2723,65 +2723,6 @@ export const resendSendEmailDefinition = {
|
|
2723
2723
|
name: "sendEmail",
|
2724
2724
|
provider: "resend",
|
2725
2725
|
};
|
2726
|
-
export const googleOauthSearchFilesByKeywordsDefinition = {
|
2727
|
-
description: "Search Google Drive files that contain one or more keywords in their full text.",
|
2728
|
-
scopes: ["https://www.googleapis.com/auth/drive.readonly"],
|
2729
|
-
parameters: {
|
2730
|
-
type: "object",
|
2731
|
-
required: ["keywords"],
|
2732
|
-
properties: {
|
2733
|
-
keywords: {
|
2734
|
-
type: "array",
|
2735
|
-
description: "List of keywords to search for in file contents.",
|
2736
|
-
items: {
|
2737
|
-
type: "string",
|
2738
|
-
},
|
2739
|
-
},
|
2740
|
-
},
|
2741
|
-
},
|
2742
|
-
output: {
|
2743
|
-
type: "object",
|
2744
|
-
required: ["success", "files"],
|
2745
|
-
properties: {
|
2746
|
-
success: {
|
2747
|
-
type: "boolean",
|
2748
|
-
description: "Whether the search was successful",
|
2749
|
-
},
|
2750
|
-
files: {
|
2751
|
-
type: "array",
|
2752
|
-
description: "List of files matching the search",
|
2753
|
-
items: {
|
2754
|
-
type: "object",
|
2755
|
-
required: ["id", "name", "mimeType", "webViewLink"],
|
2756
|
-
properties: {
|
2757
|
-
id: {
|
2758
|
-
type: "string",
|
2759
|
-
description: "The file ID",
|
2760
|
-
},
|
2761
|
-
name: {
|
2762
|
-
type: "string",
|
2763
|
-
description: "The file name",
|
2764
|
-
},
|
2765
|
-
mimeType: {
|
2766
|
-
type: "string",
|
2767
|
-
description: "The MIME type of the file",
|
2768
|
-
},
|
2769
|
-
webViewLink: {
|
2770
|
-
type: "string",
|
2771
|
-
description: "The web link to view the file",
|
2772
|
-
},
|
2773
|
-
},
|
2774
|
-
},
|
2775
|
-
},
|
2776
|
-
error: {
|
2777
|
-
type: "string",
|
2778
|
-
description: "Error message if search failed",
|
2779
|
-
},
|
2780
|
-
},
|
2781
|
-
},
|
2782
|
-
name: "searchFilesByKeywords",
|
2783
|
-
provider: "googleOauth",
|
2784
|
-
};
|
2785
2726
|
export const googleOauthCreateNewGoogleDocDefinition = {
|
2786
2727
|
description: "Create a new Google Docs document using OAuth authentication",
|
2787
2728
|
scopes: [],
|
@@ -2885,7 +2826,7 @@ export const googleOauthUpdateDocDefinition = {
|
|
2885
2826
|
required: ["index"],
|
2886
2827
|
properties: {
|
2887
2828
|
index: {
|
2888
|
-
type: "
|
2829
|
+
type: "number",
|
2889
2830
|
description: "The zero-based index in the document where to insert the text",
|
2890
2831
|
},
|
2891
2832
|
},
|
@@ -2969,7 +2910,7 @@ export const googleOauthUpdateDocDefinition = {
|
|
2969
2910
|
description: "The font family of the text",
|
2970
2911
|
},
|
2971
2912
|
weight: {
|
2972
|
-
type: "
|
2913
|
+
type: "number",
|
2973
2914
|
description: "The weight of the font",
|
2974
2915
|
},
|
2975
2916
|
},
|
@@ -2986,11 +2927,11 @@ export const googleOauthUpdateDocDefinition = {
|
|
2986
2927
|
required: ["startIndex", "endIndex"],
|
2987
2928
|
properties: {
|
2988
2929
|
startIndex: {
|
2989
|
-
type: "
|
2930
|
+
type: "number",
|
2990
2931
|
description: "The zero-based starting index of the range",
|
2991
2932
|
},
|
2992
2933
|
endIndex: {
|
2993
|
-
type: "
|
2934
|
+
type: "number",
|
2994
2935
|
description: "The zero-based ending index of the range (exclusive)",
|
2995
2936
|
},
|
2996
2937
|
},
|
@@ -3014,11 +2955,11 @@ export const googleOauthUpdateDocDefinition = {
|
|
3014
2955
|
required: ["startIndex", "endIndex"],
|
3015
2956
|
properties: {
|
3016
2957
|
startIndex: {
|
3017
|
-
type: "
|
2958
|
+
type: "number",
|
3018
2959
|
description: "The zero-based starting index of the range",
|
3019
2960
|
},
|
3020
2961
|
endIndex: {
|
3021
|
-
type: "
|
2962
|
+
type: "number",
|
3022
2963
|
description: "The zero-based ending index of the range (exclusive)",
|
3023
2964
|
},
|
3024
2965
|
},
|
@@ -3047,17 +2988,17 @@ export const googleOauthUpdateDocDefinition = {
|
|
3047
2988
|
required: ["index"],
|
3048
2989
|
properties: {
|
3049
2990
|
index: {
|
3050
|
-
type: "
|
2991
|
+
type: "number",
|
3051
2992
|
description: "The zero-based index in the document",
|
3052
2993
|
},
|
3053
2994
|
},
|
3054
2995
|
},
|
3055
2996
|
rowIndex: {
|
3056
|
-
type: "
|
2997
|
+
type: "number",
|
3057
2998
|
description: "The zero-based row index",
|
3058
2999
|
},
|
3059
3000
|
columnIndex: {
|
3060
|
-
type: "
|
3001
|
+
type: "number",
|
3061
3002
|
description: "The zero-based column index",
|
3062
3003
|
},
|
3063
3004
|
},
|
@@ -3090,17 +3031,17 @@ export const googleOauthUpdateDocDefinition = {
|
|
3090
3031
|
required: ["index"],
|
3091
3032
|
properties: {
|
3092
3033
|
index: {
|
3093
|
-
type: "
|
3034
|
+
type: "number",
|
3094
3035
|
description: "The zero-based index in the document",
|
3095
3036
|
},
|
3096
3037
|
},
|
3097
3038
|
},
|
3098
3039
|
rowIndex: {
|
3099
|
-
type: "
|
3040
|
+
type: "number",
|
3100
3041
|
description: "The zero-based row index",
|
3101
3042
|
},
|
3102
3043
|
columnIndex: {
|
3103
|
-
type: "
|
3044
|
+
type: "number",
|
3104
3045
|
description: "The zero-based column index",
|
3105
3046
|
},
|
3106
3047
|
},
|
@@ -3133,17 +3074,17 @@ export const googleOauthUpdateDocDefinition = {
|
|
3133
3074
|
required: ["index"],
|
3134
3075
|
properties: {
|
3135
3076
|
index: {
|
3136
|
-
type: "
|
3077
|
+
type: "number",
|
3137
3078
|
description: "The zero-based index in the document",
|
3138
3079
|
},
|
3139
3080
|
},
|
3140
3081
|
},
|
3141
3082
|
rowIndex: {
|
3142
|
-
type: "
|
3083
|
+
type: "number",
|
3143
3084
|
description: "The zero-based row index",
|
3144
3085
|
},
|
3145
3086
|
columnIndex: {
|
3146
|
-
type: "
|
3087
|
+
type: "number",
|
3147
3088
|
description: "The zero-based column index",
|
3148
3089
|
},
|
3149
3090
|
},
|
@@ -3172,17 +3113,17 @@ export const googleOauthUpdateDocDefinition = {
|
|
3172
3113
|
required: ["index"],
|
3173
3114
|
properties: {
|
3174
3115
|
index: {
|
3175
|
-
type: "
|
3116
|
+
type: "number",
|
3176
3117
|
description: "The zero-based index in the document",
|
3177
3118
|
},
|
3178
3119
|
},
|
3179
3120
|
},
|
3180
3121
|
rowIndex: {
|
3181
|
-
type: "
|
3122
|
+
type: "number",
|
3182
3123
|
description: "The zero-based row index",
|
3183
3124
|
},
|
3184
3125
|
columnIndex: {
|
3185
|
-
type: "
|
3126
|
+
type: "number",
|
3186
3127
|
description: "The zero-based column index",
|
3187
3128
|
},
|
3188
3129
|
},
|
@@ -3206,11 +3147,11 @@ export const googleOauthUpdateDocDefinition = {
|
|
3206
3147
|
required: ["startIndex", "endIndex"],
|
3207
3148
|
properties: {
|
3208
3149
|
startIndex: {
|
3209
|
-
type: "
|
3150
|
+
type: "number",
|
3210
3151
|
description: "The zero-based starting index of the range",
|
3211
3152
|
},
|
3212
3153
|
endIndex: {
|
3213
|
-
type: "
|
3154
|
+
type: "number",
|
3214
3155
|
description: "The zero-based ending index of the range (exclusive)",
|
3215
3156
|
},
|
3216
3157
|
},
|
@@ -3318,11 +3259,11 @@ export const googleOauthUpdateDocDefinition = {
|
|
3318
3259
|
required: ["startIndex", "endIndex"],
|
3319
3260
|
properties: {
|
3320
3261
|
startIndex: {
|
3321
|
-
type: "
|
3262
|
+
type: "number",
|
3322
3263
|
description: "The zero-based starting index of the range",
|
3323
3264
|
},
|
3324
3265
|
endIndex: {
|
3325
|
-
type: "
|
3266
|
+
type: "number",
|
3326
3267
|
description: "The zero-based ending index of the range (exclusive)",
|
3327
3268
|
},
|
3328
3269
|
},
|
@@ -3369,11 +3310,11 @@ export const googleOauthUpdateDocDefinition = {
|
|
3369
3310
|
required: ["startIndex", "endIndex"],
|
3370
3311
|
properties: {
|
3371
3312
|
startIndex: {
|
3372
|
-
type: "
|
3313
|
+
type: "number",
|
3373
3314
|
description: "The zero-based starting index of the range",
|
3374
3315
|
},
|
3375
3316
|
endIndex: {
|
3376
|
-
type: "
|
3317
|
+
type: "number",
|
3377
3318
|
description: "The zero-based ending index of the range (exclusive)",
|
3378
3319
|
},
|
3379
3320
|
},
|
@@ -3397,7 +3338,7 @@ export const googleOauthUpdateDocDefinition = {
|
|
3397
3338
|
required: ["index"],
|
3398
3339
|
properties: {
|
3399
3340
|
index: {
|
3400
|
-
type: "
|
3341
|
+
type: "number",
|
3401
3342
|
description: "The zero-based index in the document",
|
3402
3343
|
},
|
3403
3344
|
},
|
@@ -3464,7 +3405,7 @@ export const googleOauthUpdateDocDefinition = {
|
|
3464
3405
|
description: "The left page margin",
|
3465
3406
|
},
|
3466
3407
|
pageNumberStart: {
|
3467
|
-
type: "
|
3408
|
+
type: "number",
|
3468
3409
|
description: "The page number from which to start counting",
|
3469
3410
|
},
|
3470
3411
|
pageSize: {
|
@@ -3565,7 +3506,7 @@ export const googleOauthUpdateDocDefinition = {
|
|
3565
3506
|
description: "The top border of the cells",
|
3566
3507
|
},
|
3567
3508
|
columnSpan: {
|
3568
|
-
type: "
|
3509
|
+
type: "number",
|
3569
3510
|
description: "The number of columns that the cell spans",
|
3570
3511
|
},
|
3571
3512
|
contentAlignment: {
|
@@ -3589,7 +3530,7 @@ export const googleOauthUpdateDocDefinition = {
|
|
3589
3530
|
description: "The top padding of the cells",
|
3590
3531
|
},
|
3591
3532
|
rowSpan: {
|
3592
|
-
type: "
|
3533
|
+
type: "number",
|
3593
3534
|
description: "The number of rows that the cell spans",
|
3594
3535
|
},
|
3595
3536
|
},
|
@@ -3614,27 +3555,27 @@ export const googleOauthUpdateDocDefinition = {
|
|
3614
3555
|
required: ["index"],
|
3615
3556
|
properties: {
|
3616
3557
|
index: {
|
3617
|
-
type: "
|
3558
|
+
type: "number",
|
3618
3559
|
description: "The zero-based index in the document",
|
3619
3560
|
},
|
3620
3561
|
},
|
3621
3562
|
},
|
3622
3563
|
rowIndex: {
|
3623
|
-
type: "
|
3564
|
+
type: "number",
|
3624
3565
|
description: "The zero-based row index",
|
3625
3566
|
},
|
3626
3567
|
columnIndex: {
|
3627
|
-
type: "
|
3568
|
+
type: "number",
|
3628
3569
|
description: "The zero-based column index",
|
3629
3570
|
},
|
3630
3571
|
},
|
3631
3572
|
},
|
3632
3573
|
rowSpan: {
|
3633
|
-
type: "
|
3574
|
+
type: "number",
|
3634
3575
|
description: "The number of rows that the range should span",
|
3635
3576
|
},
|
3636
3577
|
columnSpan: {
|
3637
|
-
type: "
|
3578
|
+
type: "number",
|
3638
3579
|
description: "The number of columns that the range should span",
|
3639
3580
|
},
|
3640
3581
|
},
|
@@ -3668,27 +3609,27 @@ export const googleOauthUpdateDocDefinition = {
|
|
3668
3609
|
required: ["index"],
|
3669
3610
|
properties: {
|
3670
3611
|
index: {
|
3671
|
-
type: "
|
3612
|
+
type: "number",
|
3672
3613
|
description: "The zero-based index in the document",
|
3673
3614
|
},
|
3674
3615
|
},
|
3675
3616
|
},
|
3676
3617
|
rowIndex: {
|
3677
|
-
type: "
|
3618
|
+
type: "number",
|
3678
3619
|
description: "The zero-based row index",
|
3679
3620
|
},
|
3680
3621
|
columnIndex: {
|
3681
|
-
type: "
|
3622
|
+
type: "number",
|
3682
3623
|
description: "The zero-based column index",
|
3683
3624
|
},
|
3684
3625
|
},
|
3685
3626
|
},
|
3686
3627
|
rowSpan: {
|
3687
|
-
type: "
|
3628
|
+
type: "number",
|
3688
3629
|
description: "The number of rows that the range should span",
|
3689
3630
|
},
|
3690
3631
|
columnSpan: {
|
3691
|
-
type: "
|
3632
|
+
type: "number",
|
3692
3633
|
description: "The number of columns that the range should span",
|
3693
3634
|
},
|
3694
3635
|
},
|
@@ -3722,27 +3663,27 @@ export const googleOauthUpdateDocDefinition = {
|
|
3722
3663
|
required: ["index"],
|
3723
3664
|
properties: {
|
3724
3665
|
index: {
|
3725
|
-
type: "
|
3666
|
+
type: "number",
|
3726
3667
|
description: "The zero-based index in the document",
|
3727
3668
|
},
|
3728
3669
|
},
|
3729
3670
|
},
|
3730
3671
|
rowIndex: {
|
3731
|
-
type: "
|
3672
|
+
type: "number",
|
3732
3673
|
description: "The zero-based row index",
|
3733
3674
|
},
|
3734
3675
|
columnIndex: {
|
3735
|
-
type: "
|
3676
|
+
type: "number",
|
3736
3677
|
description: "The zero-based column index",
|
3737
3678
|
},
|
3738
3679
|
},
|
3739
3680
|
},
|
3740
3681
|
rowSpan: {
|
3741
|
-
type: "
|
3682
|
+
type: "number",
|
3742
3683
|
description: "The number of rows that the range should span",
|
3743
3684
|
},
|
3744
3685
|
columnSpan: {
|
3745
|
-
type: "
|
3686
|
+
type: "number",
|
3746
3687
|
description: "The number of columns that the range should span",
|
3747
3688
|
},
|
3748
3689
|
},
|
@@ -3770,11 +3711,11 @@ export const googleOauthUpdateDocDefinition = {
|
|
3770
3711
|
required: ["startIndex", "endIndex"],
|
3771
3712
|
properties: {
|
3772
3713
|
startIndex: {
|
3773
|
-
type: "
|
3714
|
+
type: "number",
|
3774
3715
|
description: "The zero-based starting index of the range",
|
3775
3716
|
},
|
3776
3717
|
endIndex: {
|
3777
|
-
type: "
|
3718
|
+
type: "number",
|
3778
3719
|
description: "The zero-based ending index of the range (exclusive)",
|
3779
3720
|
},
|
3780
3721
|
},
|
@@ -3836,7 +3777,7 @@ export const googleOauthUpdateDocDefinition = {
|
|
3836
3777
|
required: ["index"],
|
3837
3778
|
properties: {
|
3838
3779
|
index: {
|
3839
|
-
type: "
|
3780
|
+
type: "number",
|
3840
3781
|
description: "The zero-based index in the document",
|
3841
3782
|
},
|
3842
3783
|
},
|
@@ -4001,7 +3942,7 @@ export const googleOauthListCalendarsDefinition = {
|
|
4001
3942
|
required: [],
|
4002
3943
|
properties: {
|
4003
3944
|
maxResults: {
|
4004
|
-
type: "
|
3945
|
+
type: "number",
|
4005
3946
|
description: "Maximum number of calendars to return, defaults to 250",
|
4006
3947
|
},
|
4007
3948
|
},
|
@@ -4057,7 +3998,7 @@ export const googleOauthListCalendarEventsDefinition = {
|
|
4057
3998
|
description: "Optional free-text search query to filter events",
|
4058
3999
|
},
|
4059
4000
|
maxResults: {
|
4060
|
-
type: "
|
4001
|
+
type: "number",
|
4061
4002
|
description: "Maximum number of events to return, defaults to 250",
|
4062
4003
|
},
|
4063
4004
|
timeMin: {
|
@@ -4329,19 +4270,19 @@ export const googleOauthCreateSpreadsheetDefinition = {
|
|
4329
4270
|
type: "object",
|
4330
4271
|
properties: {
|
4331
4272
|
rowCount: {
|
4332
|
-
type: "
|
4273
|
+
type: "number",
|
4333
4274
|
description: "The number of rows in the sheet",
|
4334
4275
|
},
|
4335
4276
|
columnCount: {
|
4336
|
-
type: "
|
4277
|
+
type: "number",
|
4337
4278
|
description: "The number of columns in the sheet",
|
4338
4279
|
},
|
4339
4280
|
frozenRowCount: {
|
4340
|
-
type: "
|
4281
|
+
type: "number",
|
4341
4282
|
description: "The number of frozen rows",
|
4342
4283
|
},
|
4343
4284
|
frozenColumnCount: {
|
4344
|
-
type: "
|
4285
|
+
type: "number",
|
4345
4286
|
description: "The number of frozen columns",
|
4346
4287
|
},
|
4347
4288
|
},
|
@@ -4393,7 +4334,7 @@ export const googleOauthCreateSpreadsheetDefinition = {
|
|
4393
4334
|
type: "object",
|
4394
4335
|
properties: {
|
4395
4336
|
sheetId: {
|
4396
|
-
type: "
|
4337
|
+
type: "number",
|
4397
4338
|
description: "The ID of the sheet",
|
4398
4339
|
},
|
4399
4340
|
title: {
|
@@ -4401,7 +4342,7 @@ export const googleOauthCreateSpreadsheetDefinition = {
|
|
4401
4342
|
description: "The title of the sheet",
|
4402
4343
|
},
|
4403
4344
|
index: {
|
4404
|
-
type: "
|
4345
|
+
type: "number",
|
4405
4346
|
description: "The index of the sheet",
|
4406
4347
|
},
|
4407
4348
|
},
|
@@ -4451,11 +4392,11 @@ export const googleOauthUpdateSpreadsheetDefinition = {
|
|
4451
4392
|
type: "object",
|
4452
4393
|
properties: {
|
4453
4394
|
rowCount: {
|
4454
|
-
type: "
|
4395
|
+
type: "number",
|
4455
4396
|
description: "The number of rows in the sheet",
|
4456
4397
|
},
|
4457
4398
|
columnCount: {
|
4458
|
-
type: "
|
4399
|
+
type: "number",
|
4459
4400
|
description: "The number of columns in the sheet",
|
4460
4401
|
},
|
4461
4402
|
},
|
@@ -4474,7 +4415,7 @@ export const googleOauthUpdateSpreadsheetDefinition = {
|
|
4474
4415
|
type: "object",
|
4475
4416
|
properties: {
|
4476
4417
|
sheetId: {
|
4477
|
-
type: "
|
4418
|
+
type: "number",
|
4478
4419
|
description: "The ID of the sheet to delete",
|
4479
4420
|
},
|
4480
4421
|
},
|
@@ -4492,23 +4433,23 @@ export const googleOauthUpdateSpreadsheetDefinition = {
|
|
4492
4433
|
type: "object",
|
4493
4434
|
properties: {
|
4494
4435
|
sheetId: {
|
4495
|
-
type: "
|
4436
|
+
type: "number",
|
4496
4437
|
description: "The ID of the sheet",
|
4497
4438
|
},
|
4498
4439
|
startRowIndex: {
|
4499
|
-
type: "
|
4440
|
+
type: "number",
|
4500
4441
|
description: "The start row (0-based, inclusive)",
|
4501
4442
|
},
|
4502
4443
|
endRowIndex: {
|
4503
|
-
type: "
|
4444
|
+
type: "number",
|
4504
4445
|
description: "The end row (0-based, exclusive)",
|
4505
4446
|
},
|
4506
4447
|
startColumnIndex: {
|
4507
|
-
type: "
|
4448
|
+
type: "number",
|
4508
4449
|
description: "The start column (0-based, inclusive)",
|
4509
4450
|
},
|
4510
4451
|
endColumnIndex: {
|
4511
|
-
type: "
|
4452
|
+
type: "number",
|
4512
4453
|
description: "The end column (0-based, exclusive)",
|
4513
4454
|
},
|
4514
4455
|
},
|
@@ -4561,7 +4502,7 @@ export const googleOauthUpdateSpreadsheetDefinition = {
|
|
4561
4502
|
type: "object",
|
4562
4503
|
properties: {
|
4563
4504
|
sheetId: {
|
4564
|
-
type: "
|
4505
|
+
type: "number",
|
4565
4506
|
description: "The ID of the sheet to update",
|
4566
4507
|
},
|
4567
4508
|
title: {
|
@@ -4572,19 +4513,19 @@ export const googleOauthUpdateSpreadsheetDefinition = {
|
|
4572
4513
|
type: "object",
|
4573
4514
|
properties: {
|
4574
4515
|
rowCount: {
|
4575
|
-
type: "
|
4516
|
+
type: "number",
|
4576
4517
|
description: "The new number of rows",
|
4577
4518
|
},
|
4578
4519
|
columnCount: {
|
4579
|
-
type: "
|
4520
|
+
type: "number",
|
4580
4521
|
description: "The new number of columns",
|
4581
4522
|
},
|
4582
4523
|
frozenRowCount: {
|
4583
|
-
type: "
|
4524
|
+
type: "number",
|
4584
4525
|
description: "The number of frozen rows",
|
4585
4526
|
},
|
4586
4527
|
frozenColumnCount: {
|
4587
|
-
type: "
|
4528
|
+
type: "number",
|
4588
4529
|
description: "The number of frozen columns",
|
4589
4530
|
},
|
4590
4531
|
},
|
@@ -4702,7 +4643,7 @@ export const googleOauthUpdateSpreadsheetDefinition = {
|
|
4702
4643
|
description: "The font family",
|
4703
4644
|
},
|
4704
4645
|
fontSize: {
|
4705
|
-
type: "
|
4646
|
+
type: "number",
|
4706
4647
|
description: "The size of the font in points",
|
4707
4648
|
},
|
4708
4649
|
bold: {
|
@@ -4770,7 +4711,7 @@ export const googleOauthUpdateSpreadsheetDefinition = {
|
|
4770
4711
|
type: "object",
|
4771
4712
|
properties: {
|
4772
4713
|
sheetId: {
|
4773
|
-
type: "
|
4714
|
+
type: "number",
|
4774
4715
|
description: "The ID of the newly created sheet",
|
4775
4716
|
},
|
4776
4717
|
title: {
|
@@ -4778,7 +4719,7 @@ export const googleOauthUpdateSpreadsheetDefinition = {
|
|
4778
4719
|
description: "The title of the new sheet",
|
4779
4720
|
},
|
4780
4721
|
index: {
|
4781
|
-
type: "
|
4722
|
+
type: "number",
|
4782
4723
|
description: "The index of the new sheet",
|
4783
4724
|
},
|
4784
4725
|
},
|
@@ -4902,7 +4843,7 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
4902
4843
|
description: "The object ID for the created slide",
|
4903
4844
|
},
|
4904
4845
|
insertionIndex: {
|
4905
|
-
type: "
|
4846
|
+
type: "number",
|
4906
4847
|
description: "The 0-based index where the new slide should be inserted",
|
4907
4848
|
},
|
4908
4849
|
slideLayoutReference: {
|
@@ -4958,11 +4899,11 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
4958
4899
|
description: "The object ID for the created table",
|
4959
4900
|
},
|
4960
4901
|
rows: {
|
4961
|
-
type: "
|
4902
|
+
type: "number",
|
4962
4903
|
description: "Number of rows in the table",
|
4963
4904
|
},
|
4964
4905
|
columns: {
|
4965
|
-
type: "
|
4906
|
+
type: "number",
|
4966
4907
|
description: "Number of columns in the table",
|
4967
4908
|
},
|
4968
4909
|
elementProperties: {
|
@@ -4991,7 +4932,7 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
4991
4932
|
description: "The text to be inserted",
|
4992
4933
|
},
|
4993
4934
|
insertionIndex: {
|
4994
|
-
type: "
|
4935
|
+
type: "number",
|
4995
4936
|
description: "The index where the text will be inserted",
|
4996
4937
|
},
|
4997
4938
|
},
|
@@ -5016,7 +4957,7 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
5016
4957
|
description: "Whether to insert the rows below the reference cell",
|
5017
4958
|
},
|
5018
4959
|
number: {
|
5019
|
-
type: "
|
4960
|
+
type: "number",
|
5020
4961
|
description: "The number of rows to insert",
|
5021
4962
|
},
|
5022
4963
|
cellLocation: {
|
@@ -5045,7 +4986,7 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
5045
4986
|
description: "Whether to insert the columns to the right of the reference cell",
|
5046
4987
|
},
|
5047
4988
|
number: {
|
5048
|
-
type: "
|
4989
|
+
type: "number",
|
5049
4990
|
description: "The number of columns to insert",
|
5050
4991
|
},
|
5051
4992
|
cellLocation: {
|
@@ -5207,7 +5148,7 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
5207
5148
|
},
|
5208
5149
|
},
|
5209
5150
|
insertionIndex: {
|
5210
|
-
type: "
|
5151
|
+
type: "number",
|
5211
5152
|
description: "The 0-based index where the slides should be moved to",
|
5212
5153
|
},
|
5213
5154
|
},
|
@@ -5232,11 +5173,11 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
5232
5173
|
description: "The range of text to delete",
|
5233
5174
|
properties: {
|
5234
5175
|
startIndex: {
|
5235
|
-
type: "
|
5176
|
+
type: "number",
|
5236
5177
|
description: "The starting index of the range (0-based)",
|
5237
5178
|
},
|
5238
5179
|
endIndex: {
|
5239
|
-
type: "
|
5180
|
+
type: "number",
|
5240
5181
|
description: "The ending index of the range (0-based)",
|
5241
5182
|
},
|
5242
5183
|
},
|
@@ -5313,7 +5254,7 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
5313
5254
|
description: "The ID of the Google Sheets spreadsheet containing the chart",
|
5314
5255
|
},
|
5315
5256
|
chartId: {
|
5316
|
-
type: "
|
5257
|
+
type: "number",
|
5317
5258
|
description: "The ID of the specific chart in the spreadsheet",
|
5318
5259
|
},
|
5319
5260
|
elementProperties: {
|
@@ -5628,11 +5569,11 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
5628
5569
|
description: "The type of range",
|
5629
5570
|
},
|
5630
5571
|
startIndex: {
|
5631
|
-
type: "
|
5572
|
+
type: "number",
|
5632
5573
|
description: "The start index for FROM_START_INDEX or FIXED_RANGE",
|
5633
5574
|
},
|
5634
5575
|
endIndex: {
|
5635
|
-
type: "
|
5576
|
+
type: "number",
|
5636
5577
|
description: "The end index for FIXED_RANGE",
|
5637
5578
|
},
|
5638
5579
|
},
|
@@ -5655,7 +5596,7 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
5655
5596
|
description: "The ID of the Google Sheets spreadsheet containing the chart",
|
5656
5597
|
},
|
5657
5598
|
chartId: {
|
5658
|
-
type: "
|
5599
|
+
type: "number",
|
5659
5600
|
description: "The ID of the chart within the spreadsheet",
|
5660
5601
|
},
|
5661
5602
|
containsText: {
|
@@ -5712,11 +5653,11 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
5712
5653
|
description: "The type of range",
|
5713
5654
|
},
|
5714
5655
|
startIndex: {
|
5715
|
-
type: "
|
5656
|
+
type: "number",
|
5716
5657
|
description: "The start index for FROM_START_INDEX or FIXED_RANGE",
|
5717
5658
|
},
|
5718
5659
|
endIndex: {
|
5719
|
-
type: "
|
5660
|
+
type: "number",
|
5720
5661
|
description: "The end index for FIXED_RANGE",
|
5721
5662
|
},
|
5722
5663
|
},
|
@@ -5756,11 +5697,11 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
5756
5697
|
description: "The type of range",
|
5757
5698
|
},
|
5758
5699
|
startIndex: {
|
5759
|
-
type: "
|
5700
|
+
type: "number",
|
5760
5701
|
description: "The start index for FROM_START_INDEX or FIXED_RANGE",
|
5761
5702
|
},
|
5762
5703
|
endIndex: {
|
5763
|
-
type: "
|
5704
|
+
type: "number",
|
5764
5705
|
description: "The end index for FIXED_RANGE",
|
5765
5706
|
},
|
5766
5707
|
},
|
@@ -5804,11 +5745,11 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
5804
5745
|
description: "The starting cell location",
|
5805
5746
|
},
|
5806
5747
|
rowSpan: {
|
5807
|
-
type: "
|
5748
|
+
type: "number",
|
5808
5749
|
description: "The number of rows in the range",
|
5809
5750
|
},
|
5810
5751
|
columnSpan: {
|
5811
|
-
type: "
|
5752
|
+
type: "number",
|
5812
5753
|
description: "The number of columns in the range",
|
5813
5754
|
},
|
5814
5755
|
},
|
@@ -5833,7 +5774,7 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
5833
5774
|
columnIndices: {
|
5834
5775
|
type: "array",
|
5835
5776
|
items: {
|
5836
|
-
type: "
|
5777
|
+
type: "number",
|
5837
5778
|
},
|
5838
5779
|
description: "The 0-based indices of the columns to update",
|
5839
5780
|
},
|
@@ -5865,7 +5806,7 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
5865
5806
|
rowIndices: {
|
5866
5807
|
type: "array",
|
5867
5808
|
items: {
|
5868
|
-
type: "
|
5809
|
+
type: "number",
|
5869
5810
|
},
|
5870
5811
|
description: "The 0-based indices of the rows to update",
|
5871
5812
|
},
|
@@ -5903,11 +5844,11 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
5903
5844
|
description: "The starting cell location",
|
5904
5845
|
},
|
5905
5846
|
rowSpan: {
|
5906
|
-
type: "
|
5847
|
+
type: "number",
|
5907
5848
|
description: "The number of rows in the range",
|
5908
5849
|
},
|
5909
5850
|
columnSpan: {
|
5910
|
-
type: "
|
5851
|
+
type: "number",
|
5911
5852
|
description: "The number of columns in the range",
|
5912
5853
|
},
|
5913
5854
|
},
|
@@ -5938,11 +5879,11 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
5938
5879
|
description: "The starting cell location",
|
5939
5880
|
},
|
5940
5881
|
rowSpan: {
|
5941
|
-
type: "
|
5882
|
+
type: "number",
|
5942
5883
|
description: "The number of rows in the range",
|
5943
5884
|
},
|
5944
5885
|
columnSpan: {
|
5945
|
-
type: "
|
5886
|
+
type: "number",
|
5946
5887
|
description: "The number of columns in the range",
|
5947
5888
|
},
|
5948
5889
|
},
|
@@ -6176,7 +6117,7 @@ export const googleOauthSearchDriveByKeywordsDefinition = {
|
|
6176
6117
|
},
|
6177
6118
|
},
|
6178
6119
|
limit: {
|
6179
|
-
type: "
|
6120
|
+
type: "number",
|
6180
6121
|
description: "The maximum number of files to return",
|
6181
6122
|
},
|
6182
6123
|
},
|
@@ -6224,6 +6165,66 @@ export const googleOauthSearchDriveByKeywordsDefinition = {
|
|
6224
6165
|
name: "searchDriveByKeywords",
|
6225
6166
|
provider: "googleOauth",
|
6226
6167
|
};
|
6168
|
+
export const googleOauthSearchDriveByQueryDefinition = {
|
6169
|
+
description: "Search Google Drive files based on a gdrive query provided.",
|
6170
|
+
scopes: ["drive.readonly"],
|
6171
|
+
parameters: {
|
6172
|
+
type: "object",
|
6173
|
+
required: ["query"],
|
6174
|
+
properties: {
|
6175
|
+
query: {
|
6176
|
+
type: "string",
|
6177
|
+
description: "The query to search for in file contents.",
|
6178
|
+
},
|
6179
|
+
limit: {
|
6180
|
+
type: "number",
|
6181
|
+
description: "The maximum number of files to return",
|
6182
|
+
},
|
6183
|
+
},
|
6184
|
+
},
|
6185
|
+
output: {
|
6186
|
+
type: "object",
|
6187
|
+
required: ["success"],
|
6188
|
+
properties: {
|
6189
|
+
success: {
|
6190
|
+
type: "boolean",
|
6191
|
+
description: "Whether the search was successful",
|
6192
|
+
},
|
6193
|
+
files: {
|
6194
|
+
type: "array",
|
6195
|
+
description: "List of files matching the search",
|
6196
|
+
items: {
|
6197
|
+
type: "object",
|
6198
|
+
required: ["id", "name", "mimeType", "url"],
|
6199
|
+
properties: {
|
6200
|
+
id: {
|
6201
|
+
type: "string",
|
6202
|
+
description: "The file ID",
|
6203
|
+
},
|
6204
|
+
name: {
|
6205
|
+
type: "string",
|
6206
|
+
description: "The file name",
|
6207
|
+
},
|
6208
|
+
mimeType: {
|
6209
|
+
type: "string",
|
6210
|
+
description: "The MIME type of the file",
|
6211
|
+
},
|
6212
|
+
url: {
|
6213
|
+
type: "string",
|
6214
|
+
description: "The web link to view the file",
|
6215
|
+
},
|
6216
|
+
},
|
6217
|
+
},
|
6218
|
+
},
|
6219
|
+
error: {
|
6220
|
+
type: "string",
|
6221
|
+
description: "Error message if search failed",
|
6222
|
+
},
|
6223
|
+
},
|
6224
|
+
},
|
6225
|
+
name: "searchDriveByQuery",
|
6226
|
+
provider: "googleOauth",
|
6227
|
+
};
|
6227
6228
|
export const googleOauthGetDriveFileContentByIdDefinition = {
|
6228
6229
|
description: "Get text content of a Google Drive file by its ID.",
|
6229
6230
|
scopes: ["drive.readonly"],
|
@@ -6236,7 +6237,7 @@ export const googleOauthGetDriveFileContentByIdDefinition = {
|
|
6236
6237
|
description: "The ID of the file to get content from",
|
6237
6238
|
},
|
6238
6239
|
limit: {
|
6239
|
-
type: "
|
6240
|
+
type: "number",
|
6240
6241
|
description: "The character limit for the file content",
|
6241
6242
|
},
|
6242
6243
|
},
|
@@ -6258,7 +6259,7 @@ export const googleOauthGetDriveFileContentByIdDefinition = {
|
|
6258
6259
|
description: "The name of the file",
|
6259
6260
|
},
|
6260
6261
|
fileLength: {
|
6261
|
-
type: "
|
6262
|
+
type: "number",
|
6262
6263
|
description: "The length of the file content prior to truncating",
|
6263
6264
|
},
|
6264
6265
|
error: {
|
@@ -6278,7 +6279,7 @@ export const googleOauthListGroupsDefinition = {
|
|
6278
6279
|
required: [],
|
6279
6280
|
properties: {
|
6280
6281
|
maxResults: {
|
6281
|
-
type: "
|
6282
|
+
type: "number",
|
6282
6283
|
description: "The maximum number of groups to return (max allowed is 200)",
|
6283
6284
|
},
|
6284
6285
|
},
|
@@ -6390,7 +6391,7 @@ export const googleOauthListGroupMembersDefinition = {
|
|
6390
6391
|
description: "The group's email address or unique group ID",
|
6391
6392
|
},
|
6392
6393
|
maxResults: {
|
6393
|
-
type: "
|
6394
|
+
type: "number",
|
6394
6395
|
description: "The maximum number of members to return (max allowed is 200)",
|
6395
6396
|
},
|
6396
6397
|
},
|
@@ -6560,7 +6561,7 @@ export const googlemailSearchGmailMessagesDefinition = {
|
|
6560
6561
|
description: 'Gmail search query (e.g. "from:alice subject:urgent")',
|
6561
6562
|
},
|
6562
6563
|
maxResults: {
|
6563
|
-
type: "
|
6564
|
+
type: "number",
|
6564
6565
|
description: "Maximum number of messages to return (optional)",
|
6565
6566
|
},
|
6566
6567
|
},
|
@@ -6630,7 +6631,7 @@ export const googlemailListGmailThreadsDefinition = {
|
|
6630
6631
|
description: 'Gmail search query (e.g. "from:alice subject:project")',
|
6631
6632
|
},
|
6632
6633
|
maxResults: {
|
6633
|
-
type: "
|
6634
|
+
type: "number",
|
6634
6635
|
description: "Maximum number of threads to return",
|
6635
6636
|
},
|
6636
6637
|
},
|
@@ -6886,7 +6887,7 @@ export const oktaListOktaUserGroupsDefinition = {
|
|
6886
6887
|
description: "The ID of the user whose groups are to be listed.",
|
6887
6888
|
},
|
6888
6889
|
maxResults: {
|
6889
|
-
type: "
|
6890
|
+
type: "number",
|
6890
6891
|
description: "The maximum number of results to return.",
|
6891
6892
|
minimum: 1,
|
6892
6893
|
},
|
@@ -6949,7 +6950,7 @@ export const oktaListOktaGroupsDefinition = {
|
|
6949
6950
|
description: "Optional search query to filter groups.\nThis field corresponds to the `search` query parameter in the Okta API's List Groups operation.\nFor detailed information on constructing search queries and available filter expressions, refer to the Okta API documentation:\nhttps://developer.okta.com/docs/api/openapi/okta-management/management/tag/Group/#tag/Group/operation/listGroups!in=query&path=search&t=request\nExample: 'profile.name eq \"My Group\"'\n",
|
6950
6951
|
},
|
6951
6952
|
maxResults: {
|
6952
|
-
type: "
|
6953
|
+
type: "number",
|
6953
6954
|
description: "The maximum number of results to return.",
|
6954
6955
|
minimum: 1,
|
6955
6956
|
},
|
@@ -7123,7 +7124,7 @@ export const oktaListOktaGroupMembersDefinition = {
|
|
7123
7124
|
description: "The ID of the group whose members are to be listed.",
|
7124
7125
|
},
|
7125
7126
|
maxResults: {
|
7126
|
-
type: "
|
7127
|
+
type: "number",
|
7127
7128
|
description: "The maximum number of results to return.",
|
7128
7129
|
minimum: 1,
|
7129
7130
|
},
|
@@ -7317,7 +7318,7 @@ export const oktaListOktaUsersDefinition = {
|
|
7317
7318
|
description: "Optional search query to filter users.\nThis field corresponds to the `search` query parameter in the Okta API's List Users operation.\nFor detailed information on constructing search queries and available filter expressions, refer to the Okta API documentation:\nhttps://developer.okta.com/docs/api/openapi/okta-management/management/tag/User/#tag/User/operation/listUsers!in=query&path=search&t=request\nExample: 'profile.email eq \"my_user@example.com\"'\n",
|
7318
7319
|
},
|
7319
7320
|
maxResults: {
|
7320
|
-
type: "
|
7321
|
+
type: "number",
|
7321
7322
|
description: "The maximum number of results to return.",
|
7322
7323
|
minimum: 1,
|
7323
7324
|
},
|