@activepieces/shared 0.40.0 → 0.41.0
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 +1 -1
- package/src/lib/automation/agents/tools.d.ts +5 -0
- package/src/lib/automation/agents/tools.js +12 -0
- package/src/lib/automation/agents/tools.js.map +1 -1
- package/src/lib/automation/app-connection/app-connection.d.ts +2 -2
- package/src/lib/automation/app-connection/dto/read-app-connection-request.d.ts +1 -1
- package/src/lib/automation/app-connection/dto/upsert-app-connection-request.d.ts +21 -21
- package/src/lib/automation/flows/flow-version.d.ts +2 -2
- package/src/lib/automation/flows/flow.d.ts +8 -8
- package/src/lib/automation/flows/operations/index.d.ts +25 -25
- package/src/lib/automation/flows/operations/paste-operations.d.ts +19 -19
- package/src/lib/automation/flows/triggers/trigger-events/trigger-event.d.ts +1 -1
- package/src/lib/automation/flows/util/flow-structure-util.js +12 -6
- package/src/lib/automation/flows/util/flow-structure-util.js.map +1 -1
- package/src/lib/automation/mcp/mcp.d.ts +4 -4
- package/src/lib/automation/pieces/utils.js +5 -4
- package/src/lib/automation/pieces/utils.js.map +1 -1
- package/src/lib/automation/project-release/project-state.d.ts +30 -30
- package/src/lib/automation/tables/record.d.ts +1 -1
- package/src/lib/automation/tables/table.d.ts +3 -3
- package/src/lib/automation/workers/job-data.d.ts +27 -27
- package/src/lib/core/authentication/dto/authentication-response.d.ts +5 -5
- package/src/lib/core/common/activepieces-error.d.ts +2 -50
- package/src/lib/core/common/activepieces-error.js +0 -10
- package/src/lib/core/common/activepieces-error.js.map +1 -1
- package/src/lib/ee/api-key/index.d.ts +1 -1
- package/src/lib/ee/audit-events/index.d.ts +24 -24
- package/src/lib/ee/git-repo/index.d.ts +1 -1
- package/src/lib/ee/project-members/project-member.d.ts +1 -1
- package/src/lib/management/invitations/index.d.ts +2 -2
- package/src/lib/management/project/project.d.ts +8 -8
- package/src/lib/management/template/template.d.ts +10 -10
|
@@ -44,8 +44,8 @@ export declare const _getOperationsForPaste: (actions: FlowAction[], flowVersion
|
|
|
44
44
|
notes?: {
|
|
45
45
|
ownerId?: string | null | undefined;
|
|
46
46
|
id: string;
|
|
47
|
-
color: import("..").NoteColorVariant;
|
|
48
47
|
content: string;
|
|
48
|
+
color: import("..").NoteColorVariant;
|
|
49
49
|
position: {
|
|
50
50
|
x: number;
|
|
51
51
|
y: number;
|
|
@@ -62,14 +62,13 @@ export declare const _getOperationsForPaste: (actions: FlowAction[], flowVersion
|
|
|
62
62
|
nextAction?: any;
|
|
63
63
|
type: import("../triggers/trigger").FlowTriggerType.EMPTY;
|
|
64
64
|
name: string;
|
|
65
|
-
displayName: string;
|
|
66
65
|
settings: any;
|
|
67
66
|
valid: boolean;
|
|
67
|
+
displayName: string;
|
|
68
68
|
} | {
|
|
69
69
|
nextAction?: any;
|
|
70
70
|
type: import("../triggers/trigger").FlowTriggerType.PIECE;
|
|
71
71
|
name: string;
|
|
72
|
-
displayName: string;
|
|
73
72
|
settings: {
|
|
74
73
|
triggerName?: string | undefined;
|
|
75
74
|
sampleData?: {
|
|
@@ -91,6 +90,7 @@ export declare const _getOperationsForPaste: (actions: FlowAction[], flowVersion
|
|
|
91
90
|
};
|
|
92
91
|
};
|
|
93
92
|
valid: boolean;
|
|
93
|
+
displayName: string;
|
|
94
94
|
};
|
|
95
95
|
};
|
|
96
96
|
} | {
|
|
@@ -109,7 +109,6 @@ export declare const _getOperationsForPaste: (actions: FlowAction[], flowVersion
|
|
|
109
109
|
skip?: boolean | undefined;
|
|
110
110
|
type: import("../actions/action").FlowActionType.ROUTER;
|
|
111
111
|
name: string;
|
|
112
|
-
displayName: string;
|
|
113
112
|
settings: {
|
|
114
113
|
sampleData?: {
|
|
115
114
|
sampleDataFileId?: string | undefined;
|
|
@@ -144,11 +143,11 @@ export declare const _getOperationsForPaste: (actions: FlowAction[], flowVersion
|
|
|
144
143
|
executionType: import("../actions/action").RouterExecutionType;
|
|
145
144
|
};
|
|
146
145
|
valid: boolean;
|
|
146
|
+
displayName: string;
|
|
147
147
|
} | {
|
|
148
148
|
skip?: boolean | undefined;
|
|
149
149
|
type: import("../actions/action").FlowActionType.LOOP_ON_ITEMS;
|
|
150
150
|
name: string;
|
|
151
|
-
displayName: string;
|
|
152
151
|
settings: {
|
|
153
152
|
sampleData?: {
|
|
154
153
|
sampleDataFileId?: string | undefined;
|
|
@@ -159,13 +158,12 @@ export declare const _getOperationsForPaste: (actions: FlowAction[], flowVersion
|
|
|
159
158
|
items: string;
|
|
160
159
|
};
|
|
161
160
|
valid: boolean;
|
|
161
|
+
displayName: string;
|
|
162
162
|
} | {
|
|
163
163
|
skip?: boolean | undefined;
|
|
164
164
|
type: import("../actions/action").FlowActionType.PIECE;
|
|
165
165
|
name: string;
|
|
166
|
-
displayName: string;
|
|
167
166
|
settings: {
|
|
168
|
-
actionName?: string | undefined;
|
|
169
167
|
errorHandlingOptions?: {
|
|
170
168
|
continueOnFailure?: {
|
|
171
169
|
value?: boolean | undefined;
|
|
@@ -180,6 +178,7 @@ export declare const _getOperationsForPaste: (actions: FlowAction[], flowVersion
|
|
|
180
178
|
lastTestDate?: string | undefined;
|
|
181
179
|
} | undefined;
|
|
182
180
|
customLogoUrl?: string | undefined;
|
|
181
|
+
actionName?: string | undefined;
|
|
183
182
|
pieceName: string;
|
|
184
183
|
pieceVersion: string;
|
|
185
184
|
input: {
|
|
@@ -193,11 +192,11 @@ export declare const _getOperationsForPaste: (actions: FlowAction[], flowVersion
|
|
|
193
192
|
};
|
|
194
193
|
};
|
|
195
194
|
valid: boolean;
|
|
195
|
+
displayName: string;
|
|
196
196
|
} | {
|
|
197
197
|
skip?: boolean | undefined;
|
|
198
198
|
type: import("../actions/action").FlowActionType.CODE;
|
|
199
199
|
name: string;
|
|
200
|
-
displayName: string;
|
|
201
200
|
settings: {
|
|
202
201
|
errorHandlingOptions?: {
|
|
203
202
|
continueOnFailure?: {
|
|
@@ -217,11 +216,12 @@ export declare const _getOperationsForPaste: (actions: FlowAction[], flowVersion
|
|
|
217
216
|
[x: string]: any;
|
|
218
217
|
};
|
|
219
218
|
sourceCode: {
|
|
220
|
-
code: string;
|
|
221
219
|
packageJson: string;
|
|
220
|
+
code: string;
|
|
222
221
|
};
|
|
223
222
|
};
|
|
224
223
|
valid: boolean;
|
|
224
|
+
displayName: string;
|
|
225
225
|
};
|
|
226
226
|
} | {
|
|
227
227
|
type: FlowOperationType.ADD_ACTION;
|
|
@@ -233,7 +233,6 @@ export declare const _getOperationsForPaste: (actions: FlowAction[], flowVersion
|
|
|
233
233
|
skip?: boolean | undefined;
|
|
234
234
|
type: import("../actions/action").FlowActionType.ROUTER;
|
|
235
235
|
name: string;
|
|
236
|
-
displayName: string;
|
|
237
236
|
settings: {
|
|
238
237
|
sampleData?: {
|
|
239
238
|
sampleDataFileId?: string | undefined;
|
|
@@ -268,11 +267,11 @@ export declare const _getOperationsForPaste: (actions: FlowAction[], flowVersion
|
|
|
268
267
|
executionType: import("../actions/action").RouterExecutionType;
|
|
269
268
|
};
|
|
270
269
|
valid: boolean;
|
|
270
|
+
displayName: string;
|
|
271
271
|
} | {
|
|
272
272
|
skip?: boolean | undefined;
|
|
273
273
|
type: import("../actions/action").FlowActionType.LOOP_ON_ITEMS;
|
|
274
274
|
name: string;
|
|
275
|
-
displayName: string;
|
|
276
275
|
settings: {
|
|
277
276
|
sampleData?: {
|
|
278
277
|
sampleDataFileId?: string | undefined;
|
|
@@ -283,13 +282,12 @@ export declare const _getOperationsForPaste: (actions: FlowAction[], flowVersion
|
|
|
283
282
|
items: string;
|
|
284
283
|
};
|
|
285
284
|
valid: boolean;
|
|
285
|
+
displayName: string;
|
|
286
286
|
} | {
|
|
287
287
|
skip?: boolean | undefined;
|
|
288
288
|
type: import("../actions/action").FlowActionType.PIECE;
|
|
289
289
|
name: string;
|
|
290
|
-
displayName: string;
|
|
291
290
|
settings: {
|
|
292
|
-
actionName?: string | undefined;
|
|
293
291
|
errorHandlingOptions?: {
|
|
294
292
|
continueOnFailure?: {
|
|
295
293
|
value?: boolean | undefined;
|
|
@@ -304,6 +302,7 @@ export declare const _getOperationsForPaste: (actions: FlowAction[], flowVersion
|
|
|
304
302
|
lastTestDate?: string | undefined;
|
|
305
303
|
} | undefined;
|
|
306
304
|
customLogoUrl?: string | undefined;
|
|
305
|
+
actionName?: string | undefined;
|
|
307
306
|
pieceName: string;
|
|
308
307
|
pieceVersion: string;
|
|
309
308
|
input: {
|
|
@@ -317,11 +316,11 @@ export declare const _getOperationsForPaste: (actions: FlowAction[], flowVersion
|
|
|
317
316
|
};
|
|
318
317
|
};
|
|
319
318
|
valid: boolean;
|
|
319
|
+
displayName: string;
|
|
320
320
|
} | {
|
|
321
321
|
skip?: boolean | undefined;
|
|
322
322
|
type: import("../actions/action").FlowActionType.CODE;
|
|
323
323
|
name: string;
|
|
324
|
-
displayName: string;
|
|
325
324
|
settings: {
|
|
326
325
|
errorHandlingOptions?: {
|
|
327
326
|
continueOnFailure?: {
|
|
@@ -341,11 +340,12 @@ export declare const _getOperationsForPaste: (actions: FlowAction[], flowVersion
|
|
|
341
340
|
[x: string]: any;
|
|
342
341
|
};
|
|
343
342
|
sourceCode: {
|
|
344
|
-
code: string;
|
|
345
343
|
packageJson: string;
|
|
344
|
+
code: string;
|
|
346
345
|
};
|
|
347
346
|
};
|
|
348
347
|
valid: boolean;
|
|
348
|
+
displayName: string;
|
|
349
349
|
};
|
|
350
350
|
};
|
|
351
351
|
} | {
|
|
@@ -354,14 +354,13 @@ export declare const _getOperationsForPaste: (actions: FlowAction[], flowVersion
|
|
|
354
354
|
nextAction?: any;
|
|
355
355
|
type: import("../triggers/trigger").FlowTriggerType.EMPTY;
|
|
356
356
|
name: string;
|
|
357
|
-
displayName: string;
|
|
358
357
|
settings: any;
|
|
359
358
|
valid: boolean;
|
|
359
|
+
displayName: string;
|
|
360
360
|
} | {
|
|
361
361
|
nextAction?: any;
|
|
362
362
|
type: import("../triggers/trigger").FlowTriggerType.PIECE;
|
|
363
363
|
name: string;
|
|
364
|
-
displayName: string;
|
|
365
364
|
settings: {
|
|
366
365
|
triggerName?: string | undefined;
|
|
367
366
|
sampleData?: {
|
|
@@ -383,6 +382,7 @@ export declare const _getOperationsForPaste: (actions: FlowAction[], flowVersion
|
|
|
383
382
|
};
|
|
384
383
|
};
|
|
385
384
|
valid: boolean;
|
|
385
|
+
displayName: string;
|
|
386
386
|
};
|
|
387
387
|
} | {
|
|
388
388
|
type: FlowOperationType.CHANGE_FOLDER;
|
|
@@ -472,8 +472,8 @@ export declare const _getOperationsForPaste: (actions: FlowAction[], flowVersion
|
|
|
472
472
|
request: {
|
|
473
473
|
ownerId?: string | null | undefined;
|
|
474
474
|
id: string;
|
|
475
|
-
color: import("..").NoteColorVariant;
|
|
476
475
|
content: string;
|
|
476
|
+
color: import("..").NoteColorVariant;
|
|
477
477
|
position: {
|
|
478
478
|
x: number;
|
|
479
479
|
y: number;
|
|
@@ -492,8 +492,8 @@ export declare const _getOperationsForPaste: (actions: FlowAction[], flowVersion
|
|
|
492
492
|
type: FlowOperationType.ADD_NOTE;
|
|
493
493
|
request: {
|
|
494
494
|
id: string;
|
|
495
|
-
color: import("..").NoteColorVariant;
|
|
496
495
|
content: string;
|
|
496
|
+
color: import("..").NoteColorVariant;
|
|
497
497
|
position: {
|
|
498
498
|
x: number;
|
|
499
499
|
y: number;
|
|
@@ -10,8 +10,8 @@ export declare const TriggerEvent: import("@sinclair/typebox").TObject<{
|
|
|
10
10
|
}>;
|
|
11
11
|
export type TriggerEvent = Static<typeof TriggerEvent> & BaseModel<TriggerEventId>;
|
|
12
12
|
export declare const TriggerEventWithPayload: import("@sinclair/typebox").TObject<{
|
|
13
|
-
id: import("@sinclair/typebox").TString;
|
|
14
13
|
projectId: import("@sinclair/typebox").TString;
|
|
14
|
+
id: import("@sinclair/typebox").TString;
|
|
15
15
|
flowId: import("@sinclair/typebox").TString;
|
|
16
16
|
sourceName: import("@sinclair/typebox").TString;
|
|
17
17
|
fileId: import("@sinclair/typebox").TString;
|
|
@@ -16,9 +16,11 @@ function getActionOrThrow(name, flowRoot) {
|
|
|
16
16
|
const step = getStepOrThrow(name, flowRoot);
|
|
17
17
|
if (!isAction(step.type)) {
|
|
18
18
|
throw new activepieces_error_1.ActivepiecesError({
|
|
19
|
-
code: activepieces_error_1.ErrorCode.
|
|
19
|
+
code: activepieces_error_1.ErrorCode.ENTITY_NOT_FOUND,
|
|
20
20
|
params: {
|
|
21
|
-
|
|
21
|
+
entityType: 'step',
|
|
22
|
+
entityId: name,
|
|
23
|
+
message: 'Step is not an action',
|
|
22
24
|
},
|
|
23
25
|
});
|
|
24
26
|
}
|
|
@@ -28,9 +30,11 @@ function getTriggerOrThrow(name, flowRoot) {
|
|
|
28
30
|
const step = getStepOrThrow(name, flowRoot);
|
|
29
31
|
if (!isTrigger(step.type)) {
|
|
30
32
|
throw new activepieces_error_1.ActivepiecesError({
|
|
31
|
-
code: activepieces_error_1.ErrorCode.
|
|
33
|
+
code: activepieces_error_1.ErrorCode.ENTITY_NOT_FOUND,
|
|
32
34
|
params: {
|
|
33
|
-
|
|
35
|
+
entityType: 'step',
|
|
36
|
+
entityId: name,
|
|
37
|
+
message: 'Step is not a trigger',
|
|
34
38
|
},
|
|
35
39
|
});
|
|
36
40
|
}
|
|
@@ -43,9 +47,11 @@ function getStepOrThrow(name, flowRoot) {
|
|
|
43
47
|
const step = getStep(name, flowRoot);
|
|
44
48
|
if ((0, common_1.isNil)(step)) {
|
|
45
49
|
throw new activepieces_error_1.ActivepiecesError({
|
|
46
|
-
code: activepieces_error_1.ErrorCode.
|
|
50
|
+
code: activepieces_error_1.ErrorCode.ENTITY_NOT_FOUND,
|
|
47
51
|
params: {
|
|
48
|
-
|
|
52
|
+
entityType: 'step',
|
|
53
|
+
entityId: name,
|
|
54
|
+
message: 'Step not found',
|
|
49
55
|
},
|
|
50
56
|
});
|
|
51
57
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"flow-structure-util.js","sourceRoot":"","sources":["../../../../../../src/lib/automation/flows/util/flow-structure-util.ts"],"names":[],"mappings":";;;AAAA,iDAA4C;AAC5C,gFAAsF;AACtF,8CAAqJ;AAErJ,iDAAkE;AAGrD,QAAA,aAAa,GAAG,wBAAwB,CAAA;AAOrD,SAAS,QAAQ,CAAC,IAAkD;IAChE,OAAO,MAAM,CAAC,OAAO,CAAC,uBAAc,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,EAAE,EAAE,CAAC,KAAK,KAAK,IAAI,CAAC,CAAA;AAC7E,CAAC;AAED,SAAS,SAAS,CAAC,IAAkD;IACjE,OAAO,MAAM,CAAC,OAAO,CAAC,yBAAe,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,EAAE,EAAE,CAAC,KAAK,KAAK,IAAI,CAAC,CAAA;AAC9E,CAAC;AAED,SAAS,gBAAgB,CAAC,IAAY,EAAE,QAAc;IAClD,MAAM,IAAI,GAAG,cAAc,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAA;IAC3C,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC;QACvB,MAAM,IAAI,sCAAiB,CAAC;YACxB,IAAI,EAAE,8BAAS,CAAC,
|
|
1
|
+
{"version":3,"file":"flow-structure-util.js","sourceRoot":"","sources":["../../../../../../src/lib/automation/flows/util/flow-structure-util.ts"],"names":[],"mappings":"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"}
|
|
@@ -15,23 +15,23 @@ export declare const McpServer: import("@sinclair/typebox").TObject<{
|
|
|
15
15
|
updated: import("@sinclair/typebox").TString;
|
|
16
16
|
}>;
|
|
17
17
|
export declare const PopulatedMcpServer: import("@sinclair/typebox").TObject<{
|
|
18
|
+
projectId: import("@sinclair/typebox").TString;
|
|
18
19
|
id: import("@sinclair/typebox").TString;
|
|
19
20
|
created: import("@sinclair/typebox").TString;
|
|
20
21
|
updated: import("@sinclair/typebox").TString;
|
|
21
|
-
projectId: import("@sinclair/typebox").TString;
|
|
22
22
|
status: import("@sinclair/typebox").TEnum<typeof McpServerStatus>;
|
|
23
23
|
token: import("@sinclair/typebox").TString;
|
|
24
24
|
flows: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
25
|
+
projectId: import("@sinclair/typebox").TString;
|
|
25
26
|
id: import("@sinclair/typebox").TString;
|
|
26
27
|
created: import("@sinclair/typebox").TString;
|
|
27
28
|
updated: import("@sinclair/typebox").TString;
|
|
28
|
-
|
|
29
|
+
status: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowStatus>;
|
|
29
30
|
externalId: import("@sinclair/typebox").TString;
|
|
31
|
+
ownerId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
30
32
|
metadata: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<{
|
|
31
33
|
[x: string]: unknown;
|
|
32
34
|
} | null>>;
|
|
33
|
-
projectId: import("@sinclair/typebox").TString;
|
|
34
|
-
status: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowStatus>;
|
|
35
35
|
folderId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
36
36
|
publishedVersionId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
37
37
|
operationStatus: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowOperationStatus>;
|
|
@@ -50,11 +50,12 @@ const extractPieceFromModule = (params) => {
|
|
|
50
50
|
constructors.push((_a = e === null || e === void 0 ? void 0 : e.constructor) === null || _a === void 0 ? void 0 : _a.name);
|
|
51
51
|
}
|
|
52
52
|
throw new activepieces_error_1.ActivepiecesError({
|
|
53
|
-
code: activepieces_error_1.ErrorCode.
|
|
53
|
+
code: activepieces_error_1.ErrorCode.ENTITY_NOT_FOUND,
|
|
54
54
|
params: {
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
message: `Failed to extract piece from module, found constructors: ${constructors.join(', ')}`,
|
|
55
|
+
entityType: 'piece',
|
|
56
|
+
entityId: pieceName,
|
|
57
|
+
message: `Failed to extract piece from module (version: ${pieceVersion}), found constructors: ${constructors.join(', ')}`,
|
|
58
|
+
extra: { pieceName, pieceVersion },
|
|
58
59
|
},
|
|
59
60
|
});
|
|
60
61
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../../../../src/lib/automation/pieces/utils.ts"],"names":[],"mappings":";;;;AAAA,2EAAgD;AAChD,2EAAgD;AAChD,oFAAwD;AACxD,8CAA4D;AAC5D,6EAAmF;AAEnF;;;;GAIG;AACI,MAAM,uBAAuB,GAAG,CAAC,MAAqC,EAAU,EAAE;IACrF,MAAM,EAAE,SAAS,EAAE,YAAY,EAAE,GAAG,MAAM,CAAA;IAC1C,OAAO,GAAG,SAAS,IAAI,YAAY,EAAE,CAAA;AACzC,CAAC,CAAA;AAHY,QAAA,uBAAuB,2BAGnC;AAED;;;GAGG;AACI,MAAM,qBAAqB,GAAG,CAAC,KAAa,EAAU,EAAE;IAC3D,MAAM,aAAa,GAAI,KAAK,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,KAAK,CAAA;IAC7E,IAAA,iCAAwB,EAAC,aAAa,EAAE,iBAAiB,CAAC,CAAA;IAC1D,IAAI,aAAa,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,CAAC;QACrC,OAAO,aAAa,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;IACtD,CAAC;IACD,OAAO,aAAa,CAAA;AACxB,CAAC,CAAA;AAPY,QAAA,qBAAqB,yBAOjC;AAED;;;GAGG;AACI,MAAM,oBAAoB,GAAG,CAAC,KAAa,EAAU,EAAE;IAC1D,OAAO,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AAClD,CAAC,CAAA;AAFY,QAAA,oBAAoB,wBAEhC;AAIM,MAAM,sBAAsB,GAAG,CAAI,MAAoC,EAAK,EAAE;;IACjF,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,YAAY,EAAE,GAAG,MAAM,CAAA;IAClD,MAAM,OAAO,GAAG,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAA;IACrC,MAAM,YAAY,GAAG,EAAE,CAAA;IACvB,KAAK,MAAM,CAAC,IAAI,OAAO,EAAE,CAAC;QACtB,IAAI,CAAC,KAAK,IAAI,IAAI,CAAC,KAAK,SAAS,IAAI,CAAC,CAAC,WAAW,CAAC,IAAI,KAAK,OAAO,EAAE,CAAC;YAClE,OAAO,CAAM,CAAA;QACjB,CAAC;QACD,YAAY,CAAC,IAAI,CAAC,MAAA,CAAC,aAAD,CAAC,uBAAD,CAAC,CAAE,WAAW,0CAAE,IAAI,CAAC,CAAA;IAC3C,CAAC;IAED,MAAM,IAAI,sCAAiB,CAAC;QACxB,IAAI,EAAE,8BAAS,CAAC,
|
|
1
|
+
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../../../../src/lib/automation/pieces/utils.ts"],"names":[],"mappings":"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"}
|
|
@@ -15,16 +15,16 @@ export declare enum TableOperationType {
|
|
|
15
15
|
DELETE_TABLE = "DELETE_TABLE"
|
|
16
16
|
}
|
|
17
17
|
export declare const FlowState: import("@sinclair/typebox").TObject<{
|
|
18
|
+
projectId: import("@sinclair/typebox").TString;
|
|
18
19
|
id: import("@sinclair/typebox").TString;
|
|
19
20
|
created: import("@sinclair/typebox").TString;
|
|
20
21
|
updated: import("@sinclair/typebox").TString;
|
|
21
|
-
|
|
22
|
+
status: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowStatus>;
|
|
22
23
|
externalId: import("@sinclair/typebox").TString;
|
|
24
|
+
ownerId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
23
25
|
metadata: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<{
|
|
24
26
|
[x: string]: unknown;
|
|
25
27
|
} | null>>;
|
|
26
|
-
projectId: import("@sinclair/typebox").TString;
|
|
27
|
-
status: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowStatus>;
|
|
28
28
|
folderId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
29
29
|
publishedVersionId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
30
30
|
operationStatus: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowOperationStatus>;
|
|
@@ -138,16 +138,16 @@ export declare const TableState: import("@sinclair/typebox").TObject<{
|
|
|
138
138
|
export type TableState = Static<typeof TableState>;
|
|
139
139
|
export declare const ProjectState: import("@sinclair/typebox").TObject<{
|
|
140
140
|
flows: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
141
|
+
projectId: import("@sinclair/typebox").TString;
|
|
141
142
|
id: import("@sinclair/typebox").TString;
|
|
142
143
|
created: import("@sinclair/typebox").TString;
|
|
143
144
|
updated: import("@sinclair/typebox").TString;
|
|
144
|
-
|
|
145
|
+
status: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowStatus>;
|
|
145
146
|
externalId: import("@sinclair/typebox").TString;
|
|
147
|
+
ownerId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
146
148
|
metadata: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<{
|
|
147
149
|
[x: string]: unknown;
|
|
148
150
|
} | null>>;
|
|
149
|
-
projectId: import("@sinclair/typebox").TString;
|
|
150
|
-
status: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowStatus>;
|
|
151
151
|
folderId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
152
152
|
publishedVersionId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
153
153
|
operationStatus: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowOperationStatus>;
|
|
@@ -250,16 +250,16 @@ export type ProjectState = Static<typeof ProjectState>;
|
|
|
250
250
|
export declare const ProjectOperation: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
251
251
|
type: import("@sinclair/typebox").TLiteral<FlowProjectOperationType.UPDATE_FLOW>;
|
|
252
252
|
newFlowState: import("@sinclair/typebox").TObject<{
|
|
253
|
+
projectId: import("@sinclair/typebox").TString;
|
|
253
254
|
id: import("@sinclair/typebox").TString;
|
|
254
255
|
created: import("@sinclair/typebox").TString;
|
|
255
256
|
updated: import("@sinclair/typebox").TString;
|
|
256
|
-
|
|
257
|
+
status: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowStatus>;
|
|
257
258
|
externalId: import("@sinclair/typebox").TString;
|
|
259
|
+
ownerId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
258
260
|
metadata: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<{
|
|
259
261
|
[x: string]: unknown;
|
|
260
262
|
} | null>>;
|
|
261
|
-
projectId: import("@sinclair/typebox").TString;
|
|
262
|
-
status: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowStatus>;
|
|
263
263
|
folderId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
264
264
|
publishedVersionId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
265
265
|
operationStatus: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowOperationStatus>;
|
|
@@ -336,16 +336,16 @@ export declare const ProjectOperation: import("@sinclair/typebox").TUnion<[impor
|
|
|
336
336
|
}>>;
|
|
337
337
|
}>;
|
|
338
338
|
flowState: import("@sinclair/typebox").TObject<{
|
|
339
|
+
projectId: import("@sinclair/typebox").TString;
|
|
339
340
|
id: import("@sinclair/typebox").TString;
|
|
340
341
|
created: import("@sinclair/typebox").TString;
|
|
341
342
|
updated: import("@sinclair/typebox").TString;
|
|
342
|
-
|
|
343
|
+
status: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowStatus>;
|
|
343
344
|
externalId: import("@sinclair/typebox").TString;
|
|
345
|
+
ownerId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
344
346
|
metadata: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<{
|
|
345
347
|
[x: string]: unknown;
|
|
346
348
|
} | null>>;
|
|
347
|
-
projectId: import("@sinclair/typebox").TString;
|
|
348
|
-
status: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowStatus>;
|
|
349
349
|
folderId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
350
350
|
publishedVersionId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
351
351
|
operationStatus: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowOperationStatus>;
|
|
@@ -424,16 +424,16 @@ export declare const ProjectOperation: import("@sinclair/typebox").TUnion<[impor
|
|
|
424
424
|
}>, import("@sinclair/typebox").TObject<{
|
|
425
425
|
type: import("@sinclair/typebox").TLiteral<FlowProjectOperationType.CREATE_FLOW>;
|
|
426
426
|
flowState: import("@sinclair/typebox").TObject<{
|
|
427
|
+
projectId: import("@sinclair/typebox").TString;
|
|
427
428
|
id: import("@sinclair/typebox").TString;
|
|
428
429
|
created: import("@sinclair/typebox").TString;
|
|
429
430
|
updated: import("@sinclair/typebox").TString;
|
|
430
|
-
|
|
431
|
+
status: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowStatus>;
|
|
431
432
|
externalId: import("@sinclair/typebox").TString;
|
|
433
|
+
ownerId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
432
434
|
metadata: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<{
|
|
433
435
|
[x: string]: unknown;
|
|
434
436
|
} | null>>;
|
|
435
|
-
projectId: import("@sinclair/typebox").TString;
|
|
436
|
-
status: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowStatus>;
|
|
437
437
|
folderId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
438
438
|
publishedVersionId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
439
439
|
operationStatus: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowOperationStatus>;
|
|
@@ -512,16 +512,16 @@ export declare const ProjectOperation: import("@sinclair/typebox").TUnion<[impor
|
|
|
512
512
|
}>, import("@sinclair/typebox").TObject<{
|
|
513
513
|
type: import("@sinclair/typebox").TLiteral<FlowProjectOperationType.DELETE_FLOW>;
|
|
514
514
|
flowState: import("@sinclair/typebox").TObject<{
|
|
515
|
+
projectId: import("@sinclair/typebox").TString;
|
|
515
516
|
id: import("@sinclair/typebox").TString;
|
|
516
517
|
created: import("@sinclair/typebox").TString;
|
|
517
518
|
updated: import("@sinclair/typebox").TString;
|
|
518
|
-
|
|
519
|
+
status: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowStatus>;
|
|
519
520
|
externalId: import("@sinclair/typebox").TString;
|
|
521
|
+
ownerId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
520
522
|
metadata: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<{
|
|
521
523
|
[x: string]: unknown;
|
|
522
524
|
} | null>>;
|
|
523
|
-
projectId: import("@sinclair/typebox").TString;
|
|
524
|
-
status: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowStatus>;
|
|
525
525
|
folderId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
526
526
|
publishedVersionId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
527
527
|
operationStatus: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowOperationStatus>;
|
|
@@ -700,16 +700,16 @@ export declare const DiffState: import("@sinclair/typebox").TObject<{
|
|
|
700
700
|
flows: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
701
701
|
type: import("@sinclair/typebox").TLiteral<FlowProjectOperationType.UPDATE_FLOW>;
|
|
702
702
|
newFlowState: import("@sinclair/typebox").TObject<{
|
|
703
|
+
projectId: import("@sinclair/typebox").TString;
|
|
703
704
|
id: import("@sinclair/typebox").TString;
|
|
704
705
|
created: import("@sinclair/typebox").TString;
|
|
705
706
|
updated: import("@sinclair/typebox").TString;
|
|
706
|
-
|
|
707
|
+
status: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowStatus>;
|
|
707
708
|
externalId: import("@sinclair/typebox").TString;
|
|
709
|
+
ownerId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
708
710
|
metadata: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<{
|
|
709
711
|
[x: string]: unknown;
|
|
710
712
|
} | null>>;
|
|
711
|
-
projectId: import("@sinclair/typebox").TString;
|
|
712
|
-
status: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowStatus>;
|
|
713
713
|
folderId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
714
714
|
publishedVersionId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
715
715
|
operationStatus: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowOperationStatus>;
|
|
@@ -786,16 +786,16 @@ export declare const DiffState: import("@sinclair/typebox").TObject<{
|
|
|
786
786
|
}>>;
|
|
787
787
|
}>;
|
|
788
788
|
flowState: import("@sinclair/typebox").TObject<{
|
|
789
|
+
projectId: import("@sinclair/typebox").TString;
|
|
789
790
|
id: import("@sinclair/typebox").TString;
|
|
790
791
|
created: import("@sinclair/typebox").TString;
|
|
791
792
|
updated: import("@sinclair/typebox").TString;
|
|
792
|
-
|
|
793
|
+
status: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowStatus>;
|
|
793
794
|
externalId: import("@sinclair/typebox").TString;
|
|
795
|
+
ownerId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
794
796
|
metadata: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<{
|
|
795
797
|
[x: string]: unknown;
|
|
796
798
|
} | null>>;
|
|
797
|
-
projectId: import("@sinclair/typebox").TString;
|
|
798
|
-
status: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowStatus>;
|
|
799
799
|
folderId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
800
800
|
publishedVersionId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
801
801
|
operationStatus: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowOperationStatus>;
|
|
@@ -874,16 +874,16 @@ export declare const DiffState: import("@sinclair/typebox").TObject<{
|
|
|
874
874
|
}>, import("@sinclair/typebox").TObject<{
|
|
875
875
|
type: import("@sinclair/typebox").TLiteral<FlowProjectOperationType.CREATE_FLOW>;
|
|
876
876
|
flowState: import("@sinclair/typebox").TObject<{
|
|
877
|
+
projectId: import("@sinclair/typebox").TString;
|
|
877
878
|
id: import("@sinclair/typebox").TString;
|
|
878
879
|
created: import("@sinclair/typebox").TString;
|
|
879
880
|
updated: import("@sinclair/typebox").TString;
|
|
880
|
-
|
|
881
|
+
status: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowStatus>;
|
|
881
882
|
externalId: import("@sinclair/typebox").TString;
|
|
883
|
+
ownerId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
882
884
|
metadata: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<{
|
|
883
885
|
[x: string]: unknown;
|
|
884
886
|
} | null>>;
|
|
885
|
-
projectId: import("@sinclair/typebox").TString;
|
|
886
|
-
status: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowStatus>;
|
|
887
887
|
folderId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
888
888
|
publishedVersionId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
889
889
|
operationStatus: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowOperationStatus>;
|
|
@@ -962,16 +962,16 @@ export declare const DiffState: import("@sinclair/typebox").TObject<{
|
|
|
962
962
|
}>, import("@sinclair/typebox").TObject<{
|
|
963
963
|
type: import("@sinclair/typebox").TLiteral<FlowProjectOperationType.DELETE_FLOW>;
|
|
964
964
|
flowState: import("@sinclair/typebox").TObject<{
|
|
965
|
+
projectId: import("@sinclair/typebox").TString;
|
|
965
966
|
id: import("@sinclair/typebox").TString;
|
|
966
967
|
created: import("@sinclair/typebox").TString;
|
|
967
968
|
updated: import("@sinclair/typebox").TString;
|
|
968
|
-
|
|
969
|
+
status: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowStatus>;
|
|
969
970
|
externalId: import("@sinclair/typebox").TString;
|
|
971
|
+
ownerId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
970
972
|
metadata: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<{
|
|
971
973
|
[x: string]: unknown;
|
|
972
974
|
} | null>>;
|
|
973
|
-
projectId: import("@sinclair/typebox").TString;
|
|
974
|
-
status: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowStatus>;
|
|
975
975
|
folderId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
976
976
|
publishedVersionId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string | null>>;
|
|
977
977
|
operationStatus: import("@sinclair/typebox").TEnum<typeof import("../flows/flow").FlowOperationStatus>;
|
|
@@ -8,10 +8,10 @@ export declare const Record: import("@sinclair/typebox").TObject<{
|
|
|
8
8
|
}>;
|
|
9
9
|
export type Record = Static<typeof Record>;
|
|
10
10
|
export declare const PopulatedRecord: import("@sinclair/typebox").TObject<{
|
|
11
|
+
projectId: import("@sinclair/typebox").TString;
|
|
11
12
|
id: import("@sinclair/typebox").TString;
|
|
12
13
|
created: import("@sinclair/typebox").TString;
|
|
13
14
|
updated: import("@sinclair/typebox").TString;
|
|
14
|
-
projectId: import("@sinclair/typebox").TString;
|
|
15
15
|
tableId: import("@sinclair/typebox").TString;
|
|
16
16
|
cells: import("@sinclair/typebox").TRecord<import("@sinclair/typebox").TString, import("@sinclair/typebox").TObject<{
|
|
17
17
|
created: import("@sinclair/typebox").TString;
|
|
@@ -19,13 +19,13 @@ export declare const Table: import("@sinclair/typebox").TObject<{
|
|
|
19
19
|
}>;
|
|
20
20
|
export type Table = Static<typeof Table>;
|
|
21
21
|
export declare const PopulatedTable: import("@sinclair/typebox").TObject<{
|
|
22
|
+
projectId: import("@sinclair/typebox").TString;
|
|
22
23
|
id: import("@sinclair/typebox").TString;
|
|
23
24
|
created: import("@sinclair/typebox").TString;
|
|
24
25
|
updated: import("@sinclair/typebox").TString;
|
|
25
|
-
name: import("@sinclair/typebox").TString;
|
|
26
|
-
externalId: import("@sinclair/typebox").TString;
|
|
27
|
-
projectId: import("@sinclair/typebox").TString;
|
|
28
26
|
status: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<TableAutomationStatus | null>>;
|
|
27
|
+
externalId: import("@sinclair/typebox").TString;
|
|
28
|
+
name: import("@sinclair/typebox").TString;
|
|
29
29
|
trigger: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<TableAutomationTrigger | null>>;
|
|
30
30
|
fields: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
31
31
|
name: import("@sinclair/typebox").TString;
|