├── .all-dependencies.js ├── .eslint-rules.js ├── .github └── workflows │ ├── build_app.yml │ ├── ci.yml │ ├── lint.yml │ ├── pr_greetings.yml │ └── scripts │ ├── generate-app-build-pr-comment.js │ └── generate-changelog-from-github-context.js ├── .gitignore ├── .prettierrc.js ├── .vscode ├── .gitignore └── settings.json.sample ├── App ├── .babelrc ├── .bundle │ └── config ├── .eslintrc.js ├── .gitignore ├── .storybook │ ├── Storybook.tsx │ ├── main.js │ ├── preview.js │ └── storybook.requires.js ├── .temp_dbs │ └── .gitkeep ├── .watchmanconfig ├── Gemfile ├── README.md ├── _node-version ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── libs │ │ │ └── DeviceAPI.aar │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── vg │ │ │ │ └── zeta │ │ │ │ └── app │ │ │ │ └── inventory │ │ │ │ └── ReactNativeFlipper.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-playstore.png │ │ │ ├── java │ │ │ │ └── vg │ │ │ │ │ └── zeta │ │ │ │ │ └── app │ │ │ │ │ └── inventory │ │ │ │ │ ├── AndroidBug5497WorkaroundReactActivity.java │ │ │ │ │ ├── AppPackage.java │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ ├── MainApplication.java │ │ │ │ │ ├── RFIDWithUHFBLEModule.java │ │ │ │ │ └── RFIDWithUHFUARTModule.java │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ └── rn_edit_text_material.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ ├── ic_launcher_dev.xml │ │ │ │ ├── ic_launcher_round.xml │ │ │ │ └── ic_launcher_round_dev.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_foreground_dev.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── ic_launcher_round_dev.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_foreground_dev.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── ic_launcher_round_dev.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_foreground_dev.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── ic_launcher_round_dev.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_foreground_dev.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── ic_launcher_round_dev.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_foreground_dev.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── ic_launcher_round_dev.png │ │ │ │ ├── raw │ │ │ │ ├── beep.ogg │ │ │ │ ├── beep_slight.ogg │ │ │ │ └── serror.ogg │ │ │ │ └── values │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── release │ │ │ └── java │ │ │ └── vg │ │ │ └── zeta │ │ │ └── app │ │ │ └── inventory │ │ │ └── ReactNativeFlipper.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── app │ ├── App.tsx │ ├── LPJQ.ts │ ├── SplashScreen.tsx │ ├── StorybookUIRoot.tsx │ ├── components │ │ ├── ActionSheet │ │ │ ├── ActionSheet.stories.tsx │ │ │ └── Sample.tsx │ │ ├── AppBarIOS.tsx │ │ ├── Appbar │ │ │ ├── Appbar.tsx │ │ │ └── index.ts │ │ ├── BlackText.tsx │ │ ├── Button │ │ │ ├── Button.stories.tsx │ │ │ ├── Button.tsx │ │ │ └── index.ts │ │ ├── ColorSelect.tsx │ │ ├── Configuration.tsx │ │ ├── DatePicker │ │ │ ├── DatePicker.stories.tsx │ │ │ ├── DatePicker.tsx │ │ │ └── index.ts │ │ ├── DatumHistoryItem │ │ │ ├── DatumHistoryItem.tsx │ │ │ └── index.ts │ │ ├── EditingListView │ │ │ ├── EditingListView.stories.tsx │ │ │ ├── EditingListView.tsx │ │ │ ├── TableViewIOS.android.tsx │ │ │ ├── TableViewIOS.ios.tsx │ │ │ ├── TableViewIOS.tsx │ │ │ └── index.ts │ │ ├── ElevatedButton │ │ │ ├── ElevatedButton.stories.tsx │ │ │ ├── ElevatedButton.tsx │ │ │ └── index.ts │ │ ├── ErrorBoundary.tsx │ │ ├── FullWidthImage.tsx │ │ ├── Icon │ │ │ ├── Icon.stories.tsx │ │ │ ├── Icon.tsx │ │ │ └── index.ts │ │ ├── InsetGroup │ │ │ ├── InsetGroup.stories.tsx │ │ │ ├── InsetGroup.tsx │ │ │ ├── images │ │ │ │ ├── ios-ui.tableview.checked.dark.png │ │ │ │ └── ios-ui.tableview.checked.light.png │ │ │ └── index.ts │ │ ├── LoadingOverlay.tsx │ │ ├── Menu │ │ │ ├── Menu.stories.tsx │ │ │ ├── MenuView.tsx │ │ │ ├── Sample.tsx │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── ModalContent.tsx │ │ ├── ModalContentScrollView │ │ │ ├── ModalContentScrollView.stories.tsx │ │ │ ├── ModalContentScrollView.tsx │ │ │ └── index.ts │ │ ├── NeomorphShadow │ │ │ ├── NeomorphBox.tsx │ │ │ ├── NeomorphShadow.stories.tsx │ │ │ └── index.ts │ │ ├── README.md │ │ ├── RubberButton │ │ │ ├── RubberButton.stories.tsx │ │ │ ├── RubberButton.tsx │ │ │ └── index.ts │ │ ├── ScreenContent.tsx │ │ ├── ScreenContentScrollView │ │ │ ├── ScreenContentScrollView.stories.tsx │ │ │ ├── ScreenContentScrollView.tsx │ │ │ └── index.ts │ │ ├── StorybookSection.tsx │ │ ├── StorybookStoryContainer.tsx │ │ ├── Switch │ │ │ ├── Switch.stories.tsx │ │ │ ├── Switch.tsx │ │ │ └── index.ts │ │ ├── TableView │ │ │ ├── TableView.stories.tsx │ │ │ ├── TableView.tsx │ │ │ ├── TableViewIOS.android.tsx │ │ │ ├── TableViewIOS.ios.tsx │ │ │ ├── TableViewIOS.tsx │ │ │ └── index.ts │ │ ├── Text │ │ │ ├── Text.stories.tsx │ │ │ ├── Text.tsx │ │ │ └── index.ts │ │ ├── TextInput │ │ │ ├── TextInput.stories.tsx │ │ │ ├── TextInput.tsx │ │ │ └── index.ts │ │ ├── TimeAgo │ │ │ ├── TimeAgo.stories.tsx │ │ │ ├── TimeAgo.tsx │ │ │ └── index.ts │ │ ├── UIGroup │ │ │ ├── UIGroup.stories.tsx │ │ │ ├── UIGroup.tsx │ │ │ ├── UIGroupFirstGroupSpacing.tsx │ │ │ ├── UIGroupListItem.tsx │ │ │ ├── UIGroupListItemSeparator.tsx │ │ │ ├── UIGroupListTextInputItem.tsx │ │ │ ├── examples.tsx │ │ │ ├── hooks.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── UIGroupPaginator │ │ │ ├── UIGroupPaginator.stories.tsx │ │ │ ├── UIGroupPaginator.tsx │ │ │ ├── examples.tsx │ │ │ └── index.ts │ │ ├── ViewableImage.tsx │ │ └── _README │ │ │ ├── README.stories.tsx │ │ │ └── README.tsx │ ├── consts │ │ ├── MaterialCommunityIcons.json │ │ ├── animations.ts │ │ ├── chars.ts │ │ ├── default-icons.ts │ │ ├── icons.ts │ │ ├── info.ts │ │ └── material-community-icons.ts │ ├── data │ │ ├── callbacks.ts │ │ ├── functions │ │ │ ├── getContext.ts │ │ │ └── index.ts │ │ ├── hooks │ │ │ ├── useConfig.ts │ │ │ ├── useData.ts │ │ │ ├── useDataCount.ts │ │ │ ├── useRelated.ts │ │ │ ├── useSave.ts │ │ │ └── useView.ts │ │ ├── images │ │ │ ├── getImageDatum.ts │ │ │ ├── processAssets.ts │ │ │ └── useImageSelector.ts │ │ ├── index.ts │ │ ├── relations.ts │ │ ├── schema.ts │ │ ├── types.ts │ │ ├── utils.ts │ │ └── validation.ts │ ├── db │ │ ├── app_db │ │ │ └── index.ts │ │ ├── configUtils.ts │ │ ├── hooks │ │ │ ├── index.ts │ │ │ └── useDB.ts │ │ ├── index.ts │ │ ├── pouchdb.ts │ │ └── sqlite.ts │ ├── features │ │ ├── cache.ts │ │ ├── counter │ │ │ ├── README.md │ │ │ ├── screens │ │ │ │ └── CounterScreen.tsx │ │ │ └── slice.ts │ │ ├── counters │ │ │ ├── README.md │ │ │ ├── screens │ │ │ │ └── CountersScreen.tsx │ │ │ └── slice.ts │ │ ├── db-sync │ │ │ ├── DBSyncManager.tsx │ │ │ ├── components │ │ │ │ └── ServerList.tsx │ │ │ ├── hooks │ │ │ │ └── useNewOrEditServerUI.tsx │ │ │ ├── screens │ │ │ │ ├── DBSyncNewOrEditServerModalScreen.tsx │ │ │ │ ├── DBSyncScreen.tsx │ │ │ │ └── DBSyncServerDetailScreen.tsx │ │ │ └── slice.ts │ │ ├── dev-tools │ │ │ └── slice.ts │ │ ├── integrations │ │ │ ├── screens │ │ │ │ ├── AddIntegrationModalScreen.tsx │ │ │ │ ├── AirtableIntegrationScreen.tsx │ │ │ │ ├── IntegrationsScreen.tsx │ │ │ │ └── NewOrEditAirtableIntegrationScreen.tsx │ │ │ └── slice.ts │ │ ├── inventory │ │ │ ├── components │ │ │ │ ├── CheckItems.tsx │ │ │ │ ├── ChecklistItem.tsx │ │ │ │ ├── CollectionListItem.tsx │ │ │ │ ├── EditImagesUI.tsx │ │ │ │ ├── IconColorSelectInput.tsx │ │ │ │ ├── IconInputUIGroup.tsx │ │ │ │ ├── IconSelectInput.tsx │ │ │ │ ├── ImagesSliderBox.tsx │ │ │ │ ├── ItemListItem.tsx │ │ │ │ ├── ItemListItemById.tsx │ │ │ │ ├── PlusAndMinusButtons.tsx │ │ │ │ └── StockStatusIcon.tsx │ │ │ ├── consts │ │ │ │ └── SEARCH_OPTIONS.ts │ │ │ ├── hooks │ │ │ │ └── useCheckItems.tsx │ │ │ ├── screens │ │ │ │ ├── ChecklistScreen.tsx │ │ │ │ ├── ChecklistsScreen.tsx │ │ │ │ ├── CollectionScreen.tsx │ │ │ │ ├── CollectionsScreen.tsx │ │ │ │ ├── DashboardScreen.tsx │ │ │ │ ├── ExpiredItemsScreen.tsx │ │ │ │ ├── ExportItemsToCsvScreen.tsx │ │ │ │ ├── ImportItemsFromCsvScreen.tsx │ │ │ │ ├── ItemScreen.tsx │ │ │ │ ├── ItemsScreen.tsx │ │ │ │ ├── LowOrOutOfStockItemsScreen.tsx │ │ │ │ ├── OrderItemsScreen.tsx │ │ │ │ ├── RFIDUntaggedItemsScreen.tsx │ │ │ │ ├── SaveChecklistScreen.tsx │ │ │ │ ├── SaveCollectionScreen.tsx │ │ │ │ ├── SaveItemScreen.tsx │ │ │ │ ├── SearchOptionsScreen.tsx │ │ │ │ ├── SearchScreen.tsx │ │ │ │ ├── SelectCollectionModalScreen.tsx │ │ │ │ ├── SelectCurrencyModalScreen.tsx │ │ │ │ ├── SelectItemModalScreen.tsx │ │ │ │ ├── SelectItemTypeModalScreen.tsx │ │ │ │ └── StatisticsScreen.tsx │ │ │ ├── slice.ts │ │ │ └── utils │ │ │ │ ├── __snapshots__ │ │ │ │ └── getChildrenItemIds.test.ts.snap.old │ │ │ │ ├── csv-import.test.ts │ │ │ │ ├── csv-import.ts │ │ │ │ ├── csvRowToItem.test.ts │ │ │ │ ├── csvRowToItem.ts │ │ │ │ ├── getChildrenItemIds.test.ts │ │ │ │ ├── getChildrenItemIds.ts │ │ │ │ └── itemToCsvRow.ts │ │ ├── label-printers │ │ │ ├── components │ │ │ │ ├── PrintingOptions.tsx │ │ │ │ └── PrintingPreview.tsx │ │ │ ├── print-utils.test.ts │ │ │ ├── print-utils.ts │ │ │ ├── printing.ts │ │ │ ├── screens │ │ │ │ ├── LabelPrintersScreen.tsx │ │ │ │ ├── NewOrEditLabelPrinterModalScreen.tsx │ │ │ │ ├── PrintLabelModalScreen.tsx │ │ │ │ └── TestPrinterConfigModalScreen.tsx │ │ │ ├── slice.ts │ │ │ └── types.ts │ │ ├── profiles │ │ │ ├── beforeDeleteProfile.ts │ │ │ ├── components │ │ │ │ ├── ProfileSelector.tsx │ │ │ │ └── ProfileSwitcher.tsx │ │ │ ├── index.ts │ │ │ ├── screens │ │ │ │ ├── CreateOrUpdateProfileScreen.tsx │ │ │ │ ├── DeleteProfileScreen.tsx │ │ │ │ ├── NewProfileScreen.tsx │ │ │ │ ├── SelectProfileToEditScreen.tsx │ │ │ │ └── SwitchProfileScreen.tsx │ │ │ ├── selectors.ts │ │ │ └── slice.ts │ │ ├── rfid │ │ │ ├── RFIDSheet.tsx │ │ │ ├── hooks │ │ │ │ └── useBottomSheetDynamicSnapPoints.ts │ │ │ └── utils.ts │ │ └── settings │ │ │ ├── components │ │ │ └── AppIconSelector.tsx │ │ │ ├── screens │ │ │ └── UIAndAppearanceSettingsScreen.tsx │ │ │ └── slice.ts │ ├── hooks │ │ ├── useActionSheet.ts │ │ ├── useAutoFocus.ts │ │ ├── useColors.ts │ │ ├── useDB.ts │ │ ├── useDebouncedValue.ts │ │ ├── useDeepCompare.ts │ │ ├── useForwardedRef.ts │ │ ├── useIsDarkMode.ts │ │ ├── useLogger.ts │ │ ├── useModalClosingHandler.ts │ │ ├── useNumberInputChangeHandler.ts │ │ ├── useOrdered.ts │ │ ├── usePersistedState.ts │ │ ├── useScrollTo.ts │ │ ├── useScrollViewAutomaticallyAdjustKeyboardInsetsFix.ts │ │ ├── useScrollViewContentInsetFix.ts │ │ ├── useScrollViewFirstInputAutoFocusFix.ts │ │ ├── useTabBarInsets.ts │ │ └── useTheme.ts │ ├── images │ │ ├── app-icons │ │ │ ├── black-monochrome.png │ │ │ ├── dark-vibrant.png │ │ │ ├── dark.png │ │ │ ├── default.png │ │ │ ├── dev.png │ │ │ ├── light-vibrant.png │ │ │ ├── nightly.png │ │ │ └── white-monochrome.png │ │ ├── how_to_switch_profile.png │ │ ├── image_loading_placeholder.png │ │ ├── index.ts │ │ ├── ios-menu.developer.png │ │ ├── ios-menu.export.png │ │ ├── ios-menu.import.png │ │ ├── ios-menu.locate.png │ │ ├── ios-menu.person.png │ │ ├── ios-menu.site.png │ │ ├── ios-menu.tag.png │ │ ├── ios-menu.tools.png │ │ ├── ios-menu.travel.png │ │ ├── ios-menu.wireless-read.png │ │ ├── ios-menu.wireless-scan.png │ │ ├── ios-menu.wireless-write.png │ │ └── label_preview_placeholder.png │ ├── lib │ │ └── types │ │ │ ├── crypto-browserify.d.ts │ │ │ ├── react-native-neomorph-shadows.d.ts │ │ │ └── redux-persist-sensitive-storage.d.ts │ ├── logger │ │ ├── __mocks__ │ │ │ └── logsDB.ts │ │ ├── index.ts │ │ ├── logger.ts │ │ ├── logsDB.ts │ │ └── types.ts │ ├── modules │ │ ├── ChangeAppIcon.ts │ │ ├── LinguisticTaggerModuleIOS.ts │ │ ├── RFIDWithUHFBLEModule.ts │ │ ├── RFIDWithUHFBaseModule.ts │ │ └── RFIDWithUHFUARTModule.ts │ ├── navigation │ │ ├── MainStack.tsx │ │ ├── Navigation.tsx │ │ ├── RootBottomSheetsContext.tsx │ │ ├── RootNavigationContext.tsx │ │ └── index.tsx │ ├── onAppLoaded.ts │ ├── redux │ │ ├── hooks.ts │ │ ├── index.ts │ │ ├── middlewares │ │ │ └── logger.ts │ │ ├── store.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── screens │ │ ├── AboutScreen.tsx │ │ ├── AddIntegrationModalScreen.tsx │ │ ├── AppLogDetailScreen.tsx │ │ ├── AppLogsFilterScreen.tsx │ │ ├── AppLogsScreen.tsx │ │ ├── AppLogsSettingsScreen.tsx │ │ ├── ConfigurationScreen.tsx │ │ ├── DatabaseManagementScreen.tsx │ │ ├── DatePickerModalScreen.tsx │ │ ├── DemoModalScreen.tsx │ │ ├── DevChangeIconScreen.tsx │ │ ├── DeveloperToolsScreen.tsx │ │ ├── EPCTDSScreen.tsx │ │ ├── FixDataConsistencyScreen.tsx │ │ ├── GenericTextDetailsScreen.tsx │ │ ├── GetSecretsModalScreen.tsx │ │ ├── HowToSwitchBetweenProfilesScreen.tsx │ │ ├── ImageScreen.tsx │ │ ├── ImagesScreen.tsx │ │ ├── LinguisticTaggerModuleIOSScreen.tsx │ │ ├── LoggerLogScreen.tsx │ │ ├── MoreScreen.tsx │ │ ├── NewAppScreen.tsx │ │ ├── NotImplementedScreen.tsx │ │ ├── OnboardingScreen.tsx │ │ ├── RFIDUHFModuleScreen.tsx │ │ ├── RNFSScreen.tsx │ │ ├── ReduxActionDetailScreen.tsx │ │ ├── ReduxScreen.tsx │ │ ├── ReduxSelectActionScreen.tsx │ │ ├── RfidScanScreen.tsx │ │ ├── SQLiteScreen.tsx │ │ ├── SampleModalScreen.tsx │ │ ├── SampleScreen.tsx │ │ ├── SelectIconScreen.tsx │ │ ├── SettingsScreen.tsx │ │ ├── StorybookScreen.tsx │ │ ├── data-history │ │ │ ├── HistoryBatchModalScreen.tsx │ │ │ └── HistoryBatchesModalScreen.tsx │ │ └── dev-tools │ │ │ ├── BenchmarkScreen.tsx │ │ │ ├── EPCUtilsScreen.tsx │ │ │ ├── data │ │ │ ├── DataListScreen.tsx │ │ │ ├── DataTypesScreen.tsx │ │ │ ├── DatumScreen.tsx │ │ │ ├── DevDataMigrationScreen.tsx │ │ │ └── SaveDataModalScreen.tsx │ │ │ └── pouchdb │ │ │ ├── PouchDBAttachmentScreen.tsx │ │ │ ├── PouchDBIndexDetailScreen.tsx │ │ │ ├── PouchDBIndexesScreen.tsx │ │ │ ├── PouchDBItemScreen.tsx │ │ │ ├── PouchDBPutDataModalScreen.tsx │ │ │ ├── PouchDBScreen.tsx │ │ │ └── PouchDBSettingsScreen.tsx │ ├── theme.ts │ └── utils │ │ ├── DeepReadonly.ts │ │ ├── base64FromFile.ts │ │ ├── camelToSnakeCase.ts │ │ ├── commonStyles.ts │ │ ├── deepMerge.js │ │ ├── exposedSafeAreaInsets.tsx │ │ ├── filterObjectKeys.ts │ │ ├── formatDate.ts │ │ ├── humanFileSize.ts │ │ ├── insertTimestampIdRecord.ts │ │ ├── isTextContent.ts │ │ ├── mapObjectValues.ts │ │ ├── moveItemInArray.ts │ │ ├── objectEntries.ts │ │ ├── randomHex.ts │ │ ├── randomInt.ts │ │ ├── randomUniqueUuid.ts │ │ ├── readAsArrayBuffer-polyfill.js │ │ ├── removePasswordFromJSON.ts │ │ ├── replaceSpace.ts │ │ ├── text-input-whitespace-fix.ts │ │ ├── timeAgo.ts │ │ ├── titleCase.ts │ │ ├── types.ts │ │ └── verifyMaterialCommunityIconName.ts ├── babel.config.js ├── ignore-logs.ts ├── index.js ├── ios │ ├── .clang-format │ ├── .xcode.env │ ├── Gemfile │ ├── Gemfile.lock │ ├── Inventory.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── Inventory (Dev).xcscheme │ │ │ ├── Inventory (Nightly).xcscheme │ │ │ └── Inventory.xcscheme │ ├── Inventory.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── Inventory │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Images.xcassets │ │ │ ├── AppIcon-black-monochrome.appiconset │ │ │ │ ├── Contents.json │ │ │ │ └── Icon V2 - Black Monochrome.png │ │ │ ├── AppIcon-dark-vibrant.appiconset │ │ │ │ ├── Contents.json │ │ │ │ └── Icon V2 - Dark Vibrant.png │ │ │ ├── AppIcon-dark.appiconset │ │ │ │ ├── Contents.json │ │ │ │ └── Icon V2 - Dark.png │ │ │ ├── AppIcon-dev.appiconset │ │ │ │ ├── Contents.json │ │ │ │ └── Icon V2 - Dev.png │ │ │ ├── AppIcon-light-vibrant.appiconset │ │ │ │ ├── Contents.json │ │ │ │ └── Icon V2 - Light Vibrant.png │ │ │ ├── AppIcon-stg.appiconset │ │ │ │ ├── Contents.json │ │ │ │ └── Icon V2 - Nightly.png │ │ │ ├── AppIcon-white-monochrome.appiconset │ │ │ │ ├── Contents.json │ │ │ │ └── Icon V2 - White Monochrome.png │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ └── Icon V2 - Default.png │ │ │ ├── Contents.json │ │ │ ├── ios-menu.checklists-green.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ios-menu.checklists.png │ │ │ ├── ios-menu.checklists.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ios-menu.checklists.png │ │ │ ├── ios-menu.collections.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ios-menu.collections.png │ │ │ ├── ios-menu.database.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ios-menu.database.png │ │ │ ├── ios-menu.developer.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ios-menu.developer.png │ │ │ ├── ios-menu.export.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ios-menu.export.png │ │ │ ├── ios-menu.import.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ios-menu.import.png │ │ │ ├── ios-menu.info.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ios-menu.info.png │ │ │ ├── ios-menu.integrations-green.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ios-menu.integrations-green.png │ │ │ ├── ios-menu.integrations-orange.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ios-menu.integrations-orange.png │ │ │ ├── ios-menu.locate.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ios-menu.locate.png │ │ │ ├── ios-menu.person.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ios-menu.person.png │ │ │ ├── ios-menu.questionmark.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ios-menu.questionmark.png │ │ │ ├── ios-menu.settings.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ios-menu.settings.png │ │ │ ├── ios-menu.site.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ios-menu.site.png │ │ │ ├── ios-menu.sync.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ios-menu.sync.png │ │ │ ├── ios-menu.tag.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ios-menu.tag.png │ │ │ ├── ios-menu.tools.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ios-menu.tools.png │ │ │ ├── ios-menu.travel.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ios-menu.travel.png │ │ │ ├── ios-menu.wireless-read.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ios-menu.wireless-read.png │ │ │ ├── ios-menu.wireless-scan.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ios-menu.wireless-scan.png │ │ │ ├── ios-menu.wireless-write.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ios-menu.wireless-write.png │ │ │ ├── ios-ui.tableview.arrow.dark.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ios-ui.tableview.arrow.dark.png │ │ │ └── ios-ui.tableview.arrow.light.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ios-ui.tableview.arrow.light.png │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── main.m │ ├── InventoryTests │ │ ├── Info.plist │ │ └── InventoryTests.m │ ├── Libraries │ │ └── RFID │ │ │ └── Chainway │ │ │ ├── AppHelper.h │ │ │ ├── AppHelper.m │ │ │ ├── BLEModel.h │ │ │ ├── BLEModel.m │ │ │ ├── BluetoothUtil.h │ │ │ ├── BluetoothUtil.m │ │ │ ├── RFIDBluetoothManager.h │ │ │ └── RFIDBluetoothManager.m │ ├── Podfile │ ├── Podfile.lock │ ├── ReactNativeModules │ │ ├── RCTNSLinguisticTaggerModule.h │ │ ├── RCTNSLinguisticTaggerModule.m │ │ ├── RCTNativeEventEmitterModule.h │ │ ├── RCTNativeEventEmitterModule.m │ │ └── RFID │ │ │ └── Chainway │ │ │ ├── RCTRFIDWithUHFBLEModule.h │ │ │ └── RCTRFIDWithUHFBLEModule.m │ ├── Sounds │ │ ├── beep.mp3 │ │ ├── beep.ogg │ │ ├── beep_slight.mp3 │ │ ├── beep_slight.ogg │ │ ├── serror.mp3 │ │ └── serror.ogg │ ├── config.xcconfig.sample │ └── fastlane │ │ ├── Appfile │ │ ├── Fastfile │ │ ├── README.md │ │ └── cert_checker.patch ├── jest.config.js ├── metro.config.js ├── package.json ├── patches │ ├── @craftzdog+pouchdb-adapter-websql-core+7.2.3.patch │ ├── @gorhom+bottom-sheet+4.4.3.patch │ ├── @react-native-community+slider+4.2.4.patch │ ├── @storybook+react-native+6.0.1-beta.7.patch │ ├── cipher-base+1.0.4.patch │ ├── lunr-languages+1.12.0.patch │ ├── patch-immediate-330.sh │ ├── pouchdb+8.0.1.patch │ ├── pouchdb-adapter-utils++pouchdb-md5+7.3.1.patch │ ├── pouchdb-adapter-utils+7.3.1.patch │ ├── pouchdb-find+8.0.1.patch │ ├── pouchdb-quick-search+1.3.0.patch │ ├── react-native+0.71.10.patch │ ├── react-native-change-icon+4.0.0.patch │ ├── react-native-gesture-handler+2.11.0.patch │ ├── react-native-neomorph-shadows+0.0.8.patch │ ├── react-native-quick-websql+0.3.0.patch │ ├── react-native-tableview+3.1.0.patch │ ├── readable-stream+2.3.7.patch │ ├── redux-persist+6.0.0.patch │ └── redux-persist-sensitive-storage+1.0.0.patch ├── react-native.config.js ├── scripts │ ├── compile-pouchdb-adapter-websql-core.sh │ ├── copy-dependencies.ts │ ├── pod-install.sh │ └── zod-to-json-schema-sample.ts ├── setup-jest.js ├── tsconfig.json └── yarn.lock ├── Data ├── .eslintrc.js ├── .gitignore ├── README.md ├── babel.config.js ├── deps │ ├── epc-utils │ │ ├── EPCUtils.test.ts │ │ ├── EPCUtils.ts │ │ ├── __snapshots__ │ │ │ └── EPCUtils.test.ts.snap │ │ └── index.ts │ └── types │ │ └── epc-tds.d.ts ├── jest.config.js ├── lib │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ └── validation.test.ts.snap │ │ └── validation.test.ts │ ├── attachments.ts │ ├── callbacks.ts │ ├── consts.ts │ ├── functions │ │ ├── getRestoreHistory.ts │ │ └── getSaveDatum.ts │ ├── generated-schema.ts │ ├── mock-data │ │ └── mock-config.ts │ ├── plurals.ts │ ├── relations.ts │ ├── schema.json │ ├── schema.ts │ ├── types.ts │ ├── utils │ │ ├── __tests__ │ │ │ ├── capitalizeAcronyms.test.ts │ │ │ ├── getDiff.test.ts │ │ │ ├── getHumanName.test.ts │ │ │ ├── hasChanges.test.ts │ │ │ └── toTitleCase.test.ts │ │ ├── capitalizeAcronyms.ts │ │ ├── csv │ │ │ ├── csvRowToItem.ts │ │ │ └── itemToCsvRow.ts │ │ ├── fixDataConsistency.ts │ │ ├── getChildrenItems.ts │ │ ├── getDiff.ts │ │ ├── getHumanName.ts │ │ ├── hasChanges.ts │ │ ├── index.ts │ │ ├── onlyValid.ts │ │ ├── toTitleCase.ts │ │ └── validation-utils.ts │ └── validation.ts ├── package.json ├── scripts │ ├── copy-dependencies.ts │ └── generate-schema.ts ├── tsconfig.json └── yarn.lock ├── LICENSE.txt ├── README.md ├── package.json ├── packages ├── couchdb-public-server │ ├── .gitignore │ ├── README.md │ ├── config.json.sample │ ├── package.json │ ├── server.js │ └── yarn.lock ├── data-storage-couchdb │ ├── .eslintrc.js │ ├── .gitignore │ ├── .temp_dbs │ │ └── .gitkeep │ ├── README.md │ ├── babel.config.js │ ├── jest.config.js │ ├── lib │ │ ├── CouchDBData.ts │ │ ├── __fixtures__ │ │ │ └── sample-data.ts │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ ├── csv.test.ts.snap │ │ │ │ └── data-storage-couchdb.test.ts.snap │ │ │ ├── csv.test.ts │ │ │ ├── data-storage-couchdb.test.ts │ │ │ └── views.test.ts │ │ ├── data-type-prefix.ts │ │ ├── functions │ │ │ ├── __tests__ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── couchdb-utils.test.ts.snap │ │ │ │ └── couchdb-utils.test.ts │ │ │ ├── couchdb-utils.ts │ │ │ ├── getAttachAttachmentToDatum.ts │ │ │ ├── getGetAllAttachmentInfoFromDatum.ts │ │ │ ├── getGetAttachmentFromDatum.ts │ │ │ ├── getGetAttachmentInfoFromDatum.ts │ │ │ ├── getGetConfig.ts │ │ │ ├── getGetData.ts │ │ │ ├── getGetDataCount.ts │ │ │ ├── getGetDatum.ts │ │ │ ├── getGetDatumHistories.ts │ │ │ ├── getGetHistoriesInBatch.ts │ │ │ ├── getGetRelated.ts │ │ │ ├── getGetViewData.ts │ │ │ ├── getListHistoryBatchesCreatedBy.ts │ │ │ ├── getRestoreHistory.ts │ │ │ ├── getSaveDatum.ts │ │ │ ├── getUpdateConfig.ts │ │ │ └── types.ts │ │ ├── index.ts │ │ ├── types.ts │ │ └── views.ts │ ├── package.json │ ├── patches │ │ ├── pouchdb-find+8.0.1.patch │ │ └── websql+2.0.3.patch │ ├── repl │ ├── repl.ts │ ├── scripts │ │ ├── compile-pouchdb-adapter-websql-core.sh │ │ └── copy-dependencies.ts │ ├── tsconfig.json │ └── yarn.lock ├── epc-utils │ ├── .eslintrc.js │ ├── .gitignore │ ├── babel.config.js │ ├── jest.config.js │ ├── lib │ │ ├── EPCUtils.test.ts │ │ ├── EPCUtils.ts │ │ ├── __snapshots__ │ │ │ └── EPCUtils.test.ts.snap │ │ └── index.ts │ ├── package.json │ ├── tsconfig.json │ ├── types │ │ └── epc-tds.d.ts │ └── yarn.lock ├── integration-airtable │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── jest.config.js │ ├── lib │ │ ├── AirtableAPI.ts │ │ ├── consts.ts │ │ ├── conversions.test.ts │ │ ├── conversions.ts │ │ ├── createInventoryBase.ts │ │ ├── index.ts │ │ ├── schema.ts │ │ └── syncWithAirtable.ts │ ├── package.json │ ├── repl │ ├── repl.ts │ ├── scripts │ │ └── copy-dependencies.ts │ ├── tsconfig.json │ └── yarn.lock └── integration-snipe-it │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── jest.config.js │ ├── lib │ └── snipe-it-client │ │ ├── functions │ │ ├── __tests__ │ │ │ ├── getAssetById.test.ts │ │ │ ├── getAssetsGenerator.test.ts │ │ │ ├── getCategories.test.ts │ │ │ ├── getCategoryById.test.ts │ │ │ ├── getCompanies.test.ts │ │ │ └── getModelById.test.ts │ │ ├── getAssetById.ts │ │ ├── getAssetsGenerator.ts │ │ ├── getCategories.ts │ │ ├── getCategoryById.ts │ │ ├── getCompanies.ts │ │ ├── getModelById.ts │ │ └── snipeitFetch.ts │ │ └── types.ts │ ├── one-way-sync.ts │ ├── package.json │ ├── scripts │ └── copy-dependencies.ts │ ├── tsconfig.json │ └── yarn.lock ├── scripts └── yarn-install-all.sh └── yarn.lock /.all-dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/.all-dependencies.js -------------------------------------------------------------------------------- /.eslint-rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/.eslint-rules.js -------------------------------------------------------------------------------- /.github/workflows/build_app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/.github/workflows/build_app.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/pr_greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/.github/workflows/pr_greetings.yml -------------------------------------------------------------------------------- /.github/workflows/scripts/generate-app-build-pr-comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/.github/workflows/scripts/generate-app-build-pr-comment.js -------------------------------------------------------------------------------- /.github/workflows/scripts/generate-changelog-from-github-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/.github/workflows/scripts/generate-changelog-from-github-context.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/.vscode/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/.vscode/settings.json.sample -------------------------------------------------------------------------------- /App/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/.babelrc -------------------------------------------------------------------------------- /App/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/.bundle/config -------------------------------------------------------------------------------- /App/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/.eslintrc.js -------------------------------------------------------------------------------- /App/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/.gitignore -------------------------------------------------------------------------------- /App/.storybook/Storybook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/.storybook/Storybook.tsx -------------------------------------------------------------------------------- /App/.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/.storybook/main.js -------------------------------------------------------------------------------- /App/.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/.storybook/preview.js -------------------------------------------------------------------------------- /App/.storybook/storybook.requires.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/.storybook/storybook.requires.js -------------------------------------------------------------------------------- /App/.temp_dbs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /App/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/Gemfile -------------------------------------------------------------------------------- /App/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/README.md -------------------------------------------------------------------------------- /App/_node-version: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /App/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/build.gradle -------------------------------------------------------------------------------- /App/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/debug.keystore -------------------------------------------------------------------------------- /App/android/app/libs/DeviceAPI.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/libs/DeviceAPI.aar -------------------------------------------------------------------------------- /App/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /App/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /App/android/app/src/debug/java/vg/zeta/app/inventory/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/debug/java/vg/zeta/app/inventory/ReactNativeFlipper.java -------------------------------------------------------------------------------- /App/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /App/android/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /App/android/app/src/main/java/vg/zeta/app/inventory/AndroidBug5497WorkaroundReactActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/java/vg/zeta/app/inventory/AndroidBug5497WorkaroundReactActivity.java -------------------------------------------------------------------------------- /App/android/app/src/main/java/vg/zeta/app/inventory/AppPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/java/vg/zeta/app/inventory/AppPackage.java -------------------------------------------------------------------------------- /App/android/app/src/main/java/vg/zeta/app/inventory/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/java/vg/zeta/app/inventory/MainActivity.java -------------------------------------------------------------------------------- /App/android/app/src/main/java/vg/zeta/app/inventory/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/java/vg/zeta/app/inventory/MainApplication.java -------------------------------------------------------------------------------- /App/android/app/src/main/java/vg/zeta/app/inventory/RFIDWithUHFBLEModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/java/vg/zeta/app/inventory/RFIDWithUHFBLEModule.java -------------------------------------------------------------------------------- /App/android/app/src/main/java/vg/zeta/app/inventory/RFIDWithUHFUARTModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/java/vg/zeta/app/inventory/RFIDWithUHFUARTModule.java -------------------------------------------------------------------------------- /App/android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /App/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_dev.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_dev.xml -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round_dev.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round_dev.xml -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground_dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground_dev.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-hdpi/ic_launcher_round_dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/mipmap-hdpi/ic_launcher_round_dev.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground_dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground_dev.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-mdpi/ic_launcher_round_dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/mipmap-mdpi/ic_launcher_round_dev.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground_dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground_dev.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round_dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round_dev.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground_dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground_dev.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round_dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round_dev.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground_dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground_dev.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round_dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round_dev.png -------------------------------------------------------------------------------- /App/android/app/src/main/res/raw/beep.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/raw/beep.ogg -------------------------------------------------------------------------------- /App/android/app/src/main/res/raw/beep_slight.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/raw/beep_slight.ogg -------------------------------------------------------------------------------- /App/android/app/src/main/res/raw/serror.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/raw/serror.ogg -------------------------------------------------------------------------------- /App/android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /App/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /App/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /App/android/app/src/release/java/vg/zeta/app/inventory/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/app/src/release/java/vg/zeta/app/inventory/ReactNativeFlipper.java -------------------------------------------------------------------------------- /App/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/build.gradle -------------------------------------------------------------------------------- /App/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/gradle.properties -------------------------------------------------------------------------------- /App/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /App/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /App/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/gradlew -------------------------------------------------------------------------------- /App/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/gradlew.bat -------------------------------------------------------------------------------- /App/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/android/settings.gradle -------------------------------------------------------------------------------- /App/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app.json -------------------------------------------------------------------------------- /App/app/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/App.tsx -------------------------------------------------------------------------------- /App/app/LPJQ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/LPJQ.ts -------------------------------------------------------------------------------- /App/app/SplashScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/SplashScreen.tsx -------------------------------------------------------------------------------- /App/app/StorybookUIRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/StorybookUIRoot.tsx -------------------------------------------------------------------------------- /App/app/components/ActionSheet/ActionSheet.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/ActionSheet/ActionSheet.stories.tsx -------------------------------------------------------------------------------- /App/app/components/ActionSheet/Sample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/ActionSheet/Sample.tsx -------------------------------------------------------------------------------- /App/app/components/AppBarIOS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/AppBarIOS.tsx -------------------------------------------------------------------------------- /App/app/components/Appbar/Appbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/Appbar/Appbar.tsx -------------------------------------------------------------------------------- /App/app/components/Appbar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/Appbar/index.ts -------------------------------------------------------------------------------- /App/app/components/BlackText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/BlackText.tsx -------------------------------------------------------------------------------- /App/app/components/Button/Button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/Button/Button.stories.tsx -------------------------------------------------------------------------------- /App/app/components/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/Button/Button.tsx -------------------------------------------------------------------------------- /App/app/components/Button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/Button/index.ts -------------------------------------------------------------------------------- /App/app/components/ColorSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/ColorSelect.tsx -------------------------------------------------------------------------------- /App/app/components/Configuration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/Configuration.tsx -------------------------------------------------------------------------------- /App/app/components/DatePicker/DatePicker.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/DatePicker/DatePicker.stories.tsx -------------------------------------------------------------------------------- /App/app/components/DatePicker/DatePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/DatePicker/DatePicker.tsx -------------------------------------------------------------------------------- /App/app/components/DatePicker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/DatePicker/index.ts -------------------------------------------------------------------------------- /App/app/components/DatumHistoryItem/DatumHistoryItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/DatumHistoryItem/DatumHistoryItem.tsx -------------------------------------------------------------------------------- /App/app/components/DatumHistoryItem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/DatumHistoryItem/index.ts -------------------------------------------------------------------------------- /App/app/components/EditingListView/EditingListView.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/EditingListView/EditingListView.stories.tsx -------------------------------------------------------------------------------- /App/app/components/EditingListView/EditingListView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/EditingListView/EditingListView.tsx -------------------------------------------------------------------------------- /App/app/components/EditingListView/TableViewIOS.android.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/EditingListView/TableViewIOS.android.tsx -------------------------------------------------------------------------------- /App/app/components/EditingListView/TableViewIOS.ios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/EditingListView/TableViewIOS.ios.tsx -------------------------------------------------------------------------------- /App/app/components/EditingListView/TableViewIOS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/EditingListView/TableViewIOS.tsx -------------------------------------------------------------------------------- /App/app/components/EditingListView/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/EditingListView/index.ts -------------------------------------------------------------------------------- /App/app/components/ElevatedButton/ElevatedButton.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/ElevatedButton/ElevatedButton.stories.tsx -------------------------------------------------------------------------------- /App/app/components/ElevatedButton/ElevatedButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/ElevatedButton/ElevatedButton.tsx -------------------------------------------------------------------------------- /App/app/components/ElevatedButton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/ElevatedButton/index.ts -------------------------------------------------------------------------------- /App/app/components/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/ErrorBoundary.tsx -------------------------------------------------------------------------------- /App/app/components/FullWidthImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/FullWidthImage.tsx -------------------------------------------------------------------------------- /App/app/components/Icon/Icon.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/Icon/Icon.stories.tsx -------------------------------------------------------------------------------- /App/app/components/Icon/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/Icon/Icon.tsx -------------------------------------------------------------------------------- /App/app/components/Icon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/Icon/index.ts -------------------------------------------------------------------------------- /App/app/components/InsetGroup/InsetGroup.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/InsetGroup/InsetGroup.stories.tsx -------------------------------------------------------------------------------- /App/app/components/InsetGroup/InsetGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/InsetGroup/InsetGroup.tsx -------------------------------------------------------------------------------- /App/app/components/InsetGroup/images/ios-ui.tableview.checked.dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/InsetGroup/images/ios-ui.tableview.checked.dark.png -------------------------------------------------------------------------------- /App/app/components/InsetGroup/images/ios-ui.tableview.checked.light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/InsetGroup/images/ios-ui.tableview.checked.light.png -------------------------------------------------------------------------------- /App/app/components/InsetGroup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/InsetGroup/index.ts -------------------------------------------------------------------------------- /App/app/components/LoadingOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/LoadingOverlay.tsx -------------------------------------------------------------------------------- /App/app/components/Menu/Menu.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/Menu/Menu.stories.tsx -------------------------------------------------------------------------------- /App/app/components/Menu/MenuView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/Menu/MenuView.tsx -------------------------------------------------------------------------------- /App/app/components/Menu/Sample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/Menu/Sample.tsx -------------------------------------------------------------------------------- /App/app/components/Menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/Menu/index.ts -------------------------------------------------------------------------------- /App/app/components/Menu/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/Menu/types.ts -------------------------------------------------------------------------------- /App/app/components/ModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/ModalContent.tsx -------------------------------------------------------------------------------- /App/app/components/ModalContentScrollView/ModalContentScrollView.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/ModalContentScrollView/ModalContentScrollView.stories.tsx -------------------------------------------------------------------------------- /App/app/components/ModalContentScrollView/ModalContentScrollView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/ModalContentScrollView/ModalContentScrollView.tsx -------------------------------------------------------------------------------- /App/app/components/ModalContentScrollView/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/ModalContentScrollView/index.ts -------------------------------------------------------------------------------- /App/app/components/NeomorphShadow/NeomorphBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/NeomorphShadow/NeomorphBox.tsx -------------------------------------------------------------------------------- /App/app/components/NeomorphShadow/NeomorphShadow.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/NeomorphShadow/NeomorphShadow.stories.tsx -------------------------------------------------------------------------------- /App/app/components/NeomorphShadow/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/NeomorphShadow/index.ts -------------------------------------------------------------------------------- /App/app/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/README.md -------------------------------------------------------------------------------- /App/app/components/RubberButton/RubberButton.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/RubberButton/RubberButton.stories.tsx -------------------------------------------------------------------------------- /App/app/components/RubberButton/RubberButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/RubberButton/RubberButton.tsx -------------------------------------------------------------------------------- /App/app/components/RubberButton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/RubberButton/index.ts -------------------------------------------------------------------------------- /App/app/components/ScreenContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/ScreenContent.tsx -------------------------------------------------------------------------------- /App/app/components/ScreenContentScrollView/ScreenContentScrollView.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/ScreenContentScrollView/ScreenContentScrollView.stories.tsx -------------------------------------------------------------------------------- /App/app/components/ScreenContentScrollView/ScreenContentScrollView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/ScreenContentScrollView/ScreenContentScrollView.tsx -------------------------------------------------------------------------------- /App/app/components/ScreenContentScrollView/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/ScreenContentScrollView/index.ts -------------------------------------------------------------------------------- /App/app/components/StorybookSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/StorybookSection.tsx -------------------------------------------------------------------------------- /App/app/components/StorybookStoryContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/StorybookStoryContainer.tsx -------------------------------------------------------------------------------- /App/app/components/Switch/Switch.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/Switch/Switch.stories.tsx -------------------------------------------------------------------------------- /App/app/components/Switch/Switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/Switch/Switch.tsx -------------------------------------------------------------------------------- /App/app/components/Switch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/Switch/index.ts -------------------------------------------------------------------------------- /App/app/components/TableView/TableView.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/TableView/TableView.stories.tsx -------------------------------------------------------------------------------- /App/app/components/TableView/TableView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/TableView/TableView.tsx -------------------------------------------------------------------------------- /App/app/components/TableView/TableViewIOS.android.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/TableView/TableViewIOS.android.tsx -------------------------------------------------------------------------------- /App/app/components/TableView/TableViewIOS.ios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/TableView/TableViewIOS.ios.tsx -------------------------------------------------------------------------------- /App/app/components/TableView/TableViewIOS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/TableView/TableViewIOS.tsx -------------------------------------------------------------------------------- /App/app/components/TableView/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/TableView/index.ts -------------------------------------------------------------------------------- /App/app/components/Text/Text.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/Text/Text.stories.tsx -------------------------------------------------------------------------------- /App/app/components/Text/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/Text/Text.tsx -------------------------------------------------------------------------------- /App/app/components/Text/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/Text/index.ts -------------------------------------------------------------------------------- /App/app/components/TextInput/TextInput.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/TextInput/TextInput.stories.tsx -------------------------------------------------------------------------------- /App/app/components/TextInput/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/TextInput/TextInput.tsx -------------------------------------------------------------------------------- /App/app/components/TextInput/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/TextInput/index.ts -------------------------------------------------------------------------------- /App/app/components/TimeAgo/TimeAgo.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/TimeAgo/TimeAgo.stories.tsx -------------------------------------------------------------------------------- /App/app/components/TimeAgo/TimeAgo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/TimeAgo/TimeAgo.tsx -------------------------------------------------------------------------------- /App/app/components/TimeAgo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/TimeAgo/index.ts -------------------------------------------------------------------------------- /App/app/components/UIGroup/UIGroup.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/UIGroup/UIGroup.stories.tsx -------------------------------------------------------------------------------- /App/app/components/UIGroup/UIGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/UIGroup/UIGroup.tsx -------------------------------------------------------------------------------- /App/app/components/UIGroup/UIGroupFirstGroupSpacing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/UIGroup/UIGroupFirstGroupSpacing.tsx -------------------------------------------------------------------------------- /App/app/components/UIGroup/UIGroupListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/UIGroup/UIGroupListItem.tsx -------------------------------------------------------------------------------- /App/app/components/UIGroup/UIGroupListItemSeparator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/UIGroup/UIGroupListItemSeparator.tsx -------------------------------------------------------------------------------- /App/app/components/UIGroup/UIGroupListTextInputItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/UIGroup/UIGroupListTextInputItem.tsx -------------------------------------------------------------------------------- /App/app/components/UIGroup/examples.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/UIGroup/examples.tsx -------------------------------------------------------------------------------- /App/app/components/UIGroup/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/UIGroup/hooks.ts -------------------------------------------------------------------------------- /App/app/components/UIGroup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/UIGroup/index.ts -------------------------------------------------------------------------------- /App/app/components/UIGroup/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/UIGroup/types.ts -------------------------------------------------------------------------------- /App/app/components/UIGroupPaginator/UIGroupPaginator.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/UIGroupPaginator/UIGroupPaginator.stories.tsx -------------------------------------------------------------------------------- /App/app/components/UIGroupPaginator/UIGroupPaginator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/UIGroupPaginator/UIGroupPaginator.tsx -------------------------------------------------------------------------------- /App/app/components/UIGroupPaginator/examples.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/UIGroupPaginator/examples.tsx -------------------------------------------------------------------------------- /App/app/components/UIGroupPaginator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/UIGroupPaginator/index.ts -------------------------------------------------------------------------------- /App/app/components/ViewableImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/ViewableImage.tsx -------------------------------------------------------------------------------- /App/app/components/_README/README.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/_README/README.stories.tsx -------------------------------------------------------------------------------- /App/app/components/_README/README.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/components/_README/README.tsx -------------------------------------------------------------------------------- /App/app/consts/MaterialCommunityIcons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/consts/MaterialCommunityIcons.json -------------------------------------------------------------------------------- /App/app/consts/animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/consts/animations.ts -------------------------------------------------------------------------------- /App/app/consts/chars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/consts/chars.ts -------------------------------------------------------------------------------- /App/app/consts/default-icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/consts/default-icons.ts -------------------------------------------------------------------------------- /App/app/consts/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/consts/icons.ts -------------------------------------------------------------------------------- /App/app/consts/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/consts/info.ts -------------------------------------------------------------------------------- /App/app/consts/material-community-icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/consts/material-community-icons.ts -------------------------------------------------------------------------------- /App/app/data/callbacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/data/callbacks.ts -------------------------------------------------------------------------------- /App/app/data/functions/getContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/data/functions/getContext.ts -------------------------------------------------------------------------------- /App/app/data/functions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/data/functions/index.ts -------------------------------------------------------------------------------- /App/app/data/hooks/useConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/data/hooks/useConfig.ts -------------------------------------------------------------------------------- /App/app/data/hooks/useData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/data/hooks/useData.ts -------------------------------------------------------------------------------- /App/app/data/hooks/useDataCount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/data/hooks/useDataCount.ts -------------------------------------------------------------------------------- /App/app/data/hooks/useRelated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/data/hooks/useRelated.ts -------------------------------------------------------------------------------- /App/app/data/hooks/useSave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/data/hooks/useSave.ts -------------------------------------------------------------------------------- /App/app/data/hooks/useView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/data/hooks/useView.ts -------------------------------------------------------------------------------- /App/app/data/images/getImageDatum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/data/images/getImageDatum.ts -------------------------------------------------------------------------------- /App/app/data/images/processAssets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/data/images/processAssets.ts -------------------------------------------------------------------------------- /App/app/data/images/useImageSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/data/images/useImageSelector.ts -------------------------------------------------------------------------------- /App/app/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/data/index.ts -------------------------------------------------------------------------------- /App/app/data/relations.ts: -------------------------------------------------------------------------------- 1 | export * from '@deps/data/relations'; 2 | -------------------------------------------------------------------------------- /App/app/data/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/data/schema.ts -------------------------------------------------------------------------------- /App/app/data/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/data/types.ts -------------------------------------------------------------------------------- /App/app/data/utils.ts: -------------------------------------------------------------------------------- 1 | export * from '@deps/data/utils'; 2 | -------------------------------------------------------------------------------- /App/app/data/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/data/validation.ts -------------------------------------------------------------------------------- /App/app/db/app_db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/db/app_db/index.ts -------------------------------------------------------------------------------- /App/app/db/configUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/db/configUtils.ts -------------------------------------------------------------------------------- /App/app/db/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/db/hooks/index.ts -------------------------------------------------------------------------------- /App/app/db/hooks/useDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/db/hooks/useDB.ts -------------------------------------------------------------------------------- /App/app/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/db/index.ts -------------------------------------------------------------------------------- /App/app/db/pouchdb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/db/pouchdb.ts -------------------------------------------------------------------------------- /App/app/db/sqlite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/db/sqlite.ts -------------------------------------------------------------------------------- /App/app/features/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/cache.ts -------------------------------------------------------------------------------- /App/app/features/counter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/counter/README.md -------------------------------------------------------------------------------- /App/app/features/counter/screens/CounterScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/counter/screens/CounterScreen.tsx -------------------------------------------------------------------------------- /App/app/features/counter/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/counter/slice.ts -------------------------------------------------------------------------------- /App/app/features/counters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/counters/README.md -------------------------------------------------------------------------------- /App/app/features/counters/screens/CountersScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/counters/screens/CountersScreen.tsx -------------------------------------------------------------------------------- /App/app/features/counters/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/counters/slice.ts -------------------------------------------------------------------------------- /App/app/features/db-sync/DBSyncManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/db-sync/DBSyncManager.tsx -------------------------------------------------------------------------------- /App/app/features/db-sync/components/ServerList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/db-sync/components/ServerList.tsx -------------------------------------------------------------------------------- /App/app/features/db-sync/hooks/useNewOrEditServerUI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/db-sync/hooks/useNewOrEditServerUI.tsx -------------------------------------------------------------------------------- /App/app/features/db-sync/screens/DBSyncNewOrEditServerModalScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/db-sync/screens/DBSyncNewOrEditServerModalScreen.tsx -------------------------------------------------------------------------------- /App/app/features/db-sync/screens/DBSyncScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/db-sync/screens/DBSyncScreen.tsx -------------------------------------------------------------------------------- /App/app/features/db-sync/screens/DBSyncServerDetailScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/db-sync/screens/DBSyncServerDetailScreen.tsx -------------------------------------------------------------------------------- /App/app/features/db-sync/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/db-sync/slice.ts -------------------------------------------------------------------------------- /App/app/features/dev-tools/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/dev-tools/slice.ts -------------------------------------------------------------------------------- /App/app/features/integrations/screens/AddIntegrationModalScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/integrations/screens/AddIntegrationModalScreen.tsx -------------------------------------------------------------------------------- /App/app/features/integrations/screens/AirtableIntegrationScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/integrations/screens/AirtableIntegrationScreen.tsx -------------------------------------------------------------------------------- /App/app/features/integrations/screens/IntegrationsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/integrations/screens/IntegrationsScreen.tsx -------------------------------------------------------------------------------- /App/app/features/integrations/screens/NewOrEditAirtableIntegrationScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/integrations/screens/NewOrEditAirtableIntegrationScreen.tsx -------------------------------------------------------------------------------- /App/app/features/integrations/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/integrations/slice.ts -------------------------------------------------------------------------------- /App/app/features/inventory/components/CheckItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/components/CheckItems.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/components/ChecklistItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/components/ChecklistItem.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/components/CollectionListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/components/CollectionListItem.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/components/EditImagesUI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/components/EditImagesUI.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/components/IconColorSelectInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/components/IconColorSelectInput.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/components/IconInputUIGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/components/IconInputUIGroup.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/components/IconSelectInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/components/IconSelectInput.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/components/ImagesSliderBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/components/ImagesSliderBox.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/components/ItemListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/components/ItemListItem.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/components/ItemListItemById.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/components/ItemListItemById.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/components/PlusAndMinusButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/components/PlusAndMinusButtons.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/components/StockStatusIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/components/StockStatusIcon.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/consts/SEARCH_OPTIONS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/consts/SEARCH_OPTIONS.ts -------------------------------------------------------------------------------- /App/app/features/inventory/hooks/useCheckItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/hooks/useCheckItems.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/screens/ChecklistScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/screens/ChecklistScreen.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/screens/ChecklistsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/screens/ChecklistsScreen.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/screens/CollectionScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/screens/CollectionScreen.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/screens/CollectionsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/screens/CollectionsScreen.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/screens/DashboardScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/screens/DashboardScreen.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/screens/ExpiredItemsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/screens/ExpiredItemsScreen.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/screens/ExportItemsToCsvScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/screens/ExportItemsToCsvScreen.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/screens/ImportItemsFromCsvScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/screens/ImportItemsFromCsvScreen.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/screens/ItemScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/screens/ItemScreen.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/screens/ItemsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/screens/ItemsScreen.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/screens/LowOrOutOfStockItemsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/screens/LowOrOutOfStockItemsScreen.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/screens/OrderItemsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/screens/OrderItemsScreen.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/screens/RFIDUntaggedItemsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/screens/RFIDUntaggedItemsScreen.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/screens/SaveChecklistScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/screens/SaveChecklistScreen.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/screens/SaveCollectionScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/screens/SaveCollectionScreen.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/screens/SaveItemScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/screens/SaveItemScreen.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/screens/SearchOptionsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/screens/SearchOptionsScreen.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/screens/SearchScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/screens/SearchScreen.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/screens/SelectCollectionModalScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/screens/SelectCollectionModalScreen.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/screens/SelectCurrencyModalScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/screens/SelectCurrencyModalScreen.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/screens/SelectItemModalScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/screens/SelectItemModalScreen.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/screens/SelectItemTypeModalScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/screens/SelectItemTypeModalScreen.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/screens/StatisticsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/screens/StatisticsScreen.tsx -------------------------------------------------------------------------------- /App/app/features/inventory/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/slice.ts -------------------------------------------------------------------------------- /App/app/features/inventory/utils/__snapshots__/getChildrenItemIds.test.ts.snap.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/utils/__snapshots__/getChildrenItemIds.test.ts.snap.old -------------------------------------------------------------------------------- /App/app/features/inventory/utils/csv-import.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/utils/csv-import.test.ts -------------------------------------------------------------------------------- /App/app/features/inventory/utils/csv-import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/utils/csv-import.ts -------------------------------------------------------------------------------- /App/app/features/inventory/utils/csvRowToItem.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/utils/csvRowToItem.test.ts -------------------------------------------------------------------------------- /App/app/features/inventory/utils/csvRowToItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/utils/csvRowToItem.ts -------------------------------------------------------------------------------- /App/app/features/inventory/utils/getChildrenItemIds.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/utils/getChildrenItemIds.test.ts -------------------------------------------------------------------------------- /App/app/features/inventory/utils/getChildrenItemIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/utils/getChildrenItemIds.ts -------------------------------------------------------------------------------- /App/app/features/inventory/utils/itemToCsvRow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/inventory/utils/itemToCsvRow.ts -------------------------------------------------------------------------------- /App/app/features/label-printers/components/PrintingOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/label-printers/components/PrintingOptions.tsx -------------------------------------------------------------------------------- /App/app/features/label-printers/components/PrintingPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/label-printers/components/PrintingPreview.tsx -------------------------------------------------------------------------------- /App/app/features/label-printers/print-utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/label-printers/print-utils.test.ts -------------------------------------------------------------------------------- /App/app/features/label-printers/print-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/label-printers/print-utils.ts -------------------------------------------------------------------------------- /App/app/features/label-printers/printing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/label-printers/printing.ts -------------------------------------------------------------------------------- /App/app/features/label-printers/screens/LabelPrintersScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/label-printers/screens/LabelPrintersScreen.tsx -------------------------------------------------------------------------------- /App/app/features/label-printers/screens/NewOrEditLabelPrinterModalScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/label-printers/screens/NewOrEditLabelPrinterModalScreen.tsx -------------------------------------------------------------------------------- /App/app/features/label-printers/screens/PrintLabelModalScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/label-printers/screens/PrintLabelModalScreen.tsx -------------------------------------------------------------------------------- /App/app/features/label-printers/screens/TestPrinterConfigModalScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/label-printers/screens/TestPrinterConfigModalScreen.tsx -------------------------------------------------------------------------------- /App/app/features/label-printers/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/label-printers/slice.ts -------------------------------------------------------------------------------- /App/app/features/label-printers/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/label-printers/types.ts -------------------------------------------------------------------------------- /App/app/features/profiles/beforeDeleteProfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/profiles/beforeDeleteProfile.ts -------------------------------------------------------------------------------- /App/app/features/profiles/components/ProfileSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/profiles/components/ProfileSelector.tsx -------------------------------------------------------------------------------- /App/app/features/profiles/components/ProfileSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/profiles/components/ProfileSwitcher.tsx -------------------------------------------------------------------------------- /App/app/features/profiles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/profiles/index.ts -------------------------------------------------------------------------------- /App/app/features/profiles/screens/CreateOrUpdateProfileScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/profiles/screens/CreateOrUpdateProfileScreen.tsx -------------------------------------------------------------------------------- /App/app/features/profiles/screens/DeleteProfileScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/profiles/screens/DeleteProfileScreen.tsx -------------------------------------------------------------------------------- /App/app/features/profiles/screens/NewProfileScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/profiles/screens/NewProfileScreen.tsx -------------------------------------------------------------------------------- /App/app/features/profiles/screens/SelectProfileToEditScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/profiles/screens/SelectProfileToEditScreen.tsx -------------------------------------------------------------------------------- /App/app/features/profiles/screens/SwitchProfileScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/profiles/screens/SwitchProfileScreen.tsx -------------------------------------------------------------------------------- /App/app/features/profiles/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/profiles/selectors.ts -------------------------------------------------------------------------------- /App/app/features/profiles/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/profiles/slice.ts -------------------------------------------------------------------------------- /App/app/features/rfid/RFIDSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/rfid/RFIDSheet.tsx -------------------------------------------------------------------------------- /App/app/features/rfid/hooks/useBottomSheetDynamicSnapPoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/rfid/hooks/useBottomSheetDynamicSnapPoints.ts -------------------------------------------------------------------------------- /App/app/features/rfid/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/rfid/utils.ts -------------------------------------------------------------------------------- /App/app/features/settings/components/AppIconSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/settings/components/AppIconSelector.tsx -------------------------------------------------------------------------------- /App/app/features/settings/screens/UIAndAppearanceSettingsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/settings/screens/UIAndAppearanceSettingsScreen.tsx -------------------------------------------------------------------------------- /App/app/features/settings/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/features/settings/slice.ts -------------------------------------------------------------------------------- /App/app/hooks/useActionSheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/hooks/useActionSheet.ts -------------------------------------------------------------------------------- /App/app/hooks/useAutoFocus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/hooks/useAutoFocus.ts -------------------------------------------------------------------------------- /App/app/hooks/useColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/hooks/useColors.ts -------------------------------------------------------------------------------- /App/app/hooks/useDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/hooks/useDB.ts -------------------------------------------------------------------------------- /App/app/hooks/useDebouncedValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/hooks/useDebouncedValue.ts -------------------------------------------------------------------------------- /App/app/hooks/useDeepCompare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/hooks/useDeepCompare.ts -------------------------------------------------------------------------------- /App/app/hooks/useForwardedRef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/hooks/useForwardedRef.ts -------------------------------------------------------------------------------- /App/app/hooks/useIsDarkMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/hooks/useIsDarkMode.ts -------------------------------------------------------------------------------- /App/app/hooks/useLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/hooks/useLogger.ts -------------------------------------------------------------------------------- /App/app/hooks/useModalClosingHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/hooks/useModalClosingHandler.ts -------------------------------------------------------------------------------- /App/app/hooks/useNumberInputChangeHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/hooks/useNumberInputChangeHandler.ts -------------------------------------------------------------------------------- /App/app/hooks/useOrdered.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/hooks/useOrdered.ts -------------------------------------------------------------------------------- /App/app/hooks/usePersistedState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/hooks/usePersistedState.ts -------------------------------------------------------------------------------- /App/app/hooks/useScrollTo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/hooks/useScrollTo.ts -------------------------------------------------------------------------------- /App/app/hooks/useScrollViewAutomaticallyAdjustKeyboardInsetsFix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/hooks/useScrollViewAutomaticallyAdjustKeyboardInsetsFix.ts -------------------------------------------------------------------------------- /App/app/hooks/useScrollViewContentInsetFix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/hooks/useScrollViewContentInsetFix.ts -------------------------------------------------------------------------------- /App/app/hooks/useScrollViewFirstInputAutoFocusFix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/hooks/useScrollViewFirstInputAutoFocusFix.ts -------------------------------------------------------------------------------- /App/app/hooks/useTabBarInsets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/hooks/useTabBarInsets.ts -------------------------------------------------------------------------------- /App/app/hooks/useTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/hooks/useTheme.ts -------------------------------------------------------------------------------- /App/app/images/app-icons/black-monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/images/app-icons/black-monochrome.png -------------------------------------------------------------------------------- /App/app/images/app-icons/dark-vibrant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/images/app-icons/dark-vibrant.png -------------------------------------------------------------------------------- /App/app/images/app-icons/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/images/app-icons/dark.png -------------------------------------------------------------------------------- /App/app/images/app-icons/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/images/app-icons/default.png -------------------------------------------------------------------------------- /App/app/images/app-icons/dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/images/app-icons/dev.png -------------------------------------------------------------------------------- /App/app/images/app-icons/light-vibrant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/images/app-icons/light-vibrant.png -------------------------------------------------------------------------------- /App/app/images/app-icons/nightly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/images/app-icons/nightly.png -------------------------------------------------------------------------------- /App/app/images/app-icons/white-monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/images/app-icons/white-monochrome.png -------------------------------------------------------------------------------- /App/app/images/how_to_switch_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/images/how_to_switch_profile.png -------------------------------------------------------------------------------- /App/app/images/image_loading_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/images/image_loading_placeholder.png -------------------------------------------------------------------------------- /App/app/images/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/images/index.ts -------------------------------------------------------------------------------- /App/app/images/ios-menu.developer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/images/ios-menu.developer.png -------------------------------------------------------------------------------- /App/app/images/ios-menu.export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/images/ios-menu.export.png -------------------------------------------------------------------------------- /App/app/images/ios-menu.import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/images/ios-menu.import.png -------------------------------------------------------------------------------- /App/app/images/ios-menu.locate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/images/ios-menu.locate.png -------------------------------------------------------------------------------- /App/app/images/ios-menu.person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/images/ios-menu.person.png -------------------------------------------------------------------------------- /App/app/images/ios-menu.site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/images/ios-menu.site.png -------------------------------------------------------------------------------- /App/app/images/ios-menu.tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/images/ios-menu.tag.png -------------------------------------------------------------------------------- /App/app/images/ios-menu.tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/images/ios-menu.tools.png -------------------------------------------------------------------------------- /App/app/images/ios-menu.travel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/images/ios-menu.travel.png -------------------------------------------------------------------------------- /App/app/images/ios-menu.wireless-read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/images/ios-menu.wireless-read.png -------------------------------------------------------------------------------- /App/app/images/ios-menu.wireless-scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/images/ios-menu.wireless-scan.png -------------------------------------------------------------------------------- /App/app/images/ios-menu.wireless-write.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/images/ios-menu.wireless-write.png -------------------------------------------------------------------------------- /App/app/images/label_preview_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/images/label_preview_placeholder.png -------------------------------------------------------------------------------- /App/app/lib/types/crypto-browserify.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/lib/types/crypto-browserify.d.ts -------------------------------------------------------------------------------- /App/app/lib/types/react-native-neomorph-shadows.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/lib/types/react-native-neomorph-shadows.d.ts -------------------------------------------------------------------------------- /App/app/lib/types/redux-persist-sensitive-storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/lib/types/redux-persist-sensitive-storage.d.ts -------------------------------------------------------------------------------- /App/app/logger/__mocks__/logsDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/logger/__mocks__/logsDB.ts -------------------------------------------------------------------------------- /App/app/logger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/logger/index.ts -------------------------------------------------------------------------------- /App/app/logger/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/logger/logger.ts -------------------------------------------------------------------------------- /App/app/logger/logsDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/logger/logsDB.ts -------------------------------------------------------------------------------- /App/app/logger/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/logger/types.ts -------------------------------------------------------------------------------- /App/app/modules/ChangeAppIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/modules/ChangeAppIcon.ts -------------------------------------------------------------------------------- /App/app/modules/LinguisticTaggerModuleIOS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/modules/LinguisticTaggerModuleIOS.ts -------------------------------------------------------------------------------- /App/app/modules/RFIDWithUHFBLEModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/modules/RFIDWithUHFBLEModule.ts -------------------------------------------------------------------------------- /App/app/modules/RFIDWithUHFBaseModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/modules/RFIDWithUHFBaseModule.ts -------------------------------------------------------------------------------- /App/app/modules/RFIDWithUHFUARTModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/modules/RFIDWithUHFUARTModule.ts -------------------------------------------------------------------------------- /App/app/navigation/MainStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/navigation/MainStack.tsx -------------------------------------------------------------------------------- /App/app/navigation/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/navigation/Navigation.tsx -------------------------------------------------------------------------------- /App/app/navigation/RootBottomSheetsContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/navigation/RootBottomSheetsContext.tsx -------------------------------------------------------------------------------- /App/app/navigation/RootNavigationContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/navigation/RootNavigationContext.tsx -------------------------------------------------------------------------------- /App/app/navigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/navigation/index.tsx -------------------------------------------------------------------------------- /App/app/onAppLoaded.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/onAppLoaded.ts -------------------------------------------------------------------------------- /App/app/redux/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/redux/hooks.ts -------------------------------------------------------------------------------- /App/app/redux/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/redux/index.ts -------------------------------------------------------------------------------- /App/app/redux/middlewares/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/redux/middlewares/logger.ts -------------------------------------------------------------------------------- /App/app/redux/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/redux/store.ts -------------------------------------------------------------------------------- /App/app/redux/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/redux/types.ts -------------------------------------------------------------------------------- /App/app/redux/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/redux/utils.ts -------------------------------------------------------------------------------- /App/app/screens/AboutScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/AboutScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/AddIntegrationModalScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/AddIntegrationModalScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/AppLogDetailScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/AppLogDetailScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/AppLogsFilterScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/AppLogsFilterScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/AppLogsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/AppLogsScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/AppLogsSettingsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/AppLogsSettingsScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/ConfigurationScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/ConfigurationScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/DatabaseManagementScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/DatabaseManagementScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/DatePickerModalScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/DatePickerModalScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/DemoModalScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/DemoModalScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/DevChangeIconScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/DevChangeIconScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/DeveloperToolsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/DeveloperToolsScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/EPCTDSScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/EPCTDSScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/FixDataConsistencyScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/FixDataConsistencyScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/GenericTextDetailsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/GenericTextDetailsScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/GetSecretsModalScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/GetSecretsModalScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/HowToSwitchBetweenProfilesScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/HowToSwitchBetweenProfilesScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/ImageScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/ImageScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/ImagesScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/ImagesScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/LinguisticTaggerModuleIOSScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/LinguisticTaggerModuleIOSScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/LoggerLogScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/LoggerLogScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/MoreScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/MoreScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/NewAppScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/NewAppScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/NotImplementedScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/NotImplementedScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/OnboardingScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/OnboardingScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/RFIDUHFModuleScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/RFIDUHFModuleScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/RNFSScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/RNFSScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/ReduxActionDetailScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/ReduxActionDetailScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/ReduxScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/ReduxScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/ReduxSelectActionScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/ReduxSelectActionScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/RfidScanScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/RfidScanScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/SQLiteScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/SQLiteScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/SampleModalScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/SampleModalScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/SampleScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/SampleScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/SelectIconScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/SelectIconScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/SettingsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/SettingsScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/StorybookScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/StorybookScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/data-history/HistoryBatchModalScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/data-history/HistoryBatchModalScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/data-history/HistoryBatchesModalScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/data-history/HistoryBatchesModalScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/dev-tools/BenchmarkScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/dev-tools/BenchmarkScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/dev-tools/EPCUtilsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/dev-tools/EPCUtilsScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/dev-tools/data/DataListScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/dev-tools/data/DataListScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/dev-tools/data/DataTypesScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/dev-tools/data/DataTypesScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/dev-tools/data/DatumScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/dev-tools/data/DatumScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/dev-tools/data/DevDataMigrationScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/dev-tools/data/DevDataMigrationScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/dev-tools/data/SaveDataModalScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/dev-tools/data/SaveDataModalScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/dev-tools/pouchdb/PouchDBAttachmentScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/dev-tools/pouchdb/PouchDBAttachmentScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/dev-tools/pouchdb/PouchDBIndexDetailScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/dev-tools/pouchdb/PouchDBIndexDetailScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/dev-tools/pouchdb/PouchDBIndexesScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/dev-tools/pouchdb/PouchDBIndexesScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/dev-tools/pouchdb/PouchDBItemScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/dev-tools/pouchdb/PouchDBItemScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/dev-tools/pouchdb/PouchDBPutDataModalScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/dev-tools/pouchdb/PouchDBPutDataModalScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/dev-tools/pouchdb/PouchDBScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/dev-tools/pouchdb/PouchDBScreen.tsx -------------------------------------------------------------------------------- /App/app/screens/dev-tools/pouchdb/PouchDBSettingsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/screens/dev-tools/pouchdb/PouchDBSettingsScreen.tsx -------------------------------------------------------------------------------- /App/app/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/theme.ts -------------------------------------------------------------------------------- /App/app/utils/DeepReadonly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/utils/DeepReadonly.ts -------------------------------------------------------------------------------- /App/app/utils/base64FromFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/utils/base64FromFile.ts -------------------------------------------------------------------------------- /App/app/utils/camelToSnakeCase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/utils/camelToSnakeCase.ts -------------------------------------------------------------------------------- /App/app/utils/commonStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/utils/commonStyles.ts -------------------------------------------------------------------------------- /App/app/utils/deepMerge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/utils/deepMerge.js -------------------------------------------------------------------------------- /App/app/utils/exposedSafeAreaInsets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/utils/exposedSafeAreaInsets.tsx -------------------------------------------------------------------------------- /App/app/utils/filterObjectKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/utils/filterObjectKeys.ts -------------------------------------------------------------------------------- /App/app/utils/formatDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/utils/formatDate.ts -------------------------------------------------------------------------------- /App/app/utils/humanFileSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/utils/humanFileSize.ts -------------------------------------------------------------------------------- /App/app/utils/insertTimestampIdRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/utils/insertTimestampIdRecord.ts -------------------------------------------------------------------------------- /App/app/utils/isTextContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/utils/isTextContent.ts -------------------------------------------------------------------------------- /App/app/utils/mapObjectValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/utils/mapObjectValues.ts -------------------------------------------------------------------------------- /App/app/utils/moveItemInArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/utils/moveItemInArray.ts -------------------------------------------------------------------------------- /App/app/utils/objectEntries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/utils/objectEntries.ts -------------------------------------------------------------------------------- /App/app/utils/randomHex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/utils/randomHex.ts -------------------------------------------------------------------------------- /App/app/utils/randomInt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/utils/randomInt.ts -------------------------------------------------------------------------------- /App/app/utils/randomUniqueUuid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/utils/randomUniqueUuid.ts -------------------------------------------------------------------------------- /App/app/utils/readAsArrayBuffer-polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/utils/readAsArrayBuffer-polyfill.js -------------------------------------------------------------------------------- /App/app/utils/removePasswordFromJSON.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/utils/removePasswordFromJSON.ts -------------------------------------------------------------------------------- /App/app/utils/replaceSpace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/utils/replaceSpace.ts -------------------------------------------------------------------------------- /App/app/utils/text-input-whitespace-fix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/utils/text-input-whitespace-fix.ts -------------------------------------------------------------------------------- /App/app/utils/timeAgo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/utils/timeAgo.ts -------------------------------------------------------------------------------- /App/app/utils/titleCase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/utils/titleCase.ts -------------------------------------------------------------------------------- /App/app/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/utils/types.ts -------------------------------------------------------------------------------- /App/app/utils/verifyMaterialCommunityIconName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/app/utils/verifyMaterialCommunityIconName.ts -------------------------------------------------------------------------------- /App/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/babel.config.js -------------------------------------------------------------------------------- /App/ignore-logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ignore-logs.ts -------------------------------------------------------------------------------- /App/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/index.js -------------------------------------------------------------------------------- /App/ios/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | -------------------------------------------------------------------------------- /App/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/.xcode.env -------------------------------------------------------------------------------- /App/ios/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /App/ios/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Gemfile.lock -------------------------------------------------------------------------------- /App/ios/Inventory.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /App/ios/Inventory.xcodeproj/xcshareddata/xcschemes/Inventory (Dev).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory.xcodeproj/xcshareddata/xcschemes/Inventory (Dev).xcscheme -------------------------------------------------------------------------------- /App/ios/Inventory.xcodeproj/xcshareddata/xcschemes/Inventory (Nightly).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory.xcodeproj/xcshareddata/xcschemes/Inventory (Nightly).xcscheme -------------------------------------------------------------------------------- /App/ios/Inventory.xcodeproj/xcshareddata/xcschemes/Inventory.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory.xcodeproj/xcshareddata/xcschemes/Inventory.xcscheme -------------------------------------------------------------------------------- /App/ios/Inventory.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /App/ios/Inventory.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /App/ios/Inventory/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/AppDelegate.h -------------------------------------------------------------------------------- /App/ios/Inventory/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/AppDelegate.mm -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/AppIcon-black-monochrome.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/AppIcon-black-monochrome.appiconset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/AppIcon-black-monochrome.appiconset/Icon V2 - Black Monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/AppIcon-black-monochrome.appiconset/Icon V2 - Black Monochrome.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/AppIcon-dark-vibrant.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/AppIcon-dark-vibrant.appiconset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/AppIcon-dark-vibrant.appiconset/Icon V2 - Dark Vibrant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/AppIcon-dark-vibrant.appiconset/Icon V2 - Dark Vibrant.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/AppIcon-dark.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/AppIcon-dark.appiconset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/AppIcon-dark.appiconset/Icon V2 - Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/AppIcon-dark.appiconset/Icon V2 - Dark.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/AppIcon-dev.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/AppIcon-dev.appiconset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/AppIcon-dev.appiconset/Icon V2 - Dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/AppIcon-dev.appiconset/Icon V2 - Dev.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/AppIcon-light-vibrant.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/AppIcon-light-vibrant.appiconset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/AppIcon-light-vibrant.appiconset/Icon V2 - Light Vibrant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/AppIcon-light-vibrant.appiconset/Icon V2 - Light Vibrant.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/AppIcon-stg.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/AppIcon-stg.appiconset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/AppIcon-stg.appiconset/Icon V2 - Nightly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/AppIcon-stg.appiconset/Icon V2 - Nightly.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/AppIcon-white-monochrome.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/AppIcon-white-monochrome.appiconset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/AppIcon-white-monochrome.appiconset/Icon V2 - White Monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/AppIcon-white-monochrome.appiconset/Icon V2 - White Monochrome.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/AppIcon.appiconset/Icon V2 - Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/AppIcon.appiconset/Icon V2 - Default.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.checklists-green.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.checklists-green.imageset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.checklists-green.imageset/ios-menu.checklists.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.checklists-green.imageset/ios-menu.checklists.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.checklists.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.checklists.imageset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.checklists.imageset/ios-menu.checklists.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.checklists.imageset/ios-menu.checklists.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.collections.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.collections.imageset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.collections.imageset/ios-menu.collections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.collections.imageset/ios-menu.collections.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.database.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.database.imageset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.database.imageset/ios-menu.database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.database.imageset/ios-menu.database.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.developer.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.developer.imageset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.developer.imageset/ios-menu.developer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.developer.imageset/ios-menu.developer.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.export.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.export.imageset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.export.imageset/ios-menu.export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.export.imageset/ios-menu.export.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.import.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.import.imageset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.import.imageset/ios-menu.import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.import.imageset/ios-menu.import.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.info.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.info.imageset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.info.imageset/ios-menu.info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.info.imageset/ios-menu.info.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.integrations-green.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.integrations-green.imageset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.integrations-green.imageset/ios-menu.integrations-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.integrations-green.imageset/ios-menu.integrations-green.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.integrations-orange.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.integrations-orange.imageset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.integrations-orange.imageset/ios-menu.integrations-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.integrations-orange.imageset/ios-menu.integrations-orange.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.locate.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.locate.imageset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.locate.imageset/ios-menu.locate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.locate.imageset/ios-menu.locate.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.person.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.person.imageset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.person.imageset/ios-menu.person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.person.imageset/ios-menu.person.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.questionmark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.questionmark.imageset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.questionmark.imageset/ios-menu.questionmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.questionmark.imageset/ios-menu.questionmark.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.settings.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.settings.imageset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.settings.imageset/ios-menu.settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.settings.imageset/ios-menu.settings.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.site.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.site.imageset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.site.imageset/ios-menu.site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.site.imageset/ios-menu.site.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.sync.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.sync.imageset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.sync.imageset/ios-menu.sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.sync.imageset/ios-menu.sync.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.tag.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.tag.imageset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.tag.imageset/ios-menu.tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.tag.imageset/ios-menu.tag.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.tools.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.tools.imageset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.tools.imageset/ios-menu.tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.tools.imageset/ios-menu.tools.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.travel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.travel.imageset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.travel.imageset/ios-menu.travel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.travel.imageset/ios-menu.travel.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.wireless-read.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.wireless-read.imageset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.wireless-read.imageset/ios-menu.wireless-read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.wireless-read.imageset/ios-menu.wireless-read.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.wireless-scan.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.wireless-scan.imageset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.wireless-scan.imageset/ios-menu.wireless-scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.wireless-scan.imageset/ios-menu.wireless-scan.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.wireless-write.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.wireless-write.imageset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-menu.wireless-write.imageset/ios-menu.wireless-write.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-menu.wireless-write.imageset/ios-menu.wireless-write.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-ui.tableview.arrow.dark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-ui.tableview.arrow.dark.imageset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-ui.tableview.arrow.dark.imageset/ios-ui.tableview.arrow.dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-ui.tableview.arrow.dark.imageset/ios-ui.tableview.arrow.dark.png -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-ui.tableview.arrow.light.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-ui.tableview.arrow.light.imageset/Contents.json -------------------------------------------------------------------------------- /App/ios/Inventory/Images.xcassets/ios-ui.tableview.arrow.light.imageset/ios-ui.tableview.arrow.light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Images.xcassets/ios-ui.tableview.arrow.light.imageset/ios-ui.tableview.arrow.light.png -------------------------------------------------------------------------------- /App/ios/Inventory/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/Info.plist -------------------------------------------------------------------------------- /App/ios/Inventory/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/LaunchScreen.storyboard -------------------------------------------------------------------------------- /App/ios/Inventory/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Inventory/main.m -------------------------------------------------------------------------------- /App/ios/InventoryTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/InventoryTests/Info.plist -------------------------------------------------------------------------------- /App/ios/InventoryTests/InventoryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/InventoryTests/InventoryTests.m -------------------------------------------------------------------------------- /App/ios/Libraries/RFID/Chainway/AppHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Libraries/RFID/Chainway/AppHelper.h -------------------------------------------------------------------------------- /App/ios/Libraries/RFID/Chainway/AppHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Libraries/RFID/Chainway/AppHelper.m -------------------------------------------------------------------------------- /App/ios/Libraries/RFID/Chainway/BLEModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Libraries/RFID/Chainway/BLEModel.h -------------------------------------------------------------------------------- /App/ios/Libraries/RFID/Chainway/BLEModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Libraries/RFID/Chainway/BLEModel.m -------------------------------------------------------------------------------- /App/ios/Libraries/RFID/Chainway/BluetoothUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Libraries/RFID/Chainway/BluetoothUtil.h -------------------------------------------------------------------------------- /App/ios/Libraries/RFID/Chainway/BluetoothUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Libraries/RFID/Chainway/BluetoothUtil.m -------------------------------------------------------------------------------- /App/ios/Libraries/RFID/Chainway/RFIDBluetoothManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Libraries/RFID/Chainway/RFIDBluetoothManager.h -------------------------------------------------------------------------------- /App/ios/Libraries/RFID/Chainway/RFIDBluetoothManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Libraries/RFID/Chainway/RFIDBluetoothManager.m -------------------------------------------------------------------------------- /App/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Podfile -------------------------------------------------------------------------------- /App/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Podfile.lock -------------------------------------------------------------------------------- /App/ios/ReactNativeModules/RCTNSLinguisticTaggerModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/ReactNativeModules/RCTNSLinguisticTaggerModule.h -------------------------------------------------------------------------------- /App/ios/ReactNativeModules/RCTNSLinguisticTaggerModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/ReactNativeModules/RCTNSLinguisticTaggerModule.m -------------------------------------------------------------------------------- /App/ios/ReactNativeModules/RCTNativeEventEmitterModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/ReactNativeModules/RCTNativeEventEmitterModule.h -------------------------------------------------------------------------------- /App/ios/ReactNativeModules/RCTNativeEventEmitterModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/ReactNativeModules/RCTNativeEventEmitterModule.m -------------------------------------------------------------------------------- /App/ios/ReactNativeModules/RFID/Chainway/RCTRFIDWithUHFBLEModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/ReactNativeModules/RFID/Chainway/RCTRFIDWithUHFBLEModule.h -------------------------------------------------------------------------------- /App/ios/ReactNativeModules/RFID/Chainway/RCTRFIDWithUHFBLEModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/ReactNativeModules/RFID/Chainway/RCTRFIDWithUHFBLEModule.m -------------------------------------------------------------------------------- /App/ios/Sounds/beep.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Sounds/beep.mp3 -------------------------------------------------------------------------------- /App/ios/Sounds/beep.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Sounds/beep.ogg -------------------------------------------------------------------------------- /App/ios/Sounds/beep_slight.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Sounds/beep_slight.mp3 -------------------------------------------------------------------------------- /App/ios/Sounds/beep_slight.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Sounds/beep_slight.ogg -------------------------------------------------------------------------------- /App/ios/Sounds/serror.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Sounds/serror.mp3 -------------------------------------------------------------------------------- /App/ios/Sounds/serror.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/Sounds/serror.ogg -------------------------------------------------------------------------------- /App/ios/config.xcconfig.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/config.xcconfig.sample -------------------------------------------------------------------------------- /App/ios/fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/fastlane/Appfile -------------------------------------------------------------------------------- /App/ios/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/fastlane/Fastfile -------------------------------------------------------------------------------- /App/ios/fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/fastlane/README.md -------------------------------------------------------------------------------- /App/ios/fastlane/cert_checker.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/ios/fastlane/cert_checker.patch -------------------------------------------------------------------------------- /App/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/jest.config.js -------------------------------------------------------------------------------- /App/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/metro.config.js -------------------------------------------------------------------------------- /App/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/package.json -------------------------------------------------------------------------------- /App/patches/@craftzdog+pouchdb-adapter-websql-core+7.2.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/patches/@craftzdog+pouchdb-adapter-websql-core+7.2.3.patch -------------------------------------------------------------------------------- /App/patches/@gorhom+bottom-sheet+4.4.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/patches/@gorhom+bottom-sheet+4.4.3.patch -------------------------------------------------------------------------------- /App/patches/@react-native-community+slider+4.2.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/patches/@react-native-community+slider+4.2.4.patch -------------------------------------------------------------------------------- /App/patches/@storybook+react-native+6.0.1-beta.7.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/patches/@storybook+react-native+6.0.1-beta.7.patch -------------------------------------------------------------------------------- /App/patches/cipher-base+1.0.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/patches/cipher-base+1.0.4.patch -------------------------------------------------------------------------------- /App/patches/lunr-languages+1.12.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/patches/lunr-languages+1.12.0.patch -------------------------------------------------------------------------------- /App/patches/patch-immediate-330.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/patches/patch-immediate-330.sh -------------------------------------------------------------------------------- /App/patches/pouchdb+8.0.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/patches/pouchdb+8.0.1.patch -------------------------------------------------------------------------------- /App/patches/pouchdb-adapter-utils++pouchdb-md5+7.3.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/patches/pouchdb-adapter-utils++pouchdb-md5+7.3.1.patch -------------------------------------------------------------------------------- /App/patches/pouchdb-adapter-utils+7.3.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/patches/pouchdb-adapter-utils+7.3.1.patch -------------------------------------------------------------------------------- /App/patches/pouchdb-find+8.0.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/patches/pouchdb-find+8.0.1.patch -------------------------------------------------------------------------------- /App/patches/pouchdb-quick-search+1.3.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/patches/pouchdb-quick-search+1.3.0.patch -------------------------------------------------------------------------------- /App/patches/react-native+0.71.10.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/patches/react-native+0.71.10.patch -------------------------------------------------------------------------------- /App/patches/react-native-change-icon+4.0.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/patches/react-native-change-icon+4.0.0.patch -------------------------------------------------------------------------------- /App/patches/react-native-gesture-handler+2.11.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/patches/react-native-gesture-handler+2.11.0.patch -------------------------------------------------------------------------------- /App/patches/react-native-neomorph-shadows+0.0.8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/patches/react-native-neomorph-shadows+0.0.8.patch -------------------------------------------------------------------------------- /App/patches/react-native-quick-websql+0.3.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/patches/react-native-quick-websql+0.3.0.patch -------------------------------------------------------------------------------- /App/patches/react-native-tableview+3.1.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/patches/react-native-tableview+3.1.0.patch -------------------------------------------------------------------------------- /App/patches/readable-stream+2.3.7.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/patches/readable-stream+2.3.7.patch -------------------------------------------------------------------------------- /App/patches/redux-persist+6.0.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/patches/redux-persist+6.0.0.patch -------------------------------------------------------------------------------- /App/patches/redux-persist-sensitive-storage+1.0.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/patches/redux-persist-sensitive-storage+1.0.0.patch -------------------------------------------------------------------------------- /App/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/react-native.config.js -------------------------------------------------------------------------------- /App/scripts/compile-pouchdb-adapter-websql-core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/scripts/compile-pouchdb-adapter-websql-core.sh -------------------------------------------------------------------------------- /App/scripts/copy-dependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/scripts/copy-dependencies.ts -------------------------------------------------------------------------------- /App/scripts/pod-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/scripts/pod-install.sh -------------------------------------------------------------------------------- /App/scripts/zod-to-json-schema-sample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/scripts/zod-to-json-schema-sample.ts -------------------------------------------------------------------------------- /App/setup-jest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/setup-jest.js -------------------------------------------------------------------------------- /App/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/tsconfig.json -------------------------------------------------------------------------------- /App/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/App/yarn.lock -------------------------------------------------------------------------------- /Data/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/.eslintrc.js -------------------------------------------------------------------------------- /Data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/.gitignore -------------------------------------------------------------------------------- /Data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/README.md -------------------------------------------------------------------------------- /Data/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/babel.config.js -------------------------------------------------------------------------------- /Data/deps/epc-utils/EPCUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/deps/epc-utils/EPCUtils.test.ts -------------------------------------------------------------------------------- /Data/deps/epc-utils/EPCUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/deps/epc-utils/EPCUtils.ts -------------------------------------------------------------------------------- /Data/deps/epc-utils/__snapshots__/EPCUtils.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/deps/epc-utils/__snapshots__/EPCUtils.test.ts.snap -------------------------------------------------------------------------------- /Data/deps/epc-utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/deps/epc-utils/index.ts -------------------------------------------------------------------------------- /Data/deps/types/epc-tds.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/deps/types/epc-tds.d.ts -------------------------------------------------------------------------------- /Data/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/jest.config.js -------------------------------------------------------------------------------- /Data/lib/__tests__/__snapshots__/validation.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/__tests__/__snapshots__/validation.test.ts.snap -------------------------------------------------------------------------------- /Data/lib/__tests__/validation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/__tests__/validation.test.ts -------------------------------------------------------------------------------- /Data/lib/attachments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/attachments.ts -------------------------------------------------------------------------------- /Data/lib/callbacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/callbacks.ts -------------------------------------------------------------------------------- /Data/lib/consts.ts: -------------------------------------------------------------------------------- 1 | export const DEFAULT_EXPIRE_SOON_PRIOR_DAYS = 5; 2 | -------------------------------------------------------------------------------- /Data/lib/functions/getRestoreHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/functions/getRestoreHistory.ts -------------------------------------------------------------------------------- /Data/lib/functions/getSaveDatum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/functions/getSaveDatum.ts -------------------------------------------------------------------------------- /Data/lib/generated-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/generated-schema.ts -------------------------------------------------------------------------------- /Data/lib/mock-data/mock-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/mock-data/mock-config.ts -------------------------------------------------------------------------------- /Data/lib/plurals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/plurals.ts -------------------------------------------------------------------------------- /Data/lib/relations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/relations.ts -------------------------------------------------------------------------------- /Data/lib/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/schema.json -------------------------------------------------------------------------------- /Data/lib/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/schema.ts -------------------------------------------------------------------------------- /Data/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/types.ts -------------------------------------------------------------------------------- /Data/lib/utils/__tests__/capitalizeAcronyms.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/utils/__tests__/capitalizeAcronyms.test.ts -------------------------------------------------------------------------------- /Data/lib/utils/__tests__/getDiff.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/utils/__tests__/getDiff.test.ts -------------------------------------------------------------------------------- /Data/lib/utils/__tests__/getHumanName.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/utils/__tests__/getHumanName.test.ts -------------------------------------------------------------------------------- /Data/lib/utils/__tests__/hasChanges.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/utils/__tests__/hasChanges.test.ts -------------------------------------------------------------------------------- /Data/lib/utils/__tests__/toTitleCase.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/utils/__tests__/toTitleCase.test.ts -------------------------------------------------------------------------------- /Data/lib/utils/capitalizeAcronyms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/utils/capitalizeAcronyms.ts -------------------------------------------------------------------------------- /Data/lib/utils/csv/csvRowToItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/utils/csv/csvRowToItem.ts -------------------------------------------------------------------------------- /Data/lib/utils/csv/itemToCsvRow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/utils/csv/itemToCsvRow.ts -------------------------------------------------------------------------------- /Data/lib/utils/fixDataConsistency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/utils/fixDataConsistency.ts -------------------------------------------------------------------------------- /Data/lib/utils/getChildrenItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/utils/getChildrenItems.ts -------------------------------------------------------------------------------- /Data/lib/utils/getDiff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/utils/getDiff.ts -------------------------------------------------------------------------------- /Data/lib/utils/getHumanName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/utils/getHumanName.ts -------------------------------------------------------------------------------- /Data/lib/utils/hasChanges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/utils/hasChanges.ts -------------------------------------------------------------------------------- /Data/lib/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/utils/index.ts -------------------------------------------------------------------------------- /Data/lib/utils/onlyValid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/utils/onlyValid.ts -------------------------------------------------------------------------------- /Data/lib/utils/toTitleCase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/utils/toTitleCase.ts -------------------------------------------------------------------------------- /Data/lib/utils/validation-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/utils/validation-utils.ts -------------------------------------------------------------------------------- /Data/lib/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/lib/validation.ts -------------------------------------------------------------------------------- /Data/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/package.json -------------------------------------------------------------------------------- /Data/scripts/copy-dependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/scripts/copy-dependencies.ts -------------------------------------------------------------------------------- /Data/scripts/generate-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/scripts/generate-schema.ts -------------------------------------------------------------------------------- /Data/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/tsconfig.json -------------------------------------------------------------------------------- /Data/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/Data/yarn.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/package.json -------------------------------------------------------------------------------- /packages/couchdb-public-server/.gitignore: -------------------------------------------------------------------------------- 1 | config.json 2 | -------------------------------------------------------------------------------- /packages/couchdb-public-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/couchdb-public-server/README.md -------------------------------------------------------------------------------- /packages/couchdb-public-server/config.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/couchdb-public-server/config.json.sample -------------------------------------------------------------------------------- /packages/couchdb-public-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/couchdb-public-server/package.json -------------------------------------------------------------------------------- /packages/couchdb-public-server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/couchdb-public-server/server.js -------------------------------------------------------------------------------- /packages/couchdb-public-server/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/couchdb-public-server/yarn.lock -------------------------------------------------------------------------------- /packages/data-storage-couchdb/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/.eslintrc.js -------------------------------------------------------------------------------- /packages/data-storage-couchdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/.gitignore -------------------------------------------------------------------------------- /packages/data-storage-couchdb/.temp_dbs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/data-storage-couchdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/README.md -------------------------------------------------------------------------------- /packages/data-storage-couchdb/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/babel.config.js -------------------------------------------------------------------------------- /packages/data-storage-couchdb/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/jest.config.js -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/CouchDBData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/CouchDBData.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/__fixtures__/sample-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/__fixtures__/sample-data.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/__tests__/__snapshots__/csv.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/__tests__/__snapshots__/csv.test.ts.snap -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/__tests__/__snapshots__/data-storage-couchdb.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/__tests__/__snapshots__/data-storage-couchdb.test.ts.snap -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/__tests__/csv.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/__tests__/csv.test.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/__tests__/data-storage-couchdb.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/__tests__/data-storage-couchdb.test.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/__tests__/views.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/__tests__/views.test.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/data-type-prefix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/data-type-prefix.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/functions/__tests__/__snapshots__/couchdb-utils.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/functions/__tests__/__snapshots__/couchdb-utils.test.ts.snap -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/functions/__tests__/couchdb-utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/functions/__tests__/couchdb-utils.test.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/functions/couchdb-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/functions/couchdb-utils.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/functions/getAttachAttachmentToDatum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/functions/getAttachAttachmentToDatum.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/functions/getGetAllAttachmentInfoFromDatum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/functions/getGetAllAttachmentInfoFromDatum.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/functions/getGetAttachmentFromDatum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/functions/getGetAttachmentFromDatum.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/functions/getGetAttachmentInfoFromDatum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/functions/getGetAttachmentInfoFromDatum.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/functions/getGetConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/functions/getGetConfig.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/functions/getGetData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/functions/getGetData.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/functions/getGetDataCount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/functions/getGetDataCount.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/functions/getGetDatum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/functions/getGetDatum.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/functions/getGetDatumHistories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/functions/getGetDatumHistories.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/functions/getGetHistoriesInBatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/functions/getGetHistoriesInBatch.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/functions/getGetRelated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/functions/getGetRelated.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/functions/getGetViewData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/functions/getGetViewData.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/functions/getListHistoryBatchesCreatedBy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/functions/getListHistoryBatchesCreatedBy.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/functions/getRestoreHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/functions/getRestoreHistory.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/functions/getSaveDatum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/functions/getSaveDatum.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/functions/getUpdateConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/functions/getUpdateConfig.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/functions/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/functions/types.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/index.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/types.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/lib/views.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/lib/views.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/package.json -------------------------------------------------------------------------------- /packages/data-storage-couchdb/patches/pouchdb-find+8.0.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/patches/pouchdb-find+8.0.1.patch -------------------------------------------------------------------------------- /packages/data-storage-couchdb/patches/websql+2.0.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/patches/websql+2.0.3.patch -------------------------------------------------------------------------------- /packages/data-storage-couchdb/repl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/repl -------------------------------------------------------------------------------- /packages/data-storage-couchdb/repl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/repl.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/scripts/compile-pouchdb-adapter-websql-core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/scripts/compile-pouchdb-adapter-websql-core.sh -------------------------------------------------------------------------------- /packages/data-storage-couchdb/scripts/copy-dependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/scripts/copy-dependencies.ts -------------------------------------------------------------------------------- /packages/data-storage-couchdb/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/tsconfig.json -------------------------------------------------------------------------------- /packages/data-storage-couchdb/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/data-storage-couchdb/yarn.lock -------------------------------------------------------------------------------- /packages/epc-utils/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/epc-utils/.eslintrc.js -------------------------------------------------------------------------------- /packages/epc-utils/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/epc-utils/.gitignore -------------------------------------------------------------------------------- /packages/epc-utils/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/epc-utils/babel.config.js -------------------------------------------------------------------------------- /packages/epc-utils/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/epc-utils/jest.config.js -------------------------------------------------------------------------------- /packages/epc-utils/lib/EPCUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/epc-utils/lib/EPCUtils.test.ts -------------------------------------------------------------------------------- /packages/epc-utils/lib/EPCUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/epc-utils/lib/EPCUtils.ts -------------------------------------------------------------------------------- /packages/epc-utils/lib/__snapshots__/EPCUtils.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/epc-utils/lib/__snapshots__/EPCUtils.test.ts.snap -------------------------------------------------------------------------------- /packages/epc-utils/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/epc-utils/lib/index.ts -------------------------------------------------------------------------------- /packages/epc-utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/epc-utils/package.json -------------------------------------------------------------------------------- /packages/epc-utils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/epc-utils/tsconfig.json -------------------------------------------------------------------------------- /packages/epc-utils/types/epc-tds.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/epc-utils/types/epc-tds.d.ts -------------------------------------------------------------------------------- /packages/epc-utils/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/epc-utils/yarn.lock -------------------------------------------------------------------------------- /packages/integration-airtable/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-airtable/.eslintrc.js -------------------------------------------------------------------------------- /packages/integration-airtable/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-airtable/.gitignore -------------------------------------------------------------------------------- /packages/integration-airtable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-airtable/README.md -------------------------------------------------------------------------------- /packages/integration-airtable/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-airtable/babel.config.js -------------------------------------------------------------------------------- /packages/integration-airtable/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-airtable/jest.config.js -------------------------------------------------------------------------------- /packages/integration-airtable/lib/AirtableAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-airtable/lib/AirtableAPI.ts -------------------------------------------------------------------------------- /packages/integration-airtable/lib/consts.ts: -------------------------------------------------------------------------------- 1 | export const AIRTABLE_TEMPLATE_BASE_URL = 2 | 'https://airtable.com/appKkuSub43QsedfN/shrdaSvkwaYwRmCFZ'; 3 | -------------------------------------------------------------------------------- /packages/integration-airtable/lib/conversions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-airtable/lib/conversions.test.ts -------------------------------------------------------------------------------- /packages/integration-airtable/lib/conversions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-airtable/lib/conversions.ts -------------------------------------------------------------------------------- /packages/integration-airtable/lib/createInventoryBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-airtable/lib/createInventoryBase.ts -------------------------------------------------------------------------------- /packages/integration-airtable/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-airtable/lib/index.ts -------------------------------------------------------------------------------- /packages/integration-airtable/lib/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-airtable/lib/schema.ts -------------------------------------------------------------------------------- /packages/integration-airtable/lib/syncWithAirtable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-airtable/lib/syncWithAirtable.ts -------------------------------------------------------------------------------- /packages/integration-airtable/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-airtable/package.json -------------------------------------------------------------------------------- /packages/integration-airtable/repl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-airtable/repl -------------------------------------------------------------------------------- /packages/integration-airtable/repl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-airtable/repl.ts -------------------------------------------------------------------------------- /packages/integration-airtable/scripts/copy-dependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-airtable/scripts/copy-dependencies.ts -------------------------------------------------------------------------------- /packages/integration-airtable/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-airtable/tsconfig.json -------------------------------------------------------------------------------- /packages/integration-airtable/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-airtable/yarn.lock -------------------------------------------------------------------------------- /packages/integration-snipe-it/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-snipe-it/.eslintrc.js -------------------------------------------------------------------------------- /packages/integration-snipe-it/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-snipe-it/.gitignore -------------------------------------------------------------------------------- /packages/integration-snipe-it/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-snipe-it/README.md -------------------------------------------------------------------------------- /packages/integration-snipe-it/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-snipe-it/babel.config.js -------------------------------------------------------------------------------- /packages/integration-snipe-it/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-snipe-it/jest.config.js -------------------------------------------------------------------------------- /packages/integration-snipe-it/lib/snipe-it-client/functions/__tests__/getAssetById.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-snipe-it/lib/snipe-it-client/functions/__tests__/getAssetById.test.ts -------------------------------------------------------------------------------- /packages/integration-snipe-it/lib/snipe-it-client/functions/__tests__/getAssetsGenerator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-snipe-it/lib/snipe-it-client/functions/__tests__/getAssetsGenerator.test.ts -------------------------------------------------------------------------------- /packages/integration-snipe-it/lib/snipe-it-client/functions/__tests__/getCategories.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-snipe-it/lib/snipe-it-client/functions/__tests__/getCategories.test.ts -------------------------------------------------------------------------------- /packages/integration-snipe-it/lib/snipe-it-client/functions/__tests__/getCategoryById.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-snipe-it/lib/snipe-it-client/functions/__tests__/getCategoryById.test.ts -------------------------------------------------------------------------------- /packages/integration-snipe-it/lib/snipe-it-client/functions/__tests__/getCompanies.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-snipe-it/lib/snipe-it-client/functions/__tests__/getCompanies.test.ts -------------------------------------------------------------------------------- /packages/integration-snipe-it/lib/snipe-it-client/functions/__tests__/getModelById.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-snipe-it/lib/snipe-it-client/functions/__tests__/getModelById.test.ts -------------------------------------------------------------------------------- /packages/integration-snipe-it/lib/snipe-it-client/functions/getAssetById.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-snipe-it/lib/snipe-it-client/functions/getAssetById.ts -------------------------------------------------------------------------------- /packages/integration-snipe-it/lib/snipe-it-client/functions/getAssetsGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-snipe-it/lib/snipe-it-client/functions/getAssetsGenerator.ts -------------------------------------------------------------------------------- /packages/integration-snipe-it/lib/snipe-it-client/functions/getCategories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-snipe-it/lib/snipe-it-client/functions/getCategories.ts -------------------------------------------------------------------------------- /packages/integration-snipe-it/lib/snipe-it-client/functions/getCategoryById.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-snipe-it/lib/snipe-it-client/functions/getCategoryById.ts -------------------------------------------------------------------------------- /packages/integration-snipe-it/lib/snipe-it-client/functions/getCompanies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-snipe-it/lib/snipe-it-client/functions/getCompanies.ts -------------------------------------------------------------------------------- /packages/integration-snipe-it/lib/snipe-it-client/functions/getModelById.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-snipe-it/lib/snipe-it-client/functions/getModelById.ts -------------------------------------------------------------------------------- /packages/integration-snipe-it/lib/snipe-it-client/functions/snipeitFetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-snipe-it/lib/snipe-it-client/functions/snipeitFetch.ts -------------------------------------------------------------------------------- /packages/integration-snipe-it/lib/snipe-it-client/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-snipe-it/lib/snipe-it-client/types.ts -------------------------------------------------------------------------------- /packages/integration-snipe-it/one-way-sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-snipe-it/one-way-sync.ts -------------------------------------------------------------------------------- /packages/integration-snipe-it/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-snipe-it/package.json -------------------------------------------------------------------------------- /packages/integration-snipe-it/scripts/copy-dependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-snipe-it/scripts/copy-dependencies.ts -------------------------------------------------------------------------------- /packages/integration-snipe-it/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-snipe-it/tsconfig.json -------------------------------------------------------------------------------- /packages/integration-snipe-it/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/packages/integration-snipe-it/yarn.lock -------------------------------------------------------------------------------- /scripts/yarn-install-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/scripts/yarn-install-all.sh -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetavg/Inventory/HEAD/yarn.lock --------------------------------------------------------------------------------