├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── screenshots ├── screenshot1.png ├── screenshot10.png ├── screenshot11.png ├── screenshot12.png ├── screenshot13.png ├── screenshot14.png ├── screenshot15.png ├── screenshot16.png ├── screenshot2.png ├── screenshot3.png ├── screenshot4.png ├── screenshot5.png ├── screenshot6.png ├── screenshot7.png ├── screenshot8.gif └── screenshot9.jpg ├── src ├── FileCabinet │ └── SuiteScripts │ │ └── NetSuite ChatGPT Integration │ │ ├── .attributes │ │ ├── .folder.attr.xml │ │ ├── NetSuiteChatGPTIntegration_SL.js.attr.xml │ │ └── NetSuiteChatGPTIntegration_UE.js.attr.xml │ │ ├── NetSuiteChatGPTIntegration_SL.js │ │ ├── NetSuiteChatGPTIntegration_UE.js │ │ ├── html │ │ └── chat.html │ │ ├── img │ │ ├── chatgpt-logo.png │ │ └── openai-logo.png │ │ └── sounds │ │ ├── click.mp3 │ │ ├── incoming.mp3 │ │ └── pop.mp3 ├── Objects │ ├── customscript_ns_chatgpt_integration_sl.xml │ └── customscript_ns_chatgpt_integration_ue.xml ├── deploy.xml └── manifest.xml └── suitecloud.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/README.md -------------------------------------------------------------------------------- /screenshots/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/screenshots/screenshot1.png -------------------------------------------------------------------------------- /screenshots/screenshot10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/screenshots/screenshot10.png -------------------------------------------------------------------------------- /screenshots/screenshot11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/screenshots/screenshot11.png -------------------------------------------------------------------------------- /screenshots/screenshot12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/screenshots/screenshot12.png -------------------------------------------------------------------------------- /screenshots/screenshot13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/screenshots/screenshot13.png -------------------------------------------------------------------------------- /screenshots/screenshot14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/screenshots/screenshot14.png -------------------------------------------------------------------------------- /screenshots/screenshot15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/screenshots/screenshot15.png -------------------------------------------------------------------------------- /screenshots/screenshot16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/screenshots/screenshot16.png -------------------------------------------------------------------------------- /screenshots/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/screenshots/screenshot2.png -------------------------------------------------------------------------------- /screenshots/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/screenshots/screenshot3.png -------------------------------------------------------------------------------- /screenshots/screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/screenshots/screenshot4.png -------------------------------------------------------------------------------- /screenshots/screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/screenshots/screenshot5.png -------------------------------------------------------------------------------- /screenshots/screenshot6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/screenshots/screenshot6.png -------------------------------------------------------------------------------- /screenshots/screenshot7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/screenshots/screenshot7.png -------------------------------------------------------------------------------- /screenshots/screenshot8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/screenshots/screenshot8.gif -------------------------------------------------------------------------------- /screenshots/screenshot9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/screenshots/screenshot9.jpg -------------------------------------------------------------------------------- /src/FileCabinet/SuiteScripts/NetSuite ChatGPT Integration/.attributes/.folder.attr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/src/FileCabinet/SuiteScripts/NetSuite ChatGPT Integration/.attributes/.folder.attr.xml -------------------------------------------------------------------------------- /src/FileCabinet/SuiteScripts/NetSuite ChatGPT Integration/.attributes/NetSuiteChatGPTIntegration_SL.js.attr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/src/FileCabinet/SuiteScripts/NetSuite ChatGPT Integration/.attributes/NetSuiteChatGPTIntegration_SL.js.attr.xml -------------------------------------------------------------------------------- /src/FileCabinet/SuiteScripts/NetSuite ChatGPT Integration/.attributes/NetSuiteChatGPTIntegration_UE.js.attr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/src/FileCabinet/SuiteScripts/NetSuite ChatGPT Integration/.attributes/NetSuiteChatGPTIntegration_UE.js.attr.xml -------------------------------------------------------------------------------- /src/FileCabinet/SuiteScripts/NetSuite ChatGPT Integration/NetSuiteChatGPTIntegration_SL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/src/FileCabinet/SuiteScripts/NetSuite ChatGPT Integration/NetSuiteChatGPTIntegration_SL.js -------------------------------------------------------------------------------- /src/FileCabinet/SuiteScripts/NetSuite ChatGPT Integration/NetSuiteChatGPTIntegration_UE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/src/FileCabinet/SuiteScripts/NetSuite ChatGPT Integration/NetSuiteChatGPTIntegration_UE.js -------------------------------------------------------------------------------- /src/FileCabinet/SuiteScripts/NetSuite ChatGPT Integration/html/chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/src/FileCabinet/SuiteScripts/NetSuite ChatGPT Integration/html/chat.html -------------------------------------------------------------------------------- /src/FileCabinet/SuiteScripts/NetSuite ChatGPT Integration/img/chatgpt-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/src/FileCabinet/SuiteScripts/NetSuite ChatGPT Integration/img/chatgpt-logo.png -------------------------------------------------------------------------------- /src/FileCabinet/SuiteScripts/NetSuite ChatGPT Integration/img/openai-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/src/FileCabinet/SuiteScripts/NetSuite ChatGPT Integration/img/openai-logo.png -------------------------------------------------------------------------------- /src/FileCabinet/SuiteScripts/NetSuite ChatGPT Integration/sounds/click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/src/FileCabinet/SuiteScripts/NetSuite ChatGPT Integration/sounds/click.mp3 -------------------------------------------------------------------------------- /src/FileCabinet/SuiteScripts/NetSuite ChatGPT Integration/sounds/incoming.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/src/FileCabinet/SuiteScripts/NetSuite ChatGPT Integration/sounds/incoming.mp3 -------------------------------------------------------------------------------- /src/FileCabinet/SuiteScripts/NetSuite ChatGPT Integration/sounds/pop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/src/FileCabinet/SuiteScripts/NetSuite ChatGPT Integration/sounds/pop.mp3 -------------------------------------------------------------------------------- /src/Objects/customscript_ns_chatgpt_integration_sl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/src/Objects/customscript_ns_chatgpt_integration_sl.xml -------------------------------------------------------------------------------- /src/Objects/customscript_ns_chatgpt_integration_ue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/src/Objects/customscript_ns_chatgpt_integration_ue.xml -------------------------------------------------------------------------------- /src/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/src/deploy.xml -------------------------------------------------------------------------------- /src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/src/manifest.xml -------------------------------------------------------------------------------- /suitecloud.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmihaylov/netsuite-chatgpt-integration/HEAD/suitecloud.config.js --------------------------------------------------------------------------------