n8n-nodes-propstack 0.1.0

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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +44 -0
  3. package/index.js +1 -0
  4. package/package.json +31 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Hans Doebel
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,44 @@
1
+ # n8n-nodes-propstack
2
+
3
+ [![npm version](https://img.shields.io/npm/v/n8n-nodes-propstack.svg)](https://www.npmjs.com/package/n8n-nodes-propstack)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
+
6
+ An [n8n](https://n8n.io) community node for [Propstack](https://www.propstack.com) CRM.
7
+
8
+ > **Note:** This package is currently a placeholder. The full implementation is under active development.
9
+
10
+ ## About
11
+
12
+ This node will allow you to interact with the Propstack CRM API directly from your n8n workflows.
13
+
14
+ Propstack is a modern real estate CRM used by brokers and agencies to manage contacts, properties, and deals.
15
+
16
+ ## Planned Features
17
+
18
+ - Manage contacts (create, read, update, delete)
19
+ - Manage properties (create, read, update, delete)
20
+ - Manage deals / pipeline
21
+ - Trigger workflows on Propstack events (webhooks)
22
+
23
+ ## Installation
24
+
25
+ Once released, install via the n8n community nodes panel:
26
+
27
+ ```
28
+ n8n-nodes-propstack
29
+ ```
30
+
31
+ Or via npm:
32
+
33
+ ```bash
34
+ npm install n8n-nodes-propstack
35
+ ```
36
+
37
+ ## Resources
38
+
39
+ - [n8n community nodes documentation](https://docs.n8n.io/integrations/community-nodes/)
40
+ - [Propstack API documentation](https://api.propstack.de/api/v1/docs/index.html)
41
+
42
+ ## License
43
+
44
+ [MIT](LICENSE)
package/index.js ADDED
@@ -0,0 +1 @@
1
+ // Placeholder - full implementation coming soon
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "n8n-nodes-propstack",
3
+ "version": "0.1.0",
4
+ "description": "n8n community node for Propstack CRM",
5
+ "keywords": [
6
+ "n8n-community-node-package",
7
+ "propstack",
8
+ "crm",
9
+ "real-estate"
10
+ ],
11
+ "license": "MIT",
12
+ "homepage": "https://github.com/hansdoebel/n8n-nodes-propstack",
13
+ "author": {
14
+ "name": "Hans Doebel"
15
+ },
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/hansdoebel/n8n-nodes-propstack.git"
19
+ },
20
+ "main": "index.js",
21
+ "n8n": {
22
+ "n8nNodesApiVersion": 1,
23
+ "credentials": [],
24
+ "nodes": []
25
+ },
26
+ "files": [
27
+ "index.js",
28
+ "README.md",
29
+ "LICENSE"
30
+ ]
31
+ }