@credal/actions 0.2.216 → 0.2.217
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 +12 -20
- package/dist/actions/autogen/types.d.ts +9 -26
- package/dist/actions/autogen/types.js +269 -245
- 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/package.json +1 -1
|
@@ -7676,19 +7676,13 @@ export const googleOauthAppendRowsToSpreadsheetDefinition = {
|
|
|
7676
7676
|
},
|
|
7677
7677
|
rows: {
|
|
7678
7678
|
type: "array",
|
|
7679
|
-
description:
|
|
7679
|
+
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
7680
|
items: {
|
|
7681
7681
|
type: "array",
|
|
7682
|
-
description: "A list of
|
|
7682
|
+
description: "A list of cell values for this row, each as a plain string",
|
|
7683
7683
|
items: {
|
|
7684
|
-
type: "
|
|
7685
|
-
|
|
7686
|
-
properties: {
|
|
7687
|
-
stringValue: {
|
|
7688
|
-
type: "string",
|
|
7689
|
-
description: "The value of the cell",
|
|
7690
|
-
},
|
|
7691
|
-
},
|
|
7684
|
+
type: "string",
|
|
7685
|
+
description: "The string value of the cell",
|
|
7692
7686
|
},
|
|
7693
7687
|
},
|
|
7694
7688
|
},
|
|
@@ -7789,21 +7783,19 @@ export const googleOauthUpdateRowsInSpreadsheetDefinition = {
|
|
|
7789
7783
|
type: "integer",
|
|
7790
7784
|
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
7785
|
},
|
|
7786
|
+
startColumn: {
|
|
7787
|
+
type: "string",
|
|
7788
|
+
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.',
|
|
7789
|
+
},
|
|
7792
7790
|
rows: {
|
|
7793
7791
|
type: "array",
|
|
7794
|
-
description:
|
|
7792
|
+
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
7793
|
items: {
|
|
7796
7794
|
type: "array",
|
|
7797
|
-
description: "A list of
|
|
7795
|
+
description: "A list of cell values for this row, each as a plain string",
|
|
7798
7796
|
items: {
|
|
7799
|
-
type: "
|
|
7800
|
-
|
|
7801
|
-
properties: {
|
|
7802
|
-
stringValue: {
|
|
7803
|
-
type: "string",
|
|
7804
|
-
description: "The value of the cell",
|
|
7805
|
-
},
|
|
7806
|
-
},
|
|
7797
|
+
type: "string",
|
|
7798
|
+
description: "The string value of the cell",
|
|
7807
7799
|
},
|
|
7808
7800
|
},
|
|
7809
7801
|
},
|
|
@@ -5999,24 +5999,14 @@ export type googleOauthUpdateSpreadsheetFunction = ActionFunction<googleOauthUpd
|
|
|
5999
5999
|
export declare const googleOauthAppendRowsToSpreadsheetParamsSchema: z.ZodObject<{
|
|
6000
6000
|
spreadsheetId: z.ZodString;
|
|
6001
6001
|
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">;
|
|
6002
|
+
rows: z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">;
|
|
6009
6003
|
}, "strip", z.ZodTypeAny, {
|
|
6010
6004
|
spreadsheetId: string;
|
|
6011
|
-
rows:
|
|
6012
|
-
stringValue: string;
|
|
6013
|
-
}[][];
|
|
6005
|
+
rows: string[][];
|
|
6014
6006
|
sheetName?: string | undefined;
|
|
6015
6007
|
}, {
|
|
6016
6008
|
spreadsheetId: string;
|
|
6017
|
-
rows:
|
|
6018
|
-
stringValue: string;
|
|
6019
|
-
}[][];
|
|
6009
|
+
rows: string[][];
|
|
6020
6010
|
sheetName?: string | undefined;
|
|
6021
6011
|
}>;
|
|
6022
6012
|
export type googleOauthAppendRowsToSpreadsheetParamsType = z.infer<typeof googleOauthAppendRowsToSpreadsheetParamsSchema>;
|
|
@@ -6071,27 +6061,20 @@ export declare const googleOauthUpdateRowsInSpreadsheetParamsSchema: z.ZodObject
|
|
|
6071
6061
|
spreadsheetId: z.ZodString;
|
|
6072
6062
|
sheetName: z.ZodOptional<z.ZodString>;
|
|
6073
6063
|
startRow: z.ZodNumber;
|
|
6074
|
-
|
|
6075
|
-
|
|
6076
|
-
}, "strip", z.ZodTypeAny, {
|
|
6077
|
-
stringValue: string;
|
|
6078
|
-
}, {
|
|
6079
|
-
stringValue: string;
|
|
6080
|
-
}>, "many">, "many">;
|
|
6064
|
+
startColumn: z.ZodOptional<z.ZodString>;
|
|
6065
|
+
rows: z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">;
|
|
6081
6066
|
}, "strip", z.ZodTypeAny, {
|
|
6082
6067
|
spreadsheetId: string;
|
|
6083
|
-
rows:
|
|
6084
|
-
stringValue: string;
|
|
6085
|
-
}[][];
|
|
6068
|
+
rows: string[][];
|
|
6086
6069
|
startRow: number;
|
|
6087
6070
|
sheetName?: string | undefined;
|
|
6071
|
+
startColumn?: string | undefined;
|
|
6088
6072
|
}, {
|
|
6089
6073
|
spreadsheetId: string;
|
|
6090
|
-
rows:
|
|
6091
|
-
stringValue: string;
|
|
6092
|
-
}[][];
|
|
6074
|
+
rows: string[][];
|
|
6093
6075
|
startRow: number;
|
|
6094
6076
|
sheetName?: string | undefined;
|
|
6077
|
+
startColumn?: string | undefined;
|
|
6095
6078
|
}>;
|
|
6096
6079
|
export type googleOauthUpdateRowsInSpreadsheetParamsType = z.infer<typeof googleOauthUpdateRowsInSpreadsheetParamsSchema>;
|
|
6097
6080
|
export declare const googleOauthUpdateRowsInSpreadsheetOutputSchema: z.ZodObject<{
|