n8n-nodes-innotes 2.0.5 → 2.0.7

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 +1 @@
1
- {"version":3,"sources":["../types/InNotesTypes.ts"],"names":[],"mappings":";AAAA;;;GAGG","file":"InNotesTypes.js","sourcesContent":["/**\n * @author Marco Visin\n * @date 2025-05-30\n */\n\nexport type InNotesResourceType =\n\t| 'contact'\n\t| 'note'\n\t| 'job'\n\t| 'status'\n\t| 'tag'\n\t| 'user';\n\nexport type InNotesOperationType =\n\t| 'create'\n\t| 'get'\n\t| 'getAll'\n\t| 'update'\n\t| 'delete';\n\nexport interface IContact {\n\tid?: string;\n\tname?: string;\n\tlinkedin_key?: string;\n\tlinkedin_user?: string;\n\tlocation?: string;\n\tcurrent_company?: string;\n\tpicture_url?: string;\n\ttags?: string[];\n\tstatus_id?: string;\n\tcreated_at?: string;\n\tupdated_at?: string;\n}\n\nexport interface INote {\n\tid?: string;\n\tuser_id?: string;\n\text_id?: string;\n\text_table_name?: string;\n\ttext?: string;\n\tvisibility?: 'private' | 'public';\n\tflagColor?: string;\n\tcreated_at?: string;\n\tupdated_at?: string;\n}\n\nexport interface IJob {\n\tid?: string;\n\text_id?: string;\n\tname?: string;\n\tcompany_name?: string;\n\tlocation?: string;\n\tdescription?: string;\n\tremote_setting?: string;\n\tpicture_url?: string;\n\tcompany_url?: string;\n\tstatus_id?: string;\n\ttags?: string[];\n\tcreated_at?: string;\n\tupdated_at?: string;\n}\n\nexport interface IStatus {\n\tid?: string;\n\tuser_id?: string;\n\tname?: string;\n\ttype?: 'contact' | 'job';\n\tcreated_at?: string;\n}\n\nexport interface IUser {\n\tid?: string;\n\tname?: string;\n\tusername?: string;\n\temail?: string;\n\tstatus?: 'free' | 'premium' | 'admin';\n\tsubscription_id?: string;\n\tcreated_at?: string;\n\tupdated_at?: string;\n}\n\nexport interface ITag {\n\tid?: string;\n\tname?: string;\n\tuser_id?: string;\n\tcount?: number;\n}\n"]}
1
+ {"version":3,"sources":["../types/InNotesTypes.ts"],"names":[],"mappings":";AAAA;;;GAGG","file":"InNotesTypes.js","sourcesContent":["/**\n * @author Marco Visin\n * @date 2025-05-30\n */\n\nexport type InNotesResourceType =\n\t| 'contact'\n\t| 'note'\n\t| 'job'\n\t| 'status'\n\t| 'tag'\n\t| 'user';\n\nexport type InNotesOperationType =\n\t| 'create'\n\t| 'get'\n\t| 'getAll'\n\t| 'update'\n\t| 'delete';\n\nexport interface IContact {\n\tid?: string;\n\tname?: string;\n\tlinkedin_key?: string;\n\tlinkedin_user?: string;\n\tlocation?: string;\n\tcurrent_company?: string;\n\tpicture_url?: string;\n\ttags?: string[];\n\tstatus_id?: string;\n\tcontact_details?: IContactDetail[];\n\tcreated_at?: string;\n\tupdated_at?: string;\n}\n\nexport interface IContactDetail {\n\ttype: 'email' | 'phone';\n\tvalue: string;\n\tlabel?: string | null;\n}\n\nexport interface INote {\n\tid?: string;\n\tuser_id?: string;\n\text_id?: string;\n\text_table_name?: string;\n\ttext?: string;\n\tvisibility?: 'private' | 'public';\n\tflagColor?: string;\n\tcreated_at?: string;\n\tupdated_at?: string;\n}\n\nexport interface IJob {\n\tid?: string;\n\text_id?: string;\n\tname?: string;\n\tcompany_name?: string;\n\tlocation?: string;\n\tdescription?: string;\n\tremote_setting?: string;\n\tpicture_url?: string;\n\tcompany_url?: string;\n\tstatus_id?: string;\n\ttags?: string[];\n\tcreated_at?: string;\n\tupdated_at?: string;\n}\n\nexport interface IStatus {\n\tid?: string;\n\tuser_id?: string;\n\tname?: string;\n\ttype?: 'contact' | 'job';\n\tcreated_at?: string;\n}\n\nexport interface IUser {\n\tid?: string;\n\tname?: string;\n\tusername?: string;\n\temail?: string;\n\tstatus?: 'free' | 'premium' | 'admin';\n\tsubscription_id?: string;\n\tcreated_at?: string;\n\tupdated_at?: string;\n}\n\nexport interface ITag {\n\tid?: string;\n\tname?: string;\n\tuser_id?: string;\n\tcount?: number;\n}\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-innotes",
3
- "version": "2.0.5",
3
+ "version": "2.0.7",
4
4
  "description": "N8N node for InNotes CRM API integration",
5
5
  "keywords": [
6
6
  "n8n-community-node-package",