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:
@@ -0,0 +1,294 @@
|
||||
import type { INodeProperties } from 'n8n-workflow';
|
||||
|
||||
export const memberOperations: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Operation',
|
||||
name: 'operation',
|
||||
type: 'options',
|
||||
noDataExpression: true,
|
||||
default: 'get',
|
||||
options: [
|
||||
{
|
||||
name: 'Create',
|
||||
value: 'create',
|
||||
action: 'Create a member',
|
||||
},
|
||||
{
|
||||
name: 'Delete',
|
||||
value: 'delete',
|
||||
action: 'Delete a member',
|
||||
},
|
||||
{
|
||||
name: 'Get',
|
||||
value: 'get',
|
||||
action: 'Get a member',
|
||||
},
|
||||
{
|
||||
name: 'Get Groups',
|
||||
value: 'getGroups',
|
||||
action: 'Get groups for a member',
|
||||
},
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
action: 'Get many members',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
value: 'update',
|
||||
action: 'Update a member',
|
||||
},
|
||||
{
|
||||
name: 'Update Groups',
|
||||
value: 'updateGroups',
|
||||
action: 'Update groups for a member',
|
||||
},
|
||||
],
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['member'],
|
||||
},
|
||||
},
|
||||
},
|
||||
];
|
||||
|
||||
export const memberFields: INodeProperties[] = [
|
||||
// ----------------------------------
|
||||
// member: shared
|
||||
// ----------------------------------
|
||||
{
|
||||
displayName: 'Member ID',
|
||||
name: 'memberId',
|
||||
type: 'string',
|
||||
required: true,
|
||||
description: 'The identifier of the member',
|
||||
default: '',
|
||||
placeholder: '5e59c8c7-e05a-4d17-8e85-acc301343926',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['member'],
|
||||
operation: ['delete', 'get', 'getGroups', 'update', 'updateGroups'],
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Type',
|
||||
name: 'type',
|
||||
type: 'options',
|
||||
default: 2,
|
||||
required: true,
|
||||
options: [
|
||||
{
|
||||
name: 'Owner',
|
||||
value: 0,
|
||||
},
|
||||
{
|
||||
name: 'Admin',
|
||||
value: 1,
|
||||
},
|
||||
{
|
||||
name: 'User',
|
||||
value: 2,
|
||||
},
|
||||
{
|
||||
name: 'Manager',
|
||||
value: 3,
|
||||
},
|
||||
],
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['member'],
|
||||
operation: ['create'],
|
||||
},
|
||||
},
|
||||
},
|
||||
// ----------------------------------
|
||||
// member: getAll
|
||||
// ----------------------------------
|
||||
{
|
||||
displayName: 'Return All',
|
||||
name: 'returnAll',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Whether to return all results or only up to a given limit',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['member'],
|
||||
operation: ['getAll'],
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Limit',
|
||||
name: 'limit',
|
||||
type: 'number',
|
||||
typeOptions: {
|
||||
minValue: 1,
|
||||
},
|
||||
default: 10,
|
||||
description: 'Max number of results to return',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['member'],
|
||||
operation: ['getAll'],
|
||||
returnAll: [false],
|
||||
},
|
||||
},
|
||||
},
|
||||
// ----------------------------------
|
||||
// member: create
|
||||
// ----------------------------------
|
||||
{
|
||||
displayName: 'Email',
|
||||
name: 'email',
|
||||
type: 'string',
|
||||
placeholder: 'name@email.com',
|
||||
default: '',
|
||||
description: 'The email of the member to update',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['member'],
|
||||
operation: ['create'],
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Access All',
|
||||
name: 'accessAll',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['member'],
|
||||
operation: ['create'],
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Additional Fields',
|
||||
name: 'additionalFields',
|
||||
type: 'collection',
|
||||
placeholder: 'Add Field',
|
||||
default: {},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Collection Names or IDs',
|
||||
name: 'collections',
|
||||
type: 'multiOptions',
|
||||
description:
|
||||
'The collections to assign to this member. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
|
||||
default: [],
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getCollections',
|
||||
},
|
||||
},
|
||||
{
|
||||
displayName: 'External ID',
|
||||
name: 'externalId',
|
||||
type: 'string',
|
||||
description: 'The external identifier to set to this member',
|
||||
default: '',
|
||||
},
|
||||
],
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['member'],
|
||||
operation: ['create'],
|
||||
},
|
||||
},
|
||||
},
|
||||
// ----------------------------------
|
||||
// member: update
|
||||
// ----------------------------------
|
||||
{
|
||||
displayName: 'Update Fields',
|
||||
name: 'updateFields',
|
||||
type: 'collection',
|
||||
placeholder: 'Add Field',
|
||||
default: {},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Type',
|
||||
name: 'type',
|
||||
type: 'options',
|
||||
default: {},
|
||||
options: [
|
||||
{
|
||||
name: 'Owner',
|
||||
value: 0,
|
||||
},
|
||||
{
|
||||
name: 'Admin',
|
||||
value: 1,
|
||||
},
|
||||
{
|
||||
name: 'User',
|
||||
value: 2,
|
||||
},
|
||||
{
|
||||
name: 'Manager',
|
||||
value: 3,
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
displayName: 'Collection Names or IDs',
|
||||
name: 'collections',
|
||||
type: 'multiOptions',
|
||||
description:
|
||||
'The collections to assign to this member. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
|
||||
default: [],
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getCollections',
|
||||
},
|
||||
},
|
||||
{
|
||||
displayName: 'External ID',
|
||||
name: 'externalId',
|
||||
type: 'string',
|
||||
description: 'The external identifier to set to this member',
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Access All',
|
||||
name: 'accessAll',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
},
|
||||
],
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['member'],
|
||||
operation: ['update'],
|
||||
},
|
||||
},
|
||||
},
|
||||
// ----------------------------------
|
||||
// member: updateGroups
|
||||
// ----------------------------------
|
||||
{
|
||||
displayName: 'Group IDs',
|
||||
name: 'groupIds',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Comma-separated list of IDs of groups to set for a member',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['member'],
|
||||
operation: ['updateGroups'],
|
||||
},
|
||||
},
|
||||
},
|
||||
];
|
||||
|
||||
type MemberSchema = {
|
||||
email: string;
|
||||
collections: string[];
|
||||
type: number;
|
||||
accessAll: boolean;
|
||||
externalId: string;
|
||||
};
|
||||
|
||||
export type MemberUpdateFields = Omit<MemberSchema, 'email'>;
|
||||
|
||||
export type MemberCreationAdditionalFields = Omit<MemberSchema, 'email'>;
|
||||
Reference in New Issue
Block a user