n8n-nodes-propstack 0.1.0 → 0.2.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.
- package/README.md +132 -28
- package/dist/credentials/PropstackApi.credentials.d.ts +10 -0
- package/dist/credentials/PropstackApi.credentials.js +40 -0
- package/dist/credentials/PropstackApi.credentials.js.map +1 -0
- package/dist/credentials/PropstackV2Api.credentials.d.ts +10 -0
- package/dist/credentials/PropstackV2Api.credentials.js +41 -0
- package/dist/credentials/PropstackV2Api.credentials.js.map +1 -0
- package/dist/icons/propstack-logo.svg +1 -0
- package/dist/icons/propstack.dark.svg +1 -0
- package/dist/icons/propstack.svg +1 -0
- package/dist/nodes/Propstack/Propstack.node.d.ts +4 -0
- package/dist/nodes/Propstack/Propstack.node.js +30 -0
- package/dist/nodes/Propstack/Propstack.node.js.map +1 -0
- package/dist/nodes/Propstack/Propstack.node.json +17 -0
- package/dist/nodes/Propstack/PropstackTrigger.node.d.ts +12 -0
- package/dist/nodes/Propstack/PropstackTrigger.node.js +138 -0
- package/dist/nodes/Propstack/PropstackTrigger.node.js.map +1 -0
- package/dist/nodes/Propstack/PropstackTrigger.node.json +17 -0
- package/dist/nodes/Propstack/types.d.ts +59 -0
- package/dist/nodes/Propstack/types.js +3 -0
- package/dist/nodes/Propstack/types.js.map +1 -0
- package/dist/nodes/Propstack/v1/PropstackV1.d.ts +24 -0
- package/dist/nodes/Propstack/v1/PropstackV1.js +314 -0
- package/dist/nodes/Propstack/v1/PropstackV1.js.map +1 -0
- package/dist/nodes/Propstack/v1/constants.d.ts +66 -0
- package/dist/nodes/Propstack/v1/constants.js +70 -0
- package/dist/nodes/Propstack/v1/constants.js.map +1 -0
- package/dist/nodes/Propstack/v1/helpers.d.ts +7 -0
- package/dist/nodes/Propstack/v1/helpers.js +102 -0
- package/dist/nodes/Propstack/v1/helpers.js.map +1 -0
- package/dist/nodes/Propstack/v1/listSearch.d.ts +14 -0
- package/dist/nodes/Propstack/v1/listSearch.js +281 -0
- package/dist/nodes/Propstack/v1/listSearch.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/activities/activityTypesGetAll.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/activities/activityTypesGetAll.js +16 -0
- package/dist/nodes/Propstack/v1/resources/activities/activityTypesGetAll.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/activities/get.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/activities/get.js +33 -0
- package/dist/nodes/Propstack/v1/resources/activities/get.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/activities/getAll.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/activities/getAll.js +278 -0
- package/dist/nodes/Propstack/v1/resources/activities/getAll.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/activities/index.d.ts +7 -0
- package/dist/nodes/Propstack/v1/resources/activities/index.js +230 -0
- package/dist/nodes/Propstack/v1/resources/activities/index.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/activities/reservationReasonsGetAll.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/activities/reservationReasonsGetAll.js +16 -0
- package/dist/nodes/Propstack/v1/resources/activities/reservationReasonsGetAll.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/brokers/getAll.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/brokers/getAll.js +16 -0
- package/dist/nodes/Propstack/v1/resources/brokers/getAll.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/brokers/index.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/brokers/index.js +29 -0
- package/dist/nodes/Propstack/v1/resources/brokers/index.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/contacts/create.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/contacts/create.js +233 -0
- package/dist/nodes/Propstack/v1/resources/contacts/create.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/contacts/delete.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/contacts/delete.js +17 -0
- package/dist/nodes/Propstack/v1/resources/contacts/delete.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/contacts/get.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/contacts/get.js +94 -0
- package/dist/nodes/Propstack/v1/resources/contacts/get.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/contacts/getAll.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/contacts/getAll.js +287 -0
- package/dist/nodes/Propstack/v1/resources/contacts/getAll.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/contacts/index.d.ts +8 -0
- package/dist/nodes/Propstack/v1/resources/contacts/index.js +111 -0
- package/dist/nodes/Propstack/v1/resources/contacts/index.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/contacts/update.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/contacts/update.js +258 -0
- package/dist/nodes/Propstack/v1/resources/contacts/update.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/customFields/getAll.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/customFields/getAll.js +63 -0
- package/dist/nodes/Propstack/v1/resources/customFields/getAll.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/customFields/index.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/customFields/index.js +70 -0
- package/dist/nodes/Propstack/v1/resources/customFields/index.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/dealPipelines/get.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/dealPipelines/get.js +17 -0
- package/dist/nodes/Propstack/v1/resources/dealPipelines/get.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/dealPipelines/getAll.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/dealPipelines/getAll.js +16 -0
- package/dist/nodes/Propstack/v1/resources/dealPipelines/getAll.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/dealPipelines/index.d.ts +5 -0
- package/dist/nodes/Propstack/v1/resources/dealPipelines/index.js +71 -0
- package/dist/nodes/Propstack/v1/resources/dealPipelines/index.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/deals/create.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/deals/create.js +197 -0
- package/dist/nodes/Propstack/v1/resources/deals/create.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/deals/delete.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/deals/delete.js +17 -0
- package/dist/nodes/Propstack/v1/resources/deals/delete.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/deals/get.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/deals/get.js +59 -0
- package/dist/nodes/Propstack/v1/resources/deals/get.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/deals/getAll.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/deals/getAll.js +366 -0
- package/dist/nodes/Propstack/v1/resources/deals/getAll.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/deals/index.d.ts +8 -0
- package/dist/nodes/Propstack/v1/resources/deals/index.js +111 -0
- package/dist/nodes/Propstack/v1/resources/deals/index.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/deals/update.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/deals/update.js +150 -0
- package/dist/nodes/Propstack/v1/resources/deals/update.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/documents/create.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/documents/create.js +140 -0
- package/dist/nodes/Propstack/v1/resources/documents/create.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/documents/delete.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/documents/delete.js +17 -0
- package/dist/nodes/Propstack/v1/resources/documents/delete.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/documents/get.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/documents/get.js +17 -0
- package/dist/nodes/Propstack/v1/resources/documents/get.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/documents/getAll.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/documents/getAll.js +191 -0
- package/dist/nodes/Propstack/v1/resources/documents/getAll.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/documents/index.d.ts +8 -0
- package/dist/nodes/Propstack/v1/resources/documents/index.js +98 -0
- package/dist/nodes/Propstack/v1/resources/documents/index.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/documents/update.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/documents/update.js +137 -0
- package/dist/nodes/Propstack/v1/resources/documents/update.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/emails/get.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/emails/get.js +17 -0
- package/dist/nodes/Propstack/v1/resources/emails/get.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/emails/getAll.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/emails/getAll.js +104 -0
- package/dist/nodes/Propstack/v1/resources/emails/getAll.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/emails/index.d.ts +7 -0
- package/dist/nodes/Propstack/v1/resources/emails/index.js +89 -0
- package/dist/nodes/Propstack/v1/resources/emails/index.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/emails/send.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/emails/send.js +159 -0
- package/dist/nodes/Propstack/v1/resources/emails/send.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/emails/update.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/emails/update.js +110 -0
- package/dist/nodes/Propstack/v1/resources/emails/update.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/events/getAll.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/events/getAll.js +162 -0
- package/dist/nodes/Propstack/v1/resources/events/getAll.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/events/index.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/events/index.js +134 -0
- package/dist/nodes/Propstack/v1/resources/events/index.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/features/create.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/features/create.js +70 -0
- package/dist/nodes/Propstack/v1/resources/features/create.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/features/getAll.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/features/getAll.js +65 -0
- package/dist/nodes/Propstack/v1/resources/features/getAll.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/features/index.d.ts +6 -0
- package/dist/nodes/Propstack/v1/resources/features/index.js +123 -0
- package/dist/nodes/Propstack/v1/resources/features/index.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/features/parentGetAll.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/features/parentGetAll.js +56 -0
- package/dist/nodes/Propstack/v1/resources/features/parentGetAll.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/locations/getAll.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/locations/getAll.js +16 -0
- package/dist/nodes/Propstack/v1/resources/locations/getAll.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/locations/index.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/locations/index.js +29 -0
- package/dist/nodes/Propstack/v1/resources/locations/index.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/notes/getAll.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/notes/getAll.js +98 -0
- package/dist/nodes/Propstack/v1/resources/notes/getAll.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/notes/index.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/notes/index.js +87 -0
- package/dist/nodes/Propstack/v1/resources/notes/index.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/portalExport/index.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/portalExport/index.js +87 -0
- package/dist/nodes/Propstack/v1/resources/portalExport/index.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/portalExport/publish.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/portalExport/publish.js +88 -0
- package/dist/nodes/Propstack/v1/resources/portalExport/publish.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/projects/create.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/projects/create.js +230 -0
- package/dist/nodes/Propstack/v1/resources/projects/create.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/projects/delete.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/projects/delete.js +17 -0
- package/dist/nodes/Propstack/v1/resources/projects/delete.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/projects/get.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/projects/get.js +23 -0
- package/dist/nodes/Propstack/v1/resources/projects/get.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/projects/getAll.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/projects/getAll.js +124 -0
- package/dist/nodes/Propstack/v1/resources/projects/getAll.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/projects/index.d.ts +8 -0
- package/dist/nodes/Propstack/v1/resources/projects/index.js +111 -0
- package/dist/nodes/Propstack/v1/resources/projects/index.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/projects/update.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/projects/update.js +231 -0
- package/dist/nodes/Propstack/v1/resources/projects/update.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/properties/create.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/properties/create.js +359 -0
- package/dist/nodes/Propstack/v1/resources/properties/create.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/properties/delete.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/properties/delete.js +17 -0
- package/dist/nodes/Propstack/v1/resources/properties/delete.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/properties/get.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/properties/get.js +66 -0
- package/dist/nodes/Propstack/v1/resources/properties/get.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/properties/getAll.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/properties/getAll.js +493 -0
- package/dist/nodes/Propstack/v1/resources/properties/getAll.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/properties/index.d.ts +8 -0
- package/dist/nodes/Propstack/v1/resources/properties/index.js +111 -0
- package/dist/nodes/Propstack/v1/resources/properties/index.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/properties/update.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/properties/update.js +377 -0
- package/dist/nodes/Propstack/v1/resources/properties/update.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/searchProfiles/create.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/searchProfiles/create.js +292 -0
- package/dist/nodes/Propstack/v1/resources/searchProfiles/create.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/searchProfiles/delete.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/searchProfiles/delete.js +33 -0
- package/dist/nodes/Propstack/v1/resources/searchProfiles/delete.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/searchProfiles/getAll.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/searchProfiles/getAll.js +106 -0
- package/dist/nodes/Propstack/v1/resources/searchProfiles/getAll.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/searchProfiles/index.d.ts +7 -0
- package/dist/nodes/Propstack/v1/resources/searchProfiles/index.js +448 -0
- package/dist/nodes/Propstack/v1/resources/searchProfiles/index.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/searchProfiles/update.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/searchProfiles/update.js +287 -0
- package/dist/nodes/Propstack/v1/resources/searchProfiles/update.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/tasks/create.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/tasks/create.js +236 -0
- package/dist/nodes/Propstack/v1/resources/tasks/create.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/tasks/delete.d.ts +2 -0
- package/dist/nodes/Propstack/v1/resources/tasks/delete.js +14 -0
- package/dist/nodes/Propstack/v1/resources/tasks/delete.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/tasks/get.d.ts +2 -0
- package/dist/nodes/Propstack/v1/resources/tasks/get.js +14 -0
- package/dist/nodes/Propstack/v1/resources/tasks/get.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/tasks/getAll.d.ts +2 -0
- package/dist/nodes/Propstack/v1/resources/tasks/getAll.js +47 -0
- package/dist/nodes/Propstack/v1/resources/tasks/getAll.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/tasks/index.d.ts +8 -0
- package/dist/nodes/Propstack/v1/resources/tasks/index.js +485 -0
- package/dist/nodes/Propstack/v1/resources/tasks/index.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/tasks/update.d.ts +2 -0
- package/dist/nodes/Propstack/v1/resources/tasks/update.js +87 -0
- package/dist/nodes/Propstack/v1/resources/tasks/update.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/teams/create.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/teams/create.js +133 -0
- package/dist/nodes/Propstack/v1/resources/teams/create.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/teams/delete.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/teams/delete.js +17 -0
- package/dist/nodes/Propstack/v1/resources/teams/delete.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/teams/get.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/teams/get.js +17 -0
- package/dist/nodes/Propstack/v1/resources/teams/get.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/teams/getAll.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/teams/getAll.js +80 -0
- package/dist/nodes/Propstack/v1/resources/teams/getAll.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/teams/index.d.ts +8 -0
- package/dist/nodes/Propstack/v1/resources/teams/index.js +273 -0
- package/dist/nodes/Propstack/v1/resources/teams/index.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/teams/update.d.ts +4 -0
- package/dist/nodes/Propstack/v1/resources/teams/update.js +45 -0
- package/dist/nodes/Propstack/v1/resources/teams/update.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/webhooks/create.d.ts +2 -0
- package/dist/nodes/Propstack/v1/resources/webhooks/create.js +25 -0
- package/dist/nodes/Propstack/v1/resources/webhooks/create.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/webhooks/delete.d.ts +2 -0
- package/dist/nodes/Propstack/v1/resources/webhooks/delete.js +14 -0
- package/dist/nodes/Propstack/v1/resources/webhooks/delete.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/webhooks/getAll.d.ts +2 -0
- package/dist/nodes/Propstack/v1/resources/webhooks/getAll.js +18 -0
- package/dist/nodes/Propstack/v1/resources/webhooks/getAll.js.map +1 -0
- package/dist/nodes/Propstack/v1/resources/webhooks/index.d.ts +7 -0
- package/dist/nodes/Propstack/v1/resources/webhooks/index.js +126 -0
- package/dist/nodes/Propstack/v1/resources/webhooks/index.js.map +1 -0
- package/dist/nodes/Propstack/v2/PropstackV2.d.ts +18 -0
- package/dist/nodes/Propstack/v2/PropstackV2.js +195 -0
- package/dist/nodes/Propstack/v2/PropstackV2.js.map +1 -0
- package/dist/nodes/Propstack/v2/constants.d.ts +49 -0
- package/dist/nodes/Propstack/v2/constants.js +53 -0
- package/dist/nodes/Propstack/v2/constants.js.map +1 -0
- package/dist/nodes/Propstack/v2/helpers.d.ts +20 -0
- package/dist/nodes/Propstack/v2/helpers.js +218 -0
- package/dist/nodes/Propstack/v2/helpers.js.map +1 -0
- package/dist/nodes/Propstack/v2/listSearch.d.ts +9 -0
- package/dist/nodes/Propstack/v2/listSearch.js +80 -0
- package/dist/nodes/Propstack/v2/listSearch.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/activities/index.d.ts +4 -0
- package/dist/nodes/Propstack/v2/resources/activities/index.js +20 -0
- package/dist/nodes/Propstack/v2/resources/activities/index.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/activities/scroll.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/activities/scroll.js +38 -0
- package/dist/nodes/Propstack/v2/resources/activities/scroll.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/brokers/create.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/brokers/create.js +48 -0
- package/dist/nodes/Propstack/v2/resources/brokers/create.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/brokers/fields.d.ts +5 -0
- package/dist/nodes/Propstack/v2/resources/brokers/fields.js +54 -0
- package/dist/nodes/Propstack/v2/resources/brokers/fields.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/brokers/get.d.ts +2 -0
- package/dist/nodes/Propstack/v2/resources/brokers/get.js +19 -0
- package/dist/nodes/Propstack/v2/resources/brokers/get.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/brokers/getAll.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/brokers/getAll.js +57 -0
- package/dist/nodes/Propstack/v2/resources/brokers/getAll.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/brokers/index.d.ts +7 -0
- package/dist/nodes/Propstack/v2/resources/brokers/index.js +65 -0
- package/dist/nodes/Propstack/v2/resources/brokers/index.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/brokers/update.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/brokers/update.js +25 -0
- package/dist/nodes/Propstack/v2/resources/brokers/update.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/clientProperties/create.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/clientProperties/create.js +90 -0
- package/dist/nodes/Propstack/v2/resources/clientProperties/create.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/clientProperties/delete.d.ts +2 -0
- package/dist/nodes/Propstack/v2/resources/clientProperties/delete.js +14 -0
- package/dist/nodes/Propstack/v2/resources/clientProperties/delete.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/clientProperties/fields.d.ts +5 -0
- package/dist/nodes/Propstack/v2/resources/clientProperties/fields.js +118 -0
- package/dist/nodes/Propstack/v2/resources/clientProperties/fields.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/clientProperties/get.d.ts +2 -0
- package/dist/nodes/Propstack/v2/resources/clientProperties/get.js +20 -0
- package/dist/nodes/Propstack/v2/resources/clientProperties/get.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/clientProperties/getAll.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/clientProperties/getAll.js +125 -0
- package/dist/nodes/Propstack/v2/resources/clientProperties/getAll.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/clientProperties/index.d.ts +9 -0
- package/dist/nodes/Propstack/v2/resources/clientProperties/index.js +116 -0
- package/dist/nodes/Propstack/v2/resources/clientProperties/index.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/clientProperties/scroll.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/clientProperties/scroll.js +69 -0
- package/dist/nodes/Propstack/v2/resources/clientProperties/scroll.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/clientProperties/update.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/clientProperties/update.js +45 -0
- package/dist/nodes/Propstack/v2/resources/clientProperties/update.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/clients/create.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/clients/create.js +33 -0
- package/dist/nodes/Propstack/v2/resources/clients/create.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/clients/delete.d.ts +2 -0
- package/dist/nodes/Propstack/v2/resources/clients/delete.js +14 -0
- package/dist/nodes/Propstack/v2/resources/clients/delete.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/clients/fields.d.ts +5 -0
- package/dist/nodes/Propstack/v2/resources/clients/fields.js +470 -0
- package/dist/nodes/Propstack/v2/resources/clients/fields.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/clients/get.d.ts +2 -0
- package/dist/nodes/Propstack/v2/resources/clients/get.js +20 -0
- package/dist/nodes/Propstack/v2/resources/clients/get.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/clients/getAll.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/clients/getAll.js +115 -0
- package/dist/nodes/Propstack/v2/resources/clients/getAll.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/clients/getDeleted.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/clients/getDeleted.js +81 -0
- package/dist/nodes/Propstack/v2/resources/clients/getDeleted.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/clients/index.d.ts +10 -0
- package/dist/nodes/Propstack/v2/resources/clients/index.js +127 -0
- package/dist/nodes/Propstack/v2/resources/clients/index.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/clients/scroll.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/clients/scroll.js +71 -0
- package/dist/nodes/Propstack/v2/resources/clients/scroll.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/clients/update.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/clients/update.js +34 -0
- package/dist/nodes/Propstack/v2/resources/clients/update.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/customFields/create.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/customFields/create.js +42 -0
- package/dist/nodes/Propstack/v2/resources/customFields/create.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/customFields/createOption.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/customFields/createOption.js +27 -0
- package/dist/nodes/Propstack/v2/resources/customFields/createOption.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/customFields/delete.d.ts +2 -0
- package/dist/nodes/Propstack/v2/resources/customFields/delete.js +11 -0
- package/dist/nodes/Propstack/v2/resources/customFields/delete.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/customFields/deleteOption.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/customFields/deleteOption.js +23 -0
- package/dist/nodes/Propstack/v2/resources/customFields/deleteOption.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/customFields/fields.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/customFields/fields.js +18 -0
- package/dist/nodes/Propstack/v2/resources/customFields/fields.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/customFields/get.d.ts +2 -0
- package/dist/nodes/Propstack/v2/resources/customFields/get.js +11 -0
- package/dist/nodes/Propstack/v2/resources/customFields/get.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/customFields/getAll.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/customFields/getAll.js +29 -0
- package/dist/nodes/Propstack/v2/resources/customFields/getAll.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/customFields/index.d.ts +10 -0
- package/dist/nodes/Propstack/v2/resources/customFields/index.js +63 -0
- package/dist/nodes/Propstack/v2/resources/customFields/index.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/customFields/update.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/customFields/update.js +29 -0
- package/dist/nodes/Propstack/v2/resources/customFields/update.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/history/get.d.ts +2 -0
- package/dist/nodes/Propstack/v2/resources/history/get.js +27 -0
- package/dist/nodes/Propstack/v2/resources/history/get.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/history/index.d.ts +4 -0
- package/dist/nodes/Propstack/v2/resources/history/index.js +60 -0
- package/dist/nodes/Propstack/v2/resources/history/index.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/noteAttachments/create.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/noteAttachments/create.js +51 -0
- package/dist/nodes/Propstack/v2/resources/noteAttachments/create.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/noteAttachments/index.d.ts +4 -0
- package/dist/nodes/Propstack/v2/resources/noteAttachments/index.js +20 -0
- package/dist/nodes/Propstack/v2/resources/noteAttachments/index.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/projects/create.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/projects/create.js +30 -0
- package/dist/nodes/Propstack/v2/resources/projects/create.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/projects/delete.d.ts +2 -0
- package/dist/nodes/Propstack/v2/resources/projects/delete.js +14 -0
- package/dist/nodes/Propstack/v2/resources/projects/delete.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/projects/fields.d.ts +5 -0
- package/dist/nodes/Propstack/v2/resources/projects/fields.js +114 -0
- package/dist/nodes/Propstack/v2/resources/projects/fields.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/projects/get.d.ts +2 -0
- package/dist/nodes/Propstack/v2/resources/projects/get.js +20 -0
- package/dist/nodes/Propstack/v2/resources/projects/get.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/projects/getAll.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/projects/getAll.js +91 -0
- package/dist/nodes/Propstack/v2/resources/projects/getAll.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/projects/index.d.ts +8 -0
- package/dist/nodes/Propstack/v2/resources/projects/index.js +107 -0
- package/dist/nodes/Propstack/v2/resources/projects/index.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/projects/update.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/projects/update.js +31 -0
- package/dist/nodes/Propstack/v2/resources/projects/update.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/properties/create.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/properties/create.js +93 -0
- package/dist/nodes/Propstack/v2/resources/properties/create.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/properties/createLink.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/properties/createLink.js +98 -0
- package/dist/nodes/Propstack/v2/resources/properties/createLink.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/properties/delete.d.ts +2 -0
- package/dist/nodes/Propstack/v2/resources/properties/delete.js +14 -0
- package/dist/nodes/Propstack/v2/resources/properties/delete.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/properties/deleteLink.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/properties/deleteLink.js +31 -0
- package/dist/nodes/Propstack/v2/resources/properties/deleteLink.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/properties/fields.d.ts +5 -0
- package/dist/nodes/Propstack/v2/resources/properties/fields.js +1237 -0
- package/dist/nodes/Propstack/v2/resources/properties/fields.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/properties/get.d.ts +2 -0
- package/dist/nodes/Propstack/v2/resources/properties/get.js +21 -0
- package/dist/nodes/Propstack/v2/resources/properties/get.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/properties/getAll.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/properties/getAll.js +166 -0
- package/dist/nodes/Propstack/v2/resources/properties/getAll.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/properties/getDeleted.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/properties/getDeleted.js +82 -0
- package/dist/nodes/Propstack/v2/resources/properties/getDeleted.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/properties/getOptions.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/properties/getOptions.js +50 -0
- package/dist/nodes/Propstack/v2/resources/properties/getOptions.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/properties/index.d.ts +14 -0
- package/dist/nodes/Propstack/v2/resources/properties/index.js +163 -0
- package/dist/nodes/Propstack/v2/resources/properties/index.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/properties/scroll.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/properties/scroll.js +56 -0
- package/dist/nodes/Propstack/v2/resources/properties/scroll.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/properties/update.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/properties/update.js +34 -0
- package/dist/nodes/Propstack/v2/resources/properties/update.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/properties/updateLink.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/properties/updateLink.js +100 -0
- package/dist/nodes/Propstack/v2/resources/properties/updateLink.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/reference/getAll.d.ts +2 -0
- package/dist/nodes/Propstack/v2/resources/reference/getAll.js +30 -0
- package/dist/nodes/Propstack/v2/resources/reference/getAll.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/reference/index.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/reference/index.js +55 -0
- package/dist/nodes/Propstack/v2/resources/reference/index.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/relationships/create.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/relationships/create.js +64 -0
- package/dist/nodes/Propstack/v2/resources/relationships/create.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/relationships/delete.d.ts +2 -0
- package/dist/nodes/Propstack/v2/resources/relationships/delete.js +11 -0
- package/dist/nodes/Propstack/v2/resources/relationships/delete.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/relationships/getAll.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/relationships/getAll.js +53 -0
- package/dist/nodes/Propstack/v2/resources/relationships/getAll.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/relationships/index.d.ts +6 -0
- package/dist/nodes/Propstack/v2/resources/relationships/index.js +48 -0
- package/dist/nodes/Propstack/v2/resources/relationships/index.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/snippets/addAttachment.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/snippets/addAttachment.js +36 -0
- package/dist/nodes/Propstack/v2/resources/snippets/addAttachment.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/snippets/create.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/snippets/create.js +43 -0
- package/dist/nodes/Propstack/v2/resources/snippets/create.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/snippets/delete.d.ts +2 -0
- package/dist/nodes/Propstack/v2/resources/snippets/delete.js +11 -0
- package/dist/nodes/Propstack/v2/resources/snippets/delete.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/snippets/fields.d.ts +4 -0
- package/dist/nodes/Propstack/v2/resources/snippets/fields.js +19 -0
- package/dist/nodes/Propstack/v2/resources/snippets/fields.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/snippets/getAll.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/snippets/getAll.js +45 -0
- package/dist/nodes/Propstack/v2/resources/snippets/getAll.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/snippets/index.d.ts +8 -0
- package/dist/nodes/Propstack/v2/resources/snippets/index.js +56 -0
- package/dist/nodes/Propstack/v2/resources/snippets/index.js.map +1 -0
- package/dist/nodes/Propstack/v2/resources/snippets/update.d.ts +3 -0
- package/dist/nodes/Propstack/v2/resources/snippets/update.js +29 -0
- package/dist/nodes/Propstack/v2/resources/snippets/update.js.map +1 -0
- package/dist/package.json +71 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +69 -29
- package/index.js +0 -1
package/README.md
CHANGED
|
@@ -1,44 +1,148 @@
|
|
|
1
|
-
|
|
1
|
+
<h1 align="center">
|
|
2
|
+
<br>
|
|
3
|
+
n8n-nodes-propstack
|
|
4
|
+
<br>
|
|
5
|
+
</h1>
|
|
6
|
+
|
|
7
|
+
<p align="center">
|
|
8
|
+
<img alt="NPM Version" src="https://img.shields.io/npm/v/n8n-nodes-propstack">
|
|
9
|
+
<img alt="GitHub License" src="https://img.shields.io/github/license/hansdoebel/n8n-nodes-propstack">
|
|
10
|
+
<img alt="NPM Downloads" src="https://img.shields.io/npm/dm/n8n-nodes-propstack">
|
|
11
|
+
<img alt="NPM Last Update" src="https://img.shields.io/npm/last-update/n8n-nodes-propstack">
|
|
12
|
+
<img alt="Static Badge" src="https://img.shields.io/badge/n8n-2.14.2-EA4B71?logo=n8n">
|
|
13
|
+
</p>
|
|
14
|
+
|
|
15
|
+
<p align="center">
|
|
16
|
+
<a href="#installation">Installation</a> |
|
|
17
|
+
<a href="#credentials">Credentials</a> |
|
|
18
|
+
<a href="#resources--operations">Resources</a> |
|
|
19
|
+
<a href="#development">Development</a> |
|
|
20
|
+
<a href="#license">License</a>
|
|
21
|
+
</p>
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
A community node for [n8n](https://n8n.io/) that integrates with the [Propstack](https://www.propstack.de/) real estate CRM API. Manage contacts, properties, deals, projects, and more directly from your n8n workflows. Supports both API v1 (stable) and v2 (beta).
|
|
26
|
+
|
|
27
|
+
## API Coverage
|
|
28
|
+
|
|
29
|
+
The node ships in two versions targeting different Propstack API generations:
|
|
30
|
+
|
|
31
|
+
- **Propstack (v1)**: stable API, page-based pagination, 19 resources
|
|
32
|
+
- **Propstack V2**: beta API, adds scroll pagination, deleted record retrieval, and new resources
|
|
33
|
+
- **Propstack Trigger**: webhook-based trigger with 18 event types
|
|
34
|
+
|
|
35
|
+
<details>
|
|
36
|
+
<summary><strong>View v1 resources</strong></summary>
|
|
37
|
+
|
|
38
|
+
| Resource | Operations |
|
|
39
|
+
| --- | --- |
|
|
40
|
+
| Activities | Get, Get Many, Get Activity Types, Get Reservation Reasons |
|
|
41
|
+
| Brokers | Get Many |
|
|
42
|
+
| Contacts | Create, Delete, Get, Get Many, Update |
|
|
43
|
+
| Custom Fields | Get Many |
|
|
44
|
+
| Deal Pipelines | Get, Get Many |
|
|
45
|
+
| Deals | Create, Delete, Get, Get Many, Update |
|
|
46
|
+
| Documents | Create, Delete, Get, Get Many, Update |
|
|
47
|
+
| Emails | Get, Get Many, Send, Update |
|
|
48
|
+
| Events | Get Many |
|
|
49
|
+
| Features | Create, Get Many, Get Parent Features |
|
|
50
|
+
| Locations | Get Many |
|
|
51
|
+
| Notes | Get Many |
|
|
52
|
+
| Portal Export | Publish |
|
|
53
|
+
| Projects | Create, Delete, Get, Get Many, Update |
|
|
54
|
+
| Properties | Create, Delete, Get, Get Many, Update |
|
|
55
|
+
| Search Profiles | Create, Delete, Get Many, Update |
|
|
56
|
+
| Tasks | Create, Delete, Get, Get Many, Update |
|
|
57
|
+
| Teams | Create, Delete, Get, Get Many, Update |
|
|
58
|
+
| Webhooks | Create, Delete, Get Many |
|
|
59
|
+
|
|
60
|
+
</details>
|
|
61
|
+
|
|
62
|
+
<details>
|
|
63
|
+
<summary><strong>View v2 resources</strong></summary>
|
|
64
|
+
|
|
65
|
+
| Resource | Operations |
|
|
66
|
+
| --- | --- |
|
|
67
|
+
| Activities | Scroll |
|
|
68
|
+
| Brokers | Create, Get, Get Many, Update |
|
|
69
|
+
| Clients | Create, Delete, Get, Get Deleted, Get Many, Scroll, Update |
|
|
70
|
+
| Client Properties | Create, Delete, Get, Get Many, Scroll, Update |
|
|
71
|
+
| Custom Fields | Create, Create Option, Delete, Delete Option, Get, Get Many, Update |
|
|
72
|
+
| History | Get (messages, notes, events, tasks, deals) |
|
|
73
|
+
| Note Attachments | Create |
|
|
74
|
+
| Projects | Create, Delete, Get, Get Many, Update |
|
|
75
|
+
| Properties | Create, Create Link, Delete, Delete Link, Get, Get Deleted, Get Many, Get Options, Scroll, Update, Update Link |
|
|
76
|
+
| Reference Data | Get Many (property statuses, publishings, portals, client statuses, client sources, snippet categories, groups, folders, comments, message trackings, recipes, rights) |
|
|
77
|
+
| Relationships | Create, Delete, Get Many |
|
|
78
|
+
| Snippets | Create, Delete, Get Many, Update, Add Attachment |
|
|
79
|
+
|
|
80
|
+
</details>
|
|
81
|
+
|
|
82
|
+
<details>
|
|
83
|
+
<summary><strong>View trigger events</strong></summary>
|
|
84
|
+
|
|
85
|
+
| Event | Type |
|
|
86
|
+
| --- | --- |
|
|
87
|
+
| Client Created | Webhook |
|
|
88
|
+
| Client Updated (also fires on delete) | Webhook |
|
|
89
|
+
| Client Property Created | Webhook |
|
|
90
|
+
| Client Property Updated | Webhook |
|
|
91
|
+
| Client Property Deleted | Webhook |
|
|
92
|
+
| Document Created | Webhook |
|
|
93
|
+
| Document Updated | Webhook |
|
|
94
|
+
| Document Deleted | Webhook |
|
|
95
|
+
| Project Created | Webhook |
|
|
96
|
+
| Project Updated | Webhook |
|
|
97
|
+
| Property Created | Webhook |
|
|
98
|
+
| Property Updated (also fires on delete) | Webhook |
|
|
99
|
+
| Saved Query Created | Webhook |
|
|
100
|
+
| Saved Query Updated | Webhook |
|
|
101
|
+
| Saved Query Deleted | Webhook |
|
|
102
|
+
| Task Created | Webhook |
|
|
103
|
+
| Task Updated | Webhook |
|
|
104
|
+
| Task Deleted | Webhook |
|
|
105
|
+
|
|
106
|
+
</details>
|
|
2
107
|
|
|
3
|
-
|
|
4
|
-
[](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
|
|
108
|
+
## Installation
|
|
11
109
|
|
|
12
|
-
|
|
110
|
+
1. Create a new workflow or open an existing one
|
|
111
|
+
2. Open the nodes panel by selecting **+** or pressing **N**
|
|
112
|
+
3. Search for **Propstack**
|
|
113
|
+
4. Select **Install** to install the node for your instance
|
|
13
114
|
|
|
14
|
-
|
|
115
|
+
## Credentials
|
|
15
116
|
|
|
16
|
-
|
|
117
|
+
1. Log in to [Propstack](https://app.propstack.de/settings/api) and copy your API token
|
|
118
|
+
2. In n8n, go to **Credentials** > **Add credential**
|
|
119
|
+
3. Search for **Propstack API** (v1) or **Propstack API v2** and paste your token
|
|
17
120
|
|
|
18
|
-
|
|
19
|
-
- Manage properties (create, read, update, delete)
|
|
20
|
-
- Manage deals / pipeline
|
|
21
|
-
- Trigger workflows on Propstack events (webhooks)
|
|
121
|
+
Each API version uses its own credential: v1 uses `Propstack API`, v2 uses `Propstack API v2`.
|
|
22
122
|
|
|
23
|
-
##
|
|
123
|
+
## Resources & Operations
|
|
24
124
|
|
|
25
|
-
|
|
125
|
+
See the collapsible tables above under [API Coverage](#api-coverage) for a full list.
|
|
26
126
|
|
|
27
|
-
|
|
28
|
-
n8n-
|
|
29
|
-
```
|
|
127
|
+
For a detailed comparison between v1 and v2, see [docs/v1-vs-v2.md](docs/v1-vs-v2.md).
|
|
128
|
+
For a comparison with the Zapier integration, see [docs/n8n-vs-zapier.md](docs/n8n-vs-zapier.md).
|
|
30
129
|
|
|
31
|
-
|
|
130
|
+
## Development
|
|
32
131
|
|
|
33
132
|
```bash
|
|
34
|
-
|
|
133
|
+
git clone https://github.com/hansdoebel/n8n-nodes-propstack.git
|
|
134
|
+
cd n8n-nodes-propstack
|
|
135
|
+
npm install
|
|
136
|
+
npm run build
|
|
137
|
+
npm run lint
|
|
35
138
|
```
|
|
36
139
|
|
|
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
140
|
## License
|
|
43
141
|
|
|
44
142
|
[MIT](LICENSE)
|
|
143
|
+
|
|
144
|
+
<p align="center">
|
|
145
|
+
<a href="https://github.com/hansdoebel/n8n-nodes-propstack">GitHub</a> |
|
|
146
|
+
<a href="https://github.com/hansdoebel/n8n-nodes-propstack/issues">Issues</a> |
|
|
147
|
+
<a href="https://docs.propstack.de/reference/introduction">Propstack API Docs</a>
|
|
148
|
+
</p>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { IAuthenticateGeneric, Icon, ICredentialTestRequest, ICredentialType, INodeProperties } from "n8n-workflow";
|
|
2
|
+
export declare class PropstackApi implements ICredentialType {
|
|
3
|
+
name: string;
|
|
4
|
+
displayName: string;
|
|
5
|
+
documentationUrl: string;
|
|
6
|
+
icon: Icon;
|
|
7
|
+
properties: INodeProperties[];
|
|
8
|
+
authenticate: IAuthenticateGeneric;
|
|
9
|
+
test: ICredentialTestRequest;
|
|
10
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PropstackApi = void 0;
|
|
4
|
+
class PropstackApi {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.name = "propstackApi";
|
|
7
|
+
this.displayName = "Propstack API";
|
|
8
|
+
this.documentationUrl = "https://docs.propstack.de/reference/introduction";
|
|
9
|
+
this.icon = {
|
|
10
|
+
light: "file:../icons/propstack.svg",
|
|
11
|
+
dark: "file:../icons/propstack.dark.svg",
|
|
12
|
+
};
|
|
13
|
+
this.properties = [
|
|
14
|
+
{
|
|
15
|
+
displayName: "API Token",
|
|
16
|
+
name: "apiToken",
|
|
17
|
+
type: "string",
|
|
18
|
+
typeOptions: { password: true },
|
|
19
|
+
required: true,
|
|
20
|
+
default: "",
|
|
21
|
+
},
|
|
22
|
+
];
|
|
23
|
+
this.authenticate = {
|
|
24
|
+
type: "generic",
|
|
25
|
+
properties: {
|
|
26
|
+
headers: {
|
|
27
|
+
"X-API-KEY": "={{$credentials.apiToken}}",
|
|
28
|
+
},
|
|
29
|
+
},
|
|
30
|
+
};
|
|
31
|
+
this.test = {
|
|
32
|
+
request: {
|
|
33
|
+
baseURL: "https://api.propstack.de",
|
|
34
|
+
url: "/v1/contacts",
|
|
35
|
+
},
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
exports.PropstackApi = PropstackApi;
|
|
40
|
+
//# sourceMappingURL=PropstackApi.credentials.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PropstackApi.credentials.js","sourceRoot":"","sources":["../../credentials/PropstackApi.credentials.ts"],"names":[],"mappings":";;;AAQA,MAAa,YAAY;IAAzB;QACE,SAAI,GAAG,cAAc,CAAC;QAEtB,gBAAW,GAAG,eAAe,CAAC;QAE9B,qBAAgB,GAAG,kDAAkD,CAAC;QAEtE,SAAI,GAAS;YACX,KAAK,EAAE,6BAA6B;YACpC,IAAI,EAAE,kCAAkC;SACzC,CAAC;QAEF,eAAU,GAAsB;YAC9B;gBACE,WAAW,EAAE,WAAW;gBACxB,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE;gBAC/B,QAAQ,EAAE,IAAI;gBACd,OAAO,EAAE,EAAE;aACZ;SACF,CAAC;QAEF,iBAAY,GAAyB;YACnC,IAAI,EAAE,SAAS;YACf,UAAU,EAAE;gBACV,OAAO,EAAE;oBACP,WAAW,EAAE,4BAA4B;iBAC1C;aACF;SACF,CAAC;QAEF,SAAI,GAA2B;YAC7B,OAAO,EAAE;gBACP,OAAO,EAAE,0BAA0B;gBACnC,GAAG,EAAE,cAAc;aACpB;SACF,CAAC;IACJ,CAAC;CAAA;AAtCD,oCAsCC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { IAuthenticateGeneric, Icon, ICredentialTestRequest, ICredentialType, INodeProperties } from "n8n-workflow";
|
|
2
|
+
export declare class PropstackV2Api implements ICredentialType {
|
|
3
|
+
name: string;
|
|
4
|
+
displayName: string;
|
|
5
|
+
documentationUrl: string;
|
|
6
|
+
icon: Icon;
|
|
7
|
+
properties: INodeProperties[];
|
|
8
|
+
authenticate: IAuthenticateGeneric;
|
|
9
|
+
test: ICredentialTestRequest;
|
|
10
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PropstackV2Api = void 0;
|
|
4
|
+
class PropstackV2Api {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.name = "propstackV2Api";
|
|
7
|
+
this.displayName = "Propstack V2 API";
|
|
8
|
+
this.documentationUrl = "https://docs.propstack.de/reference/introduction";
|
|
9
|
+
this.icon = {
|
|
10
|
+
light: "file:../icons/propstack.svg",
|
|
11
|
+
dark: "file:../icons/propstack.dark.svg",
|
|
12
|
+
};
|
|
13
|
+
this.properties = [
|
|
14
|
+
{
|
|
15
|
+
displayName: "API Token",
|
|
16
|
+
name: "apiToken",
|
|
17
|
+
type: "string",
|
|
18
|
+
typeOptions: { password: true },
|
|
19
|
+
required: true,
|
|
20
|
+
default: "",
|
|
21
|
+
},
|
|
22
|
+
];
|
|
23
|
+
this.authenticate = {
|
|
24
|
+
type: "generic",
|
|
25
|
+
properties: {
|
|
26
|
+
headers: {
|
|
27
|
+
"X-Api-Key": "={{$credentials.apiToken}}",
|
|
28
|
+
},
|
|
29
|
+
},
|
|
30
|
+
};
|
|
31
|
+
this.test = {
|
|
32
|
+
request: {
|
|
33
|
+
baseURL: "https://api.propstack.de",
|
|
34
|
+
url: "/v2/brokers",
|
|
35
|
+
qs: { per: 1 },
|
|
36
|
+
},
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
exports.PropstackV2Api = PropstackV2Api;
|
|
41
|
+
//# sourceMappingURL=PropstackV2Api.credentials.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PropstackV2Api.credentials.js","sourceRoot":"","sources":["../../credentials/PropstackV2Api.credentials.ts"],"names":[],"mappings":";;;AAQA,MAAa,cAAc;IAA3B;QACE,SAAI,GAAG,gBAAgB,CAAC;QAExB,gBAAW,GAAG,kBAAkB,CAAC;QAEjC,qBAAgB,GAAG,kDAAkD,CAAC;QAEtE,SAAI,GAAS;YACX,KAAK,EAAE,6BAA6B;YACpC,IAAI,EAAE,kCAAkC;SACzC,CAAC;QAEF,eAAU,GAAsB;YAC9B;gBACE,WAAW,EAAE,WAAW;gBACxB,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE;gBAC/B,QAAQ,EAAE,IAAI;gBACd,OAAO,EAAE,EAAE;aACZ;SACF,CAAC;QAEF,iBAAY,GAAyB;YACnC,IAAI,EAAE,SAAS;YACf,UAAU,EAAE;gBACV,OAAO,EAAE;oBACP,WAAW,EAAE,4BAA4B;iBAC1C;aACF;SACF,CAAC;QAEF,SAAI,GAA2B;YAC7B,OAAO,EAAE;gBACP,OAAO,EAAE,0BAA0B;gBACnC,GAAG,EAAE,aAAa;gBAClB,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE;aACf;SACF,CAAC;IACJ,CAAC;CAAA;AAvCD,wCAuCC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Ebene_1" x="0px" y="0px" viewBox="0 0 783 128" style="enable-background:new 0 0 783 128;" xml:space="preserve"><style type="text/css"> .st0{fill:none;} .st1{fill:#1e2022;}</style><polyline class="st0" points="-4.3,249.8 -1.3,-8.2 801.7,-7.2 798.7,249.8 "/><g> <path class="st1" d="M159.6,106.8h16.2V77.2h18.3c20.3,0,36.9-10.8,36.9-31.5v-0.3c0-18.6-13.4-30.8-35-30.8h-36.3V106.8z M175.8,62.6V29.4h18.8c12.1,0,19.9,5.7,19.9,16.5v0.3c0,9.6-7.6,16.5-19.9,16.5H175.8z M242.4,106.8h15.9V80.3 c0-18.4,9.7-27.5,23.7-27.5h0.9V36c-12.2-0.5-20.3,6.6-24.6,17V37.3h-15.9V106.8z M324.2,108.4c21.5,0,37.3-16.5,37.3-36.2v-0.3 c0-19.9-15.7-36.1-37-36.1c-21.3,0-37.1,16.5-37.1,36.3v0.3C287.4,92.2,303,108.4,324.2,108.4z M324.5,94.4 c-12.4,0-21.2-10.1-21.2-22.3v-0.3c0-12.1,8.2-22.1,20.9-22.1c12.5,0,21.3,10.1,21.3,22.4v0.3C345.6,84.4,337.4,94.4,324.5,94.4z M374.4,127.9h15.9V96c4.9,6.5,12.1,12.2,23.7,12.2c16.5,0,32.3-13,32.3-36.1v-0.3c0-23.2-15.9-36.1-32.3-36.1 c-11.3,0-18.6,5.8-23.7,13V37.3h-15.9V127.9z M410.3,94.4c-10.8,0-20.3-9-20.3-22.3v-0.3c0-13.3,9.5-22.3,20.3-22.3 c10.8,0,19.9,8.8,19.9,22.3v0.3C430.1,85.9,421.2,94.4,410.3,94.4z M483.3,108.1c14.5,0,25.8-7.2,25.8-21.9V86 c0-12.5-11.5-17.1-21.6-20.3c-8.2-2.6-15.7-4.7-15.7-9.9v-0.3c0-4,3.6-6.8,9.7-6.8c5.8,0,12.9,2.5,19.6,6.6l6.3-11.3 c-7.4-4.9-16.9-7.9-25.5-7.9c-13.8,0-24.8,8-24.8,21.2v0.3c0,13.3,11.5,17.5,21.7,20.4c8.2,2.5,15.5,4.3,15.5,9.7V88 c0,4.6-4,7.5-10.8,7.5c-7.1,0-15.1-2.9-22.8-8.6l-7.1,10.8C462.5,104.6,473.5,108.1,483.3,108.1z M544.2,108 c6.1,0,10.4-1.3,14.4-3.6v-13c-3.2,1.6-6.3,2.4-9.9,2.4c-5.4,0-8.6-2.5-8.6-8.7V51h18.7V37.3h-18.7V18.2h-15.9v19.1h-8.8V51h8.8 v36.6C524.2,102.9,532.5,108,544.2,108z M591.8,108.3c10.7,0,17.9-4.5,22.7-10.1v8.7H630V65.6c0-9.1-2.4-16.5-7.5-21.5 c-4.9-5-12.6-7.8-23-7.8c-11.1,0-18.6,2.2-26.2,5.7l4.2,12.5c6.3-2.6,12.1-4.3,19.9-4.3c11.2,0,17.3,5.3,17.3,15.1V67 c-5.4-1.7-10.9-2.9-18.7-2.9c-17,0-28.7,7.4-28.7,22.4v0.3C567.1,100.8,578.7,108.3,591.8,108.3z M596.2,96.7 c-7.6,0-13.6-3.8-13.6-10.5v-0.3c0-7.2,6.1-11.6,16.3-11.6c6.3,0,11.7,1.2,15.8,2.8v4.7C614.8,90.6,606.8,96.7,596.2,96.7z M677.9,108.4c13.6,0,21.6-5.4,28.4-13l-9.6-9.5c-5,5.1-10.5,8.6-18,8.6c-12.2,0-20.8-9.9-20.8-22.3v-0.3 c0-12.1,8.6-22.1,20.1-22.1c7.9,0,13,3.6,17.9,8.7l10-10.7c-6.6-7.1-14.8-12-27.8-12c-20.9,0-36.2,16.6-36.2,36.3v0.3 C641.9,92.2,657.2,108.4,677.9,108.4z M717.7,106.8h15.9V86.9l9.9-10.3l20.5,30.2h18.7l-28.6-41.2l27.7-28.3h-19.4l-28.8,30.8V10.7 h-15.9V106.8z"/> <path class="st1" d="M115.7,8.2c0,23.5,0.1,47,0.1,70.6c1.2-2.2,2.5-4.3,3.7-6.5C99.9,85.1,80.9,99,61.7,112.3c2.5,0,5,0,7.6,0 C50,98.9,30.9,85.4,11.5,72.3c1.2,2.2,2.5,4.3,3.7,6.5c0-23.7,0-47.3,0-71c-2.5,2.5-5,5-7.5,7.5c38.5,0.1,77,0.3,115.5,0.4 c9.7,0,9.7-15,0-15C84.7,0.6,46.2,0.5,7.7,0.3c-4.1,0-7.5,3.4-7.5,7.5c0,23.4,0,46.7,0,70.1c0,4.6,2.9,6.8,6.2,9.1 c4.8,3.3,9.7,6.7,14.5,10c12.1,8.4,24.2,16.7,36.3,25.1c1.5,1,3,2,4.4,3.1c2,1.4,5.5,1.4,7.6,0c19.1-13.2,38.1-26.3,57.2-39.5 c4-2.8,4.3-6,4.3-10.3c0-6.1,0-12.2,0-18.3c0-14.7,0-29.4-0.1-44.1c0-1.6,0-3.2,0-4.9C130.7-1.4,115.7-1.4,115.7,8.2z"/> <path class="st1" d="M58,7.8c0,15.4,0,30.8,0,46.1c0,9.7,15,9.7,15,0c0-15.4,0-30.8,0-46.1C73-1.9,58-1.9,58,7.8z"/> <path class="st1" d="M11.6,85.3C30.8,77,50,68.7,69.3,60.4c3.8-1.6,4.6-7.1,2.7-10.3c-2.2-3.8-6.5-4.3-10.3-2.7 C42.5,55.8,23.2,64.1,4,72.4C0.3,74-0.6,79.4,1.3,82.6C3.6,86.5,7.8,87,11.6,85.3z"/> <path class="st1" d="M127,72.4c-19.2-8.3-38.5-16.6-57.7-24.9c-3.8-1.6-8-1.2-10.3,2.7c-1.9,3.2-1.1,8.6,2.7,10.3 c19.2,8.3,38.5,16.6,57.7,24.9c3.8,1.6,8,1.2,10.3-2.7C131.5,79.4,130.7,74,127,72.4z"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 131 126" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"><rect id="ArtBoard1" x="0" y="0" width="130.789" height="125.909" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="130.789" height="125.909"/></clipPath><g clip-path="url(#_clip1)"><path d="M-4.464,249.34l3,-258l803,1l-3,257" style="fill:none;fill-rule:nonzero;"/><use xlink:href="#_Image2" x="0.036" y="0" width="131px" height="126px"/></g><defs><image id="_Image2" width="131px" height="126px" xlink:href="data:image/png;base64,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"/></defs></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 131 126" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"><rect id="ArtBoard1" x="0" y="0" width="130.789" height="125.909" style="fill:none;"/><clipPath id="_clip1"><rect x="0" y="0" width="130.789" height="125.909"/></clipPath><g clip-path="url(#_clip1)"><path d="M-4.464,249.34l3,-258l803,1l-3,257" style="fill:none;fill-rule:nonzero;"/><g><path d="M115.536,7.74c0,23.5 0.1,47 0.1,70.6c1.2,-2.2 2.5,-4.3 3.7,-6.5c-19.6,12.8 -38.6,26.7 -57.8,40l7.6,0c-19.3,-13.4 -38.4,-26.9 -57.8,-40c1.2,2.2 2.5,4.3 3.7,6.5l0,-71c-2.5,2.5 -5,5 -7.5,7.5c38.5,0.1 77,0.3 115.5,0.4c9.7,0 9.7,-15 0,-15c-38.5,-0.1 -77,-0.2 -115.5,-0.4c-4.1,0 -7.5,3.4 -7.5,7.5l0,70.1c0,4.6 2.9,6.8 6.2,9.1c4.8,3.3 9.7,6.7 14.5,10c12.1,8.4 24.2,16.7 36.3,25.1c1.5,1 3,2 4.4,3.1c2,1.4 5.5,1.4 7.6,0c19.1,-13.2 38.1,-26.3 57.2,-39.5c4,-2.8 4.3,-6 4.3,-10.3l0,-18.3c0,-14.7 0,-29.4 -0.1,-44.1l0,-4.9c0.1,-9.5 -14.9,-9.5 -14.9,0.1Z" style="fill:#1e2022;fill-rule:nonzero;"/><path d="M57.836,7.34l0,46.1c0,9.7 15,9.7 15,0l0,-46.1c0,-9.7 -15,-9.7 -15,0Z" style="fill:#1e2022;fill-rule:nonzero;"/><path d="M11.436,84.84c19.2,-8.3 38.4,-16.6 57.7,-24.9c3.8,-1.6 4.6,-7.1 2.7,-10.3c-2.2,-3.8 -6.5,-4.3 -10.3,-2.7c-19.2,8.4 -38.5,16.7 -57.7,25c-3.7,1.6 -4.6,7 -2.7,10.2c2.3,3.9 6.5,4.4 10.3,2.7Z" style="fill:#1e2022;fill-rule:nonzero;"/><path d="M126.836,71.94c-19.2,-8.3 -38.5,-16.6 -57.7,-24.9c-3.8,-1.6 -8,-1.2 -10.3,2.7c-1.9,3.2 -1.1,8.6 2.7,10.3c19.2,8.3 38.5,16.6 57.7,24.9c3.8,1.6 8,1.2 10.3,-2.7c1.8,-3.3 1,-8.7 -2.7,-10.3Z" style="fill:#1e2022;fill-rule:nonzero;"/></g></g></svg>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Propstack = void 0;
|
|
4
|
+
const n8n_workflow_1 = require("n8n-workflow");
|
|
5
|
+
const PropstackV1_1 = require("./v1/PropstackV1");
|
|
6
|
+
const PropstackV2_1 = require("./v2/PropstackV2");
|
|
7
|
+
class Propstack extends n8n_workflow_1.VersionedNodeType {
|
|
8
|
+
constructor() {
|
|
9
|
+
const baseDescription = {
|
|
10
|
+
displayName: "Propstack",
|
|
11
|
+
name: "propstack",
|
|
12
|
+
icon: {
|
|
13
|
+
light: "file:../../icons/propstack.svg",
|
|
14
|
+
dark: "file:../../icons/propstack.dark.svg",
|
|
15
|
+
},
|
|
16
|
+
group: [],
|
|
17
|
+
description: "Interact with the Propstack CRM API",
|
|
18
|
+
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
19
|
+
defaultVersion: 1,
|
|
20
|
+
usableAsTool: true,
|
|
21
|
+
};
|
|
22
|
+
const nodeVersions = {
|
|
23
|
+
1: new PropstackV1_1.PropstackV1(baseDescription),
|
|
24
|
+
2: new PropstackV2_1.PropstackV2(baseDescription),
|
|
25
|
+
};
|
|
26
|
+
super(nodeVersions, baseDescription);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
exports.Propstack = Propstack;
|
|
30
|
+
//# sourceMappingURL=Propstack.node.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Propstack.node.js","sourceRoot":"","sources":["../../../nodes/Propstack/Propstack.node.ts"],"names":[],"mappings":";;;AACA,+CAAiD;AAEjD,kDAA+C;AAC/C,kDAA+C;AAE/C,MAAa,SAAU,SAAQ,gCAAiB;IAC9C;QACE,MAAM,eAAe,GAA6B;YAChD,WAAW,EAAE,WAAW;YACxB,IAAI,EAAE,WAAW;YACjB,IAAI,EAAE;gBACJ,KAAK,EAAE,gCAAgC;gBACvC,IAAI,EAAE,qCAAqC;aAC5C;YACD,KAAK,EAAE,EAAE;YACT,WAAW,EAAE,qCAAqC;YAClD,QAAQ,EAAE,8DAA8D;YACxE,cAAc,EAAE,CAAC;YACjB,YAAY,EAAE,IAAI;SACnB,CAAC;QAEF,MAAM,YAAY,GAAuC;YACvD,CAAC,EAAE,IAAI,yBAAW,CAAC,eAAe,CAAC;YACnC,CAAC,EAAE,IAAI,yBAAW,CAAC,eAAe,CAAC;SACpC,CAAC;QAEF,KAAK,CAAC,YAAY,EAAE,eAAe,CAAC,CAAC;IACvC,CAAC;CACF;AAvBD,8BAuBC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"node": "n8n-nodes-propstack.propstack",
|
|
3
|
+
"nodeVersion": "1.0",
|
|
4
|
+
"codexVersion": "1.0",
|
|
5
|
+
"categories": ["Sales"],
|
|
6
|
+
"resources": {
|
|
7
|
+
"primaryDocumentation": [
|
|
8
|
+
{
|
|
9
|
+
"url": "https://docs.propstack.de/reference/introduction"
|
|
10
|
+
}
|
|
11
|
+
]
|
|
12
|
+
},
|
|
13
|
+
"alias": ["CRM", "Real Estate", "Propstack", "Property"],
|
|
14
|
+
"subcategories": {
|
|
15
|
+
"Sales": ["CRM"]
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { IHookFunctions, INodeType, INodeTypeDescription, IWebhookFunctions, IWebhookResponseData } from "n8n-workflow";
|
|
2
|
+
export declare class PropstackTrigger implements INodeType {
|
|
3
|
+
description: INodeTypeDescription;
|
|
4
|
+
webhookMethods: {
|
|
5
|
+
default: {
|
|
6
|
+
checkExists(this: IHookFunctions): Promise<boolean>;
|
|
7
|
+
create(this: IHookFunctions): Promise<boolean>;
|
|
8
|
+
delete(this: IHookFunctions): Promise<boolean>;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
webhook(this: IWebhookFunctions): Promise<IWebhookResponseData>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PropstackTrigger = void 0;
|
|
4
|
+
const n8n_workflow_1 = require("n8n-workflow");
|
|
5
|
+
const constants_1 = require("./v1/constants");
|
|
6
|
+
const helpers_1 = require("./v1/helpers");
|
|
7
|
+
class PropstackTrigger {
|
|
8
|
+
constructor() {
|
|
9
|
+
this.description = {
|
|
10
|
+
displayName: "Propstack Trigger",
|
|
11
|
+
name: "propstackTrigger",
|
|
12
|
+
icon: {
|
|
13
|
+
light: "file:../../icons/propstack.svg",
|
|
14
|
+
dark: "file:../../icons/propstack.dark.svg",
|
|
15
|
+
},
|
|
16
|
+
group: ["trigger"],
|
|
17
|
+
version: 1,
|
|
18
|
+
description: "Starts a workflow when a Propstack event occurs",
|
|
19
|
+
subtitle: '={{"Propstack Trigger: " + $parameter["event"]}}',
|
|
20
|
+
defaults: {
|
|
21
|
+
name: "Propstack Trigger",
|
|
22
|
+
},
|
|
23
|
+
credentials: [
|
|
24
|
+
{
|
|
25
|
+
name: "propstackApi",
|
|
26
|
+
required: true,
|
|
27
|
+
},
|
|
28
|
+
],
|
|
29
|
+
inputs: [],
|
|
30
|
+
outputs: [n8n_workflow_1.NodeConnectionTypes.Main],
|
|
31
|
+
webhooks: [
|
|
32
|
+
{
|
|
33
|
+
name: "default",
|
|
34
|
+
httpMethod: "POST",
|
|
35
|
+
responseMode: "onReceived",
|
|
36
|
+
path: "webhook",
|
|
37
|
+
},
|
|
38
|
+
],
|
|
39
|
+
properties: [
|
|
40
|
+
{
|
|
41
|
+
displayName: "Trigger On",
|
|
42
|
+
name: "event",
|
|
43
|
+
type: "options",
|
|
44
|
+
required: true,
|
|
45
|
+
default: "client_created",
|
|
46
|
+
options: [
|
|
47
|
+
{ name: "Client Created", value: "client_created" },
|
|
48
|
+
{ name: "Client Property Created", value: "client_property_created" },
|
|
49
|
+
{ name: "Client Property Deleted", value: "client_property_deleted" },
|
|
50
|
+
{ name: "Client Property Updated", value: "client_property_updated" },
|
|
51
|
+
{ name: "Client Updated", value: "client_updated", description: "Also fires on delete" },
|
|
52
|
+
{ name: "Document Created", value: "document_created" },
|
|
53
|
+
{ name: "Document Deleted", value: "document_deleted" },
|
|
54
|
+
{ name: "Document Updated", value: "document_updated" },
|
|
55
|
+
{ name: "Project Created", value: "project_created" },
|
|
56
|
+
{ name: "Project Updated", value: "project_updated" },
|
|
57
|
+
{ name: "Property Created", value: "property_created" },
|
|
58
|
+
{ name: "Property Updated", value: "property_updated", description: "Also fires on delete" },
|
|
59
|
+
{ name: "Saved Query Created", value: "saved_query_created" },
|
|
60
|
+
{ name: "Saved Query Deleted", value: "saved_query_deleted" },
|
|
61
|
+
{ name: "Saved Query Updated", value: "saved_query_updated" },
|
|
62
|
+
{ name: "Task Created", value: "task_created" },
|
|
63
|
+
{ name: "Task Deleted", value: "task_deleted" },
|
|
64
|
+
{ name: "Task Updated", value: "task_updated" },
|
|
65
|
+
],
|
|
66
|
+
description: "The event to listen for",
|
|
67
|
+
},
|
|
68
|
+
],
|
|
69
|
+
};
|
|
70
|
+
this.webhookMethods = {
|
|
71
|
+
default: {
|
|
72
|
+
async checkExists() {
|
|
73
|
+
const event = this.getNodeParameter("event");
|
|
74
|
+
const webhookUrl = this.getNodeWebhookUrl("default");
|
|
75
|
+
const webhookData = this.getWorkflowStaticData("node");
|
|
76
|
+
try {
|
|
77
|
+
const hooks = (await helpers_1.propstackRequest.call(this, {
|
|
78
|
+
method: "GET",
|
|
79
|
+
url: constants_1.API_ENDPOINTS.WEBHOOKS_GET_ALL,
|
|
80
|
+
}));
|
|
81
|
+
const existing = hooks.find((h) => h.target_url === webhookUrl && h.event === event);
|
|
82
|
+
if (existing) {
|
|
83
|
+
webhookData.webhookId = existing.id;
|
|
84
|
+
return true;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
catch {
|
|
88
|
+
return false;
|
|
89
|
+
}
|
|
90
|
+
return false;
|
|
91
|
+
},
|
|
92
|
+
async create() {
|
|
93
|
+
const event = this.getNodeParameter("event");
|
|
94
|
+
const webhookUrl = this.getNodeWebhookUrl("default");
|
|
95
|
+
const webhookData = this.getWorkflowStaticData("node");
|
|
96
|
+
const response = (await helpers_1.propstackRequest.call(this, {
|
|
97
|
+
method: "POST",
|
|
98
|
+
url: constants_1.API_ENDPOINTS.WEBHOOKS_CREATE,
|
|
99
|
+
body: {
|
|
100
|
+
target_url: webhookUrl,
|
|
101
|
+
event,
|
|
102
|
+
},
|
|
103
|
+
}));
|
|
104
|
+
webhookData.webhookId = response.id;
|
|
105
|
+
return true;
|
|
106
|
+
},
|
|
107
|
+
async delete() {
|
|
108
|
+
const webhookData = this.getWorkflowStaticData("node");
|
|
109
|
+
const webhookId = webhookData.webhookId;
|
|
110
|
+
if (!webhookId) {
|
|
111
|
+
return false;
|
|
112
|
+
}
|
|
113
|
+
try {
|
|
114
|
+
await helpers_1.propstackRequest.call(this, {
|
|
115
|
+
method: "DELETE",
|
|
116
|
+
url: constants_1.API_ENDPOINTS.WEBHOOKS_DELETE(String(webhookId)),
|
|
117
|
+
});
|
|
118
|
+
}
|
|
119
|
+
catch (error) {
|
|
120
|
+
if (error.httpStatusCode !== 404) {
|
|
121
|
+
throw error;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
delete webhookData.webhookId;
|
|
125
|
+
return true;
|
|
126
|
+
},
|
|
127
|
+
},
|
|
128
|
+
};
|
|
129
|
+
}
|
|
130
|
+
async webhook() {
|
|
131
|
+
const body = this.getBodyData();
|
|
132
|
+
return {
|
|
133
|
+
workflowData: [[{ json: body }]],
|
|
134
|
+
};
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
exports.PropstackTrigger = PropstackTrigger;
|
|
138
|
+
//# sourceMappingURL=PropstackTrigger.node.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PropstackTrigger.node.js","sourceRoot":"","sources":["../../../nodes/Propstack/PropstackTrigger.node.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"node": "n8n-nodes-propstack.propstackTrigger",
|
|
3
|
+
"nodeVersion": "1.0",
|
|
4
|
+
"codexVersion": "1.0",
|
|
5
|
+
"categories": ["Sales"],
|
|
6
|
+
"resources": {
|
|
7
|
+
"primaryDocumentation": [
|
|
8
|
+
{
|
|
9
|
+
"url": "https://docs.propstack.de/reference/introduction"
|
|
10
|
+
}
|
|
11
|
+
]
|
|
12
|
+
},
|
|
13
|
+
"alias": ["CRM", "Real Estate", "Propstack", "Webhook"],
|
|
14
|
+
"subcategories": {
|
|
15
|
+
"Sales": ["CRM"]
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
export interface Contact {
|
|
2
|
+
id: number;
|
|
3
|
+
first_name?: string;
|
|
4
|
+
last_name?: string;
|
|
5
|
+
email?: string;
|
|
6
|
+
phone_number?: string;
|
|
7
|
+
mobile_phone?: string;
|
|
8
|
+
company?: string;
|
|
9
|
+
street?: string;
|
|
10
|
+
city?: string;
|
|
11
|
+
postal_code?: string;
|
|
12
|
+
country?: string;
|
|
13
|
+
created_at?: string;
|
|
14
|
+
updated_at?: string;
|
|
15
|
+
}
|
|
16
|
+
export interface Property {
|
|
17
|
+
id: number;
|
|
18
|
+
title?: string;
|
|
19
|
+
description_note?: string;
|
|
20
|
+
object_type?: string;
|
|
21
|
+
rs_type?: string;
|
|
22
|
+
marketing_type?: string;
|
|
23
|
+
price?: number;
|
|
24
|
+
living_space?: number;
|
|
25
|
+
number_of_rooms?: number;
|
|
26
|
+
street?: string;
|
|
27
|
+
city?: string;
|
|
28
|
+
postal_code?: string;
|
|
29
|
+
created_at?: string;
|
|
30
|
+
updated_at?: string;
|
|
31
|
+
}
|
|
32
|
+
export interface Project {
|
|
33
|
+
id: number;
|
|
34
|
+
name?: string;
|
|
35
|
+
title?: string;
|
|
36
|
+
status?: string;
|
|
37
|
+
street?: string;
|
|
38
|
+
city?: string;
|
|
39
|
+
created_at?: string;
|
|
40
|
+
updated_at?: string;
|
|
41
|
+
}
|
|
42
|
+
export interface Activity {
|
|
43
|
+
id: number;
|
|
44
|
+
title?: string;
|
|
45
|
+
body?: string;
|
|
46
|
+
note_type_id?: number;
|
|
47
|
+
broker_id?: number;
|
|
48
|
+
created_at?: string;
|
|
49
|
+
updated_at?: string;
|
|
50
|
+
}
|
|
51
|
+
export interface Deal {
|
|
52
|
+
id: number;
|
|
53
|
+
client_id?: number;
|
|
54
|
+
property_id?: number;
|
|
55
|
+
deal_stage_id?: number;
|
|
56
|
+
price?: number;
|
|
57
|
+
created_at?: string;
|
|
58
|
+
updated_at?: string;
|
|
59
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../nodes/Propstack/types.ts"],"names":[],"mappings":""}
|