@credal/actions 0.2.35 → 0.2.37
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/autogen/templates.js +106 -106
- package/dist/actions/autogen/types.js +101 -117
- package/dist/actions/providers/google-oauth/getDriveFileContentById.js +4 -32
- package/dist/actions/providers/google-oauth/searchAndGetDriveContentByKeywords.d.ts +3 -0
- package/dist/actions/providers/google-oauth/searchAndGetDriveContentByKeywords.js +47 -0
- 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/utils/extractContentFromDriveFileId.d.ts +1 -2
- package/dist/actions/providers/google-oauth/utils/extractContentFromDriveFileId.js +6 -51
- package/package.json +1 -2
@@ -2885,7 +2885,7 @@ export const googleOauthUpdateDocDefinition = {
|
|
2885
2885
|
required: ["index"],
|
2886
2886
|
properties: {
|
2887
2887
|
index: {
|
2888
|
-
type: "
|
2888
|
+
type: "number",
|
2889
2889
|
description: "The zero-based index in the document where to insert the text",
|
2890
2890
|
},
|
2891
2891
|
},
|
@@ -2969,7 +2969,7 @@ export const googleOauthUpdateDocDefinition = {
|
|
2969
2969
|
description: "The font family of the text",
|
2970
2970
|
},
|
2971
2971
|
weight: {
|
2972
|
-
type: "
|
2972
|
+
type: "number",
|
2973
2973
|
description: "The weight of the font",
|
2974
2974
|
},
|
2975
2975
|
},
|
@@ -2986,11 +2986,11 @@ export const googleOauthUpdateDocDefinition = {
|
|
2986
2986
|
required: ["startIndex", "endIndex"],
|
2987
2987
|
properties: {
|
2988
2988
|
startIndex: {
|
2989
|
-
type: "
|
2989
|
+
type: "number",
|
2990
2990
|
description: "The zero-based starting index of the range",
|
2991
2991
|
},
|
2992
2992
|
endIndex: {
|
2993
|
-
type: "
|
2993
|
+
type: "number",
|
2994
2994
|
description: "The zero-based ending index of the range (exclusive)",
|
2995
2995
|
},
|
2996
2996
|
},
|
@@ -3014,11 +3014,11 @@ export const googleOauthUpdateDocDefinition = {
|
|
3014
3014
|
required: ["startIndex", "endIndex"],
|
3015
3015
|
properties: {
|
3016
3016
|
startIndex: {
|
3017
|
-
type: "
|
3017
|
+
type: "number",
|
3018
3018
|
description: "The zero-based starting index of the range",
|
3019
3019
|
},
|
3020
3020
|
endIndex: {
|
3021
|
-
type: "
|
3021
|
+
type: "number",
|
3022
3022
|
description: "The zero-based ending index of the range (exclusive)",
|
3023
3023
|
},
|
3024
3024
|
},
|
@@ -3047,17 +3047,17 @@ export const googleOauthUpdateDocDefinition = {
|
|
3047
3047
|
required: ["index"],
|
3048
3048
|
properties: {
|
3049
3049
|
index: {
|
3050
|
-
type: "
|
3050
|
+
type: "number",
|
3051
3051
|
description: "The zero-based index in the document",
|
3052
3052
|
},
|
3053
3053
|
},
|
3054
3054
|
},
|
3055
3055
|
rowIndex: {
|
3056
|
-
type: "
|
3056
|
+
type: "number",
|
3057
3057
|
description: "The zero-based row index",
|
3058
3058
|
},
|
3059
3059
|
columnIndex: {
|
3060
|
-
type: "
|
3060
|
+
type: "number",
|
3061
3061
|
description: "The zero-based column index",
|
3062
3062
|
},
|
3063
3063
|
},
|
@@ -3090,17 +3090,17 @@ export const googleOauthUpdateDocDefinition = {
|
|
3090
3090
|
required: ["index"],
|
3091
3091
|
properties: {
|
3092
3092
|
index: {
|
3093
|
-
type: "
|
3093
|
+
type: "number",
|
3094
3094
|
description: "The zero-based index in the document",
|
3095
3095
|
},
|
3096
3096
|
},
|
3097
3097
|
},
|
3098
3098
|
rowIndex: {
|
3099
|
-
type: "
|
3099
|
+
type: "number",
|
3100
3100
|
description: "The zero-based row index",
|
3101
3101
|
},
|
3102
3102
|
columnIndex: {
|
3103
|
-
type: "
|
3103
|
+
type: "number",
|
3104
3104
|
description: "The zero-based column index",
|
3105
3105
|
},
|
3106
3106
|
},
|
@@ -3133,17 +3133,17 @@ export const googleOauthUpdateDocDefinition = {
|
|
3133
3133
|
required: ["index"],
|
3134
3134
|
properties: {
|
3135
3135
|
index: {
|
3136
|
-
type: "
|
3136
|
+
type: "number",
|
3137
3137
|
description: "The zero-based index in the document",
|
3138
3138
|
},
|
3139
3139
|
},
|
3140
3140
|
},
|
3141
3141
|
rowIndex: {
|
3142
|
-
type: "
|
3142
|
+
type: "number",
|
3143
3143
|
description: "The zero-based row index",
|
3144
3144
|
},
|
3145
3145
|
columnIndex: {
|
3146
|
-
type: "
|
3146
|
+
type: "number",
|
3147
3147
|
description: "The zero-based column index",
|
3148
3148
|
},
|
3149
3149
|
},
|
@@ -3172,17 +3172,17 @@ export const googleOauthUpdateDocDefinition = {
|
|
3172
3172
|
required: ["index"],
|
3173
3173
|
properties: {
|
3174
3174
|
index: {
|
3175
|
-
type: "
|
3175
|
+
type: "number",
|
3176
3176
|
description: "The zero-based index in the document",
|
3177
3177
|
},
|
3178
3178
|
},
|
3179
3179
|
},
|
3180
3180
|
rowIndex: {
|
3181
|
-
type: "
|
3181
|
+
type: "number",
|
3182
3182
|
description: "The zero-based row index",
|
3183
3183
|
},
|
3184
3184
|
columnIndex: {
|
3185
|
-
type: "
|
3185
|
+
type: "number",
|
3186
3186
|
description: "The zero-based column index",
|
3187
3187
|
},
|
3188
3188
|
},
|
@@ -3206,11 +3206,11 @@ export const googleOauthUpdateDocDefinition = {
|
|
3206
3206
|
required: ["startIndex", "endIndex"],
|
3207
3207
|
properties: {
|
3208
3208
|
startIndex: {
|
3209
|
-
type: "
|
3209
|
+
type: "number",
|
3210
3210
|
description: "The zero-based starting index of the range",
|
3211
3211
|
},
|
3212
3212
|
endIndex: {
|
3213
|
-
type: "
|
3213
|
+
type: "number",
|
3214
3214
|
description: "The zero-based ending index of the range (exclusive)",
|
3215
3215
|
},
|
3216
3216
|
},
|
@@ -3318,11 +3318,11 @@ export const googleOauthUpdateDocDefinition = {
|
|
3318
3318
|
required: ["startIndex", "endIndex"],
|
3319
3319
|
properties: {
|
3320
3320
|
startIndex: {
|
3321
|
-
type: "
|
3321
|
+
type: "number",
|
3322
3322
|
description: "The zero-based starting index of the range",
|
3323
3323
|
},
|
3324
3324
|
endIndex: {
|
3325
|
-
type: "
|
3325
|
+
type: "number",
|
3326
3326
|
description: "The zero-based ending index of the range (exclusive)",
|
3327
3327
|
},
|
3328
3328
|
},
|
@@ -3369,11 +3369,11 @@ export const googleOauthUpdateDocDefinition = {
|
|
3369
3369
|
required: ["startIndex", "endIndex"],
|
3370
3370
|
properties: {
|
3371
3371
|
startIndex: {
|
3372
|
-
type: "
|
3372
|
+
type: "number",
|
3373
3373
|
description: "The zero-based starting index of the range",
|
3374
3374
|
},
|
3375
3375
|
endIndex: {
|
3376
|
-
type: "
|
3376
|
+
type: "number",
|
3377
3377
|
description: "The zero-based ending index of the range (exclusive)",
|
3378
3378
|
},
|
3379
3379
|
},
|
@@ -3397,7 +3397,7 @@ export const googleOauthUpdateDocDefinition = {
|
|
3397
3397
|
required: ["index"],
|
3398
3398
|
properties: {
|
3399
3399
|
index: {
|
3400
|
-
type: "
|
3400
|
+
type: "number",
|
3401
3401
|
description: "The zero-based index in the document",
|
3402
3402
|
},
|
3403
3403
|
},
|
@@ -3464,7 +3464,7 @@ export const googleOauthUpdateDocDefinition = {
|
|
3464
3464
|
description: "The left page margin",
|
3465
3465
|
},
|
3466
3466
|
pageNumberStart: {
|
3467
|
-
type: "
|
3467
|
+
type: "number",
|
3468
3468
|
description: "The page number from which to start counting",
|
3469
3469
|
},
|
3470
3470
|
pageSize: {
|
@@ -3565,7 +3565,7 @@ export const googleOauthUpdateDocDefinition = {
|
|
3565
3565
|
description: "The top border of the cells",
|
3566
3566
|
},
|
3567
3567
|
columnSpan: {
|
3568
|
-
type: "
|
3568
|
+
type: "number",
|
3569
3569
|
description: "The number of columns that the cell spans",
|
3570
3570
|
},
|
3571
3571
|
contentAlignment: {
|
@@ -3589,7 +3589,7 @@ export const googleOauthUpdateDocDefinition = {
|
|
3589
3589
|
description: "The top padding of the cells",
|
3590
3590
|
},
|
3591
3591
|
rowSpan: {
|
3592
|
-
type: "
|
3592
|
+
type: "number",
|
3593
3593
|
description: "The number of rows that the cell spans",
|
3594
3594
|
},
|
3595
3595
|
},
|
@@ -3614,27 +3614,27 @@ export const googleOauthUpdateDocDefinition = {
|
|
3614
3614
|
required: ["index"],
|
3615
3615
|
properties: {
|
3616
3616
|
index: {
|
3617
|
-
type: "
|
3617
|
+
type: "number",
|
3618
3618
|
description: "The zero-based index in the document",
|
3619
3619
|
},
|
3620
3620
|
},
|
3621
3621
|
},
|
3622
3622
|
rowIndex: {
|
3623
|
-
type: "
|
3623
|
+
type: "number",
|
3624
3624
|
description: "The zero-based row index",
|
3625
3625
|
},
|
3626
3626
|
columnIndex: {
|
3627
|
-
type: "
|
3627
|
+
type: "number",
|
3628
3628
|
description: "The zero-based column index",
|
3629
3629
|
},
|
3630
3630
|
},
|
3631
3631
|
},
|
3632
3632
|
rowSpan: {
|
3633
|
-
type: "
|
3633
|
+
type: "number",
|
3634
3634
|
description: "The number of rows that the range should span",
|
3635
3635
|
},
|
3636
3636
|
columnSpan: {
|
3637
|
-
type: "
|
3637
|
+
type: "number",
|
3638
3638
|
description: "The number of columns that the range should span",
|
3639
3639
|
},
|
3640
3640
|
},
|
@@ -3668,27 +3668,27 @@ export const googleOauthUpdateDocDefinition = {
|
|
3668
3668
|
required: ["index"],
|
3669
3669
|
properties: {
|
3670
3670
|
index: {
|
3671
|
-
type: "
|
3671
|
+
type: "number",
|
3672
3672
|
description: "The zero-based index in the document",
|
3673
3673
|
},
|
3674
3674
|
},
|
3675
3675
|
},
|
3676
3676
|
rowIndex: {
|
3677
|
-
type: "
|
3677
|
+
type: "number",
|
3678
3678
|
description: "The zero-based row index",
|
3679
3679
|
},
|
3680
3680
|
columnIndex: {
|
3681
|
-
type: "
|
3681
|
+
type: "number",
|
3682
3682
|
description: "The zero-based column index",
|
3683
3683
|
},
|
3684
3684
|
},
|
3685
3685
|
},
|
3686
3686
|
rowSpan: {
|
3687
|
-
type: "
|
3687
|
+
type: "number",
|
3688
3688
|
description: "The number of rows that the range should span",
|
3689
3689
|
},
|
3690
3690
|
columnSpan: {
|
3691
|
-
type: "
|
3691
|
+
type: "number",
|
3692
3692
|
description: "The number of columns that the range should span",
|
3693
3693
|
},
|
3694
3694
|
},
|
@@ -3722,27 +3722,27 @@ export const googleOauthUpdateDocDefinition = {
|
|
3722
3722
|
required: ["index"],
|
3723
3723
|
properties: {
|
3724
3724
|
index: {
|
3725
|
-
type: "
|
3725
|
+
type: "number",
|
3726
3726
|
description: "The zero-based index in the document",
|
3727
3727
|
},
|
3728
3728
|
},
|
3729
3729
|
},
|
3730
3730
|
rowIndex: {
|
3731
|
-
type: "
|
3731
|
+
type: "number",
|
3732
3732
|
description: "The zero-based row index",
|
3733
3733
|
},
|
3734
3734
|
columnIndex: {
|
3735
|
-
type: "
|
3735
|
+
type: "number",
|
3736
3736
|
description: "The zero-based column index",
|
3737
3737
|
},
|
3738
3738
|
},
|
3739
3739
|
},
|
3740
3740
|
rowSpan: {
|
3741
|
-
type: "
|
3741
|
+
type: "number",
|
3742
3742
|
description: "The number of rows that the range should span",
|
3743
3743
|
},
|
3744
3744
|
columnSpan: {
|
3745
|
-
type: "
|
3745
|
+
type: "number",
|
3746
3746
|
description: "The number of columns that the range should span",
|
3747
3747
|
},
|
3748
3748
|
},
|
@@ -3770,11 +3770,11 @@ export const googleOauthUpdateDocDefinition = {
|
|
3770
3770
|
required: ["startIndex", "endIndex"],
|
3771
3771
|
properties: {
|
3772
3772
|
startIndex: {
|
3773
|
-
type: "
|
3773
|
+
type: "number",
|
3774
3774
|
description: "The zero-based starting index of the range",
|
3775
3775
|
},
|
3776
3776
|
endIndex: {
|
3777
|
-
type: "
|
3777
|
+
type: "number",
|
3778
3778
|
description: "The zero-based ending index of the range (exclusive)",
|
3779
3779
|
},
|
3780
3780
|
},
|
@@ -3836,7 +3836,7 @@ export const googleOauthUpdateDocDefinition = {
|
|
3836
3836
|
required: ["index"],
|
3837
3837
|
properties: {
|
3838
3838
|
index: {
|
3839
|
-
type: "
|
3839
|
+
type: "number",
|
3840
3840
|
description: "The zero-based index in the document",
|
3841
3841
|
},
|
3842
3842
|
},
|
@@ -4001,7 +4001,7 @@ export const googleOauthListCalendarsDefinition = {
|
|
4001
4001
|
required: [],
|
4002
4002
|
properties: {
|
4003
4003
|
maxResults: {
|
4004
|
-
type: "
|
4004
|
+
type: "number",
|
4005
4005
|
description: "Maximum number of calendars to return, defaults to 250",
|
4006
4006
|
},
|
4007
4007
|
},
|
@@ -4057,7 +4057,7 @@ export const googleOauthListCalendarEventsDefinition = {
|
|
4057
4057
|
description: "Optional free-text search query to filter events",
|
4058
4058
|
},
|
4059
4059
|
maxResults: {
|
4060
|
-
type: "
|
4060
|
+
type: "number",
|
4061
4061
|
description: "Maximum number of events to return, defaults to 250",
|
4062
4062
|
},
|
4063
4063
|
timeMin: {
|
@@ -4329,19 +4329,19 @@ export const googleOauthCreateSpreadsheetDefinition = {
|
|
4329
4329
|
type: "object",
|
4330
4330
|
properties: {
|
4331
4331
|
rowCount: {
|
4332
|
-
type: "
|
4332
|
+
type: "number",
|
4333
4333
|
description: "The number of rows in the sheet",
|
4334
4334
|
},
|
4335
4335
|
columnCount: {
|
4336
|
-
type: "
|
4336
|
+
type: "number",
|
4337
4337
|
description: "The number of columns in the sheet",
|
4338
4338
|
},
|
4339
4339
|
frozenRowCount: {
|
4340
|
-
type: "
|
4340
|
+
type: "number",
|
4341
4341
|
description: "The number of frozen rows",
|
4342
4342
|
},
|
4343
4343
|
frozenColumnCount: {
|
4344
|
-
type: "
|
4344
|
+
type: "number",
|
4345
4345
|
description: "The number of frozen columns",
|
4346
4346
|
},
|
4347
4347
|
},
|
@@ -4393,7 +4393,7 @@ export const googleOauthCreateSpreadsheetDefinition = {
|
|
4393
4393
|
type: "object",
|
4394
4394
|
properties: {
|
4395
4395
|
sheetId: {
|
4396
|
-
type: "
|
4396
|
+
type: "number",
|
4397
4397
|
description: "The ID of the sheet",
|
4398
4398
|
},
|
4399
4399
|
title: {
|
@@ -4401,7 +4401,7 @@ export const googleOauthCreateSpreadsheetDefinition = {
|
|
4401
4401
|
description: "The title of the sheet",
|
4402
4402
|
},
|
4403
4403
|
index: {
|
4404
|
-
type: "
|
4404
|
+
type: "number",
|
4405
4405
|
description: "The index of the sheet",
|
4406
4406
|
},
|
4407
4407
|
},
|
@@ -4451,11 +4451,11 @@ export const googleOauthUpdateSpreadsheetDefinition = {
|
|
4451
4451
|
type: "object",
|
4452
4452
|
properties: {
|
4453
4453
|
rowCount: {
|
4454
|
-
type: "
|
4454
|
+
type: "number",
|
4455
4455
|
description: "The number of rows in the sheet",
|
4456
4456
|
},
|
4457
4457
|
columnCount: {
|
4458
|
-
type: "
|
4458
|
+
type: "number",
|
4459
4459
|
description: "The number of columns in the sheet",
|
4460
4460
|
},
|
4461
4461
|
},
|
@@ -4474,7 +4474,7 @@ export const googleOauthUpdateSpreadsheetDefinition = {
|
|
4474
4474
|
type: "object",
|
4475
4475
|
properties: {
|
4476
4476
|
sheetId: {
|
4477
|
-
type: "
|
4477
|
+
type: "number",
|
4478
4478
|
description: "The ID of the sheet to delete",
|
4479
4479
|
},
|
4480
4480
|
},
|
@@ -4492,23 +4492,23 @@ export const googleOauthUpdateSpreadsheetDefinition = {
|
|
4492
4492
|
type: "object",
|
4493
4493
|
properties: {
|
4494
4494
|
sheetId: {
|
4495
|
-
type: "
|
4495
|
+
type: "number",
|
4496
4496
|
description: "The ID of the sheet",
|
4497
4497
|
},
|
4498
4498
|
startRowIndex: {
|
4499
|
-
type: "
|
4499
|
+
type: "number",
|
4500
4500
|
description: "The start row (0-based, inclusive)",
|
4501
4501
|
},
|
4502
4502
|
endRowIndex: {
|
4503
|
-
type: "
|
4503
|
+
type: "number",
|
4504
4504
|
description: "The end row (0-based, exclusive)",
|
4505
4505
|
},
|
4506
4506
|
startColumnIndex: {
|
4507
|
-
type: "
|
4507
|
+
type: "number",
|
4508
4508
|
description: "The start column (0-based, inclusive)",
|
4509
4509
|
},
|
4510
4510
|
endColumnIndex: {
|
4511
|
-
type: "
|
4511
|
+
type: "number",
|
4512
4512
|
description: "The end column (0-based, exclusive)",
|
4513
4513
|
},
|
4514
4514
|
},
|
@@ -4561,7 +4561,7 @@ export const googleOauthUpdateSpreadsheetDefinition = {
|
|
4561
4561
|
type: "object",
|
4562
4562
|
properties: {
|
4563
4563
|
sheetId: {
|
4564
|
-
type: "
|
4564
|
+
type: "number",
|
4565
4565
|
description: "The ID of the sheet to update",
|
4566
4566
|
},
|
4567
4567
|
title: {
|
@@ -4572,19 +4572,19 @@ export const googleOauthUpdateSpreadsheetDefinition = {
|
|
4572
4572
|
type: "object",
|
4573
4573
|
properties: {
|
4574
4574
|
rowCount: {
|
4575
|
-
type: "
|
4575
|
+
type: "number",
|
4576
4576
|
description: "The new number of rows",
|
4577
4577
|
},
|
4578
4578
|
columnCount: {
|
4579
|
-
type: "
|
4579
|
+
type: "number",
|
4580
4580
|
description: "The new number of columns",
|
4581
4581
|
},
|
4582
4582
|
frozenRowCount: {
|
4583
|
-
type: "
|
4583
|
+
type: "number",
|
4584
4584
|
description: "The number of frozen rows",
|
4585
4585
|
},
|
4586
4586
|
frozenColumnCount: {
|
4587
|
-
type: "
|
4587
|
+
type: "number",
|
4588
4588
|
description: "The number of frozen columns",
|
4589
4589
|
},
|
4590
4590
|
},
|
@@ -4702,7 +4702,7 @@ export const googleOauthUpdateSpreadsheetDefinition = {
|
|
4702
4702
|
description: "The font family",
|
4703
4703
|
},
|
4704
4704
|
fontSize: {
|
4705
|
-
type: "
|
4705
|
+
type: "number",
|
4706
4706
|
description: "The size of the font in points",
|
4707
4707
|
},
|
4708
4708
|
bold: {
|
@@ -4770,7 +4770,7 @@ export const googleOauthUpdateSpreadsheetDefinition = {
|
|
4770
4770
|
type: "object",
|
4771
4771
|
properties: {
|
4772
4772
|
sheetId: {
|
4773
|
-
type: "
|
4773
|
+
type: "number",
|
4774
4774
|
description: "The ID of the newly created sheet",
|
4775
4775
|
},
|
4776
4776
|
title: {
|
@@ -4778,7 +4778,7 @@ export const googleOauthUpdateSpreadsheetDefinition = {
|
|
4778
4778
|
description: "The title of the new sheet",
|
4779
4779
|
},
|
4780
4780
|
index: {
|
4781
|
-
type: "
|
4781
|
+
type: "number",
|
4782
4782
|
description: "The index of the new sheet",
|
4783
4783
|
},
|
4784
4784
|
},
|
@@ -4902,7 +4902,7 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
4902
4902
|
description: "The object ID for the created slide",
|
4903
4903
|
},
|
4904
4904
|
insertionIndex: {
|
4905
|
-
type: "
|
4905
|
+
type: "number",
|
4906
4906
|
description: "The 0-based index where the new slide should be inserted",
|
4907
4907
|
},
|
4908
4908
|
slideLayoutReference: {
|
@@ -4958,11 +4958,11 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
4958
4958
|
description: "The object ID for the created table",
|
4959
4959
|
},
|
4960
4960
|
rows: {
|
4961
|
-
type: "
|
4961
|
+
type: "number",
|
4962
4962
|
description: "Number of rows in the table",
|
4963
4963
|
},
|
4964
4964
|
columns: {
|
4965
|
-
type: "
|
4965
|
+
type: "number",
|
4966
4966
|
description: "Number of columns in the table",
|
4967
4967
|
},
|
4968
4968
|
elementProperties: {
|
@@ -4991,7 +4991,7 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
4991
4991
|
description: "The text to be inserted",
|
4992
4992
|
},
|
4993
4993
|
insertionIndex: {
|
4994
|
-
type: "
|
4994
|
+
type: "number",
|
4995
4995
|
description: "The index where the text will be inserted",
|
4996
4996
|
},
|
4997
4997
|
},
|
@@ -5016,7 +5016,7 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
5016
5016
|
description: "Whether to insert the rows below the reference cell",
|
5017
5017
|
},
|
5018
5018
|
number: {
|
5019
|
-
type: "
|
5019
|
+
type: "number",
|
5020
5020
|
description: "The number of rows to insert",
|
5021
5021
|
},
|
5022
5022
|
cellLocation: {
|
@@ -5045,7 +5045,7 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
5045
5045
|
description: "Whether to insert the columns to the right of the reference cell",
|
5046
5046
|
},
|
5047
5047
|
number: {
|
5048
|
-
type: "
|
5048
|
+
type: "number",
|
5049
5049
|
description: "The number of columns to insert",
|
5050
5050
|
},
|
5051
5051
|
cellLocation: {
|
@@ -5207,7 +5207,7 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
5207
5207
|
},
|
5208
5208
|
},
|
5209
5209
|
insertionIndex: {
|
5210
|
-
type: "
|
5210
|
+
type: "number",
|
5211
5211
|
description: "The 0-based index where the slides should be moved to",
|
5212
5212
|
},
|
5213
5213
|
},
|
@@ -5232,11 +5232,11 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
5232
5232
|
description: "The range of text to delete",
|
5233
5233
|
properties: {
|
5234
5234
|
startIndex: {
|
5235
|
-
type: "
|
5235
|
+
type: "number",
|
5236
5236
|
description: "The starting index of the range (0-based)",
|
5237
5237
|
},
|
5238
5238
|
endIndex: {
|
5239
|
-
type: "
|
5239
|
+
type: "number",
|
5240
5240
|
description: "The ending index of the range (0-based)",
|
5241
5241
|
},
|
5242
5242
|
},
|
@@ -5313,7 +5313,7 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
5313
5313
|
description: "The ID of the Google Sheets spreadsheet containing the chart",
|
5314
5314
|
},
|
5315
5315
|
chartId: {
|
5316
|
-
type: "
|
5316
|
+
type: "number",
|
5317
5317
|
description: "The ID of the specific chart in the spreadsheet",
|
5318
5318
|
},
|
5319
5319
|
elementProperties: {
|
@@ -5628,11 +5628,11 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
5628
5628
|
description: "The type of range",
|
5629
5629
|
},
|
5630
5630
|
startIndex: {
|
5631
|
-
type: "
|
5631
|
+
type: "number",
|
5632
5632
|
description: "The start index for FROM_START_INDEX or FIXED_RANGE",
|
5633
5633
|
},
|
5634
5634
|
endIndex: {
|
5635
|
-
type: "
|
5635
|
+
type: "number",
|
5636
5636
|
description: "The end index for FIXED_RANGE",
|
5637
5637
|
},
|
5638
5638
|
},
|
@@ -5655,7 +5655,7 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
5655
5655
|
description: "The ID of the Google Sheets spreadsheet containing the chart",
|
5656
5656
|
},
|
5657
5657
|
chartId: {
|
5658
|
-
type: "
|
5658
|
+
type: "number",
|
5659
5659
|
description: "The ID of the chart within the spreadsheet",
|
5660
5660
|
},
|
5661
5661
|
containsText: {
|
@@ -5712,11 +5712,11 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
5712
5712
|
description: "The type of range",
|
5713
5713
|
},
|
5714
5714
|
startIndex: {
|
5715
|
-
type: "
|
5715
|
+
type: "number",
|
5716
5716
|
description: "The start index for FROM_START_INDEX or FIXED_RANGE",
|
5717
5717
|
},
|
5718
5718
|
endIndex: {
|
5719
|
-
type: "
|
5719
|
+
type: "number",
|
5720
5720
|
description: "The end index for FIXED_RANGE",
|
5721
5721
|
},
|
5722
5722
|
},
|
@@ -5756,11 +5756,11 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
5756
5756
|
description: "The type of range",
|
5757
5757
|
},
|
5758
5758
|
startIndex: {
|
5759
|
-
type: "
|
5759
|
+
type: "number",
|
5760
5760
|
description: "The start index for FROM_START_INDEX or FIXED_RANGE",
|
5761
5761
|
},
|
5762
5762
|
endIndex: {
|
5763
|
-
type: "
|
5763
|
+
type: "number",
|
5764
5764
|
description: "The end index for FIXED_RANGE",
|
5765
5765
|
},
|
5766
5766
|
},
|
@@ -5804,11 +5804,11 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
5804
5804
|
description: "The starting cell location",
|
5805
5805
|
},
|
5806
5806
|
rowSpan: {
|
5807
|
-
type: "
|
5807
|
+
type: "number",
|
5808
5808
|
description: "The number of rows in the range",
|
5809
5809
|
},
|
5810
5810
|
columnSpan: {
|
5811
|
-
type: "
|
5811
|
+
type: "number",
|
5812
5812
|
description: "The number of columns in the range",
|
5813
5813
|
},
|
5814
5814
|
},
|
@@ -5833,7 +5833,7 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
5833
5833
|
columnIndices: {
|
5834
5834
|
type: "array",
|
5835
5835
|
items: {
|
5836
|
-
type: "
|
5836
|
+
type: "number",
|
5837
5837
|
},
|
5838
5838
|
description: "The 0-based indices of the columns to update",
|
5839
5839
|
},
|
@@ -5865,7 +5865,7 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
5865
5865
|
rowIndices: {
|
5866
5866
|
type: "array",
|
5867
5867
|
items: {
|
5868
|
-
type: "
|
5868
|
+
type: "number",
|
5869
5869
|
},
|
5870
5870
|
description: "The 0-based indices of the rows to update",
|
5871
5871
|
},
|
@@ -5903,11 +5903,11 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
5903
5903
|
description: "The starting cell location",
|
5904
5904
|
},
|
5905
5905
|
rowSpan: {
|
5906
|
-
type: "
|
5906
|
+
type: "number",
|
5907
5907
|
description: "The number of rows in the range",
|
5908
5908
|
},
|
5909
5909
|
columnSpan: {
|
5910
|
-
type: "
|
5910
|
+
type: "number",
|
5911
5911
|
description: "The number of columns in the range",
|
5912
5912
|
},
|
5913
5913
|
},
|
@@ -5938,11 +5938,11 @@ export const googleOauthUpdatePresentationDefinition = {
|
|
5938
5938
|
description: "The starting cell location",
|
5939
5939
|
},
|
5940
5940
|
rowSpan: {
|
5941
|
-
type: "
|
5941
|
+
type: "number",
|
5942
5942
|
description: "The number of rows in the range",
|
5943
5943
|
},
|
5944
5944
|
columnSpan: {
|
5945
|
-
type: "
|
5945
|
+
type: "number",
|
5946
5946
|
description: "The number of columns in the range",
|
5947
5947
|
},
|
5948
5948
|
},
|
@@ -6176,7 +6176,7 @@ export const googleOauthSearchDriveByKeywordsDefinition = {
|
|
6176
6176
|
},
|
6177
6177
|
},
|
6178
6178
|
limit: {
|
6179
|
-
type: "
|
6179
|
+
type: "number",
|
6180
6180
|
description: "The maximum number of files to return",
|
6181
6181
|
},
|
6182
6182
|
},
|
@@ -6236,7 +6236,7 @@ export const googleOauthGetDriveFileContentByIdDefinition = {
|
|
6236
6236
|
description: "The ID of the file to get content from",
|
6237
6237
|
},
|
6238
6238
|
limit: {
|
6239
|
-
type: "
|
6239
|
+
type: "number",
|
6240
6240
|
description: "The character limit for the file content",
|
6241
6241
|
},
|
6242
6242
|
},
|
@@ -6258,7 +6258,7 @@ export const googleOauthGetDriveFileContentByIdDefinition = {
|
|
6258
6258
|
description: "The name of the file",
|
6259
6259
|
},
|
6260
6260
|
fileLength: {
|
6261
|
-
type: "
|
6261
|
+
type: "number",
|
6262
6262
|
description: "The length of the file content prior to truncating",
|
6263
6263
|
},
|
6264
6264
|
error: {
|
@@ -6278,7 +6278,7 @@ export const googleOauthListGroupsDefinition = {
|
|
6278
6278
|
required: [],
|
6279
6279
|
properties: {
|
6280
6280
|
maxResults: {
|
6281
|
-
type: "
|
6281
|
+
type: "number",
|
6282
6282
|
description: "The maximum number of groups to return (max allowed is 200)",
|
6283
6283
|
},
|
6284
6284
|
},
|
@@ -6390,7 +6390,7 @@ export const googleOauthListGroupMembersDefinition = {
|
|
6390
6390
|
description: "The group's email address or unique group ID",
|
6391
6391
|
},
|
6392
6392
|
maxResults: {
|
6393
|
-
type: "
|
6393
|
+
type: "number",
|
6394
6394
|
description: "The maximum number of members to return (max allowed is 200)",
|
6395
6395
|
},
|
6396
6396
|
},
|
@@ -6560,7 +6560,7 @@ export const googlemailSearchGmailMessagesDefinition = {
|
|
6560
6560
|
description: 'Gmail search query (e.g. "from:alice subject:urgent")',
|
6561
6561
|
},
|
6562
6562
|
maxResults: {
|
6563
|
-
type: "
|
6563
|
+
type: "number",
|
6564
6564
|
description: "Maximum number of messages to return (optional)",
|
6565
6565
|
},
|
6566
6566
|
},
|
@@ -6630,7 +6630,7 @@ export const googlemailListGmailThreadsDefinition = {
|
|
6630
6630
|
description: 'Gmail search query (e.g. "from:alice subject:project")',
|
6631
6631
|
},
|
6632
6632
|
maxResults: {
|
6633
|
-
type: "
|
6633
|
+
type: "number",
|
6634
6634
|
description: "Maximum number of threads to return",
|
6635
6635
|
},
|
6636
6636
|
},
|
@@ -6886,7 +6886,7 @@ export const oktaListOktaUserGroupsDefinition = {
|
|
6886
6886
|
description: "The ID of the user whose groups are to be listed.",
|
6887
6887
|
},
|
6888
6888
|
maxResults: {
|
6889
|
-
type: "
|
6889
|
+
type: "number",
|
6890
6890
|
description: "The maximum number of results to return.",
|
6891
6891
|
minimum: 1,
|
6892
6892
|
},
|
@@ -6949,7 +6949,7 @@ export const oktaListOktaGroupsDefinition = {
|
|
6949
6949
|
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
6950
|
},
|
6951
6951
|
maxResults: {
|
6952
|
-
type: "
|
6952
|
+
type: "number",
|
6953
6953
|
description: "The maximum number of results to return.",
|
6954
6954
|
minimum: 1,
|
6955
6955
|
},
|
@@ -7123,7 +7123,7 @@ export const oktaListOktaGroupMembersDefinition = {
|
|
7123
7123
|
description: "The ID of the group whose members are to be listed.",
|
7124
7124
|
},
|
7125
7125
|
maxResults: {
|
7126
|
-
type: "
|
7126
|
+
type: "number",
|
7127
7127
|
description: "The maximum number of results to return.",
|
7128
7128
|
minimum: 1,
|
7129
7129
|
},
|
@@ -7317,7 +7317,7 @@ export const oktaListOktaUsersDefinition = {
|
|
7317
7317
|
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
7318
|
},
|
7319
7319
|
maxResults: {
|
7320
|
-
type: "
|
7320
|
+
type: "number",
|
7321
7321
|
description: "The maximum number of results to return.",
|
7322
7322
|
minimum: 1,
|
7323
7323
|
},
|