n8n-nodes-clientify 0.2.11 → 0.2.12
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.
|
@@ -1,21 +1,9 @@
|
|
|
1
|
-
import { ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
1
|
+
import { ICredentialTestRequest, ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
2
2
|
export declare class ClientifyApi implements ICredentialType {
|
|
3
3
|
name: string;
|
|
4
4
|
displayName: string;
|
|
5
5
|
documentationUrl: string;
|
|
6
|
-
authenticate:
|
|
7
|
-
|
|
8
|
-
readonly properties: {
|
|
9
|
-
readonly headers: {
|
|
10
|
-
readonly Authorization: "=Token {{$credentials.apiKey}}";
|
|
11
|
-
};
|
|
12
|
-
};
|
|
13
|
-
};
|
|
14
|
-
test: {
|
|
15
|
-
readonly request: {
|
|
16
|
-
readonly baseURL: "={{$credentials.baseUrl}}";
|
|
17
|
-
readonly url: "/me/?fields=id,email";
|
|
18
|
-
};
|
|
19
|
-
};
|
|
6
|
+
authenticate: ICredentialType['authenticate'];
|
|
7
|
+
test: ICredentialTestRequest;
|
|
20
8
|
properties: INodeProperties[];
|
|
21
9
|
}
|
package/dist/package.json
CHANGED