├── .gitignore ├── .vscode └── extensions.json ├── LICENSE.txt ├── MCP-Sample-Tools ├── .gitignore ├── README.md ├── __tests__ │ ├── __utils__ │ │ └── handleErrors.js │ ├── customermanagement.test.js │ ├── financial.test.js │ ├── inventory.test.js │ ├── salesandorders.test.js │ ├── sample-test.js │ └── suiteql.test.js ├── jest.config.js ├── package-lock.json ├── package.json ├── src │ ├── FileCabinet │ │ └── SuiteScripts │ │ │ ├── customermanagement_acp.js │ │ │ ├── customermanagement_schema_acp.json │ │ │ ├── financial_acp.js │ │ │ ├── financial_schema_acp.json │ │ │ ├── inventory_acp.js │ │ │ ├── inventory_schema_acp.json │ │ │ ├── salesandorders_acp.js │ │ │ ├── salesandorders_schema_acp.json │ │ │ ├── suiteql_acp.js │ │ │ └── suiteql_schema_acp.json │ ├── Objects │ │ ├── customtool_customermanagement_acp.xml │ │ ├── customtool_financial_acp.xml │ │ ├── customtool_inventory_acp.xml │ │ ├── customtool_salesandorders_acp.xml │ │ └── customtool_suiteql_acp.xml │ ├── deploy.xml │ └── manifest.xml └── suitecloud.config.js ├── README.md ├── SECURITY.md ├── samples-catalog.json ├── spa-suiteapp-samples ├── .gitignore ├── README.md ├── airport360 │ ├── .eslintignore │ ├── .eslintrc │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── gulpfile.mjs │ ├── jest.config.mjs │ ├── package.json │ ├── src │ │ ├── Objects │ │ │ ├── Backend │ │ │ │ ├── customrecord_flight.xml │ │ │ │ └── customrecord_gate.xml │ │ │ ├── custcollection_center_link.xml │ │ │ └── custspa_airport360.xml │ │ ├── SuiteApps │ │ │ └── com.netsuite.airport360 │ │ │ │ └── airport │ │ │ │ ├── Airport.tsx │ │ │ │ ├── SpaClient.tsx │ │ │ │ ├── SpaServer.ts │ │ │ │ ├── app │ │ │ │ ├── Action.tsx │ │ │ │ ├── InitialState.tsx │ │ │ │ ├── NavigationItem.tsx │ │ │ │ ├── Reducer.tsx │ │ │ │ └── Route.tsx │ │ │ │ ├── assets │ │ │ │ ├── .empty │ │ │ │ ├── maps │ │ │ │ │ ├── BCN-COR.png │ │ │ │ │ ├── BCN-GRE.png │ │ │ │ │ ├── BCN-LON.png │ │ │ │ │ ├── BCN-MAD.png │ │ │ │ │ ├── BCN-MIL.png │ │ │ │ │ ├── BCN-OVD.png │ │ │ │ │ └── BCN-PAR.png │ │ │ │ └── planes │ │ │ │ │ └── 1904.jpg │ │ │ │ ├── components │ │ │ │ ├── Dashboard.tsx │ │ │ │ ├── Menu.tsx │ │ │ │ ├── NotFoundPage.tsx │ │ │ │ ├── dashboard │ │ │ │ │ ├── PortletFlights.tsx │ │ │ │ │ └── PortletTime.tsx │ │ │ │ ├── flights │ │ │ │ │ ├── FlightActions.tsx │ │ │ │ │ ├── FlightColumns.ts │ │ │ │ │ ├── FlightDetails.tsx │ │ │ │ │ ├── FlightList.tsx │ │ │ │ │ └── FlightPage.tsx │ │ │ │ └── gates │ │ │ │ │ ├── GateActions.tsx │ │ │ │ │ ├── GateDetails.tsx │ │ │ │ │ └── GateList.tsx │ │ │ │ ├── dao │ │ │ │ ├── FlightDao.ts │ │ │ │ ├── GateDao.ts │ │ │ │ └── Queries.ts │ │ │ │ ├── mappers │ │ │ │ ├── FlightMapper.ts │ │ │ │ └── GateMapper.ts │ │ │ │ └── services │ │ │ │ ├── FlightService.ts │ │ │ │ └── GateService.ts │ │ ├── Translations │ │ │ └── your_translations_es_ES.xlf │ │ ├── deploy.xml │ │ └── manifest.xml │ ├── suitecloud.config.js │ ├── test │ │ ├── e2e │ │ │ ├── __test__ │ │ │ │ └── spa.test.ts │ │ │ ├── actions │ │ │ │ └── resolve.ts │ │ │ ├── constants │ │ │ │ ├── credential.ts │ │ │ │ ├── record │ │ │ │ │ └── recordId.ts │ │ │ │ └── request │ │ │ │ │ └── url.ts │ │ │ ├── jest.config.json │ │ │ ├── setup │ │ │ │ ├── puppeteer_environment_old.ts │ │ │ │ ├── setup.ts │ │ │ │ └── teardown.ts │ │ │ └── utils │ │ │ │ ├── FileUtils.js │ │ │ │ ├── KeyMap.js │ │ │ │ ├── SuiteCloudTest.js │ │ │ │ ├── TestUtils.js │ │ │ │ └── findOption.js │ │ ├── integration │ │ │ ├── __test__ │ │ │ │ ├── FlightDao.test.ts │ │ │ │ └── FlightDaoError.test.ts │ │ │ ├── handlers │ │ │ │ ├── errorHandlers.ts │ │ │ │ ├── handlers.ts │ │ │ │ └── utils.ts │ │ │ ├── jest.config.mjs │ │ │ ├── setup │ │ │ │ ├── jest.setup.ts │ │ │ │ └── mockServer.ts │ │ │ └── tsconfig.test.json │ │ ├── stubs │ │ │ ├── @uif-js │ │ │ │ ├── core.ts │ │ │ │ └── core │ │ │ │ │ ├── ArrayDataSource.ts │ │ │ │ │ └── ImmutableUpdate.ts │ │ │ └── N │ │ │ │ └── record.ts │ │ └── unit │ │ │ ├── airport │ │ │ ├── app │ │ │ │ ├── action.test.ts │ │ │ │ ├── initialState.test.ts │ │ │ │ └── reducer.test.ts │ │ │ ├── dao │ │ │ │ ├── flightDao.test.ts │ │ │ │ └── gateDao.test.ts │ │ │ └── mappers │ │ │ │ ├── flightMapper.test.ts │ │ │ │ └── gateMapper.test.ts │ │ │ ├── service.test.ts │ │ │ └── sscript.test.ts │ ├── tsconfig.json │ ├── tsconfig.test.json │ └── types │ │ └── appTypes.ts ├── basics-routing │ ├── .prettierignore │ ├── README.md │ ├── eslint.config.mjs │ ├── gulpfile.mjs │ ├── jest.config.mjs │ ├── package.json │ ├── prettier.config.js │ ├── src │ │ ├── Objects │ │ │ └── custspa_routing.xml │ │ ├── SuiteApps │ │ │ └── com.netsuite.uifrouting │ │ │ │ └── routing │ │ │ │ ├── CountriesApp.tsx │ │ │ │ ├── SpaClient.tsx │ │ │ │ ├── SpaServer.ts │ │ │ │ ├── app │ │ │ │ ├── CountriesAppRoute.ts │ │ │ │ ├── InitialState.ts │ │ │ │ ├── NavigationItem.ts │ │ │ │ └── Reducer.ts │ │ │ │ ├── assets │ │ │ │ └── .empty │ │ │ │ ├── component │ │ │ │ └── Navigation.tsx │ │ │ │ └── page │ │ │ │ ├── CountriesPage.tsx │ │ │ │ ├── CountryPage.tsx │ │ │ │ ├── DashboardPage.tsx │ │ │ │ ├── ListPage.tsx │ │ │ │ ├── NotFoundPage.tsx │ │ │ │ └── list │ │ │ │ ├── ListAreaPage.tsx │ │ │ │ └── ListPopulationPage.tsx │ │ ├── deploy.xml │ │ └── manifest.xml │ ├── suitecloud.config.js │ ├── test │ │ ├── stubs │ │ │ └── @uif-js │ │ │ │ ├── component.ts │ │ │ │ ├── core.ts │ │ │ │ └── core │ │ │ │ ├── JSX.ts │ │ │ │ └── jsx-runtime.ts │ │ └── unit │ │ │ └── CountriesApp.test.tsx │ ├── tsconfig.json │ └── tsconfig.test.json ├── basics-state-management │ ├── .prettierignore │ ├── README.md │ ├── eslint.config.mjs │ ├── gulpfile.mjs │ ├── jest.config.mjs │ ├── package.json │ ├── prettier.config.js │ ├── src │ │ ├── Objects │ │ │ └── custspa_statemanagement.xml │ │ ├── SuiteApps │ │ │ └── com.netsuite.uifstate │ │ │ │ └── statemanagement │ │ │ │ ├── CounterApp.tsx │ │ │ │ ├── SpaClient.tsx │ │ │ │ ├── SpaServer.ts │ │ │ │ ├── app │ │ │ │ ├── Action.ts │ │ │ │ ├── InitialState.ts │ │ │ │ └── Reducer.ts │ │ │ │ ├── assets │ │ │ │ └── .empty │ │ │ │ └── component │ │ │ │ └── Counter.tsx │ │ ├── deploy.xml │ │ └── manifest.xml │ ├── suitecloud.config.js │ ├── test │ │ ├── stubs │ │ │ └── @uif-js │ │ │ │ ├── component.ts │ │ │ │ ├── core.ts │ │ │ │ └── core │ │ │ │ ├── JSX.ts │ │ │ │ └── jsx-runtime.ts │ │ └── unit │ │ │ └── Counter.test.tsx │ ├── tsconfig.json │ └── tsconfig.test.json ├── helloworld-js │ ├── .prettierignore │ ├── README.md │ ├── eslint.config.mjs │ ├── gulpfile.mjs │ ├── jest.config.mjs │ ├── package.json │ ├── prettier.config.js │ ├── src │ │ ├── Objects │ │ │ └── custspa_helloworldjs.xml │ │ ├── SuiteApps │ │ │ └── com.netsuite.uifhwjs │ │ │ │ └── helloworld │ │ │ │ ├── HelloWorld.js │ │ │ │ ├── SpaClient.js │ │ │ │ ├── SpaServer.js │ │ │ │ └── assets │ │ │ │ └── .empty │ │ ├── deploy.xml │ │ └── manifest.xml │ ├── suitecloud.config.js │ ├── test │ │ ├── stubs │ │ │ └── @uif-js │ │ │ │ ├── component.js │ │ │ │ ├── component │ │ │ │ ├── ContentPanel.js │ │ │ │ ├── Heading.js │ │ │ │ └── ThemeSelector.js │ │ │ │ ├── core.js │ │ │ │ └── core │ │ │ │ ├── Theme.js │ │ │ │ └── jsx-runtime.js │ │ └── unit │ │ │ └── HelloWorld.test.js │ ├── tsconfig.json │ └── tsconfig.test.json ├── helloworld-ts │ ├── .prettierignore │ ├── README.md │ ├── eslint.config.mjs │ ├── gulpfile.mjs │ ├── jest.config.mjs │ ├── package.json │ ├── prettier.config.js │ ├── src │ │ ├── Objects │ │ │ └── custspa_helloworldts.xml │ │ ├── SuiteApps │ │ │ └── com.netsuite.uifhwts │ │ │ │ └── helloworld │ │ │ │ ├── HelloWorld.tsx │ │ │ │ ├── SpaClient.tsx │ │ │ │ ├── SpaServer.ts │ │ │ │ └── assets │ │ │ │ └── .empty │ │ ├── deploy.xml │ │ └── manifest.xml │ ├── suitecloud.config.js │ ├── test │ │ ├── stubs │ │ │ └── @uif-js │ │ │ │ ├── component.ts │ │ │ │ ├── component │ │ │ │ ├── ContentPanel.ts │ │ │ │ ├── Heading.ts │ │ │ │ └── ThemeSelector.ts │ │ │ │ ├── core.ts │ │ │ │ └── core │ │ │ │ ├── JSX.ts │ │ │ │ ├── Theme.ts │ │ │ │ └── jsx-runtime.ts │ │ └── unit │ │ │ └── HelloWorld.test.tsx │ ├── tsconfig.json │ └── tsconfig.test.json └── item360 │ ├── .prettierignore │ ├── README.md │ ├── eslint.config.mjs │ ├── gulpfile.mjs │ ├── jest.config.mjs │ ├── package.json │ ├── prettier.config.js │ ├── src │ ├── Objects │ │ ├── Backend │ │ │ ├── customlist_item360_pcpart_category.xml │ │ │ ├── customrecord_item360_pcpart.xml │ │ │ └── customrecord_item360_vendor.xml │ │ └── custspa_item360.xml │ ├── SuiteApps │ │ └── com.netsuite.uifitem360 │ │ │ └── item360 │ │ │ ├── Item360.tsx │ │ │ ├── SpaClient.tsx │ │ │ ├── SpaServer.ts │ │ │ ├── app │ │ │ ├── Action.ts │ │ │ ├── InitialState.ts │ │ │ ├── NavigationItem.ts │ │ │ ├── Reducer.ts │ │ │ └── RootRoute.ts │ │ │ ├── assets │ │ │ ├── UserAvatar.png │ │ │ └── UserData.json │ │ │ ├── components │ │ │ ├── item │ │ │ │ ├── ItemRecordPage.tsx │ │ │ │ └── ItemRecordSkeleton.tsx │ │ │ ├── items │ │ │ │ ├── ItemsDeleteModal.tsx │ │ │ │ ├── ItemsList.tsx │ │ │ │ └── ItemsSkeleton.tsx │ │ │ ├── layout │ │ │ │ └── Navigation.tsx │ │ │ ├── page │ │ │ │ ├── DashboardPage.tsx │ │ │ │ ├── ItemPage.tsx │ │ │ │ ├── ItemsPage.tsx │ │ │ │ ├── NotFoundPage.tsx │ │ │ │ └── ProfilePage.tsx │ │ │ ├── portlet │ │ │ │ ├── PortletChart.tsx │ │ │ │ ├── PortletInStock.tsx │ │ │ │ ├── PortletReminders.tsx │ │ │ │ └── PortletTotalItems.tsx │ │ │ ├── record │ │ │ │ ├── RecordField.tsx │ │ │ │ ├── RecordForm.tsx │ │ │ │ ├── RecordFormSkeleton.tsx │ │ │ │ └── RecordSection.tsx │ │ │ └── topList │ │ │ │ ├── TopList.tsx │ │ │ │ └── TopListItem.tsx │ │ │ ├── data │ │ │ ├── CategoryList.ts │ │ │ ├── DataMapping.ts │ │ │ ├── DynamicRecord.ts │ │ │ ├── ItemRecord.ts │ │ │ ├── RecordPage.ts │ │ │ └── VendorRecord.ts │ │ │ └── service │ │ │ └── ServerDataService.ts │ ├── deploy.xml │ └── manifest.xml │ ├── suitecloud.config.js │ ├── test │ └── stubs │ │ ├── component.js │ │ ├── core.js │ │ └── core │ │ └── jsx-runtime.js │ ├── tsconfig.json │ └── tsconfig.test.json ├── suitecloud-legacy-solutions-catalog ├── add-button-using-workflow │ ├── .gitignore │ ├── LICENSE.txt │ ├── README.md │ ├── THIRD_PARTY_LICENSES.txt │ ├── __tests__ │ │ └── wf_updateCustomerNotes.test.js │ ├── assets │ │ └── oracle_netsuite_logo.png │ ├── eslint.config.mjs │ ├── jest.config.js │ ├── jsconfig.json │ ├── package.json │ ├── src │ │ ├── FileCabinet │ │ │ └── SuiteScripts │ │ │ │ └── wf_updateCustomerNotes.js │ │ ├── Objects │ │ │ ├── SuiteFlow │ │ │ │ └── customworkflow_wf_salesorder.xml │ │ │ └── SuiteScript │ │ │ │ └── customscript_wf_updatecustomernotes.xml │ │ ├── deploy.xml │ │ └── manifest.xml │ └── suitecloud.config.js ├── add-custom-button-to-suitelet │ ├── .gitignore │ ├── LICENSE.txt │ ├── README.md │ ├── THIRD_PARTY_LICENSES.txt │ ├── __tests__ │ │ └── sl_executeSuiteletButton.test.js │ ├── eslint.config.mjs │ ├── jest.config.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── FileCabinet │ │ │ └── SuiteScripts │ │ │ │ └── sl_executeSuiteletButton.js │ │ ├── InstallationPreferences │ │ │ ├── hiding.xml │ │ │ └── locking.xml │ │ ├── Objects │ │ │ └── customscript_ue_custom_suitelet_button.xml │ │ ├── deploy.xml │ │ └── manifest.xml │ └── suitecloud.config.js ├── calculate-commission-on-salesorders │ ├── .gitignore │ ├── LICENSE.txt │ ├── README.md │ ├── THIRD_PARTY_LICENSES.txt │ ├── __tests__ │ │ └── ue_calculateCommission.test.js │ ├── eslint.config.mjs │ ├── jest.config.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── FileCabinet │ │ │ └── SuiteScripts │ │ │ │ └── ue_calculateCommission.js │ │ ├── Objects │ │ │ ├── custbody_commission_amount.xml │ │ │ ├── custcol_salesorder_msrp.xml │ │ │ └── customscript_ue_calculate_commission.xml │ │ ├── deploy.xml │ │ └── manifest.xml │ └── suitecloud.config.js ├── copy-value-to-item-column │ ├── .gitignore │ ├── LICENSE.txt │ ├── README.md │ ├── THIRD_PARTY_LICENSES.txt │ ├── __tests__ │ │ └── cs_copyValueToItem.test.js │ ├── eslint.config.mjs │ ├── jest.config.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── FileCabinet │ │ │ └── SuiteScripts │ │ │ │ └── cs_copyValueToItem.js │ │ ├── Objects │ │ │ ├── custcol_billingitem.xml │ │ │ ├── custform_billingitem.xml │ │ │ ├── customlist102.xml │ │ │ └── customscript_cs_copy_value_to_item.xml │ │ ├── deploy.xml │ │ └── manifest.xml │ └── suitecloud.config.js ├── disable-tax-fields │ ├── .gitignore │ ├── LICENSE.txt │ ├── README.md │ ├── THIRD_PARTY_LICENSES.txt │ ├── __tests__ │ │ └── cs_disableTaxFields.test.js │ ├── eslint.config.mjs │ ├── jest.config.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── FileCabinet │ │ │ └── SuiteScripts │ │ │ │ └── cs_disableTaxFields.js │ │ ├── Objects │ │ │ └── customscript_cs_disable_tax_fields.xml │ │ ├── deploy.xml │ │ └── manifest.xml │ └── suitecloud.config.js ├── fulfill-back-orders │ ├── .gitignore │ ├── LICENSE.txt │ ├── README.md │ ├── THIRD_PARTY_LICENSES.txt │ ├── __tests__ │ │ └── updateBackfillOrders-test.js │ ├── assets │ │ ├── .gitkeep │ │ ├── back order after.png │ │ ├── back_order_before.png │ │ ├── oracle_netsuite_logo.png │ │ ├── sales order record.png │ │ ├── sales order.png │ │ └── updated sales order.png │ ├── eslint.config.mjs │ ├── jest.config.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── FileCabinet │ │ │ └── SuiteApps │ │ │ │ └── com.netsuite.updatebackfillorders │ │ │ │ └── updateBackfillOrders.js │ │ ├── InstallationPreferences │ │ │ ├── hiding.xml │ │ │ └── locking.xml │ │ ├── Objects │ │ │ └── customscript_mr_update_backfill_orders.xml │ │ ├── deploy.xml │ │ └── manifest.xml │ └── suitecloud.config.js ├── hide-column-in-sublist │ ├── .gitignore │ ├── LICENSE.txt │ ├── README.md │ ├── THIRD_PARTY_LICENSE.txt │ ├── __tests__ │ │ └── ue_hideSublistColumn.test.js │ ├── eslint.config.mjs │ ├── jest.config.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── FileCabinet │ │ │ └── SuiteScripts │ │ │ │ └── ue_hideSublistColumn.js │ │ ├── Objects │ │ │ └── customscript_ue_hide_sublist_column.xml │ │ ├── deploy.xml │ │ └── manifest.xml │ └── suitecloud.config.js ├── map-reduce-scripts │ ├── mr-create-record │ │ ├── README.md │ │ ├── __tests__ │ │ │ └── create.test.js │ │ ├── assets │ │ │ ├── customRecord.png │ │ │ ├── oracle_netsuite_logo.png │ │ │ └── orderRecord.png │ │ ├── eslint.config.mjs │ │ ├── jest.config.js │ │ ├── jsconfig.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── FileCabinet │ │ │ │ └── SuiteScripts │ │ │ │ │ └── create.js │ │ │ ├── Objects │ │ │ │ ├── _customrecord_nscs_create.xml │ │ │ │ └── customworkbook_nscs_mr_create.xml │ │ │ ├── deploy.xml │ │ │ └── manifest.xml │ │ └── suitecloud.config.js │ ├── mr-execute-macro │ │ ├── README.md │ │ ├── __tests__ │ │ │ └── macro.test.js │ │ ├── assets │ │ │ ├── locationAssigned.png │ │ │ └── oracle_netsuite_logo.png │ │ ├── eslint.config.mjs │ │ ├── jest.config.js │ │ ├── jsconfig.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── FileCabinet │ │ │ │ └── SuiteScripts │ │ │ │ │ └── macro.js │ │ │ ├── Objects │ │ │ │ └── customworkbook_nscs_mr_loc_assign.xml │ │ │ ├── deploy.xml │ │ │ └── manifest.xml │ │ └── suitecloud.config.js │ ├── mr-transform-record │ │ ├── README.md │ │ ├── __tests__ │ │ │ └── transform.test.js │ │ ├── assets │ │ │ └── oracle_netsuite_logo.png │ │ ├── eslint.config.mjs │ │ ├── jest.config.js │ │ ├── jsconfig.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── FileCabinet │ │ │ │ └── SuiteScripts │ │ │ │ │ └── transform.js │ │ │ ├── Objects │ │ │ │ └── customworkbook_nscs_mr_transform.xml │ │ │ ├── deploy.xml │ │ │ └── manifest.xml │ │ └── suitecloud.config.js │ └── mr-update-record │ │ ├── README.md │ │ ├── __tests__ │ │ └── update.test.js │ │ ├── assets │ │ ├── oracle_netsuite_logo.png │ │ └── updateditemSublist.png │ │ ├── eslint.config.mjs │ │ ├── jest.config.js │ │ ├── jsconfig.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── FileCabinet │ │ │ └── SuiteScripts │ │ │ │ └── update.js │ │ ├── Objects │ │ │ └── customworkbook_nscs_mr_update.xml │ │ ├── deploy.xml │ │ └── manifest.xml │ │ └── suitecloud.config.js ├── rest-file-api │ ├── .gitignore │ ├── LICENSE.txt │ ├── README.md │ ├── __tests__ │ │ ├── cs_call_restlet.test.js │ │ └── rs_file_api.test.js │ ├── eslint.config.mjs │ ├── jest.config.js │ ├── jsconfig.json │ ├── oracle_netsuite_logo.png │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── FileCabinet │ │ │ └── SuiteScripts │ │ │ │ ├── cs_call_restlet.js │ │ │ │ └── rs_file_api.js │ │ ├── Objects │ │ │ ├── customscript_cs_call_restlet.xml │ │ │ └── customscript_nscs_rl_rest_file_api.xml │ │ ├── deploy.xml │ │ └── manifest.xml │ ├── suitecloud.config.js │ └── vendor-record.png ├── salesorder-deposit-tracking │ ├── .gitignore │ ├── LICENSE.txt │ ├── README.md │ ├── THIRD_PARTY_LICENSES.txt │ ├── __tests__ │ │ ├── ue_handle_deposit.test.js │ │ ├── ue_handle_refund.test.js │ │ ├── ue_set_custom_fields.test.js │ │ └── ue_update_custom_fields.test.js │ ├── eslint.config.mjs │ ├── jest.config.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── FileCabinet │ │ │ └── SuiteScripts │ │ │ │ ├── ue_handle_deposit.js │ │ │ │ ├── ue_handle_refund.js │ │ │ │ ├── ue_set_custom_fields.js │ │ │ │ └── ue_update_custom_fields.js │ │ ├── Objects │ │ │ ├── custbody_balance_remaining.xml │ │ │ ├── custbody_total_deposit_paid.xml │ │ │ ├── customscript_ue_depbalance_delete_depapp.xml │ │ │ ├── customscript_ue_depbalance_refund.xml │ │ │ ├── customscript_ue_depbalance_set_fields.xml │ │ │ ├── customscript_ue_depbalance_update_fields.xml │ │ │ └── customsearch_sobalancedue.xml │ │ ├── deploy.xml │ │ └── manifest.xml │ └── suitecloud.config.js ├── set-default-posting-period │ ├── .gitignore │ ├── LICENSE.txt │ ├── README.md │ ├── THIRD_PARTY_LICENSES.txt │ ├── __tests__ │ │ └── cs_preferredPostingPeriod.test.js │ ├── eslint.config.mjs │ ├── jest.config.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── FileCabinet │ │ │ └── SuiteScripts │ │ │ │ └── cs_preferredPostingPeriod.js │ │ ├── Objects │ │ │ ├── custbody_preferred_posting_period.xml │ │ │ ├── custform_posting_invoice.xml │ │ │ ├── customscript_cs_preferred_posting_period.xml │ │ │ └── customsearch_open_accounting_periods.xml │ │ ├── deploy.xml │ │ └── manifest.xml │ └── suitecloud.config.js ├── set-default-values-in-sublist │ ├── .gitignore │ ├── LICENSE.txt │ ├── README.md │ ├── THIRD_PARTY_LICENSES.txt │ ├── __tests__ │ │ └── cs_defaultSublistValues.test.js │ ├── eslint.config.mjs │ ├── jest.config.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── FileCabinet │ │ │ └── SuiteScripts │ │ │ │ └── cs_defaultSublistValues.js │ │ ├── Objects │ │ │ ├── custentity_custom_class.xml │ │ │ ├── custentity_custom_department.xml │ │ │ └── customscript_cs_default_sublist_values.xml │ │ ├── deploy.xml │ │ └── manifest.xml │ └── suitecloud.config.js ├── set-item-amount-to-zero │ ├── .gitignore │ ├── LICENSE.txt │ ├── README.md │ ├── THIRD_PARTY_LICENSES.txt │ ├── __tests__ │ │ └── ue_marketingOrder.test.js │ ├── eslint.config.mjs │ ├── jest.config.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── FileCabinet │ │ │ └── SuiteScripts │ │ │ │ └── ue_marketingOrder.js │ │ ├── Objects │ │ │ ├── custbody_marketing_order.xml │ │ │ └── customscript_ue_marketing_order.xml │ │ ├── deploy.xml │ │ └── manifest.xml │ └── suitecloud.config.js ├── set-po-exchange-rate │ ├── .gitignore │ ├── LICENSE.txt │ ├── README.md │ ├── THIRD_PARTY_LICENSES.txt │ ├── __tests__ │ │ └── cs_poExchangeRate.test.js │ ├── eslint.config.mjs │ ├── jest.config.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── FileCabinet │ │ │ └── SuiteScripts │ │ │ │ └── cs_poExchangeRate.js │ │ ├── Objects │ │ │ ├── custbody__currency_po_amount.xml │ │ │ ├── custbody_currency_exchange_rate.xml │ │ │ └── customscript_cs_po_set_exchange_rate.xml │ │ ├── deploy.xml │ │ └── manifest.xml │ └── suitecloud.config.js └── validate-order-on-entry │ ├── .gitignore │ ├── LICENSE.txt │ ├── README.md │ ├── THIRD_PARTY_LICENSES.txt │ ├── __tests__ │ └── cs_validateOrder.test.js │ ├── eslint.config.mjs │ ├── jest.config.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── FileCabinet │ │ └── SuiteScripts │ │ │ └── cs_validateOrder.js │ ├── Objects │ │ ├── custcol_cases_per_pallet.xml │ │ ├── custcol_item_weight.xml │ │ └── customscript_cs_validate_order.xml │ ├── deploy.xml │ └── manifest.xml │ └── suitecloud.config.js └── suiteworld-samples └── suiteworld2024-code-samples ├── README.md ├── enhancing-business-flows ├── automatic-purchasing │ ├── InstallationPreferences │ │ ├── hiding.xml │ │ ├── locking.xml │ │ └── overwriting.xml │ ├── Objects │ │ ├── automatic-purchasing-mapReduce.js │ │ ├── custentity_vendor_autopurchase.xml │ │ ├── custitem_ii_autopurchase.xml │ │ ├── custitem_ii_lowerlimit.xml │ │ ├── customrecord_autopurchase.xml │ │ ├── custtab_ii_autopurch_tab.xml │ │ ├── custtab_vend_autopurch_tab.xml │ │ └── inventoryItem-clientScripts.js │ ├── README.md │ ├── deploy.xml │ ├── diagram.png │ └── manifest.xml └── shipping-container │ ├── .gitkeep │ ├── InstallationPreferences │ ├── .gitkeep │ ├── hiding.xml │ ├── locking.xml │ └── overwriting.xml │ ├── Objects │ ├── .gitkeep │ ├── custbody_so_scallocs.xml │ ├── custcol_soi_container.xml │ ├── custcol_soi_conttake.xml │ ├── custcol_soi_perunittake.xml │ ├── custcol_soi_scalloc.xml │ ├── custitem_ii_perunittake.xml │ ├── customlist_scalloc_status.xml │ ├── customlist_ship_container_location.xml │ ├── customlist_ship_container_status.xml │ ├── customrecord_ship_container.xml │ ├── customrecord_ship_container_alloc.xml │ ├── customrecord_ship_container_alloc_userEvents.js │ ├── customrecord_ship_container_userEvents.js │ ├── customsearch104.xml │ ├── customsearch105.xml │ ├── customsearch4.xml │ ├── customsearch404.xml │ ├── salesOrder-clientScripts.js │ └── salesOrder-userEvents.js │ ├── deploy.xml │ ├── diagram.png │ └── manifest.xml ├── llm ├── chatbot │ ├── README.md │ ├── assets │ │ ├── .gitkeep │ │ ├── chatbot.png │ │ └── oracle_netsuite_logo.png │ └── sl_chatbot.js └── fix-typos │ ├── README.md │ ├── assets │ ├── .gitkeep │ ├── after_typo.png │ ├── before_typo.png │ └── oracle_netsuite_logo.png │ └── fix-typos.js ├── map-reduce-suiteql ├── 1_-_Simple_Query_+_Run_SuiteQL.js ├── 2_-_Load_a_workbook_then_convert_to_SuiteQL.js ├── 3_-_RAW_SQL.sql ├── 4_-_Optimized_SQL.sql ├── 5_-_MapReduce_Script.js ├── README.md └── oracle_netsuite_logo.png ├── record-scripting ├── com.netsuite.defaulting │ ├── README.md │ └── ue_defaulting.js ├── com.netsuite.dynamicOptions │ ├── Objects │ │ ├── custcol_configuration.xml │ │ ├── custcol_item_vendor.xml │ │ └── customrecord_configuration.xml │ ├── README.md │ ├── cs_dynamicOptions.js │ └── ue_dynamicOptions.js ├── com.netsuite.locking │ ├── Objects │ │ ├── custbody_lock.xml │ │ └── customrecord_lock.xml │ ├── README.md │ └── ue_locking.js └── com.netsuite.redirect │ ├── README.md │ └── ue_redirect.js ├── suitescript-internationalization ├── README.md ├── oracle_netsuite_logo.png ├── swTab_cz.js ├── swTab_en.js └── ue_en.js ├── suitescript-optimization ├── README.md ├── oracle_netsuite_logo.png ├── sl_cacheManager.js └── ue_PerStateMatrix.js ├── suitetalk-rest-apis ├── README.md ├── oracle_netsuite_logo.png └── rest.json └── third-party-tools ├── README.md ├── customStubs └── http.js ├── jest.config.js ├── jsconfig.json ├── package-lock.json ├── package.json ├── project.json ├── rollup.config.mjs ├── src ├── FileCabinet │ └── SuiteApps │ │ └── com.netsuite.playground │ │ ├── customscript_restlet.js │ │ └── customscript_suitelet.js ├── InstallationPreferences │ ├── hiding.xml │ ├── locking.xml │ └── overwriting.xml ├── Objects │ ├── customscript_restlet.xml │ └── customscript_suitelet.xml ├── Typescripts │ ├── __tests__ │ │ └── customscript_suitelet.test.ts │ └── com.netsuite.playground │ │ ├── customscript_restlet.ts │ │ └── customscript_suitelet.ts ├── deploy.xml └── manifest.xml ├── suitecloud.config.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MCP-Sample-Tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/.gitignore -------------------------------------------------------------------------------- /MCP-Sample-Tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/README.md -------------------------------------------------------------------------------- /MCP-Sample-Tools/__tests__/__utils__/handleErrors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/__tests__/__utils__/handleErrors.js -------------------------------------------------------------------------------- /MCP-Sample-Tools/__tests__/customermanagement.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/__tests__/customermanagement.test.js -------------------------------------------------------------------------------- /MCP-Sample-Tools/__tests__/financial.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/__tests__/financial.test.js -------------------------------------------------------------------------------- /MCP-Sample-Tools/__tests__/inventory.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/__tests__/inventory.test.js -------------------------------------------------------------------------------- /MCP-Sample-Tools/__tests__/salesandorders.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/__tests__/salesandorders.test.js -------------------------------------------------------------------------------- /MCP-Sample-Tools/__tests__/sample-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/__tests__/sample-test.js -------------------------------------------------------------------------------- /MCP-Sample-Tools/__tests__/suiteql.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/__tests__/suiteql.test.js -------------------------------------------------------------------------------- /MCP-Sample-Tools/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/jest.config.js -------------------------------------------------------------------------------- /MCP-Sample-Tools/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/package-lock.json -------------------------------------------------------------------------------- /MCP-Sample-Tools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/package.json -------------------------------------------------------------------------------- /MCP-Sample-Tools/src/FileCabinet/SuiteScripts/customermanagement_acp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/src/FileCabinet/SuiteScripts/customermanagement_acp.js -------------------------------------------------------------------------------- /MCP-Sample-Tools/src/FileCabinet/SuiteScripts/customermanagement_schema_acp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/src/FileCabinet/SuiteScripts/customermanagement_schema_acp.json -------------------------------------------------------------------------------- /MCP-Sample-Tools/src/FileCabinet/SuiteScripts/financial_acp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/src/FileCabinet/SuiteScripts/financial_acp.js -------------------------------------------------------------------------------- /MCP-Sample-Tools/src/FileCabinet/SuiteScripts/financial_schema_acp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/src/FileCabinet/SuiteScripts/financial_schema_acp.json -------------------------------------------------------------------------------- /MCP-Sample-Tools/src/FileCabinet/SuiteScripts/inventory_acp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/src/FileCabinet/SuiteScripts/inventory_acp.js -------------------------------------------------------------------------------- /MCP-Sample-Tools/src/FileCabinet/SuiteScripts/inventory_schema_acp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/src/FileCabinet/SuiteScripts/inventory_schema_acp.json -------------------------------------------------------------------------------- /MCP-Sample-Tools/src/FileCabinet/SuiteScripts/salesandorders_acp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/src/FileCabinet/SuiteScripts/salesandorders_acp.js -------------------------------------------------------------------------------- /MCP-Sample-Tools/src/FileCabinet/SuiteScripts/salesandorders_schema_acp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/src/FileCabinet/SuiteScripts/salesandorders_schema_acp.json -------------------------------------------------------------------------------- /MCP-Sample-Tools/src/FileCabinet/SuiteScripts/suiteql_acp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/src/FileCabinet/SuiteScripts/suiteql_acp.js -------------------------------------------------------------------------------- /MCP-Sample-Tools/src/FileCabinet/SuiteScripts/suiteql_schema_acp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/src/FileCabinet/SuiteScripts/suiteql_schema_acp.json -------------------------------------------------------------------------------- /MCP-Sample-Tools/src/Objects/customtool_customermanagement_acp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/src/Objects/customtool_customermanagement_acp.xml -------------------------------------------------------------------------------- /MCP-Sample-Tools/src/Objects/customtool_financial_acp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/src/Objects/customtool_financial_acp.xml -------------------------------------------------------------------------------- /MCP-Sample-Tools/src/Objects/customtool_inventory_acp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/src/Objects/customtool_inventory_acp.xml -------------------------------------------------------------------------------- /MCP-Sample-Tools/src/Objects/customtool_salesandorders_acp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/src/Objects/customtool_salesandorders_acp.xml -------------------------------------------------------------------------------- /MCP-Sample-Tools/src/Objects/customtool_suiteql_acp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/src/Objects/customtool_suiteql_acp.xml -------------------------------------------------------------------------------- /MCP-Sample-Tools/src/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/src/deploy.xml -------------------------------------------------------------------------------- /MCP-Sample-Tools/src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/src/manifest.xml -------------------------------------------------------------------------------- /MCP-Sample-Tools/suitecloud.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/MCP-Sample-Tools/suitecloud.config.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/SECURITY.md -------------------------------------------------------------------------------- /samples-catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/samples-catalog.json -------------------------------------------------------------------------------- /spa-suiteapp-samples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/.gitignore -------------------------------------------------------------------------------- /spa-suiteapp-samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/README.md -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/.eslintignore: -------------------------------------------------------------------------------- 1 | types/uif/**/* 2 | -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/.eslintrc -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/.prettierignore -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/.prettierrc -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/README.md -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/gulpfile.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/gulpfile.mjs -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/jest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/jest.config.mjs -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/package.json -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/Objects/Backend/customrecord_flight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/Objects/Backend/customrecord_flight.xml -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/Objects/Backend/customrecord_gate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/Objects/Backend/customrecord_gate.xml -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/Objects/custcollection_center_link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/Objects/custcollection_center_link.xml -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/Objects/custspa_airport360.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/Objects/custspa_airport360.xml -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/Airport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/Airport.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/SpaClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/SpaClient.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/SpaServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/SpaServer.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/app/Action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/app/Action.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/app/InitialState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/app/InitialState.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/app/NavigationItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/app/NavigationItem.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/app/Reducer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/app/Reducer.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/app/Route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/app/Route.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/assets/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/assets/maps/BCN-COR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/assets/maps/BCN-COR.png -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/assets/maps/BCN-GRE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/assets/maps/BCN-GRE.png -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/assets/maps/BCN-LON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/assets/maps/BCN-LON.png -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/assets/maps/BCN-MAD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/assets/maps/BCN-MAD.png -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/assets/maps/BCN-MIL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/assets/maps/BCN-MIL.png -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/assets/maps/BCN-OVD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/assets/maps/BCN-OVD.png -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/assets/maps/BCN-PAR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/assets/maps/BCN-PAR.png -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/assets/planes/1904.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/assets/planes/1904.jpg -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/components/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/components/Dashboard.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/components/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/components/Menu.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/components/NotFoundPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/components/NotFoundPage.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/components/gates/GateActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/components/gates/GateActions.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/components/gates/GateDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/components/gates/GateDetails.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/components/gates/GateList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/components/gates/GateList.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/dao/FlightDao.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/dao/FlightDao.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/dao/GateDao.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/dao/GateDao.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/dao/Queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/dao/Queries.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/mappers/FlightMapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/mappers/FlightMapper.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/mappers/GateMapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/mappers/GateMapper.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/services/FlightService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/services/FlightService.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/services/GateService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/SuiteApps/com.netsuite.airport360/airport/services/GateService.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/Translations/your_translations_es_ES.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/Translations/your_translations_es_ES.xlf -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/deploy.xml -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/src/manifest.xml -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/suitecloud.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/suitecloud.config.js -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/e2e/__test__/spa.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/e2e/__test__/spa.test.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/e2e/actions/resolve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/e2e/actions/resolve.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/e2e/constants/credential.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/e2e/constants/credential.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/e2e/constants/record/recordId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/e2e/constants/record/recordId.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/e2e/constants/request/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/e2e/constants/request/url.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/e2e/jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/e2e/jest.config.json -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/e2e/setup/puppeteer_environment_old.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/e2e/setup/puppeteer_environment_old.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/e2e/setup/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/e2e/setup/setup.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/e2e/setup/teardown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/e2e/setup/teardown.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/e2e/utils/FileUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/e2e/utils/FileUtils.js -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/e2e/utils/KeyMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/e2e/utils/KeyMap.js -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/e2e/utils/SuiteCloudTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/e2e/utils/SuiteCloudTest.js -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/e2e/utils/TestUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/e2e/utils/TestUtils.js -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/e2e/utils/findOption.js: -------------------------------------------------------------------------------- 1 | 2 | const { ENTER, DOWN } = require("../utils/KeyMap"); 3 | 4 | -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/integration/__test__/FlightDao.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/integration/__test__/FlightDao.test.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/integration/__test__/FlightDaoError.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/integration/__test__/FlightDaoError.test.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/integration/handlers/errorHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/integration/handlers/errorHandlers.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/integration/handlers/handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/integration/handlers/handlers.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/integration/handlers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/integration/handlers/utils.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/integration/jest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/integration/jest.config.mjs -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/integration/setup/jest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/integration/setup/jest.setup.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/integration/setup/mockServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/integration/setup/mockServer.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/integration/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/integration/tsconfig.test.json -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/stubs/@uif-js/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/stubs/@uif-js/core.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/stubs/@uif-js/core/ArrayDataSource.ts: -------------------------------------------------------------------------------- 1 | export default class ArrayDataSource {} -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/stubs/@uif-js/core/ImmutableUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/stubs/@uif-js/core/ImmutableUpdate.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/stubs/N/record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/stubs/N/record.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/unit/airport/app/action.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/unit/airport/app/action.test.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/unit/airport/app/initialState.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/unit/airport/app/initialState.test.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/unit/airport/app/reducer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/unit/airport/app/reducer.test.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/unit/airport/dao/flightDao.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/unit/airport/dao/flightDao.test.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/unit/airport/dao/gateDao.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/unit/airport/dao/gateDao.test.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/unit/airport/mappers/flightMapper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/unit/airport/mappers/flightMapper.test.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/unit/airport/mappers/gateMapper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/unit/airport/mappers/gateMapper.test.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/unit/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/unit/service.test.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/test/unit/sscript.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/test/unit/sscript.test.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/tsconfig.json -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/tsconfig.test.json -------------------------------------------------------------------------------- /spa-suiteapp-samples/airport360/types/appTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/airport360/types/appTypes.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/.prettierignore -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/README.md -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/eslint.config.mjs -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/gulpfile.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/gulpfile.mjs -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/jest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/jest.config.mjs -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/package.json -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/prettier.config.js -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/src/Objects/custspa_routing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/src/Objects/custspa_routing.xml -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/src/SuiteApps/com.netsuite.uifrouting/routing/CountriesApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/src/SuiteApps/com.netsuite.uifrouting/routing/CountriesApp.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/src/SuiteApps/com.netsuite.uifrouting/routing/SpaClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/src/SuiteApps/com.netsuite.uifrouting/routing/SpaClient.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/src/SuiteApps/com.netsuite.uifrouting/routing/SpaServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/src/SuiteApps/com.netsuite.uifrouting/routing/SpaServer.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/src/SuiteApps/com.netsuite.uifrouting/routing/app/CountriesAppRoute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/src/SuiteApps/com.netsuite.uifrouting/routing/app/CountriesAppRoute.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/src/SuiteApps/com.netsuite.uifrouting/routing/app/InitialState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/src/SuiteApps/com.netsuite.uifrouting/routing/app/InitialState.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/src/SuiteApps/com.netsuite.uifrouting/routing/app/NavigationItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/src/SuiteApps/com.netsuite.uifrouting/routing/app/NavigationItem.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/src/SuiteApps/com.netsuite.uifrouting/routing/app/Reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/src/SuiteApps/com.netsuite.uifrouting/routing/app/Reducer.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/src/SuiteApps/com.netsuite.uifrouting/routing/assets/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/src/SuiteApps/com.netsuite.uifrouting/routing/component/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/src/SuiteApps/com.netsuite.uifrouting/routing/component/Navigation.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/src/SuiteApps/com.netsuite.uifrouting/routing/page/CountriesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/src/SuiteApps/com.netsuite.uifrouting/routing/page/CountriesPage.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/src/SuiteApps/com.netsuite.uifrouting/routing/page/CountryPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/src/SuiteApps/com.netsuite.uifrouting/routing/page/CountryPage.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/src/SuiteApps/com.netsuite.uifrouting/routing/page/DashboardPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/src/SuiteApps/com.netsuite.uifrouting/routing/page/DashboardPage.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/src/SuiteApps/com.netsuite.uifrouting/routing/page/ListPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/src/SuiteApps/com.netsuite.uifrouting/routing/page/ListPage.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/src/SuiteApps/com.netsuite.uifrouting/routing/page/NotFoundPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/src/SuiteApps/com.netsuite.uifrouting/routing/page/NotFoundPage.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/src/SuiteApps/com.netsuite.uifrouting/routing/page/list/ListAreaPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/src/SuiteApps/com.netsuite.uifrouting/routing/page/list/ListAreaPage.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/src/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/src/deploy.xml -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/src/manifest.xml -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/suitecloud.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | defaultProjectFolder: "src", 3 | commands: {} 4 | }; 5 | -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/test/stubs/@uif-js/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/test/stubs/@uif-js/component.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/test/stubs/@uif-js/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/test/stubs/@uif-js/core.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/test/stubs/@uif-js/core/JSX.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/test/stubs/@uif-js/core/JSX.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/test/stubs/@uif-js/core/jsx-runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/test/stubs/@uif-js/core/jsx-runtime.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/test/unit/CountriesApp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/test/unit/CountriesApp.test.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/tsconfig.json -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-routing/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-routing/tsconfig.test.json -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-state-management/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-state-management/.prettierignore -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-state-management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-state-management/README.md -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-state-management/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-state-management/eslint.config.mjs -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-state-management/gulpfile.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-state-management/gulpfile.mjs -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-state-management/jest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-state-management/jest.config.mjs -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-state-management/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-state-management/package.json -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-state-management/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-state-management/prettier.config.js -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-state-management/src/Objects/custspa_statemanagement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-state-management/src/Objects/custspa_statemanagement.xml -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-state-management/src/SuiteApps/com.netsuite.uifstate/statemanagement/SpaClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-state-management/src/SuiteApps/com.netsuite.uifstate/statemanagement/SpaClient.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-state-management/src/SuiteApps/com.netsuite.uifstate/statemanagement/SpaServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-state-management/src/SuiteApps/com.netsuite.uifstate/statemanagement/SpaServer.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-state-management/src/SuiteApps/com.netsuite.uifstate/statemanagement/app/Action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-state-management/src/SuiteApps/com.netsuite.uifstate/statemanagement/app/Action.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-state-management/src/SuiteApps/com.netsuite.uifstate/statemanagement/assets/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-state-management/src/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-state-management/src/deploy.xml -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-state-management/src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-state-management/src/manifest.xml -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-state-management/suitecloud.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | defaultProjectFolder: "src", 3 | commands: {} 4 | }; 5 | -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-state-management/test/stubs/@uif-js/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-state-management/test/stubs/@uif-js/component.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-state-management/test/stubs/@uif-js/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-state-management/test/stubs/@uif-js/core.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-state-management/test/stubs/@uif-js/core/JSX.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-state-management/test/stubs/@uif-js/core/JSX.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-state-management/test/stubs/@uif-js/core/jsx-runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-state-management/test/stubs/@uif-js/core/jsx-runtime.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-state-management/test/unit/Counter.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-state-management/test/unit/Counter.test.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-state-management/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-state-management/tsconfig.json -------------------------------------------------------------------------------- /spa-suiteapp-samples/basics-state-management/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/basics-state-management/tsconfig.test.json -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-js/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-js/.prettierignore -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-js/README.md -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-js/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-js/eslint.config.mjs -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-js/gulpfile.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-js/gulpfile.mjs -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-js/jest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-js/jest.config.mjs -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-js/package.json -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-js/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-js/prettier.config.js -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-js/src/Objects/custspa_helloworldjs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-js/src/Objects/custspa_helloworldjs.xml -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-js/src/SuiteApps/com.netsuite.uifhwjs/helloworld/HelloWorld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-js/src/SuiteApps/com.netsuite.uifhwjs/helloworld/HelloWorld.js -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-js/src/SuiteApps/com.netsuite.uifhwjs/helloworld/SpaClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-js/src/SuiteApps/com.netsuite.uifhwjs/helloworld/SpaClient.js -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-js/src/SuiteApps/com.netsuite.uifhwjs/helloworld/SpaServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-js/src/SuiteApps/com.netsuite.uifhwjs/helloworld/SpaServer.js -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-js/src/SuiteApps/com.netsuite.uifhwjs/helloworld/assets/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-js/src/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-js/src/deploy.xml -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-js/src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-js/src/manifest.xml -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-js/suitecloud.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | defaultProjectFolder: "src", 3 | commands: {} 4 | }; 5 | -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-js/test/stubs/@uif-js/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-js/test/stubs/@uif-js/component.js -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-js/test/stubs/@uif-js/component/ContentPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-js/test/stubs/@uif-js/component/ContentPanel.js -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-js/test/stubs/@uif-js/component/Heading.js: -------------------------------------------------------------------------------- 1 | export default class Heading {} -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-js/test/stubs/@uif-js/component/ThemeSelector.js: -------------------------------------------------------------------------------- 1 | export default class ThemeSelector {} -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-js/test/stubs/@uif-js/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-js/test/stubs/@uif-js/core.js -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-js/test/stubs/@uif-js/core/Theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-js/test/stubs/@uif-js/core/Theme.js -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-js/test/stubs/@uif-js/core/jsx-runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-js/test/stubs/@uif-js/core/jsx-runtime.js -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-js/test/unit/HelloWorld.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-js/test/unit/HelloWorld.test.js -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-js/tsconfig.json -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-js/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-js/tsconfig.test.json -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-ts/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-ts/.prettierignore -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-ts/README.md -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-ts/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-ts/eslint.config.mjs -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-ts/gulpfile.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-ts/gulpfile.mjs -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-ts/jest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-ts/jest.config.mjs -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-ts/package.json -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-ts/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-ts/prettier.config.js -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-ts/src/Objects/custspa_helloworldts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-ts/src/Objects/custspa_helloworldts.xml -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-ts/src/SuiteApps/com.netsuite.uifhwts/helloworld/HelloWorld.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-ts/src/SuiteApps/com.netsuite.uifhwts/helloworld/HelloWorld.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-ts/src/SuiteApps/com.netsuite.uifhwts/helloworld/SpaClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-ts/src/SuiteApps/com.netsuite.uifhwts/helloworld/SpaClient.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-ts/src/SuiteApps/com.netsuite.uifhwts/helloworld/SpaServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-ts/src/SuiteApps/com.netsuite.uifhwts/helloworld/SpaServer.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-ts/src/SuiteApps/com.netsuite.uifhwts/helloworld/assets/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-ts/src/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-ts/src/deploy.xml -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-ts/src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-ts/src/manifest.xml -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-ts/suitecloud.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | defaultProjectFolder: "src", 3 | commands: {} 4 | }; 5 | -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-ts/test/stubs/@uif-js/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-ts/test/stubs/@uif-js/component.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-ts/test/stubs/@uif-js/component/ContentPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-ts/test/stubs/@uif-js/component/ContentPanel.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-ts/test/stubs/@uif-js/component/Heading.ts: -------------------------------------------------------------------------------- 1 | export default class Heading {} -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-ts/test/stubs/@uif-js/component/ThemeSelector.ts: -------------------------------------------------------------------------------- 1 | export default class ThemeSelector {} -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-ts/test/stubs/@uif-js/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-ts/test/stubs/@uif-js/core.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-ts/test/stubs/@uif-js/core/JSX.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-ts/test/stubs/@uif-js/core/JSX.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-ts/test/stubs/@uif-js/core/Theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-ts/test/stubs/@uif-js/core/Theme.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-ts/test/stubs/@uif-js/core/jsx-runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-ts/test/stubs/@uif-js/core/jsx-runtime.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-ts/test/unit/HelloWorld.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-ts/test/unit/HelloWorld.test.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-ts/tsconfig.json -------------------------------------------------------------------------------- /spa-suiteapp-samples/helloworld-ts/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/helloworld-ts/tsconfig.test.json -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/.prettierignore -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/README.md -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/eslint.config.mjs -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/gulpfile.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/gulpfile.mjs -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/jest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/jest.config.mjs -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/package.json -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/prettier.config.js -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/Objects/Backend/customlist_item360_pcpart_category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/Objects/Backend/customlist_item360_pcpart_category.xml -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/Objects/Backend/customrecord_item360_pcpart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/Objects/Backend/customrecord_item360_pcpart.xml -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/Objects/Backend/customrecord_item360_vendor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/Objects/Backend/customrecord_item360_vendor.xml -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/Objects/custspa_item360.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/Objects/custspa_item360.xml -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/Item360.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/Item360.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/SpaClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/SpaClient.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/SpaServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/SpaServer.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/app/Action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/app/Action.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/app/InitialState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/app/InitialState.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/app/NavigationItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/app/NavigationItem.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/app/Reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/app/Reducer.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/app/RootRoute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/app/RootRoute.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/assets/UserAvatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/assets/UserAvatar.png -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/assets/UserData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/assets/UserData.json -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/item/ItemRecordPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/item/ItemRecordPage.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/items/ItemsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/items/ItemsList.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/items/ItemsSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/items/ItemsSkeleton.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/layout/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/layout/Navigation.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/page/DashboardPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/page/DashboardPage.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/page/ItemPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/page/ItemPage.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/page/ItemsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/page/ItemsPage.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/page/NotFoundPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/page/NotFoundPage.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/page/ProfilePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/page/ProfilePage.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/portlet/PortletChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/portlet/PortletChart.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/record/RecordField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/record/RecordField.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/record/RecordForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/record/RecordForm.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/record/RecordSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/record/RecordSection.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/topList/TopList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/topList/TopList.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/topList/TopListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/components/topList/TopListItem.tsx -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/data/CategoryList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/data/CategoryList.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/data/DataMapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/data/DataMapping.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/data/DynamicRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/data/DynamicRecord.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/data/ItemRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/data/ItemRecord.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/data/RecordPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/data/RecordPage.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/data/VendorRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/data/VendorRecord.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/service/ServerDataService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/SuiteApps/com.netsuite.uifitem360/item360/service/ServerDataService.ts -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/deploy.xml -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/src/manifest.xml -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/suitecloud.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | defaultProjectFolder: "src", 3 | commands: {} 4 | }; 5 | -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/test/stubs/component.js: -------------------------------------------------------------------------------- 1 | export {}; -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/test/stubs/core.js: -------------------------------------------------------------------------------- 1 | export {}; -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/test/stubs/core/jsx-runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/test/stubs/core/jsx-runtime.js -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/tsconfig.json -------------------------------------------------------------------------------- /spa-suiteapp-samples/item360/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/spa-suiteapp-samples/item360/tsconfig.test.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/add-button-using-workflow/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/add-button-using-workflow/.gitignore -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/add-button-using-workflow/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/add-button-using-workflow/LICENSE.txt -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/add-button-using-workflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/add-button-using-workflow/README.md -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/add-button-using-workflow/THIRD_PARTY_LICENSES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/add-button-using-workflow/THIRD_PARTY_LICENSES.txt -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/add-button-using-workflow/__tests__/wf_updateCustomerNotes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/add-button-using-workflow/__tests__/wf_updateCustomerNotes.test.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/add-button-using-workflow/assets/oracle_netsuite_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/add-button-using-workflow/assets/oracle_netsuite_logo.png -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/add-button-using-workflow/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/add-button-using-workflow/eslint.config.mjs -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/add-button-using-workflow/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/add-button-using-workflow/jest.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/add-button-using-workflow/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/add-button-using-workflow/jsconfig.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/add-button-using-workflow/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/add-button-using-workflow/package.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/add-button-using-workflow/src/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/add-button-using-workflow/src/deploy.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/add-button-using-workflow/src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/add-button-using-workflow/src/manifest.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/add-button-using-workflow/suitecloud.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/add-button-using-workflow/suitecloud.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/.gitignore -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/LICENSE.txt -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/README.md -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/THIRD_PARTY_LICENSES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/THIRD_PARTY_LICENSES.txt -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/__tests__/sl_executeSuiteletButton.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/__tests__/sl_executeSuiteletButton.test.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/eslint.config.mjs -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/jest.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/jsconfig.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/package-lock.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/package.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/src/InstallationPreferences/hiding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/src/InstallationPreferences/hiding.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/src/InstallationPreferences/locking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/src/InstallationPreferences/locking.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/src/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/src/deploy.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/src/manifest.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/suitecloud.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/add-custom-button-to-suitelet/suitecloud.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/calculate-commission-on-salesorders/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/calculate-commission-on-salesorders/.gitignore -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/calculate-commission-on-salesorders/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/calculate-commission-on-salesorders/LICENSE.txt -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/calculate-commission-on-salesorders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/calculate-commission-on-salesorders/README.md -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/calculate-commission-on-salesorders/THIRD_PARTY_LICENSES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/calculate-commission-on-salesorders/THIRD_PARTY_LICENSES.txt -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/calculate-commission-on-salesorders/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/calculate-commission-on-salesorders/eslint.config.mjs -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/calculate-commission-on-salesorders/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/calculate-commission-on-salesorders/jest.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/calculate-commission-on-salesorders/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/calculate-commission-on-salesorders/jsconfig.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/calculate-commission-on-salesorders/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/calculate-commission-on-salesorders/package-lock.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/calculate-commission-on-salesorders/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/calculate-commission-on-salesorders/package.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/calculate-commission-on-salesorders/src/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/calculate-commission-on-salesorders/src/deploy.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/calculate-commission-on-salesorders/src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/calculate-commission-on-salesorders/src/manifest.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/calculate-commission-on-salesorders/suitecloud.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/calculate-commission-on-salesorders/suitecloud.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/copy-value-to-item-column/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/copy-value-to-item-column/.gitignore -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/copy-value-to-item-column/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/copy-value-to-item-column/LICENSE.txt -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/copy-value-to-item-column/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/copy-value-to-item-column/README.md -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/copy-value-to-item-column/THIRD_PARTY_LICENSES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/copy-value-to-item-column/THIRD_PARTY_LICENSES.txt -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/copy-value-to-item-column/__tests__/cs_copyValueToItem.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/copy-value-to-item-column/__tests__/cs_copyValueToItem.test.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/copy-value-to-item-column/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/copy-value-to-item-column/eslint.config.mjs -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/copy-value-to-item-column/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/copy-value-to-item-column/jest.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/copy-value-to-item-column/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/copy-value-to-item-column/jsconfig.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/copy-value-to-item-column/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/copy-value-to-item-column/package-lock.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/copy-value-to-item-column/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/copy-value-to-item-column/package.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/copy-value-to-item-column/src/Objects/custcol_billingitem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/copy-value-to-item-column/src/Objects/custcol_billingitem.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/copy-value-to-item-column/src/Objects/custform_billingitem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/copy-value-to-item-column/src/Objects/custform_billingitem.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/copy-value-to-item-column/src/Objects/customlist102.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/copy-value-to-item-column/src/Objects/customlist102.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/copy-value-to-item-column/src/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/copy-value-to-item-column/src/deploy.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/copy-value-to-item-column/src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/copy-value-to-item-column/src/manifest.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/copy-value-to-item-column/suitecloud.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/copy-value-to-item-column/suitecloud.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/disable-tax-fields/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/disable-tax-fields/.gitignore -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/disable-tax-fields/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/disable-tax-fields/LICENSE.txt -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/disable-tax-fields/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/disable-tax-fields/README.md -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/disable-tax-fields/THIRD_PARTY_LICENSES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/disable-tax-fields/THIRD_PARTY_LICENSES.txt -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/disable-tax-fields/__tests__/cs_disableTaxFields.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/disable-tax-fields/__tests__/cs_disableTaxFields.test.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/disable-tax-fields/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/disable-tax-fields/eslint.config.mjs -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/disable-tax-fields/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/disable-tax-fields/jest.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/disable-tax-fields/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/disable-tax-fields/jsconfig.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/disable-tax-fields/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/disable-tax-fields/package-lock.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/disable-tax-fields/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/disable-tax-fields/package.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/disable-tax-fields/src/FileCabinet/SuiteScripts/cs_disableTaxFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/disable-tax-fields/src/FileCabinet/SuiteScripts/cs_disableTaxFields.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/disable-tax-fields/src/Objects/customscript_cs_disable_tax_fields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/disable-tax-fields/src/Objects/customscript_cs_disable_tax_fields.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/disable-tax-fields/src/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/disable-tax-fields/src/deploy.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/disable-tax-fields/src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/disable-tax-fields/src/manifest.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/disable-tax-fields/suitecloud.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/disable-tax-fields/suitecloud.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/fulfill-back-orders/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/fulfill-back-orders/.gitignore -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/fulfill-back-orders/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/fulfill-back-orders/LICENSE.txt -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/fulfill-back-orders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/fulfill-back-orders/README.md -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/fulfill-back-orders/THIRD_PARTY_LICENSES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/fulfill-back-orders/THIRD_PARTY_LICENSES.txt -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/fulfill-back-orders/__tests__/updateBackfillOrders-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/fulfill-back-orders/__tests__/updateBackfillOrders-test.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/fulfill-back-orders/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/fulfill-back-orders/assets/back order after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/fulfill-back-orders/assets/back order after.png -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/fulfill-back-orders/assets/back_order_before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/fulfill-back-orders/assets/back_order_before.png -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/fulfill-back-orders/assets/oracle_netsuite_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/fulfill-back-orders/assets/oracle_netsuite_logo.png -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/fulfill-back-orders/assets/sales order record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/fulfill-back-orders/assets/sales order record.png -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/fulfill-back-orders/assets/sales order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/fulfill-back-orders/assets/sales order.png -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/fulfill-back-orders/assets/updated sales order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/fulfill-back-orders/assets/updated sales order.png -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/fulfill-back-orders/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/fulfill-back-orders/eslint.config.mjs -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/fulfill-back-orders/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/fulfill-back-orders/jest.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/fulfill-back-orders/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/fulfill-back-orders/jsconfig.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/fulfill-back-orders/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/fulfill-back-orders/package-lock.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/fulfill-back-orders/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/fulfill-back-orders/package.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/fulfill-back-orders/src/InstallationPreferences/hiding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/fulfill-back-orders/src/InstallationPreferences/hiding.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/fulfill-back-orders/src/InstallationPreferences/locking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/fulfill-back-orders/src/InstallationPreferences/locking.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/fulfill-back-orders/src/Objects/customscript_mr_update_backfill_orders.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/fulfill-back-orders/src/Objects/customscript_mr_update_backfill_orders.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/fulfill-back-orders/src/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/fulfill-back-orders/src/deploy.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/fulfill-back-orders/src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/fulfill-back-orders/src/manifest.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/fulfill-back-orders/suitecloud.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/fulfill-back-orders/suitecloud.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/hide-column-in-sublist/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/hide-column-in-sublist/.gitignore -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/hide-column-in-sublist/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/hide-column-in-sublist/LICENSE.txt -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/hide-column-in-sublist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/hide-column-in-sublist/README.md -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/hide-column-in-sublist/THIRD_PARTY_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/hide-column-in-sublist/THIRD_PARTY_LICENSE.txt -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/hide-column-in-sublist/__tests__/ue_hideSublistColumn.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/hide-column-in-sublist/__tests__/ue_hideSublistColumn.test.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/hide-column-in-sublist/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/hide-column-in-sublist/eslint.config.mjs -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/hide-column-in-sublist/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/hide-column-in-sublist/jest.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/hide-column-in-sublist/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/hide-column-in-sublist/jsconfig.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/hide-column-in-sublist/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/hide-column-in-sublist/package-lock.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/hide-column-in-sublist/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/hide-column-in-sublist/package.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/hide-column-in-sublist/src/Objects/customscript_ue_hide_sublist_column.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/hide-column-in-sublist/src/Objects/customscript_ue_hide_sublist_column.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/hide-column-in-sublist/src/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/hide-column-in-sublist/src/deploy.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/hide-column-in-sublist/src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/hide-column-in-sublist/src/manifest.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/hide-column-in-sublist/suitecloud.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/hide-column-in-sublist/suitecloud.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-create-record/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-create-record/README.md -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-create-record/__tests__/create.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-create-record/__tests__/create.test.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-create-record/assets/customRecord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-create-record/assets/customRecord.png -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-create-record/assets/oracle_netsuite_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-create-record/assets/oracle_netsuite_logo.png -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-create-record/assets/orderRecord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-create-record/assets/orderRecord.png -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-create-record/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-create-record/eslint.config.mjs -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-create-record/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-create-record/jest.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-create-record/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-create-record/jsconfig.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-create-record/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-create-record/package-lock.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-create-record/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-create-record/package.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-create-record/src/FileCabinet/SuiteScripts/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-create-record/src/FileCabinet/SuiteScripts/create.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-create-record/src/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-create-record/src/deploy.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-create-record/src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-create-record/src/manifest.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-create-record/suitecloud.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-create-record/suitecloud.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-execute-macro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-execute-macro/README.md -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-execute-macro/__tests__/macro.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-execute-macro/__tests__/macro.test.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-execute-macro/assets/locationAssigned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-execute-macro/assets/locationAssigned.png -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-execute-macro/assets/oracle_netsuite_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-execute-macro/assets/oracle_netsuite_logo.png -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-execute-macro/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-execute-macro/eslint.config.mjs -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-execute-macro/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-execute-macro/jest.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-execute-macro/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-execute-macro/jsconfig.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-execute-macro/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-execute-macro/package-lock.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-execute-macro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-execute-macro/package.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-execute-macro/src/FileCabinet/SuiteScripts/macro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-execute-macro/src/FileCabinet/SuiteScripts/macro.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-execute-macro/src/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-execute-macro/src/deploy.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-execute-macro/src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-execute-macro/src/manifest.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-execute-macro/suitecloud.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-execute-macro/suitecloud.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-transform-record/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-transform-record/README.md -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-transform-record/__tests__/transform.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-transform-record/__tests__/transform.test.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-transform-record/assets/oracle_netsuite_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-transform-record/assets/oracle_netsuite_logo.png -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-transform-record/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-transform-record/eslint.config.mjs -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-transform-record/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-transform-record/jest.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-transform-record/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-transform-record/jsconfig.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-transform-record/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-transform-record/package-lock.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-transform-record/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-transform-record/package.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-transform-record/src/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-transform-record/src/deploy.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-transform-record/src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-transform-record/src/manifest.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-transform-record/suitecloud.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-transform-record/suitecloud.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-update-record/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-update-record/README.md -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-update-record/__tests__/update.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-update-record/__tests__/update.test.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-update-record/assets/oracle_netsuite_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-update-record/assets/oracle_netsuite_logo.png -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-update-record/assets/updateditemSublist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-update-record/assets/updateditemSublist.png -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-update-record/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-update-record/eslint.config.mjs -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-update-record/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-update-record/jest.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-update-record/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-update-record/jsconfig.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-update-record/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-update-record/package-lock.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-update-record/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-update-record/package.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-update-record/src/FileCabinet/SuiteScripts/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-update-record/src/FileCabinet/SuiteScripts/update.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-update-record/src/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-update-record/src/deploy.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-update-record/src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-update-record/src/manifest.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-update-record/suitecloud.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/map-reduce-scripts/mr-update-record/suitecloud.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/rest-file-api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/rest-file-api/.gitignore -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/rest-file-api/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/rest-file-api/LICENSE.txt -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/rest-file-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/rest-file-api/README.md -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/rest-file-api/__tests__/cs_call_restlet.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/rest-file-api/__tests__/cs_call_restlet.test.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/rest-file-api/__tests__/rs_file_api.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/rest-file-api/__tests__/rs_file_api.test.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/rest-file-api/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/rest-file-api/eslint.config.mjs -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/rest-file-api/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/rest-file-api/jest.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/rest-file-api/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/rest-file-api/jsconfig.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/rest-file-api/oracle_netsuite_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/rest-file-api/oracle_netsuite_logo.png -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/rest-file-api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/rest-file-api/package-lock.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/rest-file-api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/rest-file-api/package.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/rest-file-api/src/FileCabinet/SuiteScripts/cs_call_restlet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/rest-file-api/src/FileCabinet/SuiteScripts/cs_call_restlet.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/rest-file-api/src/FileCabinet/SuiteScripts/rs_file_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/rest-file-api/src/FileCabinet/SuiteScripts/rs_file_api.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/rest-file-api/src/Objects/customscript_cs_call_restlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/rest-file-api/src/Objects/customscript_cs_call_restlet.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/rest-file-api/src/Objects/customscript_nscs_rl_rest_file_api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/rest-file-api/src/Objects/customscript_nscs_rl_rest_file_api.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/rest-file-api/src/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/rest-file-api/src/deploy.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/rest-file-api/src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/rest-file-api/src/manifest.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/rest-file-api/suitecloud.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/rest-file-api/suitecloud.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/rest-file-api/vendor-record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/rest-file-api/vendor-record.png -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/.gitignore -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/LICENSE.txt -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/README.md -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/THIRD_PARTY_LICENSES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/THIRD_PARTY_LICENSES.txt -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/__tests__/ue_handle_deposit.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/__tests__/ue_handle_deposit.test.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/__tests__/ue_handle_refund.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/__tests__/ue_handle_refund.test.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/__tests__/ue_set_custom_fields.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/__tests__/ue_set_custom_fields.test.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/__tests__/ue_update_custom_fields.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/__tests__/ue_update_custom_fields.test.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/eslint.config.mjs -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/jest.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/jsconfig.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/package-lock.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/package.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/src/Objects/custbody_balance_remaining.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/src/Objects/custbody_balance_remaining.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/src/Objects/custbody_total_deposit_paid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/src/Objects/custbody_total_deposit_paid.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/src/Objects/customsearch_sobalancedue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/src/Objects/customsearch_sobalancedue.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/src/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/src/deploy.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/src/manifest.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/suitecloud.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/salesorder-deposit-tracking/suitecloud.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-default-posting-period/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-default-posting-period/.gitignore -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-default-posting-period/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-default-posting-period/LICENSE.txt -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-default-posting-period/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-default-posting-period/README.md -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-default-posting-period/THIRD_PARTY_LICENSES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-default-posting-period/THIRD_PARTY_LICENSES.txt -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-default-posting-period/__tests__/cs_preferredPostingPeriod.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-default-posting-period/__tests__/cs_preferredPostingPeriod.test.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-default-posting-period/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-default-posting-period/eslint.config.mjs -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-default-posting-period/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-default-posting-period/jest.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-default-posting-period/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-default-posting-period/jsconfig.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-default-posting-period/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-default-posting-period/package-lock.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-default-posting-period/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-default-posting-period/package.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-default-posting-period/src/Objects/custform_posting_invoice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-default-posting-period/src/Objects/custform_posting_invoice.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-default-posting-period/src/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-default-posting-period/src/deploy.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-default-posting-period/src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-default-posting-period/src/manifest.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-default-posting-period/suitecloud.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-default-posting-period/suitecloud.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/.gitignore -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/LICENSE.txt -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/README.md -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/THIRD_PARTY_LICENSES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/THIRD_PARTY_LICENSES.txt -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/__tests__/cs_defaultSublistValues.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/__tests__/cs_defaultSublistValues.test.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/eslint.config.mjs -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/jest.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/jsconfig.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/package-lock.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/package.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/src/Objects/custentity_custom_class.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/src/Objects/custentity_custom_class.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/src/Objects/custentity_custom_department.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/src/Objects/custentity_custom_department.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/src/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/src/deploy.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/src/manifest.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/suitecloud.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-default-values-in-sublist/suitecloud.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/.gitignore -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/LICENSE.txt -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/README.md -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/THIRD_PARTY_LICENSES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/THIRD_PARTY_LICENSES.txt -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/__tests__/ue_marketingOrder.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/__tests__/ue_marketingOrder.test.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/eslint.config.mjs -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/jest.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/jsconfig.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/package-lock.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/package.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/src/FileCabinet/SuiteScripts/ue_marketingOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/src/FileCabinet/SuiteScripts/ue_marketingOrder.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/src/Objects/custbody_marketing_order.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/src/Objects/custbody_marketing_order.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/src/Objects/customscript_ue_marketing_order.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/src/Objects/customscript_ue_marketing_order.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/src/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/src/deploy.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/src/manifest.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/suitecloud.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-item-amount-to-zero/suitecloud.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-po-exchange-rate/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-po-exchange-rate/.gitignore -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-po-exchange-rate/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-po-exchange-rate/LICENSE.txt -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-po-exchange-rate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-po-exchange-rate/README.md -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-po-exchange-rate/THIRD_PARTY_LICENSES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-po-exchange-rate/THIRD_PARTY_LICENSES.txt -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-po-exchange-rate/__tests__/cs_poExchangeRate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-po-exchange-rate/__tests__/cs_poExchangeRate.test.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-po-exchange-rate/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-po-exchange-rate/eslint.config.mjs -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-po-exchange-rate/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-po-exchange-rate/jest.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-po-exchange-rate/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-po-exchange-rate/jsconfig.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-po-exchange-rate/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-po-exchange-rate/package-lock.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-po-exchange-rate/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-po-exchange-rate/package.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-po-exchange-rate/src/FileCabinet/SuiteScripts/cs_poExchangeRate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-po-exchange-rate/src/FileCabinet/SuiteScripts/cs_poExchangeRate.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-po-exchange-rate/src/Objects/custbody__currency_po_amount.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-po-exchange-rate/src/Objects/custbody__currency_po_amount.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-po-exchange-rate/src/Objects/custbody_currency_exchange_rate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-po-exchange-rate/src/Objects/custbody_currency_exchange_rate.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-po-exchange-rate/src/Objects/customscript_cs_po_set_exchange_rate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-po-exchange-rate/src/Objects/customscript_cs_po_set_exchange_rate.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-po-exchange-rate/src/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-po-exchange-rate/src/deploy.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-po-exchange-rate/src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-po-exchange-rate/src/manifest.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/set-po-exchange-rate/suitecloud.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/set-po-exchange-rate/suitecloud.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/validate-order-on-entry/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/validate-order-on-entry/.gitignore -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/validate-order-on-entry/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/validate-order-on-entry/LICENSE.txt -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/validate-order-on-entry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/validate-order-on-entry/README.md -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/validate-order-on-entry/THIRD_PARTY_LICENSES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/validate-order-on-entry/THIRD_PARTY_LICENSES.txt -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/validate-order-on-entry/__tests__/cs_validateOrder.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/validate-order-on-entry/__tests__/cs_validateOrder.test.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/validate-order-on-entry/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/validate-order-on-entry/eslint.config.mjs -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/validate-order-on-entry/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/validate-order-on-entry/jest.config.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/validate-order-on-entry/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/validate-order-on-entry/jsconfig.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/validate-order-on-entry/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/validate-order-on-entry/package-lock.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/validate-order-on-entry/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/validate-order-on-entry/package.json -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/validate-order-on-entry/src/FileCabinet/SuiteScripts/cs_validateOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/validate-order-on-entry/src/FileCabinet/SuiteScripts/cs_validateOrder.js -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/validate-order-on-entry/src/Objects/custcol_cases_per_pallet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/validate-order-on-entry/src/Objects/custcol_cases_per_pallet.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/validate-order-on-entry/src/Objects/custcol_item_weight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/validate-order-on-entry/src/Objects/custcol_item_weight.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/validate-order-on-entry/src/Objects/customscript_cs_validate_order.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/validate-order-on-entry/src/Objects/customscript_cs_validate_order.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/validate-order-on-entry/src/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/validate-order-on-entry/src/deploy.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/validate-order-on-entry/src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/validate-order-on-entry/src/manifest.xml -------------------------------------------------------------------------------- /suitecloud-legacy-solutions-catalog/validate-order-on-entry/suitecloud.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suitecloud-legacy-solutions-catalog/validate-order-on-entry/suitecloud.config.js -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/README.md -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/enhancing-business-flows/automatic-purchasing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/enhancing-business-flows/automatic-purchasing/README.md -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/enhancing-business-flows/automatic-purchasing/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/enhancing-business-flows/automatic-purchasing/deploy.xml -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/enhancing-business-flows/automatic-purchasing/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/enhancing-business-flows/automatic-purchasing/diagram.png -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/enhancing-business-flows/automatic-purchasing/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/enhancing-business-flows/automatic-purchasing/manifest.xml -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/enhancing-business-flows/shipping-container/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/enhancing-business-flows/shipping-container/InstallationPreferences/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/enhancing-business-flows/shipping-container/Objects/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/enhancing-business-flows/shipping-container/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/enhancing-business-flows/shipping-container/deploy.xml -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/enhancing-business-flows/shipping-container/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/enhancing-business-flows/shipping-container/diagram.png -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/enhancing-business-flows/shipping-container/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/enhancing-business-flows/shipping-container/manifest.xml -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/llm/chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/llm/chatbot/README.md -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/llm/chatbot/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/llm/chatbot/assets/chatbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/llm/chatbot/assets/chatbot.png -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/llm/chatbot/assets/oracle_netsuite_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/llm/chatbot/assets/oracle_netsuite_logo.png -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/llm/chatbot/sl_chatbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/llm/chatbot/sl_chatbot.js -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/llm/fix-typos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/llm/fix-typos/README.md -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/llm/fix-typos/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/llm/fix-typos/assets/after_typo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/llm/fix-typos/assets/after_typo.png -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/llm/fix-typos/assets/before_typo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/llm/fix-typos/assets/before_typo.png -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/llm/fix-typos/assets/oracle_netsuite_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/llm/fix-typos/assets/oracle_netsuite_logo.png -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/llm/fix-typos/fix-typos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/llm/fix-typos/fix-typos.js -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/map-reduce-suiteql/1_-_Simple_Query_+_Run_SuiteQL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/map-reduce-suiteql/1_-_Simple_Query_+_Run_SuiteQL.js -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/map-reduce-suiteql/3_-_RAW_SQL.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/map-reduce-suiteql/3_-_RAW_SQL.sql -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/map-reduce-suiteql/4_-_Optimized_SQL.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/map-reduce-suiteql/4_-_Optimized_SQL.sql -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/map-reduce-suiteql/5_-_MapReduce_Script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/map-reduce-suiteql/5_-_MapReduce_Script.js -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/map-reduce-suiteql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/map-reduce-suiteql/README.md -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/map-reduce-suiteql/oracle_netsuite_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/map-reduce-suiteql/oracle_netsuite_logo.png -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/record-scripting/com.netsuite.defaulting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/record-scripting/com.netsuite.defaulting/README.md -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/record-scripting/com.netsuite.defaulting/ue_defaulting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/record-scripting/com.netsuite.defaulting/ue_defaulting.js -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/record-scripting/com.netsuite.dynamicOptions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/record-scripting/com.netsuite.dynamicOptions/README.md -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/record-scripting/com.netsuite.locking/Objects/custbody_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/record-scripting/com.netsuite.locking/Objects/custbody_lock.xml -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/record-scripting/com.netsuite.locking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/record-scripting/com.netsuite.locking/README.md -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/record-scripting/com.netsuite.locking/ue_locking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/record-scripting/com.netsuite.locking/ue_locking.js -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/record-scripting/com.netsuite.redirect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/record-scripting/com.netsuite.redirect/README.md -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/record-scripting/com.netsuite.redirect/ue_redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/record-scripting/com.netsuite.redirect/ue_redirect.js -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/suitescript-internationalization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/suitescript-internationalization/README.md -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/suitescript-internationalization/oracle_netsuite_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/suitescript-internationalization/oracle_netsuite_logo.png -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/suitescript-internationalization/swTab_cz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/suitescript-internationalization/swTab_cz.js -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/suitescript-internationalization/swTab_en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/suitescript-internationalization/swTab_en.js -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/suitescript-internationalization/ue_en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/suitescript-internationalization/ue_en.js -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/suitescript-optimization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/suitescript-optimization/README.md -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/suitescript-optimization/oracle_netsuite_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/suitescript-optimization/oracle_netsuite_logo.png -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/suitescript-optimization/sl_cacheManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/suitescript-optimization/sl_cacheManager.js -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/suitescript-optimization/ue_PerStateMatrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/suitescript-optimization/ue_PerStateMatrix.js -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/suitetalk-rest-apis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/suitetalk-rest-apis/README.md -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/suitetalk-rest-apis/oracle_netsuite_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/suitetalk-rest-apis/oracle_netsuite_logo.png -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/suitetalk-rest-apis/rest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/suitetalk-rest-apis/rest.json -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/third-party-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/third-party-tools/README.md -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/third-party-tools/customStubs/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/third-party-tools/customStubs/http.js -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/third-party-tools/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/third-party-tools/jest.config.js -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/third-party-tools/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/third-party-tools/jsconfig.json -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/third-party-tools/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/third-party-tools/package-lock.json -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/third-party-tools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/third-party-tools/package.json -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/third-party-tools/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultAuthId": "runbox1" 3 | } -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/third-party-tools/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/third-party-tools/rollup.config.mjs -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/third-party-tools/src/InstallationPreferences/hiding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/third-party-tools/src/InstallationPreferences/hiding.xml -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/third-party-tools/src/InstallationPreferences/locking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/third-party-tools/src/InstallationPreferences/locking.xml -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/third-party-tools/src/Objects/customscript_restlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/third-party-tools/src/Objects/customscript_restlet.xml -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/third-party-tools/src/Objects/customscript_suitelet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/third-party-tools/src/Objects/customscript_suitelet.xml -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/third-party-tools/src/deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/third-party-tools/src/deploy.xml -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/third-party-tools/src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/third-party-tools/src/manifest.xml -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/third-party-tools/suitecloud.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/third-party-tools/suitecloud.config.js -------------------------------------------------------------------------------- /suiteworld-samples/suiteworld2024-code-samples/third-party-tools/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/netsuite-suitecloud-samples/HEAD/suiteworld-samples/suiteworld2024-code-samples/third-party-tools/tsconfig.json --------------------------------------------------------------------------------