first commit
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
This commit is contained in:
+154
@@ -0,0 +1,154 @@
|
||||
import type {
|
||||
IExecuteFunctions,
|
||||
INodeExecutionData,
|
||||
INodeType,
|
||||
INodeTypeDescription,
|
||||
} from 'n8n-workflow';
|
||||
import { NodeConnectionTypes } from 'n8n-workflow';
|
||||
|
||||
const data = [
|
||||
{
|
||||
id: '23423532',
|
||||
name: 'Jay Gatsby',
|
||||
email: 'gatsby@west-egg.com',
|
||||
notes: 'Keeps asking about a green light??',
|
||||
country: 'US',
|
||||
created: '1925-04-10',
|
||||
},
|
||||
{
|
||||
id: '23423533',
|
||||
name: 'José Arcadio Buendía',
|
||||
email: 'jab@macondo.co',
|
||||
notes: 'Lots of people named after him. Very confusing',
|
||||
country: 'CO',
|
||||
created: '1967-05-05',
|
||||
},
|
||||
{
|
||||
id: '23423534',
|
||||
name: 'Max Sendak',
|
||||
email: 'info@in-and-out-of-weeks.org',
|
||||
notes: 'Keeps rolling his terrible eyes',
|
||||
country: 'US',
|
||||
created: '1963-04-09',
|
||||
},
|
||||
{
|
||||
id: '23423535',
|
||||
name: 'Zaphod Beeblebrox',
|
||||
email: 'captain@heartofgold.com',
|
||||
notes: 'Felt like I was talking to more than one person',
|
||||
country: null,
|
||||
created: '1979-10-12',
|
||||
},
|
||||
{
|
||||
id: '23423536',
|
||||
name: 'Edmund Pevensie',
|
||||
email: 'edmund@narnia.gov',
|
||||
notes: 'Passionate sailor',
|
||||
country: 'UK',
|
||||
created: '1950-10-16',
|
||||
},
|
||||
];
|
||||
|
||||
export class N8nTrainingCustomerDatastore implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'Customer Datastore (n8n training)',
|
||||
name: 'n8nTrainingCustomerDatastore',
|
||||
icon: {
|
||||
light: 'file:n8nTrainingCustomerDatastore.svg',
|
||||
dark: 'file:n8nTrainingCustomerDatastore.dark.svg',
|
||||
},
|
||||
group: ['transform'],
|
||||
version: 1,
|
||||
subtitle: '={{$parameter["operation"]}}',
|
||||
description: 'Dummy node used for n8n training',
|
||||
defaults: {
|
||||
name: 'Customer Datastore (n8n training)',
|
||||
},
|
||||
inputs: [NodeConnectionTypes.Main],
|
||||
outputs: [NodeConnectionTypes.Main],
|
||||
properties: [
|
||||
{
|
||||
displayName: 'Operation',
|
||||
name: 'operation',
|
||||
type: 'options',
|
||||
noDataExpression: true,
|
||||
options: [
|
||||
{
|
||||
name: 'Get One Person',
|
||||
value: 'getOnePerson',
|
||||
},
|
||||
{
|
||||
name: 'Get All People',
|
||||
value: 'getAllPeople',
|
||||
},
|
||||
],
|
||||
default: 'getOnePerson',
|
||||
},
|
||||
{
|
||||
displayName: 'Return All',
|
||||
name: 'returnAll',
|
||||
type: 'boolean',
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: ['getAllPeople'],
|
||||
},
|
||||
},
|
||||
default: false,
|
||||
description: 'Whether to return all results or only up to a given limit',
|
||||
},
|
||||
{
|
||||
displayName: 'Limit',
|
||||
name: 'limit',
|
||||
type: 'number',
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: ['getAllPeople'],
|
||||
returnAll: [false],
|
||||
},
|
||||
},
|
||||
typeOptions: {
|
||||
minValue: 1,
|
||||
maxValue: 10,
|
||||
},
|
||||
default: 5,
|
||||
description: 'Max number of results to return',
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
||||
const items = this.getInputData();
|
||||
const returnData: INodeExecutionData[] = [];
|
||||
const length = items.length;
|
||||
const operation = this.getNodeParameter('operation', 0);
|
||||
let responseData;
|
||||
|
||||
for (let i = 0; i < length; i++) {
|
||||
if (operation === 'getOnePerson') {
|
||||
responseData = data[0];
|
||||
}
|
||||
|
||||
if (operation === 'getAllPeople') {
|
||||
const returnAll = this.getNodeParameter('returnAll', i);
|
||||
|
||||
if (returnAll) {
|
||||
responseData = data;
|
||||
} else {
|
||||
const limit = this.getNodeParameter('limit', i);
|
||||
responseData = data.slice(0, limit);
|
||||
}
|
||||
}
|
||||
|
||||
if (Array.isArray(responseData)) {
|
||||
const executionData = this.helpers.constructExecutionMetaData(
|
||||
this.helpers.returnJsonArray(responseData),
|
||||
{ itemData: { item: i } },
|
||||
);
|
||||
returnData.push.apply(returnData, executionData);
|
||||
} else if (responseData !== undefined) {
|
||||
returnData.push({ json: responseData });
|
||||
}
|
||||
}
|
||||
return [returnData];
|
||||
}
|
||||
}
|
||||
Vendored
+48
@@ -0,0 +1,48 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"Credentials Risk Report": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"risk": {
|
||||
"type": "string"
|
||||
},
|
||||
"sections": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"location": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"kind": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"recommendation": {
|
||||
"type": "string"
|
||||
},
|
||||
"title": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"version": 1
|
||||
}
|
||||
Vendored
+24
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"createdAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"isManaged": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"updatedAt": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"version": 1
|
||||
}
|
||||
Vendored
+18
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"additionalProperties": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"required": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"version": 1
|
||||
}
|
||||
Vendored
+33
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"createdAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"deletedAt": {
|
||||
"type": "null"
|
||||
},
|
||||
"finished": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"mode": {
|
||||
"type": "string"
|
||||
},
|
||||
"retrySuccessId": {
|
||||
"type": "null"
|
||||
},
|
||||
"startedAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"status": {
|
||||
"type": "string"
|
||||
},
|
||||
"workflowId": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"version": 3
|
||||
}
|
||||
Vendored
+30
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"finished": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"mode": {
|
||||
"type": "string"
|
||||
},
|
||||
"retrySuccessId": {
|
||||
"type": "null"
|
||||
},
|
||||
"startedAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"status": {
|
||||
"type": "string"
|
||||
},
|
||||
"waitTill": {
|
||||
"type": "null"
|
||||
},
|
||||
"workflowId": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"version": 5
|
||||
}
|
||||
Vendored
+212
@@ -0,0 +1,212 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"active": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"createdAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"meta": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"templateCredsSetupCompleted": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"nodes": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"parameters": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"operation": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"position": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"webhookId": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"settings": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"executionOrder": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"shared": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"createdAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"project": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"createdAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"projectRelations": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"createdAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"projectId": {
|
||||
"type": "string"
|
||||
},
|
||||
"role": {
|
||||
"type": "string"
|
||||
},
|
||||
"updatedAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"user": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"createdAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"disabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"firstName": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"isOwner": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"isPending": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"lastName": {
|
||||
"type": "string"
|
||||
},
|
||||
"mfaEnabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"role": {
|
||||
"type": "string"
|
||||
},
|
||||
"settings": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"easyAIWorkflowOnboarded": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"firstSuccessfulWorkflowId": {
|
||||
"type": "string"
|
||||
},
|
||||
"npsSurvey": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"ignoredCount": {
|
||||
"type": "integer"
|
||||
},
|
||||
"lastShownAt": {
|
||||
"type": "integer"
|
||||
},
|
||||
"waitingForResponse": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"userActivated": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"userActivatedAt": {
|
||||
"type": "integer"
|
||||
}
|
||||
}
|
||||
},
|
||||
"updatedAt": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"userId": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"updatedAt": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"projectId": {
|
||||
"type": "string"
|
||||
},
|
||||
"role": {
|
||||
"type": "string"
|
||||
},
|
||||
"updatedAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"workflowId": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"triggerCount": {
|
||||
"type": "integer"
|
||||
},
|
||||
"updatedAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"versionId": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"version": 1
|
||||
}
|
||||
Vendored
+96
@@ -0,0 +1,96 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"active": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"activeVersionId": {
|
||||
"type": "null"
|
||||
},
|
||||
"createdAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": {
|
||||
"type": "null"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"isArchived": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"meta": {
|
||||
"type": "null"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"nodes": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"parameters": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"content": {
|
||||
"type": "string"
|
||||
},
|
||||
"operation": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"position": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"pinData": {
|
||||
"type": "null"
|
||||
},
|
||||
"settings": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"availableInMCP": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"callerPolicy": {
|
||||
"type": "string"
|
||||
},
|
||||
"executionOrder": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"staticData": {
|
||||
"type": "null"
|
||||
},
|
||||
"triggerCount": {
|
||||
"type": "integer"
|
||||
},
|
||||
"updatedAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"versionCounter": {
|
||||
"type": "integer"
|
||||
},
|
||||
"versionId": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"version": 5
|
||||
}
|
||||
+217
@@ -0,0 +1,217 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"active": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"createdAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"meta": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"templateCredsSetupCompleted": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"nodes": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"parameters": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"operation": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"settings": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"executionOrder": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"shared": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"createdAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"project": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"createdAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"projectRelations": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"createdAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"projectId": {
|
||||
"type": "string"
|
||||
},
|
||||
"role": {
|
||||
"type": "string"
|
||||
},
|
||||
"updatedAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"user": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"createdAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"disabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"firstName": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"isOwner": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"isPending": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"lastName": {
|
||||
"type": "string"
|
||||
},
|
||||
"mfaEnabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"role": {
|
||||
"type": "string"
|
||||
},
|
||||
"settings": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"firstSuccessfulWorkflowId": {
|
||||
"type": "string"
|
||||
},
|
||||
"npsSurvey": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"lastShownAt": {
|
||||
"type": "integer"
|
||||
},
|
||||
"responded": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"userActivated": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"userActivatedAt": {
|
||||
"type": "integer"
|
||||
}
|
||||
}
|
||||
},
|
||||
"updatedAt": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"userId": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"updatedAt": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"projectId": {
|
||||
"type": "string"
|
||||
},
|
||||
"role": {
|
||||
"type": "string"
|
||||
},
|
||||
"updatedAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"workflowId": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"tags": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"createdAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"updatedAt": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"triggerCount": {
|
||||
"type": "integer"
|
||||
},
|
||||
"updatedAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"versionId": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"version": 1
|
||||
}
|
||||
Vendored
+122
@@ -0,0 +1,122 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"active": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"createdAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"meta": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"templateCredsSetupCompleted": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"nodes": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"parameters": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"assignments": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"assignments": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"authentication": {
|
||||
"type": "string"
|
||||
},
|
||||
"jsCode": {
|
||||
"type": "string"
|
||||
},
|
||||
"operation": {
|
||||
"type": "string"
|
||||
},
|
||||
"path": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"webhookId": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"settings": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"executionOrder": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"tags": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"createdAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"updatedAt": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"triggerCount": {
|
||||
"type": "integer"
|
||||
},
|
||||
"updatedAt": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"version": 1
|
||||
}
|
||||
Vendored
+66
@@ -0,0 +1,66 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"active": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"createdAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"nodes": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"parameters": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"resource": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"position": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"settings": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"executionOrder": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"triggerCount": {
|
||||
"type": "integer"
|
||||
},
|
||||
"updatedAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"versionId": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"version": 1
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7.88786 21.411C7.71986 21.309 7.50586 21.427 7.50586 21.623V26.903C7.50586 29.151 13.1039 30.985 20.0059 30.985C26.9079 30.985 32.5059 29.151 32.5059 26.903V21.623C32.5059 21.427 32.2919 21.309 32.1239 21.411C29.3719 23.091 24.6819 23.875 20.0059 23.875C15.3299 23.875 10.6399 23.089 7.88786 21.411Z" fill="#F4F6FA"/>
|
||||
<path d="M7.88791 30.339C7.71991 30.237 7.50591 30.355 7.50591 30.551V35.831C7.50591 38.079 13.1039 39.913 20.0059 39.913C26.9079 39.913 32.5059 38.079 32.5059 35.831V30.551C32.5059 30.355 32.2919 30.237 32.1239 30.339C29.3719 32.019 24.6819 32.803 20.0059 32.803C15.3299 32.803 10.6399 32.019 7.88791 30.339ZM21.9019 16.965C21.2859 17.155 20.6479 17.251 20.0059 17.251C19.3559 17.251 18.7139 17.155 18.0979 16.967L7.92991 13.843C7.80991 13.807 7.67791 13.863 7.62791 13.977C7.54591 14.165 7.50391 14.355 7.50391 14.549V17.975C7.50391 20.223 13.1019 22.057 20.0039 22.057C26.9059 22.057 32.5039 20.223 32.5039 17.975V14.549C32.5039 14.353 32.4619 14.161 32.3799 13.973C32.3299 13.859 32.1979 13.803 32.0779 13.839L21.9019 16.965Z" fill="#F4F6FA"/>
|
||||
<path d="M38.896 6.57498L21.462 1.21898C20.5092 0.927008 19.4908 0.927008 18.538 1.21898L1.104 6.57498C-0.368 7.02698 -0.368 8.97298 1.104 9.42498L4.144 10.359C3.478 11.183 3.068 12.189 3.026 13.291C2.424 13.635 2 14.257 2 15.001C2 15.675 2.356 16.241 2.866 16.605L1.27 23.785C1.132 24.409 1.606 25.001 2.246 25.001H5.752C6.392 25.001 6.868 24.409 6.728 23.785L5.132 16.605C5.644 16.243 5.998 15.675 5.998 15.001C5.998 14.277 5.594 13.673 5.02 13.321C5.068 12.383 5.548 11.553 6.314 11.025L18.538 14.781C19.104 14.955 20.19 15.171 21.462 14.781L38.896 9.42498C40.368 8.97298 40.368 7.02898 38.896 6.57498Z" fill="#FF6D5A"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
+5
@@ -0,0 +1,5 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7.88786 21.411C7.71986 21.309 7.50586 21.427 7.50586 21.623V26.903C7.50586 29.151 13.1039 30.985 20.0059 30.985C26.9079 30.985 32.5059 29.151 32.5059 26.903V21.623C32.5059 21.427 32.2919 21.309 32.1239 21.411C29.3719 23.091 24.6819 23.875 20.0059 23.875C15.3299 23.875 10.6399 23.089 7.88786 21.411Z" fill="#717172"/>
|
||||
<path d="M7.88791 30.339C7.71991 30.237 7.50591 30.355 7.50591 30.551V35.831C7.50591 38.079 13.1039 39.913 20.0059 39.913C26.9079 39.913 32.5059 38.079 32.5059 35.831V30.551C32.5059 30.355 32.2919 30.237 32.1239 30.339C29.3719 32.019 24.6819 32.803 20.0059 32.803C15.3299 32.803 10.6399 32.019 7.88791 30.339ZM21.9019 16.965C21.2859 17.155 20.6479 17.251 20.0059 17.251C19.3559 17.251 18.7139 17.155 18.0979 16.967L7.92991 13.843C7.80991 13.807 7.67791 13.863 7.62791 13.977C7.54591 14.165 7.50391 14.355 7.50391 14.549V17.975C7.50391 20.223 13.1019 22.057 20.0039 22.057C26.9059 22.057 32.5039 20.223 32.5039 17.975V14.549C32.5039 14.353 32.4619 14.161 32.3799 13.973C32.3299 13.859 32.1979 13.803 32.0779 13.839L21.9019 16.965Z" fill="#717172"/>
|
||||
<path d="M38.896 6.57498L21.462 1.21898C20.5092 0.927008 19.4908 0.927008 18.538 1.21898L1.104 6.57498C-0.368 7.02698 -0.368 8.97298 1.104 9.42498L4.144 10.359C3.478 11.183 3.068 12.189 3.026 13.291C2.424 13.635 2 14.257 2 15.001C2 15.675 2.356 16.241 2.866 16.605L1.27 23.785C1.132 24.409 1.606 25.001 2.246 25.001H5.752C6.392 25.001 6.868 24.409 6.728 23.785L5.132 16.605C5.644 16.243 5.998 15.675 5.998 15.001C5.998 14.277 5.594 13.673 5.02 13.321C5.068 12.383 5.548 11.553 6.314 11.025L18.538 14.781C19.104 14.955 20.19 15.171 21.462 14.781L38.896 9.42498C40.368 8.97298 40.368 7.02898 38.896 6.57498Z" fill="#FF6D5A"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
Reference in New Issue
Block a user