machinaos 0.0.1

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 (288) hide show
  1. package/.env.template +71 -0
  2. package/LICENSE +21 -0
  3. package/README.md +87 -0
  4. package/bin/cli.js +159 -0
  5. package/client/.dockerignore +45 -0
  6. package/client/Dockerfile +68 -0
  7. package/client/eslint.config.js +29 -0
  8. package/client/index.html +13 -0
  9. package/client/nginx.conf +66 -0
  10. package/client/package.json +48 -0
  11. package/client/src/App.tsx +27 -0
  12. package/client/src/Dashboard.tsx +1173 -0
  13. package/client/src/ParameterPanel.tsx +301 -0
  14. package/client/src/components/AIAgentNode.tsx +321 -0
  15. package/client/src/components/APIKeyValidator.tsx +118 -0
  16. package/client/src/components/ClaudeChatModelNode.tsx +18 -0
  17. package/client/src/components/ConditionalEdge.tsx +189 -0
  18. package/client/src/components/CredentialsModal.tsx +306 -0
  19. package/client/src/components/EdgeConditionEditor.tsx +443 -0
  20. package/client/src/components/GeminiChatModelNode.tsx +18 -0
  21. package/client/src/components/GenericNode.tsx +357 -0
  22. package/client/src/components/LocationParameterPanel.tsx +154 -0
  23. package/client/src/components/ModelNode.tsx +286 -0
  24. package/client/src/components/OpenAIChatModelNode.tsx +18 -0
  25. package/client/src/components/OutputPanel.tsx +471 -0
  26. package/client/src/components/ParameterRenderer.tsx +1874 -0
  27. package/client/src/components/SkillEditorModal.tsx +417 -0
  28. package/client/src/components/SquareNode.tsx +797 -0
  29. package/client/src/components/StartNode.tsx +250 -0
  30. package/client/src/components/ToolkitNode.tsx +365 -0
  31. package/client/src/components/TriggerNode.tsx +463 -0
  32. package/client/src/components/auth/LoginPage.tsx +247 -0
  33. package/client/src/components/auth/ProtectedRoute.tsx +59 -0
  34. package/client/src/components/base/BaseChatModelNode.tsx +271 -0
  35. package/client/src/components/icons/AIProviderIcons.tsx +50 -0
  36. package/client/src/components/maps/GoogleMapsPicker.tsx +137 -0
  37. package/client/src/components/maps/MapsPreviewPanel.tsx +110 -0
  38. package/client/src/components/maps/index.ts +26 -0
  39. package/client/src/components/parameterPanel/InputSection.tsx +1094 -0
  40. package/client/src/components/parameterPanel/LocationPanelLayout.tsx +65 -0
  41. package/client/src/components/parameterPanel/MapsSection.tsx +92 -0
  42. package/client/src/components/parameterPanel/MiddleSection.tsx +571 -0
  43. package/client/src/components/parameterPanel/OutputSection.tsx +81 -0
  44. package/client/src/components/parameterPanel/ParameterPanelLayout.tsx +82 -0
  45. package/client/src/components/parameterPanel/ToolSchemaEditor.tsx +436 -0
  46. package/client/src/components/parameterPanel/index.ts +42 -0
  47. package/client/src/components/shared/DataPanel.tsx +142 -0
  48. package/client/src/components/shared/JSONTreeRenderer.tsx +106 -0
  49. package/client/src/components/ui/AIResultModal.tsx +204 -0
  50. package/client/src/components/ui/AndroidSettingsPanel.tsx +401 -0
  51. package/client/src/components/ui/CodeEditor.tsx +81 -0
  52. package/client/src/components/ui/CollapsibleSection.tsx +88 -0
  53. package/client/src/components/ui/ComponentItem.tsx +154 -0
  54. package/client/src/components/ui/ComponentPalette.tsx +321 -0
  55. package/client/src/components/ui/ConsolePanel.tsx +1074 -0
  56. package/client/src/components/ui/ErrorBoundary.tsx +196 -0
  57. package/client/src/components/ui/InputNodesPanel.tsx +204 -0
  58. package/client/src/components/ui/MapSelector.tsx +314 -0
  59. package/client/src/components/ui/Modal.tsx +149 -0
  60. package/client/src/components/ui/NodeContextMenu.tsx +192 -0
  61. package/client/src/components/ui/NodeOutputPanel.tsx +1150 -0
  62. package/client/src/components/ui/OutputDisplayPanel.tsx +381 -0
  63. package/client/src/components/ui/SettingsPanel.tsx +243 -0
  64. package/client/src/components/ui/TopToolbar.tsx +736 -0
  65. package/client/src/components/ui/WhatsAppSettingsPanel.tsx +345 -0
  66. package/client/src/components/ui/WorkflowSidebar.tsx +294 -0
  67. package/client/src/config/antdTheme.ts +186 -0
  68. package/client/src/config/api.ts +54 -0
  69. package/client/src/contexts/AuthContext.tsx +221 -0
  70. package/client/src/contexts/ThemeContext.tsx +42 -0
  71. package/client/src/contexts/WebSocketContext.tsx +1971 -0
  72. package/client/src/factories/baseChatModelFactory.ts +256 -0
  73. package/client/src/hooks/useAndroidOperations.ts +164 -0
  74. package/client/src/hooks/useApiKeyValidation.ts +107 -0
  75. package/client/src/hooks/useApiKeys.ts +238 -0
  76. package/client/src/hooks/useAppTheme.ts +17 -0
  77. package/client/src/hooks/useComponentPalette.ts +51 -0
  78. package/client/src/hooks/useCopyPaste.ts +155 -0
  79. package/client/src/hooks/useDragAndDrop.ts +124 -0
  80. package/client/src/hooks/useDragVariable.ts +88 -0
  81. package/client/src/hooks/useExecution.ts +313 -0
  82. package/client/src/hooks/useParameterPanel.ts +176 -0
  83. package/client/src/hooks/useReactFlowNodes.ts +189 -0
  84. package/client/src/hooks/useToolSchema.ts +209 -0
  85. package/client/src/hooks/useWhatsApp.ts +196 -0
  86. package/client/src/hooks/useWorkflowManagement.ts +46 -0
  87. package/client/src/index.css +315 -0
  88. package/client/src/main.tsx +19 -0
  89. package/client/src/nodeDefinitions/aiAgentNodes.ts +336 -0
  90. package/client/src/nodeDefinitions/aiModelNodes.ts +340 -0
  91. package/client/src/nodeDefinitions/androidDeviceNodes.ts +140 -0
  92. package/client/src/nodeDefinitions/androidServiceNodes.ts +383 -0
  93. package/client/src/nodeDefinitions/chatNodes.ts +135 -0
  94. package/client/src/nodeDefinitions/codeNodes.ts +54 -0
  95. package/client/src/nodeDefinitions/documentNodes.ts +379 -0
  96. package/client/src/nodeDefinitions/index.ts +15 -0
  97. package/client/src/nodeDefinitions/locationNodes.ts +463 -0
  98. package/client/src/nodeDefinitions/schedulerNodes.ts +220 -0
  99. package/client/src/nodeDefinitions/skillNodes.ts +211 -0
  100. package/client/src/nodeDefinitions/toolNodes.ts +198 -0
  101. package/client/src/nodeDefinitions/utilityNodes.ts +284 -0
  102. package/client/src/nodeDefinitions/whatsappNodes.ts +865 -0
  103. package/client/src/nodeDefinitions/workflowNodes.ts +41 -0
  104. package/client/src/nodeDefinitions.ts +104 -0
  105. package/client/src/schemas/workflowSchema.ts +264 -0
  106. package/client/src/services/dynamicParameterService.ts +96 -0
  107. package/client/src/services/execution/aiAgentExecutionService.ts +35 -0
  108. package/client/src/services/executionService.ts +232 -0
  109. package/client/src/services/workflowApi.ts +91 -0
  110. package/client/src/store/useAppStore.ts +582 -0
  111. package/client/src/styles/theme.ts +508 -0
  112. package/client/src/styles/zIndex.ts +17 -0
  113. package/client/src/types/ComponentTypes.ts +39 -0
  114. package/client/src/types/EdgeCondition.ts +231 -0
  115. package/client/src/types/INodeProperties.ts +288 -0
  116. package/client/src/types/NodeTypes.ts +28 -0
  117. package/client/src/utils/formatters.ts +33 -0
  118. package/client/src/utils/googleMapsLoader.ts +140 -0
  119. package/client/src/utils/locationUtils.ts +85 -0
  120. package/client/src/utils/nodeUtils.ts +31 -0
  121. package/client/src/utils/workflow.ts +30 -0
  122. package/client/src/utils/workflowExport.ts +120 -0
  123. package/client/src/vite-env.d.ts +12 -0
  124. package/client/tailwind.config.js +60 -0
  125. package/client/tsconfig.json +25 -0
  126. package/client/tsconfig.node.json +11 -0
  127. package/client/vite.config.js +35 -0
  128. package/docker-compose.prod.yml +107 -0
  129. package/docker-compose.yml +104 -0
  130. package/docs-MachinaOs/README.md +85 -0
  131. package/docs-MachinaOs/deployment/docker.mdx +228 -0
  132. package/docs-MachinaOs/deployment/production.mdx +345 -0
  133. package/docs-MachinaOs/docs.json +75 -0
  134. package/docs-MachinaOs/faq.mdx +309 -0
  135. package/docs-MachinaOs/favicon.svg +5 -0
  136. package/docs-MachinaOs/installation.mdx +160 -0
  137. package/docs-MachinaOs/introduction.mdx +114 -0
  138. package/docs-MachinaOs/logo/dark.svg +6 -0
  139. package/docs-MachinaOs/logo/light.svg +6 -0
  140. package/docs-MachinaOs/nodes/ai-agent.mdx +216 -0
  141. package/docs-MachinaOs/nodes/ai-models.mdx +240 -0
  142. package/docs-MachinaOs/nodes/android.mdx +411 -0
  143. package/docs-MachinaOs/nodes/overview.mdx +181 -0
  144. package/docs-MachinaOs/nodes/schedulers.mdx +316 -0
  145. package/docs-MachinaOs/nodes/webhooks.mdx +330 -0
  146. package/docs-MachinaOs/nodes/whatsapp.mdx +305 -0
  147. package/docs-MachinaOs/quickstart.mdx +119 -0
  148. package/docs-MachinaOs/tutorials/ai-agent-workflow.mdx +177 -0
  149. package/docs-MachinaOs/tutorials/android-automation.mdx +242 -0
  150. package/docs-MachinaOs/tutorials/first-workflow.mdx +134 -0
  151. package/docs-MachinaOs/tutorials/whatsapp-automation.mdx +185 -0
  152. package/nul +0 -0
  153. package/package.json +70 -0
  154. package/scripts/build.js +158 -0
  155. package/scripts/check-ports.ps1 +33 -0
  156. package/scripts/clean.js +40 -0
  157. package/scripts/docker.js +93 -0
  158. package/scripts/kill-port.ps1 +154 -0
  159. package/scripts/start.js +210 -0
  160. package/scripts/stop.js +325 -0
  161. package/server/.dockerignore +44 -0
  162. package/server/Dockerfile +45 -0
  163. package/server/constants.py +249 -0
  164. package/server/core/__init__.py +1 -0
  165. package/server/core/cache.py +461 -0
  166. package/server/core/config.py +128 -0
  167. package/server/core/container.py +99 -0
  168. package/server/core/database.py +1211 -0
  169. package/server/core/logging.py +314 -0
  170. package/server/main.py +289 -0
  171. package/server/middleware/__init__.py +5 -0
  172. package/server/middleware/auth.py +89 -0
  173. package/server/models/__init__.py +1 -0
  174. package/server/models/auth.py +52 -0
  175. package/server/models/cache.py +24 -0
  176. package/server/models/database.py +211 -0
  177. package/server/models/nodes.py +455 -0
  178. package/server/package.json +9 -0
  179. package/server/pyproject.toml +72 -0
  180. package/server/requirements.txt +83 -0
  181. package/server/routers/__init__.py +1 -0
  182. package/server/routers/android.py +294 -0
  183. package/server/routers/auth.py +203 -0
  184. package/server/routers/database.py +151 -0
  185. package/server/routers/maps.py +142 -0
  186. package/server/routers/nodejs_compat.py +289 -0
  187. package/server/routers/webhook.py +90 -0
  188. package/server/routers/websocket.py +2127 -0
  189. package/server/routers/whatsapp.py +761 -0
  190. package/server/routers/workflow.py +200 -0
  191. package/server/services/__init__.py +1 -0
  192. package/server/services/ai.py +2415 -0
  193. package/server/services/android/__init__.py +27 -0
  194. package/server/services/android/broadcaster.py +114 -0
  195. package/server/services/android/client.py +608 -0
  196. package/server/services/android/manager.py +78 -0
  197. package/server/services/android/protocol.py +165 -0
  198. package/server/services/android_service.py +588 -0
  199. package/server/services/auth.py +131 -0
  200. package/server/services/chat_client.py +160 -0
  201. package/server/services/deployment/__init__.py +12 -0
  202. package/server/services/deployment/manager.py +706 -0
  203. package/server/services/deployment/state.py +47 -0
  204. package/server/services/deployment/triggers.py +275 -0
  205. package/server/services/event_waiter.py +785 -0
  206. package/server/services/execution/__init__.py +77 -0
  207. package/server/services/execution/cache.py +769 -0
  208. package/server/services/execution/conditions.py +373 -0
  209. package/server/services/execution/dlq.py +132 -0
  210. package/server/services/execution/executor.py +1351 -0
  211. package/server/services/execution/models.py +531 -0
  212. package/server/services/execution/recovery.py +235 -0
  213. package/server/services/handlers/__init__.py +126 -0
  214. package/server/services/handlers/ai.py +355 -0
  215. package/server/services/handlers/android.py +260 -0
  216. package/server/services/handlers/code.py +278 -0
  217. package/server/services/handlers/document.py +598 -0
  218. package/server/services/handlers/http.py +193 -0
  219. package/server/services/handlers/polyglot.py +105 -0
  220. package/server/services/handlers/tools.py +845 -0
  221. package/server/services/handlers/triggers.py +107 -0
  222. package/server/services/handlers/utility.py +822 -0
  223. package/server/services/handlers/whatsapp.py +476 -0
  224. package/server/services/maps.py +289 -0
  225. package/server/services/memory_store.py +103 -0
  226. package/server/services/node_executor.py +375 -0
  227. package/server/services/parameter_resolver.py +218 -0
  228. package/server/services/polyglot_client.py +169 -0
  229. package/server/services/scheduler.py +155 -0
  230. package/server/services/skill_loader.py +417 -0
  231. package/server/services/status_broadcaster.py +826 -0
  232. package/server/services/temporal/__init__.py +23 -0
  233. package/server/services/temporal/activities.py +344 -0
  234. package/server/services/temporal/client.py +76 -0
  235. package/server/services/temporal/executor.py +147 -0
  236. package/server/services/temporal/worker.py +251 -0
  237. package/server/services/temporal/workflow.py +355 -0
  238. package/server/services/temporal/ws_client.py +236 -0
  239. package/server/services/text.py +111 -0
  240. package/server/services/user_auth.py +172 -0
  241. package/server/services/websocket_client.py +29 -0
  242. package/server/services/workflow.py +597 -0
  243. package/server/skills/android-skill/SKILL.md +82 -0
  244. package/server/skills/assistant-personality/SKILL.md +45 -0
  245. package/server/skills/code-skill/SKILL.md +140 -0
  246. package/server/skills/http-skill/SKILL.md +161 -0
  247. package/server/skills/maps-skill/SKILL.md +170 -0
  248. package/server/skills/memory-skill/SKILL.md +154 -0
  249. package/server/skills/scheduler-skill/SKILL.md +84 -0
  250. package/server/skills/whatsapp-skill/SKILL.md +283 -0
  251. package/server/uv.lock +2916 -0
  252. package/server/whatsapp-rpc/.dockerignore +30 -0
  253. package/server/whatsapp-rpc/Dockerfile +44 -0
  254. package/server/whatsapp-rpc/Dockerfile.web +17 -0
  255. package/server/whatsapp-rpc/README.md +139 -0
  256. package/server/whatsapp-rpc/cli.js +95 -0
  257. package/server/whatsapp-rpc/configs/config.yaml +7 -0
  258. package/server/whatsapp-rpc/docker-compose.yml +35 -0
  259. package/server/whatsapp-rpc/docs/API.md +410 -0
  260. package/server/whatsapp-rpc/go.mod +67 -0
  261. package/server/whatsapp-rpc/go.sum +203 -0
  262. package/server/whatsapp-rpc/package.json +30 -0
  263. package/server/whatsapp-rpc/schema.json +1294 -0
  264. package/server/whatsapp-rpc/scripts/clean.cjs +66 -0
  265. package/server/whatsapp-rpc/scripts/cli.js +162 -0
  266. package/server/whatsapp-rpc/src/go/cmd/server/main.go +91 -0
  267. package/server/whatsapp-rpc/src/go/config/config.go +49 -0
  268. package/server/whatsapp-rpc/src/go/rpc/rpc.go +446 -0
  269. package/server/whatsapp-rpc/src/go/rpc/server.go +112 -0
  270. package/server/whatsapp-rpc/src/go/whatsapp/history.go +166 -0
  271. package/server/whatsapp-rpc/src/go/whatsapp/messages.go +390 -0
  272. package/server/whatsapp-rpc/src/go/whatsapp/service.go +2130 -0
  273. package/server/whatsapp-rpc/src/go/whatsapp/types.go +261 -0
  274. package/server/whatsapp-rpc/src/python/pyproject.toml +15 -0
  275. package/server/whatsapp-rpc/src/python/whatsapp_rpc/__init__.py +4 -0
  276. package/server/whatsapp-rpc/src/python/whatsapp_rpc/client.py +427 -0
  277. package/server/whatsapp-rpc/web/app.py +609 -0
  278. package/server/whatsapp-rpc/web/requirements.txt +6 -0
  279. package/server/whatsapp-rpc/web/rpc_client.py +427 -0
  280. package/server/whatsapp-rpc/web/static/openapi.yaml +59 -0
  281. package/server/whatsapp-rpc/web/templates/base.html +150 -0
  282. package/server/whatsapp-rpc/web/templates/contacts.html +240 -0
  283. package/server/whatsapp-rpc/web/templates/dashboard.html +320 -0
  284. package/server/whatsapp-rpc/web/templates/groups.html +328 -0
  285. package/server/whatsapp-rpc/web/templates/messages.html +465 -0
  286. package/server/whatsapp-rpc/web/templates/messaging.html +681 -0
  287. package/server/whatsapp-rpc/web/templates/send.html +259 -0
  288. package/server/whatsapp-rpc/web/templates/settings.html +459 -0
@@ -0,0 +1,463 @@
1
+ // Location Node Definitions - GPS, Maps, and Geolocation Services
2
+ import {
3
+ INodeTypeDescription,
4
+ NodeConnectionType
5
+ } from '../types/INodeProperties';
6
+
7
+ // ============================================================================
8
+ // LOCATION NODES - GPS, Maps, and Geolocation Services
9
+ // ============================================================================
10
+
11
+ export const locationNodes: Record<string, INodeTypeDescription> = {
12
+ // ============================================================================
13
+ // GOOGLE MAPS NODES - Map Creation and Places Integration
14
+ // ============================================================================
15
+
16
+ // Create Map - Initialize Google Maps JavaScript API with coordinates
17
+ createMap: {
18
+ displayName: 'Create Map',
19
+ name: 'createMap',
20
+ icon: '🗺️',
21
+ group: ['location', 'service'],
22
+ version: 1,
23
+ subtitle: 'Initialize Google Map',
24
+ description: 'Creates an interactive Google Map using the Maps JavaScript API with customizable center, zoom, and map type',
25
+ defaults: { name: 'Create Map', color: '#1A73E8' },
26
+ inputs: [{
27
+ name: 'main',
28
+ displayName: 'Map Configuration',
29
+ type: 'main' as NodeConnectionType,
30
+ description: 'Input configuration for map initialization',
31
+ required: false
32
+ }],
33
+ outputs: [{
34
+ name: 'main',
35
+ displayName: 'Map Output',
36
+ type: 'main' as NodeConnectionType,
37
+ description: 'Map configuration and reference'
38
+ }],
39
+ credentials: [{
40
+ name: 'googleMapsApi',
41
+ required: true,
42
+ displayName: 'Google Maps API Key'
43
+ }],
44
+ properties: [
45
+ { displayName: 'Center Latitude', name: 'lat', type: 'number', typeOptions: { minValue: -90, maxValue: 90, numberStepSize: 0.000001 }, default: 40.7128, required: true, description: 'Latitude for map center (decimal degrees)' },
46
+ { displayName: 'Center Longitude', name: 'lng', type: 'number', typeOptions: { minValue: -180, maxValue: 180, numberStepSize: 0.000001 }, default: -74.0060, required: true, description: 'Longitude for map center (decimal degrees)' },
47
+ { displayName: 'Zoom Level', name: 'zoom', type: 'number', typeOptions: { minValue: 0, maxValue: 21 }, default: 13, description: 'Map zoom level (0-21, where 21 is building level)' },
48
+ { displayName: 'Map Type', name: 'map_type_id', type: 'options', options: [
49
+ { name: 'Roadmap', value: 'ROADMAP' },
50
+ { name: 'Satellite', value: 'SATELLITE' },
51
+ { name: 'Hybrid', value: 'HYBRID' },
52
+ { name: 'Terrain', value: 'TERRAIN' }
53
+ ], default: 'ROADMAP', description: 'Google Maps display type' },
54
+ {
55
+ displayName: 'Options',
56
+ name: 'options',
57
+ type: 'collection',
58
+ placeholder: 'Add Option',
59
+ default: {},
60
+ options: [
61
+ {
62
+ displayName: 'Disable Default UI',
63
+ name: 'disable_default_ui',
64
+ type: 'boolean',
65
+ default: false,
66
+ description: 'Disable default Google Maps UI controls'
67
+ },
68
+ {
69
+ displayName: 'Zoom Control',
70
+ name: 'zoom_control',
71
+ type: 'boolean',
72
+ default: true,
73
+ description: 'Enable zoom control buttons'
74
+ },
75
+ {
76
+ displayName: 'Map Type Control',
77
+ name: 'map_type_control',
78
+ type: 'boolean',
79
+ default: true,
80
+ description: 'Enable map type selection control'
81
+ },
82
+ {
83
+ displayName: 'Street View Control',
84
+ name: 'street_view_control',
85
+ type: 'boolean',
86
+ default: true,
87
+ description: 'Enable street view control'
88
+ },
89
+ {
90
+ displayName: 'Fullscreen Control',
91
+ name: 'fullscreen_control',
92
+ type: 'boolean',
93
+ default: true,
94
+ description: 'Enable fullscreen control'
95
+ }
96
+ ] as any
97
+ }
98
+ ]
99
+ },
100
+
101
+ // Add Locations - Google Maps Geocoding Service (Dual-purpose: workflow node + AI tool)
102
+ addLocations: {
103
+ displayName: 'Add Locations',
104
+ name: 'addLocations',
105
+ icon: '🌍',
106
+ group: ['location', 'service', 'tool'], // 'tool' enables AI Agent tool calling
107
+ version: 1,
108
+ subtitle: 'Geocoding Service',
109
+ description: 'Use Google Maps Geocoding Service for address-to-coordinates conversion and reverse geocoding with detailed location information',
110
+ defaults: { name: 'Add Locations', color: '#34A853' },
111
+ inputs: [{
112
+ name: 'main',
113
+ displayName: 'Geocoding Input',
114
+ type: 'main' as NodeConnectionType,
115
+ description: 'Input address or coordinates for geocoding service',
116
+ required: false
117
+ }],
118
+ outputs: [{
119
+ name: 'main',
120
+ displayName: 'Geocoding Results',
121
+ type: 'main' as NodeConnectionType,
122
+ description: 'Geocoding service results with detailed location data'
123
+ }],
124
+ credentials: [{
125
+ name: 'googleMapsApi',
126
+ required: true,
127
+ displayName: 'Google Maps API Key'
128
+ }],
129
+ properties: [
130
+ { displayName: 'Service Type', name: 'service_type', type: 'options', options: [
131
+ { name: 'Geocoding (Address → LatLng)', value: 'geocode' },
132
+ { name: 'Reverse Geocoding (LatLng → Address)', value: 'reverse_geocode' }
133
+ ], default: 'geocode', required: true, description: 'Google Maps Geocoding service operation' },
134
+
135
+ // Geocoding Request Parameters
136
+ { displayName: 'Address Query', name: 'address', type: 'string', default: '', placeholder: 'e.g., "1600 Amphitheatre Parkway, Mountain View, CA"', required: true, displayOptions: { show: { service_type: ['geocode'] } }, description: 'The address to geocode' },
137
+
138
+ // Reverse Geocoding Parameters
139
+ { displayName: 'Location Latitude', name: 'lat', type: 'number', typeOptions: { minValue: -90, maxValue: 90, numberStepSize: 0.000001 }, default: 37.4224, required: true, displayOptions: { show: { service_type: ['reverse_geocode'] } }, description: 'Latitude for reverse geocoding' },
140
+ { displayName: 'Location Longitude', name: 'lng', type: 'number', typeOptions: { minValue: -180, maxValue: 180, numberStepSize: 0.000001 }, default: -122.0842, required: true, displayOptions: { show: { service_type: ['reverse_geocode'] } }, description: 'Longitude for reverse geocoding' },
141
+
142
+ {
143
+ displayName: 'Options',
144
+ name: 'options',
145
+ type: 'collection',
146
+ placeholder: 'Add Option',
147
+ default: {},
148
+ options: [
149
+ {
150
+ displayName: 'Result Types',
151
+ name: 'result_types',
152
+ type: 'multiOptions',
153
+ options: [
154
+ { name: 'Street Address', value: 'street_address' },
155
+ { name: 'Route', value: 'route' },
156
+ { name: 'Intersection', value: 'intersection' },
157
+ { name: 'Political', value: 'political' },
158
+ { name: 'Country', value: 'country' },
159
+ { name: 'Administrative Area Level 1', value: 'administrative_area_level_1' },
160
+ { name: 'Administrative Area Level 2', value: 'administrative_area_level_2' },
161
+ { name: 'Locality', value: 'locality' },
162
+ { name: 'Sublocality', value: 'sublocality' },
163
+ { name: 'Postal Code', value: 'postal_code' }
164
+ ],
165
+ default: [],
166
+ description: 'Filter results by address component types'
167
+ },
168
+ {
169
+ displayName: 'Location Types',
170
+ name: 'location_types',
171
+ type: 'multiOptions',
172
+ options: [
173
+ { name: 'Rooftop', value: 'ROOFTOP' },
174
+ { name: 'Range Interpolated', value: 'RANGE_INTERPOLATED' },
175
+ { name: 'Geometric Center', value: 'GEOMETRIC_CENTER' },
176
+ { name: 'Approximate', value: 'APPROXIMATE' }
177
+ ],
178
+ default: [],
179
+ description: 'Filter by location precision type'
180
+ },
181
+ {
182
+ displayName: 'Language',
183
+ name: 'language',
184
+ type: 'options',
185
+ options: [
186
+ { name: 'English', value: 'en' },
187
+ { name: 'Spanish', value: 'es' },
188
+ { name: 'French', value: 'fr' },
189
+ { name: 'German', value: 'de' },
190
+ { name: 'Italian', value: 'it' },
191
+ { name: 'Portuguese', value: 'pt' },
192
+ { name: 'Japanese', value: 'ja' },
193
+ { name: 'Korean', value: 'ko' },
194
+ { name: 'Chinese (Simplified)', value: 'zh-CN' },
195
+ { name: 'Russian', value: 'ru' },
196
+ { name: 'Arabic', value: 'ar' }
197
+ ],
198
+ default: 'en',
199
+ description: 'Language for returned results'
200
+ },
201
+ {
202
+ displayName: 'Region Bias',
203
+ name: 'region',
204
+ type: 'string',
205
+ default: '',
206
+ placeholder: 'e.g., "us", "uk", "jp"',
207
+ description: 'Region code for biasing results (ccTLD format)'
208
+ },
209
+ {
210
+ displayName: 'Component Restrictions',
211
+ name: 'component_restrictions',
212
+ type: 'string',
213
+ default: '',
214
+ placeholder: 'e.g., "country:US|administrative_area:CA"',
215
+ description: 'Component-based filtering (pipe-separated)'
216
+ }
217
+ ] as any
218
+ }
219
+ ]
220
+ },
221
+
222
+ // Show Nearby Places - Google Maps Places API nearbySearch (Dual-purpose: workflow node + AI tool)
223
+ showNearbyPlaces: {
224
+ displayName: 'Show Nearby Places',
225
+ name: 'showNearbyPlaces',
226
+ icon: '🔍',
227
+ group: ['location', 'service', 'tool'], // 'tool' enables AI Agent tool calling
228
+ version: 1,
229
+ subtitle: 'Places API nearbySearch',
230
+ description: 'Search for places near a location using Google Maps Places API nearbySearch with detailed place information in JSON format',
231
+ defaults: { name: 'Show Nearby Places', color: '#FF6D01' },
232
+ inputs: [{
233
+ name: 'main',
234
+ displayName: 'Search Parameters',
235
+ type: 'main' as NodeConnectionType,
236
+ description: 'Input search parameters for nearby places',
237
+ required: false
238
+ }],
239
+ outputs: [{
240
+ name: 'main',
241
+ displayName: 'Places Results',
242
+ type: 'main' as NodeConnectionType,
243
+ description: 'Places API nearbySearch results with place details JSON'
244
+ }],
245
+ credentials: [{
246
+ name: 'googleMapsApi',
247
+ required: true,
248
+ displayName: 'Google Maps API Key'
249
+ }],
250
+ properties: [
251
+ // Required Parameters (matching Places API nearbySearch)
252
+ { displayName: 'Location Latitude', name: 'lat', type: 'number', typeOptions: { minValue: -90, maxValue: 90, numberStepSize: 0.000001 }, default: 40.7484, required: true, description: 'Center latitude for nearbySearch (required)' },
253
+ { displayName: 'Location Longitude', name: 'lng', type: 'number', typeOptions: { minValue: -180, maxValue: 180, numberStepSize: 0.000001 }, default: -73.9857, required: true, description: 'Center longitude for nearbySearch (required)' },
254
+ { displayName: 'Radius (meters)', name: 'radius', type: 'number', typeOptions: { minValue: 1, maxValue: 50000 }, default: 500, required: true, description: 'Search radius in meters (max 50,000m)' },
255
+
256
+ // Place Types (official Google Places API types)
257
+ { displayName: 'Place Type', name: 'type', type: 'options', options: [
258
+ { name: 'Accounting', value: 'accounting' },
259
+ { name: 'Airport', value: 'airport' },
260
+ { name: 'Amusement Park', value: 'amusement_park' },
261
+ { name: 'Aquarium', value: 'aquarium' },
262
+ { name: 'Art Gallery', value: 'art_gallery' },
263
+ { name: 'ATM', value: 'atm' },
264
+ { name: 'Bakery', value: 'bakery' },
265
+ { name: 'Bank', value: 'bank' },
266
+ { name: 'Bar', value: 'bar' },
267
+ { name: 'Beauty Salon', value: 'beauty_salon' },
268
+ { name: 'Bicycle Store', value: 'bicycle_store' },
269
+ { name: 'Book Store', value: 'book_store' },
270
+ { name: 'Bowling Alley', value: 'bowling_alley' },
271
+ { name: 'Bus Station', value: 'bus_station' },
272
+ { name: 'Cafe', value: 'cafe' },
273
+ { name: 'Campground', value: 'campground' },
274
+ { name: 'Car Dealer', value: 'car_dealer' },
275
+ { name: 'Car Rental', value: 'car_rental' },
276
+ { name: 'Car Repair', value: 'car_repair' },
277
+ { name: 'Car Wash', value: 'car_wash' },
278
+ { name: 'Casino', value: 'casino' },
279
+ { name: 'Cemetery', value: 'cemetery' },
280
+ { name: 'Church', value: 'church' },
281
+ { name: 'City Hall', value: 'city_hall' },
282
+ { name: 'Clothing Store', value: 'clothing_store' },
283
+ { name: 'Convenience Store', value: 'convenience_store' },
284
+ { name: 'Courthouse', value: 'courthouse' },
285
+ { name: 'Dentist', value: 'dentist' },
286
+ { name: 'Department Store', value: 'department_store' },
287
+ { name: 'Doctor', value: 'doctor' },
288
+ { name: 'Drugstore', value: 'drugstore' },
289
+ { name: 'Electrician', value: 'electrician' },
290
+ { name: 'Electronics Store', value: 'electronics_store' },
291
+ { name: 'Embassy', value: 'embassy' },
292
+ { name: 'Fire Station', value: 'fire_station' },
293
+ { name: 'Florist', value: 'florist' },
294
+ { name: 'Funeral Home', value: 'funeral_home' },
295
+ { name: 'Furniture Store', value: 'furniture_store' },
296
+ { name: 'Gas Station', value: 'gas_station' },
297
+ { name: 'Gym', value: 'gym' },
298
+ { name: 'Hair Care', value: 'hair_care' },
299
+ { name: 'Hardware Store', value: 'hardware_store' },
300
+ { name: 'Hindu Temple', value: 'hindu_temple' },
301
+ { name: 'Home Goods Store', value: 'home_goods_store' },
302
+ { name: 'Hospital', value: 'hospital' },
303
+ { name: 'Insurance Agency', value: 'insurance_agency' },
304
+ { name: 'Jewelry Store', value: 'jewelry_store' },
305
+ { name: 'Laundry', value: 'laundry' },
306
+ { name: 'Lawyer', value: 'lawyer' },
307
+ { name: 'Library', value: 'library' },
308
+ { name: 'Light Rail Station', value: 'light_rail_station' },
309
+ { name: 'Liquor Store', value: 'liquor_store' },
310
+ { name: 'Local Government Office', value: 'local_government_office' },
311
+ { name: 'Locksmith', value: 'locksmith' },
312
+ { name: 'Lodging', value: 'lodging' },
313
+ { name: 'Meal Delivery', value: 'meal_delivery' },
314
+ { name: 'Meal Takeaway', value: 'meal_takeaway' },
315
+ { name: 'Mosque', value: 'mosque' },
316
+ { name: 'Movie Rental', value: 'movie_rental' },
317
+ { name: 'Movie Theater', value: 'movie_theater' },
318
+ { name: 'Moving Company', value: 'moving_company' },
319
+ { name: 'Museum', value: 'museum' },
320
+ { name: 'Night Club', value: 'night_club' },
321
+ { name: 'Painter', value: 'painter' },
322
+ { name: 'Park', value: 'park' },
323
+ { name: 'Parking', value: 'parking' },
324
+ { name: 'Pet Store', value: 'pet_store' },
325
+ { name: 'Pharmacy', value: 'pharmacy' },
326
+ { name: 'Physiotherapist', value: 'physiotherapist' },
327
+ { name: 'Plumber', value: 'plumber' },
328
+ { name: 'Police', value: 'police' },
329
+ { name: 'Post Office', value: 'post_office' },
330
+ { name: 'Primary School', value: 'primary_school' },
331
+ { name: 'Real Estate Agency', value: 'real_estate_agency' },
332
+ { name: 'Restaurant', value: 'restaurant' },
333
+ { name: 'Roofing Contractor', value: 'roofing_contractor' },
334
+ { name: 'RV Park', value: 'rv_park' },
335
+ { name: 'School', value: 'school' },
336
+ { name: 'Secondary School', value: 'secondary_school' },
337
+ { name: 'Shoe Store', value: 'shoe_store' },
338
+ { name: 'Shopping Mall', value: 'shopping_mall' },
339
+ { name: 'Spa', value: 'spa' },
340
+ { name: 'Stadium', value: 'stadium' },
341
+ { name: 'Storage', value: 'storage' },
342
+ { name: 'Store', value: 'store' },
343
+ { name: 'Subway Station', value: 'subway_station' },
344
+ { name: 'Supermarket', value: 'supermarket' },
345
+ { name: 'Synagogue', value: 'synagogue' },
346
+ { name: 'Taxi Stand', value: 'taxi_stand' },
347
+ { name: 'Tourist Attraction', value: 'tourist_attraction' },
348
+ { name: 'Train Station', value: 'train_station' },
349
+ { name: 'Transit Station', value: 'transit_station' },
350
+ { name: 'Travel Agency', value: 'travel_agency' },
351
+ { name: 'University', value: 'university' },
352
+ { name: 'Veterinary Care', value: 'veterinary_care' },
353
+ { name: 'Zoo', value: 'zoo' }
354
+ ], default: 'restaurant', description: 'Google Places API place type filter' },
355
+
356
+ {
357
+ displayName: 'Options',
358
+ name: 'options',
359
+ type: 'collection',
360
+ placeholder: 'Add Option',
361
+ default: {},
362
+ options: [
363
+ {
364
+ displayName: 'Keyword',
365
+ name: 'keyword',
366
+ type: 'string',
367
+ default: '',
368
+ placeholder: 'e.g., "pizza", "italian", "24 hour"',
369
+ description: 'Keyword to match against place names and types'
370
+ },
371
+ {
372
+ displayName: 'Name Filter',
373
+ name: 'name',
374
+ type: 'string',
375
+ default: '',
376
+ placeholder: 'e.g., "Starbucks", "McDonald\'s"',
377
+ description: 'Match places with this name (equivalent to keyword but for names only)'
378
+ },
379
+ {
380
+ displayName: 'Min Price Level',
381
+ name: 'min_price',
382
+ type: 'options',
383
+ options: [
384
+ { name: 'Any', value: '' },
385
+ { name: 'Free (0)', value: 0 },
386
+ { name: 'Inexpensive (1)', value: 1 },
387
+ { name: 'Moderate (2)', value: 2 },
388
+ { name: 'Expensive (3)', value: 3 },
389
+ { name: 'Very Expensive (4)', value: 4 }
390
+ ],
391
+ default: '',
392
+ description: 'Minimum price level (0-4)'
393
+ },
394
+ {
395
+ displayName: 'Max Price Level',
396
+ name: 'max_price',
397
+ type: 'options',
398
+ options: [
399
+ { name: 'Any', value: '' },
400
+ { name: 'Free (0)', value: 0 },
401
+ { name: 'Inexpensive (1)', value: 1 },
402
+ { name: 'Moderate (2)', value: 2 },
403
+ { name: 'Expensive (3)', value: 3 },
404
+ { name: 'Very Expensive (4)', value: 4 }
405
+ ],
406
+ default: '',
407
+ description: 'Maximum price level (0-4)'
408
+ },
409
+ {
410
+ displayName: 'Open Now',
411
+ name: 'open_now',
412
+ type: 'boolean',
413
+ default: false,
414
+ description: 'Only return places open at query time'
415
+ },
416
+ {
417
+ displayName: 'Language',
418
+ name: 'language',
419
+ type: 'options',
420
+ options: [
421
+ { name: 'English', value: 'en' },
422
+ { name: 'Spanish', value: 'es' },
423
+ { name: 'French', value: 'fr' },
424
+ { name: 'German', value: 'de' },
425
+ { name: 'Italian', value: 'it' },
426
+ { name: 'Portuguese', value: 'pt' },
427
+ { name: 'Japanese', value: 'ja' },
428
+ { name: 'Korean', value: 'ko' },
429
+ { name: 'Chinese (Simplified)', value: 'zh-CN' },
430
+ { name: 'Russian', value: 'ru' },
431
+ { name: 'Arabic', value: 'ar' },
432
+ { name: 'Hindi', value: 'hi' }
433
+ ],
434
+ default: 'en',
435
+ description: 'Language for place names and information'
436
+ },
437
+ {
438
+ displayName: 'Rank By',
439
+ name: 'rank_by',
440
+ type: 'options',
441
+ options: [
442
+ { name: 'Prominence (Default)', value: 'prominence' },
443
+ { name: 'Distance', value: 'distance' }
444
+ ],
445
+ default: 'prominence',
446
+ description: 'How to rank the results. When using distance, radius parameter is ignored.'
447
+ },
448
+ {
449
+ displayName: 'Page Size',
450
+ name: 'page_size',
451
+ type: 'number',
452
+ typeOptions: { minValue: 1, maxValue: 20 },
453
+ default: 20,
454
+ description: 'Number of results per page (max 20)'
455
+ }
456
+ ] as any
457
+ }
458
+ ]
459
+ }
460
+ };
461
+
462
+ // List of Google Maps node types for easy identification
463
+ export const LOCATION_NODE_TYPES = ['createMap', 'addLocations', 'showNearbyPlaces'];
@@ -0,0 +1,220 @@
1
+ // Scheduler Nodes - Time-based workflow triggers
2
+ import { INodeTypeDescription, NodeConnectionType } from '../types/INodeProperties';
3
+
4
+ export const schedulerNodes: Record<string, INodeTypeDescription> = {
5
+ // Timer node - Simple delay/wait before proceeding
6
+ timer: {
7
+ displayName: 'Timer',
8
+ name: 'timer',
9
+ icon: '⏱️',
10
+ group: ['utility', 'workflow'],
11
+ version: 1,
12
+ subtitle: '={{$parameter["duration"]}} {{$parameter["unit"]}}',
13
+ description: 'Wait for a specified duration before continuing',
14
+ defaults: { name: 'Timer', color: '#10b981' },
15
+ inputs: [{
16
+ name: 'main',
17
+ displayName: 'Input',
18
+ type: 'main' as NodeConnectionType,
19
+ description: 'Trigger to start timer'
20
+ }],
21
+ outputs: [{
22
+ name: 'main',
23
+ displayName: 'Output',
24
+ type: 'main' as NodeConnectionType,
25
+ description: 'timestamp, elapsed_ms, duration, unit'
26
+ }],
27
+ properties: [
28
+ {
29
+ displayName: 'Duration',
30
+ name: 'duration',
31
+ type: 'number',
32
+ default: 5,
33
+ required: true,
34
+ description: 'How long to wait',
35
+ typeOptions: {
36
+ minValue: 1,
37
+ maxValue: 3600
38
+ }
39
+ },
40
+ {
41
+ displayName: 'Unit',
42
+ name: 'unit',
43
+ type: 'options',
44
+ default: 'seconds',
45
+ options: [
46
+ { name: 'Seconds', value: 'seconds' },
47
+ { name: 'Minutes', value: 'minutes' },
48
+ { name: 'Hours', value: 'hours' }
49
+ ],
50
+ description: 'Time unit for duration'
51
+ }
52
+ ]
53
+ },
54
+
55
+ // Cron Scheduler - Recurring scheduled execution
56
+ cronScheduler: {
57
+ displayName: 'Cron Scheduler',
58
+ name: 'cronScheduler',
59
+ icon: '⏰',
60
+ group: ['trigger', 'workflow'],
61
+ version: 1,
62
+ subtitle: '={{$parameter["frequency"]}}',
63
+ description: 'Trigger workflow execution on a schedule',
64
+ defaults: { name: 'Cron Scheduler', color: '#6366f1' },
65
+ inputs: [],
66
+ outputs: [{
67
+ name: 'main',
68
+ displayName: 'Trigger',
69
+ type: 'main' as NodeConnectionType,
70
+ description: 'timestamp, iteration, scheduled_time, next_run'
71
+ }],
72
+ properties: [
73
+ // Duration Type
74
+ {
75
+ displayName: 'Duration',
76
+ name: 'frequency',
77
+ type: 'options',
78
+ default: 'minutes',
79
+ options: [
80
+ { name: 'Seconds', value: 'seconds' },
81
+ { name: 'Minutes', value: 'minutes' },
82
+ { name: 'Hours', value: 'hours' },
83
+ { name: 'Days', value: 'days' },
84
+ { name: 'Weeks', value: 'weeks' },
85
+ { name: 'Months', value: 'months' },
86
+ { name: 'Once (No Repeat)', value: 'once' },
87
+ ],
88
+ description: 'Wait duration before triggering'
89
+ },
90
+ // Interval for seconds/minutes/hours
91
+ {
92
+ displayName: 'Interval',
93
+ name: 'interval',
94
+ type: 'number',
95
+ default: 30,
96
+ description: 'Run every X seconds (5-59)',
97
+ displayOptions: { show: { frequency: ['seconds'] } }
98
+ },
99
+ {
100
+ displayName: 'Interval',
101
+ name: 'intervalMinutes',
102
+ type: 'number',
103
+ default: 5,
104
+ description: 'Run every X minutes (1-59)',
105
+ displayOptions: { show: { frequency: ['minutes'] } }
106
+ },
107
+ {
108
+ displayName: 'Interval',
109
+ name: 'intervalHours',
110
+ type: 'number',
111
+ default: 1,
112
+ description: 'Run every X hours (1-23)',
113
+ displayOptions: { show: { frequency: ['hours'] } }
114
+ },
115
+ // Time for daily
116
+ {
117
+ displayName: 'At Time',
118
+ name: 'dailyTime',
119
+ type: 'options',
120
+ default: '09:00',
121
+ options: [
122
+ { name: '00:00 (Midnight)', value: '00:00' },
123
+ { name: '06:00', value: '06:00' },
124
+ { name: '08:00', value: '08:00' },
125
+ { name: '09:00', value: '09:00' },
126
+ { name: '10:00', value: '10:00' },
127
+ { name: '12:00 (Noon)', value: '12:00' },
128
+ { name: '14:00', value: '14:00' },
129
+ { name: '16:00', value: '16:00' },
130
+ { name: '18:00', value: '18:00' },
131
+ { name: '20:00', value: '20:00' },
132
+ { name: '22:00', value: '22:00' },
133
+ ],
134
+ description: 'Time to run daily',
135
+ displayOptions: { show: { frequency: ['days'] } }
136
+ },
137
+ // Weekday + Time for weekly
138
+ {
139
+ displayName: 'On Day',
140
+ name: 'weekday',
141
+ type: 'options',
142
+ default: '1',
143
+ options: [
144
+ { name: 'Sunday', value: '0' },
145
+ { name: 'Monday', value: '1' },
146
+ { name: 'Tuesday', value: '2' },
147
+ { name: 'Wednesday', value: '3' },
148
+ { name: 'Thursday', value: '4' },
149
+ { name: 'Friday', value: '5' },
150
+ { name: 'Saturday', value: '6' },
151
+ ],
152
+ description: 'Day of week',
153
+ displayOptions: { show: { frequency: ['weeks'] } }
154
+ },
155
+ {
156
+ displayName: 'At Time',
157
+ name: 'weeklyTime',
158
+ type: 'options',
159
+ default: '09:00',
160
+ options: [
161
+ { name: '00:00 (Midnight)', value: '00:00' },
162
+ { name: '06:00', value: '06:00' },
163
+ { name: '08:00', value: '08:00' },
164
+ { name: '09:00', value: '09:00' },
165
+ { name: '12:00 (Noon)', value: '12:00' },
166
+ { name: '18:00', value: '18:00' },
167
+ ],
168
+ description: 'Time to run',
169
+ displayOptions: { show: { frequency: ['weeks'] } }
170
+ },
171
+ // Day of month + Time for monthly
172
+ {
173
+ displayName: 'On Day',
174
+ name: 'monthDay',
175
+ type: 'options',
176
+ default: '1',
177
+ options: [
178
+ ...Array.from({ length: 28 }, (_, i) => ({ name: `${i + 1}`, value: String(i + 1) })),
179
+ { name: 'Last day', value: 'L' },
180
+ ],
181
+ description: 'Day of month',
182
+ displayOptions: { show: { frequency: ['months'] } }
183
+ },
184
+ {
185
+ displayName: 'At Time',
186
+ name: 'monthlyTime',
187
+ type: 'options',
188
+ default: '09:00',
189
+ options: [
190
+ { name: '00:00 (Midnight)', value: '00:00' },
191
+ { name: '06:00', value: '06:00' },
192
+ { name: '09:00', value: '09:00' },
193
+ { name: '12:00 (Noon)', value: '12:00' },
194
+ { name: '18:00', value: '18:00' },
195
+ ],
196
+ description: 'Time to run',
197
+ displayOptions: { show: { frequency: ['months'] } }
198
+ },
199
+ // Timezone for schedule
200
+ {
201
+ displayName: 'Timezone',
202
+ name: 'timezone',
203
+ type: 'options',
204
+ default: 'UTC',
205
+ options: [
206
+ { name: 'UTC', value: 'UTC' },
207
+ { name: 'US Eastern', value: 'America/New_York' },
208
+ { name: 'US Pacific', value: 'America/Los_Angeles' },
209
+ { name: 'UK', value: 'Europe/London' },
210
+ { name: 'Europe Central', value: 'Europe/Paris' },
211
+ { name: 'Japan', value: 'Asia/Tokyo' },
212
+ { name: 'India', value: 'Asia/Kolkata' },
213
+ ],
214
+ description: 'Timezone for schedule'
215
+ }
216
+ ]
217
+ }
218
+ };
219
+
220
+ export const SCHEDULER_NODE_TYPES = ['timer', 'cronScheduler'];