@activepieces/piece-microsoft-excel-365 0.3.0 → 0.3.1
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/package.json +3 -3
- package/src/i18n/translation.json +9 -0
- package/src/index.js +2 -0
- package/src/index.js.map +1 -1
- package/src/lib/actions/get-wroksheet-columns.d.ts +4 -0
- package/src/lib/actions/get-wroksheet-columns.js +35 -0
- package/src/lib/actions/get-wroksheet-columns.js.map +1 -0
- package/src/lib/trigger/new-row-added.d.ts +4 -0
- package/src/lib/trigger/new-row-in-table.d.ts +5 -0
- package/src/lib/trigger/new-worksheet.d.ts +2 -0
- package/src/lib/trigger/updated-row.d.ts +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@activepieces/piece-microsoft-excel-365",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"@ai-sdk/mcp": "1.0.1 ",
|
|
6
6
|
"@microsoft/microsoft-graph-client": "3.0.7",
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"semver": "7.6.0",
|
|
19
19
|
"socket.io-client": "4.8.1",
|
|
20
20
|
"zod": "4.1.13",
|
|
21
|
-
"@activepieces/pieces-common": "0.11.
|
|
22
|
-
"@activepieces/pieces-framework": "0.
|
|
21
|
+
"@activepieces/pieces-common": "0.11.2",
|
|
22
|
+
"@activepieces/pieces-framework": "0.24.0",
|
|
23
23
|
"@activepieces/shared": "0.32.0",
|
|
24
24
|
"tslib": "2.6.2"
|
|
25
25
|
},
|
|
@@ -61,6 +61,10 @@
|
|
|
61
61
|
"Worksheet": "Worksheet",
|
|
62
62
|
"Does the first row contain headers?": "Does the first row contain headers?",
|
|
63
63
|
"Values": "Values",
|
|
64
|
+
"Markdown": "Markdown",
|
|
65
|
+
"Filter Column": "Filter Column",
|
|
66
|
+
"Filter Type": "Filter Type",
|
|
67
|
+
"Filter Value": "Filter Value",
|
|
64
68
|
"Return All": "Return All",
|
|
65
69
|
"Limit": "Limit",
|
|
66
70
|
"Range": "Range",
|
|
@@ -91,6 +95,7 @@
|
|
|
91
95
|
"Timeout (in seconds)": "Timeout (in seconds)",
|
|
92
96
|
"If the first row is headers": "If the first row is headers",
|
|
93
97
|
"The values to insert": "The values to insert",
|
|
98
|
+
"Use below Filter properties to insert only the rows that meet your conditions.": "Use below Filter properties to insert only the rows that meet your conditions.",
|
|
94
99
|
"If checked, all worksheets will be returned": "If checked, all worksheets will be returned",
|
|
95
100
|
"Limit the number of worksheets returned": "Limit the number of worksheets returned",
|
|
96
101
|
"Range of the rows to retrieve (e.g., A2:B2)": "Range of the rows to retrieve (e.g., A2:B2)",
|
|
@@ -125,6 +130,10 @@
|
|
|
125
130
|
"\nThe new name for the worksheet. The name must adhere to the following rules:\n- Cannot be blank.\n- Cannot exceed 31 characters.\n- Must not contain any of the following characters: `/`, `\\`, `?`, `*`, `:`, `[`, `]`.\n- The name \"History\" is reserved by Excel and cannot be used.\n": "\nThe new name for the worksheet. The name must adhere to the following rules:\n- Cannot be blank.\n- Cannot exceed 31 characters.\n- Must not contain any of the following characters: `/`, `\\`, `?`, `*`, `:`, `[`, `]`.\n- The name \"History\" is reserved by Excel and cannot be used.\n",
|
|
126
131
|
"Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
|
|
127
132
|
"Enable for files like PDFs, images, etc.": "Enable for files like PDFs, images, etc.",
|
|
133
|
+
"(Text) Exactly matches": "(Text) Exactly matches",
|
|
134
|
+
"(Text) Does not exactly match": "(Text) Does not exactly match",
|
|
135
|
+
"(Text) Matches any of": "(Text) Matches any of",
|
|
136
|
+
"(Text) Matches none of": "(Text) Matches none of",
|
|
128
137
|
"All (Contents and Formatting)": "All (Contents and Formatting)",
|
|
129
138
|
"Contents Only": "Contents Only",
|
|
130
139
|
"Formats Only": "Formats Only",
|
package/src/index.js
CHANGED
|
@@ -37,6 +37,7 @@ const new_worksheet_1 = require("./lib/trigger/new-worksheet");
|
|
|
37
37
|
const updated_row_1 = require("./lib/trigger/updated-row");
|
|
38
38
|
const append_multiple_rows_1 = require("./lib/actions/append-multiple-rows");
|
|
39
39
|
const common_1 = require("./lib/common/common");
|
|
40
|
+
const get_wroksheet_columns_1 = require("./lib/actions/get-wroksheet-columns");
|
|
40
41
|
const authDesc = `
|
|
41
42
|
1. Sign in to [Microsoft Azure Portal](https://portal.azure.com/).
|
|
42
43
|
2. From the left sidebar, go to **Microsoft Enfra ID**.
|
|
@@ -87,6 +88,7 @@ exports.microsoftExcel = (0, pieces_framework_1.createPiece)({
|
|
|
87
88
|
clear_worksheet_1.clearWorksheetAction,
|
|
88
89
|
delete_worksheet_1.deleteWorksheetAction,
|
|
89
90
|
get_workbooks_1.getWorkbooksAction,
|
|
91
|
+
get_wroksheet_columns_1.getWorksheetColumnsAction,
|
|
90
92
|
delete_workbook_1.deleteWorkbookAction,
|
|
91
93
|
add_worksheet_1.addWorksheetAction,
|
|
92
94
|
get_table_rows_1.getTableRowsAction,
|
package/src/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../packages/pieces/community/microsoft-excel-365/src/index.ts"],"names":[],"mappings":";;;;AAAA,+DAAwE;AACxE,qEAIwC;AACxC,iDAAqD;AAErD,+DAAiE;AACjE,yDAA2D;AAC3D,uEAAwE;AACxE,mEAAqE;AACrE,qEAAsE;AACtE,6DAA+D;AAC/D,mEAA+D;AAC/D,6DAA+D;AAC/D,mEAAqE;AACrE,qEAAuE;AACvE,uEAAwE;AACxE,iEAAkE;AAClE,+DAAiE;AACjE,yEAA0E;AAC1E,iEAAmE;AACnE,2EAA4E;AAC5E,yDAA2D;AAE3D,6EAAsE;AACtE,+EAAwE;AACxE,mEAA+D;AAC/D,qEAAuE;AACvE,qDAAuD;AACvD,yEAAkE;AAClE,+DAA2D;AAC3D,2EAAuE;AACvE,qEAAuE;AAEvE,+DAA0D;AAE1D,qEAAsE;AACtE,+DAAkE;AAClE,2DAA8D;AAE9D,6EAA8E;AAC9E,gDAAkD;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../packages/pieces/community/microsoft-excel-365/src/index.ts"],"names":[],"mappings":";;;;AAAA,+DAAwE;AACxE,qEAIwC;AACxC,iDAAqD;AAErD,+DAAiE;AACjE,yDAA2D;AAC3D,uEAAwE;AACxE,mEAAqE;AACrE,qEAAsE;AACtE,6DAA+D;AAC/D,mEAA+D;AAC/D,6DAA+D;AAC/D,mEAAqE;AACrE,qEAAuE;AACvE,uEAAwE;AACxE,iEAAkE;AAClE,+DAAiE;AACjE,yEAA0E;AAC1E,iEAAmE;AACnE,2EAA4E;AAC5E,yDAA2D;AAE3D,6EAAsE;AACtE,+EAAwE;AACxE,mEAA+D;AAC/D,qEAAuE;AACvE,qDAAuD;AACvD,yEAAkE;AAClE,+DAA2D;AAC3D,2EAAuE;AACvE,qEAAuE;AAEvE,+DAA0D;AAE1D,qEAAsE;AACtE,+DAAkE;AAClE,2DAA8D;AAE9D,6EAA8E;AAC9E,gDAAkD;AAClD,+EAAgF;AAEhF,MAAM,QAAQ,GAAG;;;;;;;;;;;;;;;;;;;;;;;;CAwBhB,CAAC;AAEW,QAAA,SAAS,GAAG,4BAAS,CAAC,MAAM,CAAC;IACxC,WAAW,EAAE,QAAQ;IACrB,OAAO,EAAE,gEAAgE;IACzE,QAAQ,EAAE,4DAA4D;IACtE,QAAQ,EAAE,IAAI;IACd,KAAK,EAAE,CAAC,iBAAiB,EAAE,gBAAgB,CAAC;IAC5C,MAAM,EAAE,MAAM;CACf,CAAC,CAAC;AAEU,QAAA,cAAc,GAAG,IAAA,8BAAW,EAAC;IACxC,WAAW,EAAE,qBAAqB;IAClC,WAAW,EAAE,mCAAmC;IAEhD,IAAI,EAAE,iBAAS;IACf,uBAAuB,EAAE,QAAQ;IACjC,OAAO,EAAE,6DAA6D;IACtE,UAAU,EAAE,CAAC,sBAAa,CAAC,YAAY,CAAC;IACxC,OAAO,EAAE,CAAC,WAAW,EAAE,YAAY,EAAE,WAAW,EAAE,UAAU,EAAE,YAAY,EAAE,mBAAmB,CAAC;IAChG,OAAO,EAAE;QACP,4BAAe;QACf,+CAAwB;QACxB,oCAAmB;QACnB,2CAAsB;QACtB,4BAAe;QACf,sCAAoB;QACpB,wCAAqB;QACrB,kCAAkB;QAClB,iDAAyB;QACzB,sCAAoB;QACpB,kCAAkB;QAClB,mCAAkB;QAClB,yCAAqB;QACrB,gCAAiB;QACjB,gCAAiB;QACjB,6CAAuB;QACvB,yCAAqB;QACrB,uCAAoB;QACpB,gCAAc;QACd,yCAAiB;QACjB,uCAAgB;QAChB,gCAAc;QACd,wCAAqB;QACrB,wBAAa;QACb,mCAAc;QACd,4BAAY;QACZ,wCAAkB;QAClB,wCAAqB;QACrB,IAAA,yCAAyB,EAAC;YACxB,OAAO,EAAE,GAAG,EAAE,CAAC,oBAAW,CAAC,OAAO;YAClC,IAAI,EAAE,iBAAS;YACf,WAAW,EAAE,CAAO,IAAI,EAAE,EAAE;gBAAC,OAAA,CAAC;oBAC5B,aAAa,EAAE,UAAW,IAA4B,CAAC,YAAY,EAAE;iBACtE,CAAC,CAAA;cAAA;SACH,CAAC;KACH;IACD,QAAQ,EAAE;QACR,2BAAW;QACX,uCAAoB;QACpB,mCAAmB;QACnB,+BAAiB;KAClB;CACF,CAAC,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export declare const getWorksheetColumnsAction: import("@activepieces/pieces-framework").IAction<import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {
|
|
2
|
+
workbook_id: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
3
|
+
worksheet_id: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
4
|
+
}>;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getWorksheetColumnsAction = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const pieces_framework_1 = require("@activepieces/pieces-framework");
|
|
6
|
+
const __1 = require("../..");
|
|
7
|
+
const common_1 = require("../common/common");
|
|
8
|
+
const pieces_common_1 = require("@activepieces/pieces-common");
|
|
9
|
+
exports.getWorksheetColumnsAction = (0, pieces_framework_1.createAction)({
|
|
10
|
+
displayName: 'Get Worksheet Columns',
|
|
11
|
+
name: 'get-worksheet-columns',
|
|
12
|
+
description: 'List columns of a worksheet.',
|
|
13
|
+
auth: __1.excelAuth,
|
|
14
|
+
props: {
|
|
15
|
+
workbook_id: common_1.excelCommon.workbook_id,
|
|
16
|
+
worksheet_id: common_1.excelCommon.worksheet_id,
|
|
17
|
+
},
|
|
18
|
+
run(context) {
|
|
19
|
+
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
20
|
+
var _a, _b;
|
|
21
|
+
const { workbook_id, worksheet_id } = context.propsValue;
|
|
22
|
+
const response = yield pieces_common_1.httpClient.sendRequest({
|
|
23
|
+
method: pieces_common_1.HttpMethod.GET,
|
|
24
|
+
url: `${common_1.excelCommon.baseUrl}/items/${workbook_id}/workbook/worksheets/${worksheet_id}/range(address='A1:ZZ1')/usedRange`,
|
|
25
|
+
authentication: {
|
|
26
|
+
type: pieces_common_1.AuthenticationType.BEARER_TOKEN,
|
|
27
|
+
token: context.auth.access_token
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
const columns = (_b = (_a = response.body.values) === null || _a === void 0 ? void 0 : _a[0]) !== null && _b !== void 0 ? _b : [];
|
|
31
|
+
return columns;
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
});
|
|
35
|
+
//# sourceMappingURL=get-wroksheet-columns.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-wroksheet-columns.js","sourceRoot":"","sources":["../../../../../../../../packages/pieces/community/microsoft-excel-365/src/lib/actions/get-wroksheet-columns.ts"],"names":[],"mappings":";;;;AAAA,qEAA8D;AAC9D,6BAAkC;AAClC,6CAA+C;AAC/C,+DAAyF;AAE5E,QAAA,yBAAyB,GAAG,IAAA,+BAAY,EAAC;IAClD,WAAW,EAAE,uBAAuB;IACpC,IAAI,EAAE,uBAAuB;IAC7B,WAAW,EAAE,8BAA8B;IAC3C,IAAI,EAAE,aAAS;IACf,KAAK,EAAE;QACH,WAAW,EAAE,oBAAW,CAAC,WAAW;QACpC,YAAY,EAAE,oBAAW,CAAC,YAAY;KACzC;IACK,GAAG,CAAC,OAAO;;;YACb,MAAM,EAAE,WAAW,EAAE,YAAY,EAAE,GAAG,OAAO,CAAC,UAAU,CAAC;YAEzD,MAAM,QAAQ,GAAG,MAAM,0BAAU,CAAC,WAAW,CAAmC;gBAC5E,MAAM,EAAE,0BAAU,CAAC,GAAG;gBACtB,GAAG,EAAE,GAAG,oBAAW,CAAC,OAAO,UAAU,WAAW,wBAAwB,YAAY,oCAAoC;gBACxH,cAAc,EAAE;oBACZ,IAAI,EAAE,kCAAkB,CAAC,YAAY;oBACrC,KAAK,EAAE,OAAO,CAAC,IAAI,CAAC,YAAY;iBACnC;aACJ,CAAC,CAAC;YAEH,MAAM,OAAO,GAAG,MAAA,MAAA,QAAQ,CAAC,IAAI,CAAC,MAAM,0CAAG,CAAC,CAAC,mCAAI,EAAE,CAAA;YAE/C,OAAO,OAAO,CAAC;QAEnB,CAAC;KAAA;CACJ,CAAC,CAAA"}
|
|
@@ -7,6 +7,10 @@ export declare const readNewRows: import("@activepieces/pieces-framework").ITrig
|
|
|
7
7
|
workbook_id: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
8
8
|
worksheet_id: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
9
9
|
max_rows_to_poll: import("@activepieces/pieces-framework").NumberProperty<false>;
|
|
10
|
+
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {
|
|
11
|
+
workbook_id: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
12
|
+
worksheet_id: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
13
|
+
max_rows_to_poll: import("@activepieces/pieces-framework").NumberProperty<false>;
|
|
10
14
|
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {
|
|
11
15
|
workbook_id: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
12
16
|
worksheet_id: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
@@ -9,6 +9,11 @@ export declare const newRowInTableTrigger: import("@activepieces/pieces-framewor
|
|
|
9
9
|
worksheet_id: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
10
10
|
table_id: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
11
11
|
has_headers: import("@activepieces/pieces-framework").CheckboxProperty<true>;
|
|
12
|
+
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {
|
|
13
|
+
workbook_id: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
14
|
+
worksheet_id: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
15
|
+
table_id: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
16
|
+
has_headers: import("@activepieces/pieces-framework").CheckboxProperty<true>;
|
|
12
17
|
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {
|
|
13
18
|
workbook_id: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
14
19
|
worksheet_id: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
@@ -3,6 +3,8 @@ export declare const newWorksheetTrigger: import("@activepieces/pieces-framework
|
|
|
3
3
|
workbook_id: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
4
4
|
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {
|
|
5
5
|
workbook_id: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
6
|
+
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {
|
|
7
|
+
workbook_id: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
6
8
|
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {
|
|
7
9
|
workbook_id: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
8
10
|
}>;
|
|
@@ -7,6 +7,10 @@ export declare const updatedRowTrigger: import("@activepieces/pieces-framework")
|
|
|
7
7
|
workbook_id: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
8
8
|
worksheet_id: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
9
9
|
has_headers: import("@activepieces/pieces-framework").CheckboxProperty<true>;
|
|
10
|
+
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {
|
|
11
|
+
workbook_id: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
12
|
+
worksheet_id: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
13
|
+
has_headers: import("@activepieces/pieces-framework").CheckboxProperty<true>;
|
|
10
14
|
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>, {
|
|
11
15
|
workbook_id: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|
|
12
16
|
worksheet_id: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
|