n8n-nodes-wavy 1.2.7 → 1.2.8

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.
@@ -0,0 +1,7 @@
1
+ import { ICredentialType, INodeProperties } from 'n8n-workflow';
2
+ export declare class WavyApi implements ICredentialType {
3
+ name: string;
4
+ displayName: string;
5
+ documentationUrl: string;
6
+ properties: INodeProperties[];
7
+ }
@@ -5,14 +5,14 @@ class WavyApi {
5
5
  constructor() {
6
6
  this.name = 'wavyApi';
7
7
  this.displayName = 'Wavy API';
8
- this.documentationUrl = 'https://your-wavy-instance.com/docs';
8
+ this.documentationUrl = 'https://mpwe.alfalah.ac.id/api-docs';
9
9
  this.properties = [
10
10
  {
11
11
  displayName: 'Base URL',
12
12
  name: 'baseUrl',
13
13
  type: 'string',
14
- default: '',
15
- placeholder: 'https://your-wavy-instance.com',
14
+ default: 'https://mpwe.alfalah.ac.id',
15
+ placeholder: 'https://mpwe.alfalah.ac.id',
16
16
  required: true,
17
17
  },
18
18
  {
@@ -30,9 +30,8 @@ class WavyApi {
30
30
  name: 'sessionId',
31
31
  type: 'string',
32
32
  default: '',
33
- placeholder: '62812345678',
34
33
  required: true,
35
- description: 'Masuk dashboard wavy, copy sesi oke',
34
+ description: 'The ID of the WhatsApp session to use (found in Dashboard)',
36
35
  },
37
36
  ];
38
37
  }
@@ -1 +1 @@
1
- {"version":3,"file":"WavyApi.credentials.js","sourceRoot":"","sources":["../../credentials/WavyApi.credentials.ts"],"names":[],"mappings":";;;AAKA,MAAa,OAAO;IAApB;QACI,SAAI,GAAG,SAAS,CAAC;QACjB,gBAAW,GAAG,UAAU,CAAC;QACzB,qBAAgB,GAAG,qCAAqC,CAAC;QACzD,eAAU,GAAsB;YAC5B;gBACI,WAAW,EAAE,UAAU;gBACvB,IAAI,EAAE,SAAS;gBACf,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE,gCAAgC;gBAC7C,QAAQ,EAAE,IAAI;aACjB;YACD;gBACI,WAAW,EAAE,SAAS;gBACtB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE;oBACT,QAAQ,EAAE,IAAI;iBACjB;gBACD,OAAO,EAAE,EAAE;gBACX,QAAQ,EAAE,IAAI;aACjB;YACD;gBACI,WAAW,EAAE,YAAY;gBACzB,IAAI,EAAE,WAAW;gBACjB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE,aAAa;gBAC1B,QAAQ,EAAE,IAAI;gBACd,WAAW,EAAE,qCAAqC;aACrD;SACJ,CAAC;IACN,CAAC;CAAA;AAjCD,0BAiCC"}
1
+ {"version":3,"file":"WavyApi.credentials.js","sourceRoot":"","sources":["../../credentials/WavyApi.credentials.ts"],"names":[],"mappings":";;;AAKA,MAAa,OAAO;IAApB;QACI,SAAI,GAAG,SAAS,CAAC;QACjB,gBAAW,GAAG,UAAU,CAAC;QACzB,qBAAgB,GAAG,qCAAqC,CAAC;QACzD,eAAU,GAAsB;YAC5B;gBACI,WAAW,EAAE,UAAU;gBACvB,IAAI,EAAE,SAAS;gBACf,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,4BAA4B;gBACrC,WAAW,EAAE,4BAA4B;gBACzC,QAAQ,EAAE,IAAI;aACjB;YACD;gBACI,WAAW,EAAE,SAAS;gBACtB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE;oBACT,QAAQ,EAAE,IAAI;iBACjB;gBACD,OAAO,EAAE,EAAE;gBACX,QAAQ,EAAE,IAAI;aACjB;YACD;gBACI,WAAW,EAAE,YAAY;gBACzB,IAAI,EAAE,WAAW;gBACjB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;gBACX,QAAQ,EAAE,IAAI;gBACd,WAAW,EAAE,4DAA4D;aAC5E;SACJ,CAAC;IACN,CAAC;CAAA;AAhCD,0BAgCC"}
@@ -0,0 +1,5 @@
1
+ import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
2
+ export declare class Wavy implements INodeType {
3
+ description: INodeTypeDescription;
4
+ execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
5
+ }