diff --git a/packages/nodes-base/credentials/GSuiteAdminOAuth2Api.credentials.ts b/packages/nodes-base/credentials/GSuiteAdminOAuth2Api.credentials.ts index e8b8f48ed7..44a5a15712 100644 --- a/packages/nodes-base/credentials/GSuiteAdminOAuth2Api.credentials.ts +++ b/packages/nodes-base/credentials/GSuiteAdminOAuth2Api.credentials.ts @@ -10,7 +10,7 @@ const scopes = [ export class GSuiteAdminOAuth2Api implements ICredentialType { name = 'gSuiteAdminOAuth2Api'; extends = ['googleOAuth2Api']; - displayName = 'G Suite Admin OAuth2 API'; + displayName = 'Google Workspace Admin OAuth2 API'; documentationUrl = 'google'; properties: INodeProperties[] = [ { diff --git a/packages/nodes-base/nodes/Google/GSuiteAdmin/GSuiteAdmin.node.ts b/packages/nodes-base/nodes/Google/GSuiteAdmin/GSuiteAdmin.node.ts index 0fdb2063e4..778216e9b7 100644 --- a/packages/nodes-base/nodes/Google/GSuiteAdmin/GSuiteAdmin.node.ts +++ b/packages/nodes-base/nodes/Google/GSuiteAdmin/GSuiteAdmin.node.ts @@ -18,16 +18,16 @@ import { groupFields, groupOperations } from './GroupDescripion'; export class GSuiteAdmin implements INodeType { description: INodeTypeDescription = { - displayName: 'G Suite Admin', + displayName: 'Google Workspace Admin', name: 'gSuiteAdmin', // eslint-disable-next-line n8n-nodes-base/node-class-description-icon-not-svg - icon: 'file:gSuiteAdmin.png', + icon: 'file:google-workspace-admin.png', group: ['input'], version: 1, subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}', - description: 'Consume G Suite Admin API', + description: 'Consume Google Workspace Admin API', defaults: { - name: 'G Suite Admin', + name: 'Google Workspace Admin', }, inputs: ['main'], outputs: ['main'], diff --git a/packages/nodes-base/nodes/Google/GSuiteAdmin/GroupDescripion.ts b/packages/nodes-base/nodes/Google/GSuiteAdmin/GroupDescripion.ts index 701e531401..ef628de4bf 100644 --- a/packages/nodes-base/nodes/Google/GSuiteAdmin/GroupDescripion.ts +++ b/packages/nodes-base/nodes/Google/GSuiteAdmin/GroupDescripion.ts @@ -186,7 +186,7 @@ export const groupFields: INodeProperties[] = [ type: 'string', default: '', description: - "The unique ID for the customer's G Suite account. In case of a multi-domain account, to fetch all groups for a customer, fill this field instead of domain.", + "The unique ID for the customer's Google Workspace account. In case of a multi-domain account, to fetch all groups for a customer, fill this field instead of domain.", }, { displayName: 'Domain', diff --git a/packages/nodes-base/nodes/Google/GSuiteAdmin/UserDescription.ts b/packages/nodes-base/nodes/Google/GSuiteAdmin/UserDescription.ts index 38d911abb0..208c16e8e4 100644 --- a/packages/nodes-base/nodes/Google/GSuiteAdmin/UserDescription.ts +++ b/packages/nodes-base/nodes/Google/GSuiteAdmin/UserDescription.ts @@ -555,7 +555,7 @@ export const userFields: INodeProperties[] = [ type: 'string', default: '', description: - "The unique ID for the customer's G Suite account. In case of a multi-domain account, to fetch all groups for a customer, fill this field instead of domain.", + "The unique ID for the customer's Google Workspace account. In case of a multi-domain account, to fetch all groups for a customer, fill this field instead of domain.", }, { displayName: 'Domain', diff --git a/packages/nodes-base/nodes/Google/GSuiteAdmin/gSuiteAdmin.png b/packages/nodes-base/nodes/Google/GSuiteAdmin/gSuiteAdmin.png deleted file mode 100644 index c9dcda0ce9..0000000000 Binary files a/packages/nodes-base/nodes/Google/GSuiteAdmin/gSuiteAdmin.png and /dev/null differ diff --git a/packages/nodes-base/nodes/Google/GSuiteAdmin/google-workspace-admin.png b/packages/nodes-base/nodes/Google/GSuiteAdmin/google-workspace-admin.png new file mode 100644 index 0000000000..738fcf6c95 Binary files /dev/null and b/packages/nodes-base/nodes/Google/GSuiteAdmin/google-workspace-admin.png differ