@lab1095/n8n-nodes-sharepoint-excel 0.1.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/LICENSE.md +19 -0
- package/README.md +136 -0
- package/dist/credentials/MicrosoftGraphOAuth2Api.credentials.d.ts +9 -0
- package/dist/credentials/MicrosoftGraphOAuth2Api.credentials.js +52 -0
- package/dist/credentials/MicrosoftGraphOAuth2Api.credentials.js.map +1 -0
- package/dist/credentials/icons/Microsoft.svg +1 -0
- package/dist/nodes/SharePointExcel/SharePointExcel.node.d.ts +15 -0
- package/dist/nodes/SharePointExcel/SharePointExcel.node.js +77 -0
- package/dist/nodes/SharePointExcel/SharePointExcel.node.js.map +1 -0
- package/dist/nodes/SharePointExcel/actions/router.d.ts +4 -0
- package/dist/nodes/SharePointExcel/actions/router.js +114 -0
- package/dist/nodes/SharePointExcel/actions/router.js.map +1 -0
- package/dist/nodes/SharePointExcel/actions/sheet/appendRows.d.ts +3 -0
- package/dist/nodes/SharePointExcel/actions/sheet/appendRows.js +65 -0
- package/dist/nodes/SharePointExcel/actions/sheet/appendRows.js.map +1 -0
- package/dist/nodes/SharePointExcel/actions/sheet/clearSheet.d.ts +3 -0
- package/dist/nodes/SharePointExcel/actions/sheet/clearSheet.js +27 -0
- package/dist/nodes/SharePointExcel/actions/sheet/clearSheet.js.map +1 -0
- package/dist/nodes/SharePointExcel/actions/sheet/deleteSheet.d.ts +3 -0
- package/dist/nodes/SharePointExcel/actions/sheet/deleteSheet.js +29 -0
- package/dist/nodes/SharePointExcel/actions/sheet/deleteSheet.js.map +1 -0
- package/dist/nodes/SharePointExcel/actions/sheet/getSheets.d.ts +3 -0
- package/dist/nodes/SharePointExcel/actions/sheet/getSheets.js +15 -0
- package/dist/nodes/SharePointExcel/actions/sheet/getSheets.js.map +1 -0
- package/dist/nodes/SharePointExcel/actions/sheet/index.d.ts +8 -0
- package/dist/nodes/SharePointExcel/actions/sheet/index.js +51 -0
- package/dist/nodes/SharePointExcel/actions/sheet/index.js.map +1 -0
- package/dist/nodes/SharePointExcel/actions/sheet/readRows.d.ts +3 -0
- package/dist/nodes/SharePointExcel/actions/sheet/readRows.js +42 -0
- package/dist/nodes/SharePointExcel/actions/sheet/readRows.js.map +1 -0
- package/dist/nodes/SharePointExcel/actions/sheet/updateRange.d.ts +3 -0
- package/dist/nodes/SharePointExcel/actions/sheet/updateRange.js +28 -0
- package/dist/nodes/SharePointExcel/actions/sheet/updateRange.js.map +1 -0
- package/dist/nodes/SharePointExcel/actions/sheet/upsertRows.d.ts +3 -0
- package/dist/nodes/SharePointExcel/actions/sheet/upsertRows.js +92 -0
- package/dist/nodes/SharePointExcel/actions/sheet/upsertRows.js.map +1 -0
- package/dist/nodes/SharePointExcel/actions/table/getColumns.d.ts +3 -0
- package/dist/nodes/SharePointExcel/actions/table/getColumns.js +28 -0
- package/dist/nodes/SharePointExcel/actions/table/getColumns.js.map +1 -0
- package/dist/nodes/SharePointExcel/actions/table/getRows.d.ts +3 -0
- package/dist/nodes/SharePointExcel/actions/table/getRows.js +32 -0
- package/dist/nodes/SharePointExcel/actions/table/getRows.js.map +1 -0
- package/dist/nodes/SharePointExcel/actions/table/index.d.ts +4 -0
- package/dist/nodes/SharePointExcel/actions/table/index.js +43 -0
- package/dist/nodes/SharePointExcel/actions/table/index.js.map +1 -0
- package/dist/nodes/SharePointExcel/actions/table/lookup.d.ts +3 -0
- package/dist/nodes/SharePointExcel/actions/table/lookup.js +44 -0
- package/dist/nodes/SharePointExcel/actions/table/lookup.js.map +1 -0
- package/dist/nodes/SharePointExcel/actions/workbook/addSheet.d.ts +3 -0
- package/dist/nodes/SharePointExcel/actions/workbook/addSheet.js +29 -0
- package/dist/nodes/SharePointExcel/actions/workbook/addSheet.js.map +1 -0
- package/dist/nodes/SharePointExcel/actions/workbook/deleteWorkbook.d.ts +3 -0
- package/dist/nodes/SharePointExcel/actions/workbook/deleteWorkbook.js +17 -0
- package/dist/nodes/SharePointExcel/actions/workbook/deleteWorkbook.js.map +1 -0
- package/dist/nodes/SharePointExcel/actions/workbook/getSheets.d.ts +3 -0
- package/dist/nodes/SharePointExcel/actions/workbook/getSheets.js +15 -0
- package/dist/nodes/SharePointExcel/actions/workbook/getSheets.js.map +1 -0
- package/dist/nodes/SharePointExcel/actions/workbook/getWorkbooks.d.ts +3 -0
- package/dist/nodes/SharePointExcel/actions/workbook/getWorkbooks.js +26 -0
- package/dist/nodes/SharePointExcel/actions/workbook/getWorkbooks.js.map +1 -0
- package/dist/nodes/SharePointExcel/actions/workbook/index.d.ts +5 -0
- package/dist/nodes/SharePointExcel/actions/workbook/index.js +45 -0
- package/dist/nodes/SharePointExcel/actions/workbook/index.js.map +1 -0
- package/dist/nodes/SharePointExcel/api.d.ts +10 -0
- package/dist/nodes/SharePointExcel/api.js +138 -0
- package/dist/nodes/SharePointExcel/api.js.map +1 -0
- package/dist/nodes/SharePointExcel/descriptions.d.ts +20 -0
- package/dist/nodes/SharePointExcel/descriptions.js +523 -0
- package/dist/nodes/SharePointExcel/descriptions.js.map +1 -0
- package/dist/nodes/SharePointExcel/excel.svg +27 -0
- package/dist/nodes/SharePointExcel/listSearch.d.ts +6 -0
- package/dist/nodes/SharePointExcel/listSearch.js +184 -0
- package/dist/nodes/SharePointExcel/listSearch.js.map +1 -0
- package/dist/nodes/SharePointExcel/types.d.ts +57 -0
- package/dist/nodes/SharePointExcel/types.js +3 -0
- package/dist/nodes/SharePointExcel/types.js.map +1 -0
- package/dist/package.json +63 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +63 -0
|
@@ -0,0 +1,523 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.properties = exports.lookupValueProperty = exports.lookupColumnProperty = exports.newSheetNameProperty = exports.upsertRowsOptions = exports.upsertRowDataProperty = exports.cellValueProperty = exports.cellRefProperty = exports.rowDataProperty = exports.readRowsOptions = exports.tableNameProperty = exports.sheetNameProperty = exports.fileIdProperty = exports.driveIdProperty = exports.siteIdProperty = exports.sheetOperations = exports.workbookOperations = exports.tableOperations = exports.resourceProperty = void 0;
|
|
4
|
+
exports.resourceProperty = {
|
|
5
|
+
displayName: 'Resource',
|
|
6
|
+
name: 'resource',
|
|
7
|
+
type: 'options',
|
|
8
|
+
noDataExpression: true,
|
|
9
|
+
options: [
|
|
10
|
+
{
|
|
11
|
+
name: 'Table',
|
|
12
|
+
value: 'table',
|
|
13
|
+
description: 'Represents an Excel table',
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
name: 'Workbook',
|
|
17
|
+
value: 'workbook',
|
|
18
|
+
description: 'A workbook is the top level object which contains one or more worksheets',
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
name: 'Sheet',
|
|
22
|
+
value: 'sheet',
|
|
23
|
+
description: 'A sheet is a grid of cells which can contain data, tables, charts, etc',
|
|
24
|
+
},
|
|
25
|
+
],
|
|
26
|
+
default: 'sheet',
|
|
27
|
+
};
|
|
28
|
+
exports.tableOperations = {
|
|
29
|
+
displayName: 'Operation',
|
|
30
|
+
name: 'operation',
|
|
31
|
+
type: 'options',
|
|
32
|
+
noDataExpression: true,
|
|
33
|
+
displayOptions: {
|
|
34
|
+
show: {
|
|
35
|
+
resource: ['table'],
|
|
36
|
+
},
|
|
37
|
+
},
|
|
38
|
+
options: [
|
|
39
|
+
{
|
|
40
|
+
name: 'Get Columns',
|
|
41
|
+
value: 'getColumns',
|
|
42
|
+
description: 'Get column definitions from a table',
|
|
43
|
+
action: 'Get columns from table',
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
name: 'Get Rows',
|
|
47
|
+
value: 'getTableRows',
|
|
48
|
+
description: 'Retrieve rows from a table',
|
|
49
|
+
action: 'Get rows from table',
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
name: 'Lookup',
|
|
53
|
+
value: 'lookup',
|
|
54
|
+
description: 'Find a row by column value',
|
|
55
|
+
action: 'Lookup row in table',
|
|
56
|
+
},
|
|
57
|
+
],
|
|
58
|
+
default: 'getTableRows',
|
|
59
|
+
};
|
|
60
|
+
exports.workbookOperations = {
|
|
61
|
+
displayName: 'Operation',
|
|
62
|
+
name: 'operation',
|
|
63
|
+
type: 'options',
|
|
64
|
+
noDataExpression: true,
|
|
65
|
+
displayOptions: {
|
|
66
|
+
show: {
|
|
67
|
+
resource: ['workbook'],
|
|
68
|
+
},
|
|
69
|
+
},
|
|
70
|
+
options: [
|
|
71
|
+
{
|
|
72
|
+
name: 'Add Sheet',
|
|
73
|
+
value: 'addSheet',
|
|
74
|
+
description: 'Add a new sheet to the workbook',
|
|
75
|
+
action: 'Add sheet to workbook',
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
name: 'Delete',
|
|
79
|
+
value: 'deleteWorkbook',
|
|
80
|
+
description: 'Delete the workbook file',
|
|
81
|
+
action: 'Delete workbook',
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
name: 'Get Sheets',
|
|
85
|
+
value: 'getWorkbookSheets',
|
|
86
|
+
description: 'Get list of sheets in the workbook',
|
|
87
|
+
action: 'Get sheets from workbook',
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
name: 'Get Workbooks',
|
|
91
|
+
value: 'getWorkbooks',
|
|
92
|
+
description: 'List Excel files in the drive',
|
|
93
|
+
action: 'Get workbooks from drive',
|
|
94
|
+
},
|
|
95
|
+
],
|
|
96
|
+
default: 'getWorkbookSheets',
|
|
97
|
+
};
|
|
98
|
+
exports.sheetOperations = {
|
|
99
|
+
displayName: 'Operation',
|
|
100
|
+
name: 'operation',
|
|
101
|
+
type: 'options',
|
|
102
|
+
noDataExpression: true,
|
|
103
|
+
displayOptions: {
|
|
104
|
+
show: {
|
|
105
|
+
resource: ['sheet'],
|
|
106
|
+
},
|
|
107
|
+
},
|
|
108
|
+
options: [
|
|
109
|
+
{
|
|
110
|
+
name: 'Append Rows',
|
|
111
|
+
value: 'appendRows',
|
|
112
|
+
description: 'Append rows to the end of a sheet',
|
|
113
|
+
action: 'Append rows to sheet',
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
name: 'Clear',
|
|
117
|
+
value: 'clearSheet',
|
|
118
|
+
description: 'Clear all data from a sheet',
|
|
119
|
+
action: 'Clear sheet',
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
name: 'Delete',
|
|
123
|
+
value: 'deleteSheet',
|
|
124
|
+
description: 'Delete a sheet from the workbook',
|
|
125
|
+
action: 'Delete sheet',
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
name: 'Get Rows',
|
|
129
|
+
value: 'readRows',
|
|
130
|
+
description: 'Retrieve rows from a sheet',
|
|
131
|
+
action: 'Get rows from sheet',
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
name: 'Get Sheets',
|
|
135
|
+
value: 'getSheets',
|
|
136
|
+
description: 'Get list of sheets in the workbook',
|
|
137
|
+
action: 'Get sheets',
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
name: 'Update',
|
|
141
|
+
value: 'updateCell',
|
|
142
|
+
description: 'Update a cell in a sheet',
|
|
143
|
+
action: 'Update cell in sheet',
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
name: 'Upsert Rows',
|
|
147
|
+
value: 'upsertRows',
|
|
148
|
+
description: 'Append or update rows based on a key column',
|
|
149
|
+
action: 'Upsert rows in sheet',
|
|
150
|
+
},
|
|
151
|
+
],
|
|
152
|
+
default: 'readRows',
|
|
153
|
+
};
|
|
154
|
+
exports.siteIdProperty = {
|
|
155
|
+
displayName: 'Site',
|
|
156
|
+
name: 'siteId',
|
|
157
|
+
type: 'resourceLocator',
|
|
158
|
+
required: true,
|
|
159
|
+
default: { mode: 'list', value: '' },
|
|
160
|
+
description: 'The SharePoint site',
|
|
161
|
+
modes: [
|
|
162
|
+
{
|
|
163
|
+
displayName: 'From List',
|
|
164
|
+
name: 'list',
|
|
165
|
+
type: 'list',
|
|
166
|
+
placeholder: 'Search for a site...',
|
|
167
|
+
typeOptions: {
|
|
168
|
+
searchListMethod: 'searchSites',
|
|
169
|
+
searchable: true,
|
|
170
|
+
},
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
displayName: 'By ID',
|
|
174
|
+
name: 'id',
|
|
175
|
+
type: 'string',
|
|
176
|
+
placeholder: 'contoso.sharepoint.com,site-guid,web-guid',
|
|
177
|
+
validation: [
|
|
178
|
+
{
|
|
179
|
+
type: 'regex',
|
|
180
|
+
properties: {
|
|
181
|
+
regex: '.+',
|
|
182
|
+
errorMessage: 'Site ID cannot be empty',
|
|
183
|
+
},
|
|
184
|
+
},
|
|
185
|
+
],
|
|
186
|
+
},
|
|
187
|
+
],
|
|
188
|
+
};
|
|
189
|
+
exports.driveIdProperty = {
|
|
190
|
+
displayName: 'Drive',
|
|
191
|
+
name: 'driveId',
|
|
192
|
+
type: 'resourceLocator',
|
|
193
|
+
required: true,
|
|
194
|
+
default: { mode: 'list', value: '' },
|
|
195
|
+
description: 'The document library or drive containing the file',
|
|
196
|
+
modes: [
|
|
197
|
+
{
|
|
198
|
+
displayName: 'From List',
|
|
199
|
+
name: 'list',
|
|
200
|
+
type: 'list',
|
|
201
|
+
placeholder: 'Select a drive...',
|
|
202
|
+
typeOptions: {
|
|
203
|
+
searchListMethod: 'getDrives',
|
|
204
|
+
searchable: false,
|
|
205
|
+
},
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
displayName: 'By ID',
|
|
209
|
+
name: 'id',
|
|
210
|
+
type: 'string',
|
|
211
|
+
placeholder: 'b!xxxxx',
|
|
212
|
+
validation: [
|
|
213
|
+
{
|
|
214
|
+
type: 'regex',
|
|
215
|
+
properties: {
|
|
216
|
+
regex: '.+',
|
|
217
|
+
errorMessage: 'Drive ID cannot be empty',
|
|
218
|
+
},
|
|
219
|
+
},
|
|
220
|
+
],
|
|
221
|
+
},
|
|
222
|
+
],
|
|
223
|
+
};
|
|
224
|
+
exports.fileIdProperty = {
|
|
225
|
+
displayName: 'File',
|
|
226
|
+
name: 'fileId',
|
|
227
|
+
type: 'resourceLocator',
|
|
228
|
+
required: true,
|
|
229
|
+
default: { mode: 'list', value: '' },
|
|
230
|
+
description: 'The Excel file (.xlsx) to operate on',
|
|
231
|
+
displayOptions: {
|
|
232
|
+
hide: {
|
|
233
|
+
operation: ['getWorkbooks'],
|
|
234
|
+
},
|
|
235
|
+
},
|
|
236
|
+
modes: [
|
|
237
|
+
{
|
|
238
|
+
displayName: 'From List',
|
|
239
|
+
name: 'list',
|
|
240
|
+
type: 'list',
|
|
241
|
+
placeholder: 'Select a file...',
|
|
242
|
+
typeOptions: {
|
|
243
|
+
searchListMethod: 'getFiles',
|
|
244
|
+
searchable: false,
|
|
245
|
+
},
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
displayName: 'By ID',
|
|
249
|
+
name: 'id',
|
|
250
|
+
type: 'string',
|
|
251
|
+
placeholder: '01ABCDEF...',
|
|
252
|
+
validation: [
|
|
253
|
+
{
|
|
254
|
+
type: 'regex',
|
|
255
|
+
properties: {
|
|
256
|
+
regex: '.+',
|
|
257
|
+
errorMessage: 'File ID cannot be empty',
|
|
258
|
+
},
|
|
259
|
+
},
|
|
260
|
+
],
|
|
261
|
+
},
|
|
262
|
+
],
|
|
263
|
+
};
|
|
264
|
+
exports.sheetNameProperty = {
|
|
265
|
+
displayName: 'Sheet',
|
|
266
|
+
name: 'sheetName',
|
|
267
|
+
type: 'resourceLocator',
|
|
268
|
+
required: true,
|
|
269
|
+
default: { mode: 'list', value: '' },
|
|
270
|
+
description: 'The worksheet to operate on',
|
|
271
|
+
modes: [
|
|
272
|
+
{
|
|
273
|
+
displayName: 'From List',
|
|
274
|
+
name: 'list',
|
|
275
|
+
type: 'list',
|
|
276
|
+
placeholder: 'Select a sheet...',
|
|
277
|
+
typeOptions: {
|
|
278
|
+
searchListMethod: 'getSheets',
|
|
279
|
+
searchable: false,
|
|
280
|
+
},
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
displayName: 'By Name',
|
|
284
|
+
name: 'name',
|
|
285
|
+
type: 'string',
|
|
286
|
+
placeholder: 'Sheet1',
|
|
287
|
+
validation: [
|
|
288
|
+
{
|
|
289
|
+
type: 'regex',
|
|
290
|
+
properties: {
|
|
291
|
+
regex: '.+',
|
|
292
|
+
errorMessage: 'Sheet name cannot be empty',
|
|
293
|
+
},
|
|
294
|
+
},
|
|
295
|
+
],
|
|
296
|
+
},
|
|
297
|
+
],
|
|
298
|
+
displayOptions: {
|
|
299
|
+
show: {
|
|
300
|
+
resource: ['sheet'],
|
|
301
|
+
},
|
|
302
|
+
hide: {
|
|
303
|
+
operation: ['getSheets'],
|
|
304
|
+
},
|
|
305
|
+
},
|
|
306
|
+
};
|
|
307
|
+
exports.tableNameProperty = {
|
|
308
|
+
displayName: 'Table',
|
|
309
|
+
name: 'tableName',
|
|
310
|
+
type: 'resourceLocator',
|
|
311
|
+
required: true,
|
|
312
|
+
default: { mode: 'list', value: '' },
|
|
313
|
+
description: 'The table to operate on',
|
|
314
|
+
modes: [
|
|
315
|
+
{
|
|
316
|
+
displayName: 'From List',
|
|
317
|
+
name: 'list',
|
|
318
|
+
type: 'list',
|
|
319
|
+
placeholder: 'Select a table...',
|
|
320
|
+
typeOptions: {
|
|
321
|
+
searchListMethod: 'getTables',
|
|
322
|
+
searchable: false,
|
|
323
|
+
},
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
displayName: 'By Name',
|
|
327
|
+
name: 'name',
|
|
328
|
+
type: 'string',
|
|
329
|
+
placeholder: 'Table1',
|
|
330
|
+
validation: [
|
|
331
|
+
{
|
|
332
|
+
type: 'regex',
|
|
333
|
+
properties: {
|
|
334
|
+
regex: '.+',
|
|
335
|
+
errorMessage: 'Table name cannot be empty',
|
|
336
|
+
},
|
|
337
|
+
},
|
|
338
|
+
],
|
|
339
|
+
},
|
|
340
|
+
],
|
|
341
|
+
displayOptions: {
|
|
342
|
+
show: {
|
|
343
|
+
resource: ['table'],
|
|
344
|
+
},
|
|
345
|
+
},
|
|
346
|
+
};
|
|
347
|
+
exports.readRowsOptions = {
|
|
348
|
+
displayName: 'Options',
|
|
349
|
+
name: 'options',
|
|
350
|
+
type: 'collection',
|
|
351
|
+
placeholder: 'Add Option',
|
|
352
|
+
default: {},
|
|
353
|
+
displayOptions: {
|
|
354
|
+
show: {
|
|
355
|
+
operation: ['readRows'],
|
|
356
|
+
},
|
|
357
|
+
},
|
|
358
|
+
options: [
|
|
359
|
+
{
|
|
360
|
+
displayName: 'Header Row',
|
|
361
|
+
name: 'headerRow',
|
|
362
|
+
type: 'number',
|
|
363
|
+
default: 1,
|
|
364
|
+
description: 'Row number containing headers (1-indexed)',
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
displayName: 'Start Row',
|
|
368
|
+
name: 'startRow',
|
|
369
|
+
type: 'number',
|
|
370
|
+
default: 2,
|
|
371
|
+
description: 'First data row to read (1-indexed)',
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
displayName: 'Max Rows',
|
|
375
|
+
name: 'maxRows',
|
|
376
|
+
type: 'number',
|
|
377
|
+
default: 0,
|
|
378
|
+
description: 'Maximum rows to return (0 = all)',
|
|
379
|
+
},
|
|
380
|
+
],
|
|
381
|
+
};
|
|
382
|
+
exports.rowDataProperty = {
|
|
383
|
+
displayName: 'Row Data',
|
|
384
|
+
name: 'rowData',
|
|
385
|
+
type: 'json',
|
|
386
|
+
required: true,
|
|
387
|
+
default: '{}',
|
|
388
|
+
description: 'JSON object with column headers as keys, or array of objects for multiple rows',
|
|
389
|
+
displayOptions: {
|
|
390
|
+
show: {
|
|
391
|
+
operation: ['appendRows'],
|
|
392
|
+
},
|
|
393
|
+
},
|
|
394
|
+
};
|
|
395
|
+
exports.cellRefProperty = {
|
|
396
|
+
displayName: 'Cell Reference',
|
|
397
|
+
name: 'cellRef',
|
|
398
|
+
type: 'string',
|
|
399
|
+
required: true,
|
|
400
|
+
default: 'A1',
|
|
401
|
+
placeholder: 'A1',
|
|
402
|
+
description: 'Cell to update (e.g., A1, B5, C10)',
|
|
403
|
+
displayOptions: {
|
|
404
|
+
show: {
|
|
405
|
+
operation: ['updateCell'],
|
|
406
|
+
},
|
|
407
|
+
},
|
|
408
|
+
};
|
|
409
|
+
exports.cellValueProperty = {
|
|
410
|
+
displayName: 'Value',
|
|
411
|
+
name: 'cellValue',
|
|
412
|
+
type: 'string',
|
|
413
|
+
required: true,
|
|
414
|
+
default: '',
|
|
415
|
+
description: 'New value for the cell',
|
|
416
|
+
displayOptions: {
|
|
417
|
+
show: {
|
|
418
|
+
operation: ['updateCell'],
|
|
419
|
+
},
|
|
420
|
+
},
|
|
421
|
+
};
|
|
422
|
+
exports.upsertRowDataProperty = {
|
|
423
|
+
displayName: 'Row Data',
|
|
424
|
+
name: 'rowData',
|
|
425
|
+
type: 'json',
|
|
426
|
+
required: true,
|
|
427
|
+
default: '{}',
|
|
428
|
+
description: 'JSON object with column headers as keys, or array of objects for multiple rows',
|
|
429
|
+
displayOptions: {
|
|
430
|
+
show: {
|
|
431
|
+
operation: ['upsertRows'],
|
|
432
|
+
},
|
|
433
|
+
},
|
|
434
|
+
};
|
|
435
|
+
exports.upsertRowsOptions = {
|
|
436
|
+
displayName: 'Options',
|
|
437
|
+
name: 'options',
|
|
438
|
+
type: 'collection',
|
|
439
|
+
placeholder: 'Add Option',
|
|
440
|
+
default: {},
|
|
441
|
+
displayOptions: {
|
|
442
|
+
show: {
|
|
443
|
+
operation: ['upsertRows'],
|
|
444
|
+
},
|
|
445
|
+
},
|
|
446
|
+
options: [
|
|
447
|
+
{
|
|
448
|
+
displayName: 'Key Column',
|
|
449
|
+
name: 'keyColumn',
|
|
450
|
+
type: 'string',
|
|
451
|
+
default: '',
|
|
452
|
+
description: 'Column name to use as the unique key for matching rows',
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
displayName: 'Header Row',
|
|
456
|
+
name: 'headerRow',
|
|
457
|
+
type: 'number',
|
|
458
|
+
default: 1,
|
|
459
|
+
description: 'Row number containing headers (1-indexed)',
|
|
460
|
+
},
|
|
461
|
+
],
|
|
462
|
+
};
|
|
463
|
+
exports.newSheetNameProperty = {
|
|
464
|
+
displayName: 'Sheet Name',
|
|
465
|
+
name: 'newSheetName',
|
|
466
|
+
type: 'string',
|
|
467
|
+
required: true,
|
|
468
|
+
default: '',
|
|
469
|
+
placeholder: 'NewSheet',
|
|
470
|
+
description: 'Name for the new sheet',
|
|
471
|
+
displayOptions: {
|
|
472
|
+
show: {
|
|
473
|
+
operation: ['addSheet'],
|
|
474
|
+
},
|
|
475
|
+
},
|
|
476
|
+
};
|
|
477
|
+
exports.lookupColumnProperty = {
|
|
478
|
+
displayName: 'Lookup Column',
|
|
479
|
+
name: 'lookupColumn',
|
|
480
|
+
type: 'string',
|
|
481
|
+
required: true,
|
|
482
|
+
default: '',
|
|
483
|
+
description: 'Column name to search in',
|
|
484
|
+
displayOptions: {
|
|
485
|
+
show: {
|
|
486
|
+
operation: ['lookup'],
|
|
487
|
+
},
|
|
488
|
+
},
|
|
489
|
+
};
|
|
490
|
+
exports.lookupValueProperty = {
|
|
491
|
+
displayName: 'Lookup Value',
|
|
492
|
+
name: 'lookupValue',
|
|
493
|
+
type: 'string',
|
|
494
|
+
required: true,
|
|
495
|
+
default: '',
|
|
496
|
+
description: 'Value to search for',
|
|
497
|
+
displayOptions: {
|
|
498
|
+
show: {
|
|
499
|
+
operation: ['lookup'],
|
|
500
|
+
},
|
|
501
|
+
},
|
|
502
|
+
};
|
|
503
|
+
exports.properties = [
|
|
504
|
+
exports.resourceProperty,
|
|
505
|
+
exports.tableOperations,
|
|
506
|
+
exports.workbookOperations,
|
|
507
|
+
exports.sheetOperations,
|
|
508
|
+
exports.siteIdProperty,
|
|
509
|
+
exports.driveIdProperty,
|
|
510
|
+
exports.fileIdProperty,
|
|
511
|
+
exports.sheetNameProperty,
|
|
512
|
+
exports.tableNameProperty,
|
|
513
|
+
exports.readRowsOptions,
|
|
514
|
+
exports.rowDataProperty,
|
|
515
|
+
exports.upsertRowDataProperty,
|
|
516
|
+
exports.upsertRowsOptions,
|
|
517
|
+
exports.cellRefProperty,
|
|
518
|
+
exports.cellValueProperty,
|
|
519
|
+
exports.newSheetNameProperty,
|
|
520
|
+
exports.lookupColumnProperty,
|
|
521
|
+
exports.lookupValueProperty,
|
|
522
|
+
];
|
|
523
|
+
//# sourceMappingURL=descriptions.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"descriptions.js","sourceRoot":"","sources":["../../../nodes/SharePointExcel/descriptions.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M275.657 126.419H334.948V155.744H275.65L275.657 126.419ZM275.657 82.4563H334.948V111.769H275.65L275.657 82.4563ZM275.657 171.375H334.948V200.694H275.65L275.657 171.375ZM275.657 215.35H334.948V244.669H275.65L275.657 215.35Z" fill="#02723B"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M275.657 260.306H334.948V289.619H275.65L275.657 260.306ZM368.97 42.375H226.077V2.3125L9.30627 40.4188V335.544L226.077 372.681V327.769H368.97C374.798 327.769 378.687 322.888 378.687 318.05V52.15C378.687 47.2687 374.798 42.4313 368.963 42.4313L368.97 42.375ZM131.779 253.463L111.371 199.756H110.448C110.448 200.687 90.0342 250.569 90.0342 250.569L62.8194 248.619L94.8899 185.1L65.7304 121.581L92.9514 119.631L111.421 169.469H112.343C112.343 168.544 132.751 117.675 132.751 117.675L160.938 115.725L126.923 185.106L161.917 254.494L131.785 253.563L131.779 253.463ZM366.04 316.981H226.077V289.669H260.098V260.35H226.077V245.65H260.098V216.337H226.077V201.669H260.098V172.356H226.077V157.687H260.098V128.375H226.077V113.719H260.098V84.3938H226.077V55.0812H366.052V316.975L366.04 316.981Z" fill="#02723B"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M273.344 124.106H332.636V153.425H273.35L273.344 124.106ZM273.344 80.1375H332.636V109.456H273.35L273.344 80.1375ZM273.344 169.062H332.636V198.375H273.35L273.344 169.062ZM273.344 213.037H332.636V242.356H273.35L273.344 213.037Z" fill="#02723B"/>
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M273.344 257.994H332.636V287.306H273.35L273.344 257.994ZM366.657 40.0625H223.77V0L7 38.1125V333.237L223.77 370.369V325.462H366.657C372.492 325.462 376.381 320.581 376.381 315.744V49.8375C376.381 44.9562 372.492 40.1187 366.657 40.1187V40.0625ZM129.466 251.15L109.058 197.444H108.136C108.136 198.369 87.7279 248.256 87.7279 248.256L60.5069 246.306L92.5837 182.787L63.4241 119.269L90.6451 117.312L109.108 167.15H110.037C110.037 166.225 130.445 115.362 130.445 115.362L158.632 113.406L124.611 182.794L159.611 252.175L129.479 251.25L129.466 251.15ZM363.734 314.669H223.77V287.356H257.786V258.031H223.77V243.331H257.786V214.019H223.77V199.35H257.786V170.037H223.77V155.375H257.786V126.062H223.77V111.4H257.786V82.075H223.77V52.7625H363.746V314.662L363.734 314.669Z" fill="#02723B"/>
|
|
6
|
+
<g clip-path="url(#clip0_7_100)">
|
|
7
|
+
<path d="M387.065 415.903C422.455 415.903 451.145 387.22 451.145 351.838C451.145 316.456 422.455 287.773 387.065 287.773C351.675 287.773 322.986 316.456 322.986 351.838C322.986 387.22 351.675 415.903 387.065 415.903Z" fill="#036C70"/>
|
|
8
|
+
<path d="M440.465 469.29C472.906 469.29 499.204 442.998 499.204 410.564C499.204 378.13 472.906 351.838 440.465 351.838C408.024 351.838 381.725 378.13 381.725 410.564C381.725 442.998 408.024 469.29 440.465 469.29Z" fill="#1A9BA1"/>
|
|
9
|
+
<path d="M395.075 512C420.143 512 440.465 491.683 440.465 466.621C440.465 441.558 420.143 421.242 395.075 421.242C370.007 421.242 349.686 441.558 349.686 466.621C349.686 491.683 370.007 512 395.075 512Z" fill="#37C6D0"/>
|
|
10
|
+
<path opacity="0.1" d="M397.745 345.591V459.52C397.719 463.479 395.319 467.035 391.658 468.543C390.492 469.036 389.239 469.29 387.973 469.29H349.739C349.686 468.382 349.686 467.528 349.686 466.621C349.668 465.729 349.704 464.838 349.793 463.951C350.77 446.886 361.286 431.829 376.973 425.032V415.102C342.06 409.57 318.242 376.79 323.775 341.885C323.813 341.643 323.853 341.402 323.894 341.16C324.16 339.36 324.534 337.577 325.016 335.822H387.973C393.362 335.842 397.725 340.204 397.745 345.591Z" fill="black"/>
|
|
11
|
+
<path opacity="0.2" d="M382.633 341.16H323.894C317.96 376.003 341.401 409.057 376.251 414.99C377.307 415.169 378.366 415.322 379.429 415.449C362.875 423.297 350.813 445.586 349.787 463.951C349.698 464.838 349.663 465.729 349.68 466.621C349.68 467.528 349.68 468.382 349.734 469.29C349.83 471.085 350.062 472.869 350.428 474.629H382.628C386.587 474.602 390.145 472.203 391.652 468.543C392.145 467.377 392.4 466.124 392.4 464.859V350.93C392.38 345.545 388.02 341.184 382.633 341.16Z" fill="black"/>
|
|
12
|
+
<path opacity="0.2" d="M382.633 341.16H323.894C317.961 376.006 341.406 409.062 376.26 414.993C376.973 415.114 377.687 415.224 378.404 415.321C362.384 423.735 350.797 445.971 349.793 463.951H382.633C388.013 463.911 392.365 459.56 392.405 454.181V350.93C392.385 345.543 388.022 341.181 382.633 341.16Z" fill="black"/>
|
|
13
|
+
<path opacity="0.2" d="M377.293 341.16H323.894C318.292 374.055 338.909 405.733 371.259 413.938C359.01 427.93 351.497 445.435 349.793 463.951H377.293C382.682 463.931 387.045 459.569 387.066 454.181V350.93C387.063 345.536 382.689 341.163 377.293 341.16Z" fill="black"/>
|
|
14
|
+
<path d="M279.375 341.16H377.277C382.683 341.16 387.065 345.542 387.065 350.946V448.827C387.065 454.231 382.683 458.613 377.277 458.613H279.375C273.969 458.613 269.587 454.231 269.587 448.827V350.946C269.587 345.542 273.969 341.16 279.375 341.16Z" fill="url(#paint0_linear_7_100)"/>
|
|
15
|
+
<path d="M313.305 398.691C311.011 397.169 309.095 395.144 307.703 392.77C306.355 390.288 305.683 387.495 305.754 384.671C305.634 380.848 306.925 377.114 309.38 374.18C311.96 371.243 315.295 369.068 319.024 367.891C323.273 366.493 327.724 365.804 332.197 365.852C338.08 365.637 343.955 366.459 349.552 368.281V380.56C347.12 379.087 344.471 378.006 341.702 377.357C338.698 376.62 335.616 376.251 332.523 376.257C329.262 376.137 326.021 376.823 323.087 378.254C320.823 379.23 319.354 381.458 319.35 383.924C319.34 385.419 319.915 386.86 320.952 387.938C322.176 389.21 323.624 390.245 325.224 390.992C327.003 391.878 329.673 393.057 333.233 394.526C333.625 394.65 334.007 394.804 334.376 394.986C337.88 396.355 341.26 398.021 344.479 399.967C346.917 401.47 348.963 403.53 350.449 405.978C351.973 408.753 352.711 411.891 352.585 415.054C352.759 418.979 351.558 422.842 349.189 425.977C346.828 428.859 343.671 430.983 340.111 432.084C335.924 433.397 331.554 434.031 327.167 433.964C323.231 433.982 319.3 433.66 315.419 433.003C312.142 432.467 308.944 431.527 305.898 430.205V417.259C308.81 419.338 312.063 420.892 315.51 421.85C318.946 422.92 322.517 423.492 326.115 423.548C329.445 423.759 332.77 423.053 335.727 421.508C337.799 420.34 339.059 418.126 339.006 415.748C339.02 414.093 338.365 412.503 337.19 411.338C335.73 409.904 334.038 408.726 332.187 407.852C330.051 406.784 326.906 405.377 322.751 403.629C319.446 402.301 316.282 400.646 313.305 398.691Z" fill="white"/>
|
|
16
|
+
</g>
|
|
17
|
+
<defs>
|
|
18
|
+
<linearGradient id="paint0_linear_7_100" x1="289.995" y1="333.514" x2="366.631" y2="466.274" gradientUnits="userSpaceOnUse">
|
|
19
|
+
<stop stop-color="#058F92"/>
|
|
20
|
+
<stop offset="0.5" stop-color="#038489"/>
|
|
21
|
+
<stop offset="1" stop-color="#026D71"/>
|
|
22
|
+
</linearGradient>
|
|
23
|
+
<clipPath id="clip0_7_100">
|
|
24
|
+
<rect width="229.617" height="224.227" fill="white" transform="translate(269.587 287.773)"/>
|
|
25
|
+
</clipPath>
|
|
26
|
+
</defs>
|
|
27
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { ILoadOptionsFunctions, INodeListSearchResult } from 'n8n-workflow';
|
|
2
|
+
export declare function searchSites(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>;
|
|
3
|
+
export declare function getDrives(this: ILoadOptionsFunctions): Promise<INodeListSearchResult>;
|
|
4
|
+
export declare function getFiles(this: ILoadOptionsFunctions): Promise<INodeListSearchResult>;
|
|
5
|
+
export declare function getSheets(this: ILoadOptionsFunctions): Promise<INodeListSearchResult>;
|
|
6
|
+
export declare function getTables(this: ILoadOptionsFunctions): Promise<INodeListSearchResult>;
|