@credal/actions 0.2.216 → 0.2.218
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 +51 -47
- package/dist/actions/autogen/types.d.ts +30 -38
- package/dist/actions/autogen/types.js +305 -269
- package/dist/actions/parse.js +10 -2
- package/dist/actions/providers/google-oauth/appendRowsToSpreadsheet.js +8 -7
- package/dist/actions/providers/google-oauth/updateRowsInSpreadsheet.js +18 -12
- package/dist/actions/providers/jira/getJiraDCIssuesByQuery.d.ts +2 -3
- package/dist/actions/providers/jira/getJiraDCIssuesByQuery.js +11 -9
- package/dist/actions/providers/jira/getJiraIssuesByQuery.js +31 -57
- package/package.json +1 -1
|
@@ -2018,13 +2018,25 @@ export const jiraGetJiraIssuesByQueryDefinition = {
|
|
|
2018
2018
|
},
|
|
2019
2019
|
limit: {
|
|
2020
2020
|
type: "number",
|
|
2021
|
-
description: "The maximum number of records to retrieve
|
|
2021
|
+
description: "The maximum number of records to retrieve per call (page size). Defaults to 100.",
|
|
2022
|
+
},
|
|
2023
|
+
startAt: {
|
|
2024
|
+
type: "number",
|
|
2025
|
+
description: "Offset of the first result to return. Defaults to 0. To page through results: count the number of results you can actually read in the response and pass currentStartAt + countOfResultsRead as the next startAt. Do not blindly use itemsReturned to advance — the response may be truncated by the system after this action returns, meaning you may see fewer results than itemsReturned reports.",
|
|
2022
2026
|
},
|
|
2023
2027
|
},
|
|
2024
2028
|
},
|
|
2025
2029
|
output: {
|
|
2026
2030
|
type: "object",
|
|
2027
2031
|
properties: {
|
|
2032
|
+
itemsReturned: {
|
|
2033
|
+
type: "number",
|
|
2034
|
+
description: "Number of items fetched by this action. This field intentionally appears before results so it survives system-level response truncation. Warning: the system may truncate the results array before you see it, so you may receive fewer results than this number. Always count the results you can actually read and use currentStartAt + countOfResultsRead as the next startAt, not currentStartAt + itemsReturned.",
|
|
2035
|
+
},
|
|
2036
|
+
truncated: {
|
|
2037
|
+
type: "boolean",
|
|
2038
|
+
description: "True when more results exist beyond this batch. Call again with startAt set to currentStartAt + countOfResultsRead (the number of results you actually received in this response).",
|
|
2039
|
+
},
|
|
2028
2040
|
results: {
|
|
2029
2041
|
type: "array",
|
|
2030
2042
|
description: "The results of the Jira issues",
|
|
@@ -2194,14 +2206,6 @@ export const jiraGetJiraIssuesByQueryDefinition = {
|
|
|
2194
2206
|
},
|
|
2195
2207
|
},
|
|
2196
2208
|
},
|
|
2197
|
-
total: {
|
|
2198
|
-
type: "number",
|
|
2199
|
-
description: "The total number of Jira issues matching the query. When present and greater than the number of results returned, re-run with a higher limit to retrieve all issues.",
|
|
2200
|
-
},
|
|
2201
|
-
truncated: {
|
|
2202
|
-
type: "boolean",
|
|
2203
|
-
description: "True when the result set was cut off at the requested limit and more issues exist. Re-run with a higher limit to retrieve all issues.",
|
|
2204
|
-
},
|
|
2205
2209
|
error: {
|
|
2206
2210
|
type: "string",
|
|
2207
2211
|
description: "The error that occurred if the records were not successfully retrieved",
|
|
@@ -2882,13 +2886,25 @@ export const jiraOrgGetJiraIssuesByQueryDefinition = {
|
|
|
2882
2886
|
},
|
|
2883
2887
|
limit: {
|
|
2884
2888
|
type: "number",
|
|
2885
|
-
description: "The maximum number of records to retrieve
|
|
2889
|
+
description: "The maximum number of records to retrieve per call (page size). Defaults to 100.",
|
|
2890
|
+
},
|
|
2891
|
+
startAt: {
|
|
2892
|
+
type: "number",
|
|
2893
|
+
description: "Offset of the first result to return. Defaults to 0. To page through results: count the number of results you can actually read in the response and pass currentStartAt + countOfResultsRead as the next startAt. Do not blindly use itemsReturned to advance — the response may be truncated by the system after this action returns, meaning you may see fewer results than itemsReturned reports.",
|
|
2886
2894
|
},
|
|
2887
2895
|
},
|
|
2888
2896
|
},
|
|
2889
2897
|
output: {
|
|
2890
2898
|
type: "object",
|
|
2891
2899
|
properties: {
|
|
2900
|
+
itemsReturned: {
|
|
2901
|
+
type: "number",
|
|
2902
|
+
description: "Number of items fetched by this action. This field intentionally appears before results so it survives system-level response truncation. Warning: the system may truncate the results array before you see it, so you may receive fewer results than this number. Always count the results you can actually read and use currentStartAt + countOfResultsRead as the next startAt, not currentStartAt + itemsReturned.",
|
|
2903
|
+
},
|
|
2904
|
+
truncated: {
|
|
2905
|
+
type: "boolean",
|
|
2906
|
+
description: "True when more results exist beyond this batch. Call again with startAt set to currentStartAt + countOfResultsRead (the number of results you actually received in this response).",
|
|
2907
|
+
},
|
|
2892
2908
|
results: {
|
|
2893
2909
|
type: "array",
|
|
2894
2910
|
description: "The results of the Jira issues",
|
|
@@ -3058,14 +3074,6 @@ export const jiraOrgGetJiraIssuesByQueryDefinition = {
|
|
|
3058
3074
|
},
|
|
3059
3075
|
},
|
|
3060
3076
|
},
|
|
3061
|
-
total: {
|
|
3062
|
-
type: "number",
|
|
3063
|
-
description: "The total number of Jira issues matching the query. When present and greater than the number of results returned, re-run with a higher limit to retrieve all issues.",
|
|
3064
|
-
},
|
|
3065
|
-
truncated: {
|
|
3066
|
-
type: "boolean",
|
|
3067
|
-
description: "True when the result set was cut off at the requested limit and more issues exist. Re-run with a higher limit to retrieve all issues.",
|
|
3068
|
-
},
|
|
3069
3077
|
error: {
|
|
3070
3078
|
type: "string",
|
|
3071
3079
|
description: "The error that occurred if the records were not successfully retrieved",
|
|
@@ -3746,13 +3754,25 @@ export const jiraDataCenterGetJiraIssuesByQueryDefinition = {
|
|
|
3746
3754
|
},
|
|
3747
3755
|
limit: {
|
|
3748
3756
|
type: "number",
|
|
3749
|
-
description: "The maximum number of records to retrieve
|
|
3757
|
+
description: "The maximum number of records to retrieve per call (page size). Defaults to 100.",
|
|
3758
|
+
},
|
|
3759
|
+
startAt: {
|
|
3760
|
+
type: "number",
|
|
3761
|
+
description: "Offset of the first result to return. Defaults to 0. To page through results: count the number of results you can actually read in the response and pass currentStartAt + countOfResultsRead as the next startAt. Do not blindly use itemsReturned to advance — the response may be truncated by the system after this action returns, meaning you may see fewer results than itemsReturned reports.",
|
|
3750
3762
|
},
|
|
3751
3763
|
},
|
|
3752
3764
|
},
|
|
3753
3765
|
output: {
|
|
3754
3766
|
type: "object",
|
|
3755
3767
|
properties: {
|
|
3768
|
+
itemsReturned: {
|
|
3769
|
+
type: "number",
|
|
3770
|
+
description: "Number of items fetched by this action. This field intentionally appears before results so it survives system-level response truncation. Warning: the system may truncate the results array before you see it, so you may receive fewer results than this number. Always count the results you can actually read and use currentStartAt + countOfResultsRead as the next startAt, not currentStartAt + itemsReturned.",
|
|
3771
|
+
},
|
|
3772
|
+
truncated: {
|
|
3773
|
+
type: "boolean",
|
|
3774
|
+
description: "True when more results exist beyond this batch. Call again with startAt set to currentStartAt + countOfResultsRead (the number of results you actually received in this response).",
|
|
3775
|
+
},
|
|
3756
3776
|
results: {
|
|
3757
3777
|
type: "array",
|
|
3758
3778
|
description: "The results of the Jira issues",
|
|
@@ -3922,14 +3942,6 @@ export const jiraDataCenterGetJiraIssuesByQueryDefinition = {
|
|
|
3922
3942
|
},
|
|
3923
3943
|
},
|
|
3924
3944
|
},
|
|
3925
|
-
total: {
|
|
3926
|
-
type: "number",
|
|
3927
|
-
description: "The total number of Jira issues matching the query. When present and greater than the number of results returned, re-run with a higher limit to retrieve all issues.",
|
|
3928
|
-
},
|
|
3929
|
-
truncated: {
|
|
3930
|
-
type: "boolean",
|
|
3931
|
-
description: "True when the result set was cut off at the requested limit and more issues exist. Re-run with a higher limit to retrieve all issues.",
|
|
3932
|
-
},
|
|
3933
3945
|
error: {
|
|
3934
3946
|
type: "string",
|
|
3935
3947
|
description: "The error that occurred if the records were not successfully retrieved",
|
|
@@ -7676,19 +7688,13 @@ export const googleOauthAppendRowsToSpreadsheetDefinition = {
|
|
|
7676
7688
|
},
|
|
7677
7689
|
rows: {
|
|
7678
7690
|
type: "array",
|
|
7679
|
-
description:
|
|
7691
|
+
description: 'Rows of cells to append to the spreadsheet. Each row is an array of string cell values. For example, [["Alice", "30"], ["Bob", "25"]].',
|
|
7680
7692
|
items: {
|
|
7681
7693
|
type: "array",
|
|
7682
|
-
description: "A list of
|
|
7694
|
+
description: "A list of cell values for this row, each as a plain string",
|
|
7683
7695
|
items: {
|
|
7684
|
-
type: "
|
|
7685
|
-
|
|
7686
|
-
properties: {
|
|
7687
|
-
stringValue: {
|
|
7688
|
-
type: "string",
|
|
7689
|
-
description: "The value of the cell",
|
|
7690
|
-
},
|
|
7691
|
-
},
|
|
7696
|
+
type: "string",
|
|
7697
|
+
description: "The string value of the cell",
|
|
7692
7698
|
},
|
|
7693
7699
|
},
|
|
7694
7700
|
},
|
|
@@ -7789,21 +7795,19 @@ export const googleOauthUpdateRowsInSpreadsheetDefinition = {
|
|
|
7789
7795
|
type: "integer",
|
|
7790
7796
|
description: "The row number to start updating from (1-based). For example, to update starting from the first row, use 1. To start from the second row, use 2.",
|
|
7791
7797
|
},
|
|
7798
|
+
startColumn: {
|
|
7799
|
+
type: "string",
|
|
7800
|
+
description: 'The column letter(s) to start writing from (default: "A"). For example, use "A" to start from the first column, "C" to start from column C, or "BE" to start from column BE. This allows targeting a specific column range in the spreadsheet.',
|
|
7801
|
+
},
|
|
7792
7802
|
rows: {
|
|
7793
7803
|
type: "array",
|
|
7794
|
-
description:
|
|
7804
|
+
description: 'Rows of cells to update in the spreadsheet. Each row is an array of string cell values written sequentially starting from startRow/startColumn. For example, [["Alice", "30"], ["Bob", "25"]].',
|
|
7795
7805
|
items: {
|
|
7796
7806
|
type: "array",
|
|
7797
|
-
description: "A list of
|
|
7807
|
+
description: "A list of cell values for this row, each as a plain string",
|
|
7798
7808
|
items: {
|
|
7799
|
-
type: "
|
|
7800
|
-
|
|
7801
|
-
properties: {
|
|
7802
|
-
stringValue: {
|
|
7803
|
-
type: "string",
|
|
7804
|
-
description: "The value of the cell",
|
|
7805
|
-
},
|
|
7806
|
-
},
|
|
7809
|
+
type: "string",
|
|
7810
|
+
description: "The string value of the cell",
|
|
7807
7811
|
},
|
|
7808
7812
|
},
|
|
7809
7813
|
},
|
|
@@ -2029,15 +2029,20 @@ export type jiraUpdateJiraTicketStatusFunction = ActionFunction<jiraUpdateJiraTi
|
|
|
2029
2029
|
export declare const jiraGetJiraIssuesByQueryParamsSchema: z.ZodObject<{
|
|
2030
2030
|
query: z.ZodString;
|
|
2031
2031
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
2032
|
+
startAt: z.ZodOptional<z.ZodNumber>;
|
|
2032
2033
|
}, "strip", z.ZodTypeAny, {
|
|
2033
2034
|
query: string;
|
|
2034
2035
|
limit?: number | undefined;
|
|
2036
|
+
startAt?: number | undefined;
|
|
2035
2037
|
}, {
|
|
2036
2038
|
query: string;
|
|
2037
2039
|
limit?: number | undefined;
|
|
2040
|
+
startAt?: number | undefined;
|
|
2038
2041
|
}>;
|
|
2039
2042
|
export type jiraGetJiraIssuesByQueryParamsType = z.infer<typeof jiraGetJiraIssuesByQueryParamsSchema>;
|
|
2040
2043
|
export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
2044
|
+
itemsReturned: z.ZodOptional<z.ZodNumber>;
|
|
2045
|
+
truncated: z.ZodOptional<z.ZodBoolean>;
|
|
2041
2046
|
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2042
2047
|
name: z.ZodString;
|
|
2043
2048
|
url: z.ZodString;
|
|
@@ -2292,8 +2297,6 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2292
2297
|
resolution?: string | null | undefined;
|
|
2293
2298
|
};
|
|
2294
2299
|
}>, "many">>;
|
|
2295
|
-
total: z.ZodOptional<z.ZodNumber>;
|
|
2296
|
-
truncated: z.ZodOptional<z.ZodBoolean>;
|
|
2297
2300
|
error: z.ZodOptional<z.ZodString>;
|
|
2298
2301
|
}, "strip", z.ZodTypeAny, {
|
|
2299
2302
|
error?: string | undefined;
|
|
@@ -2341,7 +2344,7 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2341
2344
|
resolution?: string | null | undefined;
|
|
2342
2345
|
};
|
|
2343
2346
|
}[] | undefined;
|
|
2344
|
-
|
|
2347
|
+
itemsReturned?: number | undefined;
|
|
2345
2348
|
truncated?: boolean | undefined;
|
|
2346
2349
|
}, {
|
|
2347
2350
|
error?: string | undefined;
|
|
@@ -2389,7 +2392,7 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2389
2392
|
resolution?: string | null | undefined;
|
|
2390
2393
|
};
|
|
2391
2394
|
}[] | undefined;
|
|
2392
|
-
|
|
2395
|
+
itemsReturned?: number | undefined;
|
|
2393
2396
|
truncated?: boolean | undefined;
|
|
2394
2397
|
}>;
|
|
2395
2398
|
export type jiraGetJiraIssuesByQueryOutputType = z.infer<typeof jiraGetJiraIssuesByQueryOutputSchema>;
|
|
@@ -2844,15 +2847,20 @@ export type jiraOrgUpdateJiraTicketStatusFunction = ActionFunction<jiraOrgUpdate
|
|
|
2844
2847
|
export declare const jiraOrgGetJiraIssuesByQueryParamsSchema: z.ZodObject<{
|
|
2845
2848
|
query: z.ZodString;
|
|
2846
2849
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
2850
|
+
startAt: z.ZodOptional<z.ZodNumber>;
|
|
2847
2851
|
}, "strip", z.ZodTypeAny, {
|
|
2848
2852
|
query: string;
|
|
2849
2853
|
limit?: number | undefined;
|
|
2854
|
+
startAt?: number | undefined;
|
|
2850
2855
|
}, {
|
|
2851
2856
|
query: string;
|
|
2852
2857
|
limit?: number | undefined;
|
|
2858
|
+
startAt?: number | undefined;
|
|
2853
2859
|
}>;
|
|
2854
2860
|
export type jiraOrgGetJiraIssuesByQueryParamsType = z.infer<typeof jiraOrgGetJiraIssuesByQueryParamsSchema>;
|
|
2855
2861
|
export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
2862
|
+
itemsReturned: z.ZodOptional<z.ZodNumber>;
|
|
2863
|
+
truncated: z.ZodOptional<z.ZodBoolean>;
|
|
2856
2864
|
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2857
2865
|
name: z.ZodString;
|
|
2858
2866
|
url: z.ZodString;
|
|
@@ -3107,8 +3115,6 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
3107
3115
|
resolution?: string | null | undefined;
|
|
3108
3116
|
};
|
|
3109
3117
|
}>, "many">>;
|
|
3110
|
-
total: z.ZodOptional<z.ZodNumber>;
|
|
3111
|
-
truncated: z.ZodOptional<z.ZodBoolean>;
|
|
3112
3118
|
error: z.ZodOptional<z.ZodString>;
|
|
3113
3119
|
}, "strip", z.ZodTypeAny, {
|
|
3114
3120
|
error?: string | undefined;
|
|
@@ -3156,7 +3162,7 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
3156
3162
|
resolution?: string | null | undefined;
|
|
3157
3163
|
};
|
|
3158
3164
|
}[] | undefined;
|
|
3159
|
-
|
|
3165
|
+
itemsReturned?: number | undefined;
|
|
3160
3166
|
truncated?: boolean | undefined;
|
|
3161
3167
|
}, {
|
|
3162
3168
|
error?: string | undefined;
|
|
@@ -3204,7 +3210,7 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
3204
3210
|
resolution?: string | null | undefined;
|
|
3205
3211
|
};
|
|
3206
3212
|
}[] | undefined;
|
|
3207
|
-
|
|
3213
|
+
itemsReturned?: number | undefined;
|
|
3208
3214
|
truncated?: boolean | undefined;
|
|
3209
3215
|
}>;
|
|
3210
3216
|
export type jiraOrgGetJiraIssuesByQueryOutputType = z.infer<typeof jiraOrgGetJiraIssuesByQueryOutputSchema>;
|
|
@@ -3659,15 +3665,20 @@ export type jiraDataCenterUpdateJiraTicketStatusFunction = ActionFunction<jiraDa
|
|
|
3659
3665
|
export declare const jiraDataCenterGetJiraIssuesByQueryParamsSchema: z.ZodObject<{
|
|
3660
3666
|
query: z.ZodString;
|
|
3661
3667
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
3668
|
+
startAt: z.ZodOptional<z.ZodNumber>;
|
|
3662
3669
|
}, "strip", z.ZodTypeAny, {
|
|
3663
3670
|
query: string;
|
|
3664
3671
|
limit?: number | undefined;
|
|
3672
|
+
startAt?: number | undefined;
|
|
3665
3673
|
}, {
|
|
3666
3674
|
query: string;
|
|
3667
3675
|
limit?: number | undefined;
|
|
3676
|
+
startAt?: number | undefined;
|
|
3668
3677
|
}>;
|
|
3669
3678
|
export type jiraDataCenterGetJiraIssuesByQueryParamsType = z.infer<typeof jiraDataCenterGetJiraIssuesByQueryParamsSchema>;
|
|
3670
3679
|
export declare const jiraDataCenterGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
3680
|
+
itemsReturned: z.ZodOptional<z.ZodNumber>;
|
|
3681
|
+
truncated: z.ZodOptional<z.ZodBoolean>;
|
|
3671
3682
|
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3672
3683
|
name: z.ZodString;
|
|
3673
3684
|
url: z.ZodString;
|
|
@@ -3922,8 +3933,6 @@ export declare const jiraDataCenterGetJiraIssuesByQueryOutputSchema: z.ZodObject
|
|
|
3922
3933
|
resolution?: string | null | undefined;
|
|
3923
3934
|
};
|
|
3924
3935
|
}>, "many">>;
|
|
3925
|
-
total: z.ZodOptional<z.ZodNumber>;
|
|
3926
|
-
truncated: z.ZodOptional<z.ZodBoolean>;
|
|
3927
3936
|
error: z.ZodOptional<z.ZodString>;
|
|
3928
3937
|
}, "strip", z.ZodTypeAny, {
|
|
3929
3938
|
error?: string | undefined;
|
|
@@ -3971,7 +3980,7 @@ export declare const jiraDataCenterGetJiraIssuesByQueryOutputSchema: z.ZodObject
|
|
|
3971
3980
|
resolution?: string | null | undefined;
|
|
3972
3981
|
};
|
|
3973
3982
|
}[] | undefined;
|
|
3974
|
-
|
|
3983
|
+
itemsReturned?: number | undefined;
|
|
3975
3984
|
truncated?: boolean | undefined;
|
|
3976
3985
|
}, {
|
|
3977
3986
|
error?: string | undefined;
|
|
@@ -4019,7 +4028,7 @@ export declare const jiraDataCenterGetJiraIssuesByQueryOutputSchema: z.ZodObject
|
|
|
4019
4028
|
resolution?: string | null | undefined;
|
|
4020
4029
|
};
|
|
4021
4030
|
}[] | undefined;
|
|
4022
|
-
|
|
4031
|
+
itemsReturned?: number | undefined;
|
|
4023
4032
|
truncated?: boolean | undefined;
|
|
4024
4033
|
}>;
|
|
4025
4034
|
export type jiraDataCenterGetJiraIssuesByQueryOutputType = z.infer<typeof jiraDataCenterGetJiraIssuesByQueryOutputSchema>;
|
|
@@ -5999,24 +6008,14 @@ export type googleOauthUpdateSpreadsheetFunction = ActionFunction<googleOauthUpd
|
|
|
5999
6008
|
export declare const googleOauthAppendRowsToSpreadsheetParamsSchema: z.ZodObject<{
|
|
6000
6009
|
spreadsheetId: z.ZodString;
|
|
6001
6010
|
sheetName: z.ZodOptional<z.ZodString>;
|
|
6002
|
-
rows: z.ZodArray<z.ZodArray<z.
|
|
6003
|
-
stringValue: z.ZodString;
|
|
6004
|
-
}, "strip", z.ZodTypeAny, {
|
|
6005
|
-
stringValue: string;
|
|
6006
|
-
}, {
|
|
6007
|
-
stringValue: string;
|
|
6008
|
-
}>, "many">, "many">;
|
|
6011
|
+
rows: z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">;
|
|
6009
6012
|
}, "strip", z.ZodTypeAny, {
|
|
6010
6013
|
spreadsheetId: string;
|
|
6011
|
-
rows:
|
|
6012
|
-
stringValue: string;
|
|
6013
|
-
}[][];
|
|
6014
|
+
rows: string[][];
|
|
6014
6015
|
sheetName?: string | undefined;
|
|
6015
6016
|
}, {
|
|
6016
6017
|
spreadsheetId: string;
|
|
6017
|
-
rows:
|
|
6018
|
-
stringValue: string;
|
|
6019
|
-
}[][];
|
|
6018
|
+
rows: string[][];
|
|
6020
6019
|
sheetName?: string | undefined;
|
|
6021
6020
|
}>;
|
|
6022
6021
|
export type googleOauthAppendRowsToSpreadsheetParamsType = z.infer<typeof googleOauthAppendRowsToSpreadsheetParamsSchema>;
|
|
@@ -6071,27 +6070,20 @@ export declare const googleOauthUpdateRowsInSpreadsheetParamsSchema: z.ZodObject
|
|
|
6071
6070
|
spreadsheetId: z.ZodString;
|
|
6072
6071
|
sheetName: z.ZodOptional<z.ZodString>;
|
|
6073
6072
|
startRow: z.ZodNumber;
|
|
6074
|
-
|
|
6075
|
-
|
|
6076
|
-
}, "strip", z.ZodTypeAny, {
|
|
6077
|
-
stringValue: string;
|
|
6078
|
-
}, {
|
|
6079
|
-
stringValue: string;
|
|
6080
|
-
}>, "many">, "many">;
|
|
6073
|
+
startColumn: z.ZodOptional<z.ZodString>;
|
|
6074
|
+
rows: z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">;
|
|
6081
6075
|
}, "strip", z.ZodTypeAny, {
|
|
6082
6076
|
spreadsheetId: string;
|
|
6083
|
-
rows:
|
|
6084
|
-
stringValue: string;
|
|
6085
|
-
}[][];
|
|
6077
|
+
rows: string[][];
|
|
6086
6078
|
startRow: number;
|
|
6087
6079
|
sheetName?: string | undefined;
|
|
6080
|
+
startColumn?: string | undefined;
|
|
6088
6081
|
}, {
|
|
6089
6082
|
spreadsheetId: string;
|
|
6090
|
-
rows:
|
|
6091
|
-
stringValue: string;
|
|
6092
|
-
}[][];
|
|
6083
|
+
rows: string[][];
|
|
6093
6084
|
startRow: number;
|
|
6094
6085
|
sheetName?: string | undefined;
|
|
6086
|
+
startColumn?: string | undefined;
|
|
6095
6087
|
}>;
|
|
6096
6088
|
export type googleOauthUpdateRowsInSpreadsheetParamsType = z.infer<typeof googleOauthUpdateRowsInSpreadsheetParamsSchema>;
|
|
6097
6089
|
export declare const googleOauthUpdateRowsInSpreadsheetOutputSchema: z.ZodObject<{
|