Copy disabled (too large)
Download .txt
Showing preview only (12,824K chars total). Download the full file to get everything.
Repository: Receipt-Wrangler/receipt-wrangler-api
Branch: main
Commit: 1143d0e08079
Files: 2148
Total size: 61.6 MB
Directory structure:
gitextract_7hmvqmij/
├── .github/
│ └── workflows/
│ ├── ci.yml
│ ├── e2e.yml
│ └── release.yml
├── .gitignore
├── .idea/
│ ├── app.iml
│ ├── forwardedPorts.xml
│ ├── git_toolbox_prj.xml
│ ├── modules.xml
│ ├── receipt-wrangler-api.iml
│ ├── vcs.xml
│ └── workspace.xml
├── CLAUDE.md
├── README.md
├── desktop/
│ ├── .dockerignore
│ ├── .editorconfig
│ ├── .gitignore
│ ├── .vscode/
│ │ ├── extensions.json
│ │ ├── launch.json
│ │ └── tasks.json
│ ├── CLAUDE.md
│ ├── Dockerfile
│ ├── LICENSE
│ ├── README.md
│ ├── angular.json
│ ├── docker/
│ │ └── nginx.conf
│ ├── docker-update.sh
│ ├── e2e/
│ │ ├── auth.setup.ts
│ │ ├── auth.spec.ts
│ │ ├── helpers/
│ │ │ └── auth.ts
│ │ └── receipts.spec.ts
│ ├── jest.config.js
│ ├── openapitools.json
│ ├── package.json
│ ├── playwright.config.ts
│ ├── proxy.conf.json
│ ├── push-version.sh
│ ├── setup-jest.ts
│ ├── src/
│ │ ├── about/
│ │ │ └── about/
│ │ │ ├── about.component.html
│ │ │ ├── about.component.scss
│ │ │ ├── about.component.spec.ts
│ │ │ └── about.component.ts
│ │ ├── alert/
│ │ │ ├── alert.component.html
│ │ │ ├── alert.component.scss
│ │ │ ├── alert.component.spec.ts
│ │ │ └── alert.component.ts
│ │ ├── animations/
│ │ │ ├── fade.animation.ts
│ │ │ └── index.ts
│ │ ├── app/
│ │ │ ├── app-routing.module.ts
│ │ │ ├── app.component.html
│ │ │ ├── app.component.scss
│ │ │ ├── app.component.spec.ts
│ │ │ ├── app.component.ts
│ │ │ └── app.config.ts
│ │ ├── assets/
│ │ │ └── .gitkeep
│ │ ├── auth/
│ │ │ ├── auth-routing.module.ts
│ │ │ ├── auth.module.ts
│ │ │ ├── index.ts
│ │ │ └── sign-up/
│ │ │ ├── auth-form.component.html
│ │ │ ├── auth-form.component.scss
│ │ │ ├── auth-form.component.spec.ts
│ │ │ ├── auth-form.component.ts
│ │ │ └── auth-form.util.ts
│ │ ├── autocomplete/
│ │ │ ├── autocomlete/
│ │ │ │ ├── autocomlete.component.html
│ │ │ │ ├── autocomlete.component.scss
│ │ │ │ ├── autocomlete.component.spec.ts
│ │ │ │ ├── autocomlete.component.ts
│ │ │ │ ├── option-display.pipe.spec.ts
│ │ │ │ └── option-display.pipe.ts
│ │ │ └── autocomplete.module.ts
│ │ ├── avatar/
│ │ │ ├── avatar/
│ │ │ │ ├── avatar.component.html
│ │ │ │ ├── avatar.component.scss
│ │ │ │ ├── avatar.component.spec.ts
│ │ │ │ └── avatar.component.ts
│ │ │ ├── avatar.module.ts
│ │ │ └── index.ts
│ │ ├── base-input/
│ │ │ ├── base-input/
│ │ │ │ ├── base-input.component.html
│ │ │ │ ├── base-input.component.scss
│ │ │ │ ├── base-input.component.spec.ts
│ │ │ │ ├── base-input.component.ts
│ │ │ │ └── input-error-message.ts
│ │ │ ├── base-input.interface.ts
│ │ │ ├── base-input.module.ts
│ │ │ └── index.ts
│ │ ├── button/
│ │ │ ├── base-button/
│ │ │ │ ├── base-button.component.html
│ │ │ │ ├── base-button.component.scss
│ │ │ │ ├── base-button.component.spec.ts
│ │ │ │ └── base-button.component.ts
│ │ │ ├── button/
│ │ │ │ ├── button.component.html
│ │ │ │ ├── button.component.scss
│ │ │ │ ├── button.component.spec.ts
│ │ │ │ └── button.component.ts
│ │ │ ├── button.module.ts
│ │ │ └── index.ts
│ │ ├── carousel/
│ │ │ ├── carousel/
│ │ │ │ ├── carousel.component.html
│ │ │ │ ├── carousel.component.scss
│ │ │ │ ├── carousel.component.spec.ts
│ │ │ │ └── carousel.component.ts
│ │ │ └── carousel.module.ts
│ │ ├── categories/
│ │ │ ├── categories-routing.module.ts
│ │ │ ├── categories.module.ts
│ │ │ ├── category-form/
│ │ │ │ ├── category-form.component.html
│ │ │ │ ├── category-form.component.scss
│ │ │ │ ├── category-form.component.spec.ts
│ │ │ │ └── category-form.component.ts
│ │ │ └── category-table/
│ │ │ ├── category-table.component.html
│ │ │ ├── category-table.component.scss
│ │ │ ├── category-table.component.spec.ts
│ │ │ └── category-table.component.ts
│ │ ├── category-autocomplete/
│ │ │ ├── category-autocomplete.component.html
│ │ │ ├── category-autocomplete.component.scss
│ │ │ ├── category-autocomplete.component.spec.ts
│ │ │ └── category-autocomplete.component.ts
│ │ ├── checkbox/
│ │ │ ├── checkbox/
│ │ │ │ ├── checkbox.component.html
│ │ │ │ ├── checkbox.component.scss
│ │ │ │ ├── checkbox.component.spec.ts
│ │ │ │ └── checkbox.component.ts
│ │ │ └── checkbox.module.ts
│ │ ├── color-picker/
│ │ │ ├── color-picker/
│ │ │ │ ├── color-picker.component.html
│ │ │ │ ├── color-picker.component.scss
│ │ │ │ ├── color-picker.component.spec.ts
│ │ │ │ └── color-picker.component.ts
│ │ │ └── color-picker.module.ts
│ │ ├── constants/
│ │ │ ├── components.constant.ts
│ │ │ ├── dialog.constant.ts
│ │ │ ├── filter-operations-options.constant.ts
│ │ │ ├── index.ts
│ │ │ ├── keyboard-shortcuts.constant.ts
│ │ │ ├── receipt-status-options.ts
│ │ │ └── snackbar.constant.ts
│ │ ├── custom-fields/
│ │ │ ├── custom-field-form/
│ │ │ │ ├── custom-field-form.component.html
│ │ │ │ ├── custom-field-form.component.scss
│ │ │ │ ├── custom-field-form.component.spec.ts
│ │ │ │ └── custom-field-form.component.ts
│ │ │ ├── custom-field-table/
│ │ │ │ ├── custom-field-table.component.html
│ │ │ │ ├── custom-field-table.component.scss
│ │ │ │ ├── custom-field-table.component.spec.ts
│ │ │ │ └── custom-field-table.component.ts
│ │ │ ├── custom-fields-routing.module.ts
│ │ │ └── custom-fields.module.ts
│ │ ├── dashboard/
│ │ │ ├── activity/
│ │ │ │ ├── activity.component.html
│ │ │ │ ├── activity.component.scss
│ │ │ │ ├── activity.component.spec.ts
│ │ │ │ └── activity.component.ts
│ │ │ ├── constants/
│ │ │ │ ├── chart-grouping-options.ts
│ │ │ │ └── widget-options.ts
│ │ │ ├── dashboard/
│ │ │ │ ├── dashboard.component.html
│ │ │ │ ├── dashboard.component.scss
│ │ │ │ ├── dashboard.component.spec.ts
│ │ │ │ └── dashboard.component.ts
│ │ │ ├── dashboard-form/
│ │ │ │ ├── dashboard-form.component.html
│ │ │ │ ├── dashboard-form.component.scss
│ │ │ │ ├── dashboard-form.component.spec.ts
│ │ │ │ └── dashboard-form.component.ts
│ │ │ ├── dashboard-list/
│ │ │ │ ├── dashboard-list.component.html
│ │ │ │ ├── dashboard-list.component.scss
│ │ │ │ ├── dashboard-list.component.spec.ts
│ │ │ │ └── dashboard-list.component.ts
│ │ │ ├── dashboard-routing.module.ts
│ │ │ ├── dashboard.module.ts
│ │ │ ├── filtered-receipts/
│ │ │ │ ├── filtered-receipts.component.html
│ │ │ │ ├── filtered-receipts.component.scss
│ │ │ │ ├── filtered-receipts.component.spec.ts
│ │ │ │ └── filtered-receipts.component.ts
│ │ │ ├── group-dashboards/
│ │ │ │ ├── group-dashboards.component.html
│ │ │ │ ├── group-dashboards.component.scss
│ │ │ │ ├── group-dashboards.component.spec.ts
│ │ │ │ └── group-dashboards.component.ts
│ │ │ ├── guards/
│ │ │ │ ├── dashboard.guard.spec.ts
│ │ │ │ └── dashboard.guard.ts
│ │ │ ├── pie-chart/
│ │ │ │ ├── pie-chart.component.html
│ │ │ │ ├── pie-chart.component.scss
│ │ │ │ ├── pie-chart.component.spec.ts
│ │ │ │ └── pie-chart.component.ts
│ │ │ ├── resolvers/
│ │ │ │ ├── dashboard.resolver.spec.ts
│ │ │ │ └── dashboard.resolver.ts
│ │ │ ├── widget-type.pipe.spec.ts
│ │ │ └── widget-type.pipe.ts
│ │ ├── datepicker/
│ │ │ ├── datepicker/
│ │ │ │ ├── datepicker.component.html
│ │ │ │ ├── datepicker.component.scss
│ │ │ │ ├── datepicker.component.spec.ts
│ │ │ │ └── datepicker.component.ts
│ │ │ └── datepicker.module.ts
│ │ ├── directives/
│ │ │ ├── development.directive.spec.ts
│ │ │ ├── development.directive.ts
│ │ │ ├── directives.module.ts
│ │ │ ├── feature.directive.spec.ts
│ │ │ ├── feature.directive.ts
│ │ │ ├── index.ts
│ │ │ ├── role.directive.spec.ts
│ │ │ └── role.directive.ts
│ │ ├── enums/
│ │ │ └── form-mode.enum.ts
│ │ ├── environments/
│ │ │ ├── environment.development.ts
│ │ │ └── environment.ts
│ │ ├── form/
│ │ │ ├── base-form/
│ │ │ │ ├── base-form.component.html
│ │ │ │ ├── base-form.component.scss
│ │ │ │ ├── base-form.component.spec.ts
│ │ │ │ ├── base-form.component.ts
│ │ │ │ └── index.ts
│ │ │ ├── form.module.ts
│ │ │ ├── index.ts
│ │ │ └── interfaces/
│ │ │ ├── form-command.ts
│ │ │ └── index.ts
│ │ ├── group/
│ │ │ ├── group-details/
│ │ │ │ ├── group-details.component.html
│ │ │ │ ├── group-details.component.scss
│ │ │ │ ├── group-details.component.spec.ts
│ │ │ │ └── group-details.component.ts
│ │ │ ├── group-form/
│ │ │ │ ├── group-form.component.html
│ │ │ │ ├── group-form.component.scss
│ │ │ │ ├── group-form.component.spec.ts
│ │ │ │ └── group-form.component.ts
│ │ │ ├── group-member-form/
│ │ │ │ ├── group-member-form.component.html
│ │ │ │ ├── group-member-form.component.scss
│ │ │ │ ├── group-member-form.component.spec.ts
│ │ │ │ └── group-member-form.component.ts
│ │ │ ├── group-receipt-settings/
│ │ │ │ ├── group-receipt-settings.component.html
│ │ │ │ ├── group-receipt-settings.component.scss
│ │ │ │ ├── group-receipt-settings.component.spec.ts
│ │ │ │ └── group-receipt-settings.component.ts
│ │ │ ├── group-routing.module.ts
│ │ │ ├── group-settings/
│ │ │ │ ├── group-settings.component.html
│ │ │ │ ├── group-settings.component.scss
│ │ │ │ ├── group-settings.component.spec.ts
│ │ │ │ └── group-settings.component.ts
│ │ │ ├── group-settings-ai/
│ │ │ │ ├── group-settings-ai.component.html
│ │ │ │ ├── group-settings-ai.component.scss
│ │ │ │ ├── group-settings-ai.component.spec.ts
│ │ │ │ └── group-settings-ai.component.ts
│ │ │ ├── group-settings-email/
│ │ │ │ ├── group-settings-email.component.html
│ │ │ │ ├── group-settings-email.component.scss
│ │ │ │ ├── group-settings-email.component.spec.ts
│ │ │ │ └── group-settings-email.component.ts
│ │ │ ├── group-table/
│ │ │ │ ├── group-table-edit-button.pipe.spec.ts
│ │ │ │ ├── group-table-edit-button.pipe.ts
│ │ │ │ ├── group-table.component.html
│ │ │ │ ├── group-table.component.scss
│ │ │ │ ├── group-table.component.spec.ts
│ │ │ │ ├── group-table.component.ts
│ │ │ │ └── group-table.service.ts
│ │ │ ├── group-table-filter/
│ │ │ │ ├── associated-group-options.ts
│ │ │ │ ├── group-table-filter.component.html
│ │ │ │ ├── group-table-filter.component.scss
│ │ │ │ ├── group-table-filter.component.spec.ts
│ │ │ │ └── group-table-filter.component.ts
│ │ │ ├── group-tabs/
│ │ │ │ ├── group-tabs.component.html
│ │ │ │ ├── group-tabs.component.scss
│ │ │ │ ├── group-tabs.component.spec.ts
│ │ │ │ └── group-tabs.component.ts
│ │ │ ├── group.module.ts
│ │ │ ├── resolvers/
│ │ │ │ ├── group-resolver.service.spec.ts
│ │ │ │ ├── group-resolver.service.ts
│ │ │ │ └── system-emails.resolver.ts
│ │ │ ├── role-options.ts
│ │ │ └── utils/
│ │ │ └── group-member.utils.ts
│ │ ├── guards/
│ │ │ ├── auth.guard.spec.ts
│ │ │ ├── auth.guard.ts
│ │ │ ├── development.guard.spec.ts
│ │ │ ├── development.guard.ts
│ │ │ ├── feature.guard.spec.ts
│ │ │ ├── feature.guard.ts
│ │ │ ├── group-role.guard.spec.ts
│ │ │ ├── group-role.guard.ts
│ │ │ ├── group.guard.spec.ts
│ │ │ ├── group.guard.ts
│ │ │ ├── index.ts
│ │ │ ├── receipt-guard.guard.spec.ts
│ │ │ ├── receipt-guard.guard.ts
│ │ │ ├── role.guard.spec.ts
│ │ │ └── role.guard.ts
│ │ ├── icon/
│ │ │ └── icon.module.ts
│ │ ├── import/
│ │ │ ├── import-form/
│ │ │ │ ├── import-form.component.html
│ │ │ │ ├── import-form.component.scss
│ │ │ │ ├── import-form.component.spec.ts
│ │ │ │ └── import-form.component.ts
│ │ │ └── import.module.ts
│ │ ├── index.html
│ │ ├── input/
│ │ │ ├── index.ts
│ │ │ ├── input/
│ │ │ │ ├── input.component.html
│ │ │ │ ├── input.component.scss
│ │ │ │ ├── input.component.spec.ts
│ │ │ │ └── input.component.ts
│ │ │ ├── input.interface.ts
│ │ │ └── input.module.ts
│ │ ├── interceptors/
│ │ │ ├── http-interceptor.spec.ts
│ │ │ └── http-interceptor.ts
│ │ ├── interfaces/
│ │ │ ├── dashboard-state.interface.ts
│ │ │ ├── extended-user-preferences.interface.ts
│ │ │ ├── form-config.interface.ts
│ │ │ ├── form-option.interface.ts
│ │ │ ├── index.ts
│ │ │ ├── paged-table.interface.ts
│ │ │ ├── quick-scan-command.interface.ts
│ │ │ ├── receipt-file-upload-command.interface.ts
│ │ │ ├── receipt-table-column-config.interface.ts
│ │ │ ├── receipt-table-interface.ts
│ │ │ └── snackbar.interface.ts
│ │ ├── layout/
│ │ │ ├── add-receipt-icon/
│ │ │ │ ├── add-receipt-icon.component.html
│ │ │ │ ├── add-receipt-icon.component.scss
│ │ │ │ ├── add-receipt-icon.component.spec.ts
│ │ │ │ └── add-receipt-icon.component.ts
│ │ │ ├── dashboard-icon/
│ │ │ │ ├── dashboard-icon.component.html
│ │ │ │ ├── dashboard-icon.component.scss
│ │ │ │ ├── dashboard-icon.component.spec.ts
│ │ │ │ └── dashboard-icon.component.ts
│ │ │ ├── header/
│ │ │ │ ├── header.component.html
│ │ │ │ ├── header.component.scss
│ │ │ │ ├── header.component.spec.ts
│ │ │ │ └── header.component.ts
│ │ │ ├── layout.module.ts
│ │ │ ├── receipt-list-icon/
│ │ │ │ ├── receipt-list-icon.component.html
│ │ │ │ ├── receipt-list-icon.component.scss
│ │ │ │ ├── receipt-list-icon.component.spec.ts
│ │ │ │ └── receipt-list-icon.component.ts
│ │ │ └── sidebar/
│ │ │ ├── sidebar.component.html
│ │ │ ├── sidebar.component.scss
│ │ │ ├── sidebar.component.spec.ts
│ │ │ └── sidebar.component.ts
│ │ ├── main.ts
│ │ ├── notifications/
│ │ │ ├── notification/
│ │ │ │ ├── notification.component.html
│ │ │ │ ├── notification.component.scss
│ │ │ │ ├── notification.component.spec.ts
│ │ │ │ └── notification.component.ts
│ │ │ ├── notifications-list/
│ │ │ │ ├── notifications-list.component.html
│ │ │ │ ├── notifications-list.component.scss
│ │ │ │ ├── notifications-list.component.spec.ts
│ │ │ │ └── notifications-list.component.ts
│ │ │ └── notifications.module.ts
│ │ ├── open-api/
│ │ │ ├── .gitignore
│ │ │ ├── .openapi-generator/
│ │ │ │ ├── FILES
│ │ │ │ └── VERSION
│ │ │ ├── .openapi-generator-ignore
│ │ │ ├── README.md
│ │ │ ├── api/
│ │ │ │ ├── api.ts
│ │ │ │ ├── apiKey.service.ts
│ │ │ │ ├── auth.service.ts
│ │ │ │ ├── category.service.ts
│ │ │ │ ├── comment.service.ts
│ │ │ │ ├── customField.service.ts
│ │ │ │ ├── dashboard.service.ts
│ │ │ │ ├── export.service.ts
│ │ │ │ ├── featureConfig.service.ts
│ │ │ │ ├── groups.service.ts
│ │ │ │ ├── import.service.ts
│ │ │ │ ├── notifications.service.ts
│ │ │ │ ├── prompt.service.ts
│ │ │ │ ├── receipt.service.ts
│ │ │ │ ├── receiptImage.service.ts
│ │ │ │ ├── receiptProcessingSettings.service.ts
│ │ │ │ ├── search.service.ts
│ │ │ │ ├── systemEmail.service.ts
│ │ │ │ ├── systemSettings.service.ts
│ │ │ │ ├── systemTask.service.ts
│ │ │ │ ├── tag.service.ts
│ │ │ │ ├── user.service.ts
│ │ │ │ ├── userPreferences.service.ts
│ │ │ │ └── widget.service.ts
│ │ │ ├── api.module.ts
│ │ │ ├── configuration.ts
│ │ │ ├── encoder.ts
│ │ │ ├── git_push.sh
│ │ │ ├── index.ts
│ │ │ ├── model/
│ │ │ │ ├── about.ts
│ │ │ │ ├── activity.ts
│ │ │ │ ├── aiType.ts
│ │ │ │ ├── apiKeyFilter.ts
│ │ │ │ ├── apiKeyResult.ts
│ │ │ │ ├── apiKeyScope.ts
│ │ │ │ ├── apiKeyView.ts
│ │ │ │ ├── appData.ts
│ │ │ │ ├── associatedApiKeys.ts
│ │ │ │ ├── associatedEntityType.ts
│ │ │ │ ├── associatedGroup.ts
│ │ │ │ ├── asynqQueueConfiguration.ts
│ │ │ │ ├── baseModel.ts
│ │ │ │ ├── bulkStatusUpdateCommand.ts
│ │ │ │ ├── bulkUserDeleteCommand.ts
│ │ │ │ ├── category.ts
│ │ │ │ ├── categoryView.ts
│ │ │ │ ├── chartGrouping.ts
│ │ │ │ ├── checkEmailConnectivityCommand.ts
│ │ │ │ ├── checkEmailConnectivityCommandAllOf.ts
│ │ │ │ ├── checkReceiptProcessingSettingsConnectivityCommand.ts
│ │ │ │ ├── claims.ts
│ │ │ │ ├── comment.ts
│ │ │ │ ├── configImportCommand.ts
│ │ │ │ ├── currencySeparator.ts
│ │ │ │ ├── currencySymbolPosition.ts
│ │ │ │ ├── customField.ts
│ │ │ │ ├── customFieldOption.ts
│ │ │ │ ├── customFieldType.ts
│ │ │ │ ├── customFieldValue.ts
│ │ │ │ ├── dashboard.ts
│ │ │ │ ├── deleteAccountCommand.ts
│ │ │ │ ├── encodedImage.ts
│ │ │ │ ├── exportFormat.ts
│ │ │ │ ├── featureConfig.ts
│ │ │ │ ├── fileData.ts
│ │ │ │ ├── fileDataView.ts
│ │ │ │ ├── fileDataViewAllOf.ts
│ │ │ │ ├── filterOperation.ts
│ │ │ │ ├── getNewRefreshToken200Response.ts
│ │ │ │ ├── getSystemTaskCommand.ts
│ │ │ │ ├── group.ts
│ │ │ │ ├── groupFilter.ts
│ │ │ │ ├── groupMember.ts
│ │ │ │ ├── groupReceiptSettings.ts
│ │ │ │ ├── groupRole.ts
│ │ │ │ ├── groupSettings.ts
│ │ │ │ ├── groupSettingsWhiteListEmail.ts
│ │ │ │ ├── groupStatus.ts
│ │ │ │ ├── icon.ts
│ │ │ │ ├── importType.ts
│ │ │ │ ├── internalErrorResponse.ts
│ │ │ │ ├── item.ts
│ │ │ │ ├── itemStatus.ts
│ │ │ │ ├── loginCommand.ts
│ │ │ │ ├── logoutCommand.ts
│ │ │ │ ├── magicFillCommand.ts
│ │ │ │ ├── models.ts
│ │ │ │ ├── notification.ts
│ │ │ │ ├── ocrEngine.ts
│ │ │ │ ├── pagedActivityRequestCommand.ts
│ │ │ │ ├── pagedApiKeyRequestCommand.ts
│ │ │ │ ├── pagedData.ts
│ │ │ │ ├── pagedDataDataInner.ts
│ │ │ │ ├── pagedGroupRequestCommand.ts
│ │ │ │ ├── pagedGroupRequestCommandAllOf.ts
│ │ │ │ ├── pagedRequestCommand.ts
│ │ │ │ ├── pagedRequestField.ts
│ │ │ │ ├── pagedRequestFieldValue.ts
│ │ │ │ ├── pieChartData.ts
│ │ │ │ ├── pieChartDataCommand.ts
│ │ │ │ ├── pieChartDataPoint.ts
│ │ │ │ ├── prompt.ts
│ │ │ │ ├── promptAllOf.ts
│ │ │ │ ├── queueName.ts
│ │ │ │ ├── receipt.ts
│ │ │ │ ├── receiptPagedRequestCommand.ts
│ │ │ │ ├── receiptPagedRequestFilter.ts
│ │ │ │ ├── receiptProcessingSettings.ts
│ │ │ │ ├── receiptProcessingSettingsAllOf.ts
│ │ │ │ ├── receiptStatus.ts
│ │ │ │ ├── resetPasswordCommand.ts
│ │ │ │ ├── searchResult.ts
│ │ │ │ ├── signUpCommand.ts
│ │ │ │ ├── sortDirection.ts
│ │ │ │ ├── subjectLineRegex.ts
│ │ │ │ ├── systemEmail.ts
│ │ │ │ ├── systemEmailAllOf.ts
│ │ │ │ ├── systemSettings.ts
│ │ │ │ ├── systemSettingsAllOf.ts
│ │ │ │ ├── systemTask.ts
│ │ │ │ ├── systemTaskAllOf.ts
│ │ │ │ ├── systemTaskStatus.ts
│ │ │ │ ├── systemTaskType.ts
│ │ │ │ ├── tag.ts
│ │ │ │ ├── tagView.ts
│ │ │ │ ├── taskQueueConfiguration.ts
│ │ │ │ ├── tokenPair.ts
│ │ │ │ ├── updateGroupReceiptSettingsCommand.ts
│ │ │ │ ├── updateGroupSettingsCommand.ts
│ │ │ │ ├── updateProfileCommand.ts
│ │ │ │ ├── upsertApiKeyCommand.ts
│ │ │ │ ├── upsertAsynqQueueConfiguration.ts
│ │ │ │ ├── upsertCategoryCommand.ts
│ │ │ │ ├── upsertCommentCommand.ts
│ │ │ │ ├── upsertCustomFieldCommand.ts
│ │ │ │ ├── upsertCustomFieldOptionCommand.ts
│ │ │ │ ├── upsertCustomFieldValueCommand.ts
│ │ │ │ ├── upsertDashboardCommand.ts
│ │ │ │ ├── upsertGroupCommand.ts
│ │ │ │ ├── upsertGroupMemberCommand.ts
│ │ │ │ ├── upsertItemCommand.ts
│ │ │ │ ├── upsertPromptCommand.ts
│ │ │ │ ├── upsertReceiptCommand.ts
│ │ │ │ ├── upsertReceiptProcessingSettingsCommand.ts
│ │ │ │ ├── upsertSystemEmailCommand.ts
│ │ │ │ ├── upsertSystemSettingsCommand.ts
│ │ │ │ ├── upsertTagCommand.ts
│ │ │ │ ├── upsertTaskQueueConfiguration.ts
│ │ │ │ ├── upsertWidgetCommand.ts
│ │ │ │ ├── user.ts
│ │ │ │ ├── userPreferences.ts
│ │ │ │ ├── userPreferencesAllOf.ts
│ │ │ │ ├── userRole.ts
│ │ │ │ ├── userShortcut.ts
│ │ │ │ ├── userView.ts
│ │ │ │ ├── widget.ts
│ │ │ │ └── widgetType.ts
│ │ │ ├── param.ts
│ │ │ └── variables.ts
│ │ ├── pipes/
│ │ │ ├── custom-currency.pipe.spec.ts
│ │ │ ├── custom-currency.pipe.ts
│ │ │ ├── custom-field-type.pipe.spec.ts
│ │ │ ├── custom-field-type.pipe.ts
│ │ │ ├── duration.pipe.spec.ts
│ │ │ ├── duration.pipe.ts
│ │ │ ├── form-array-last.pipe.spec.ts
│ │ │ ├── form-array-last.pipe.ts
│ │ │ ├── form-get.pipe.spec.ts
│ │ │ ├── form-get.pipe.ts
│ │ │ ├── group-role.pipe.spec.ts
│ │ │ ├── group-role.pipe.ts
│ │ │ ├── group.pipe.spec.ts
│ │ │ ├── group.pipe.ts
│ │ │ ├── image.pipe.spec.ts
│ │ │ ├── image.pipe.ts
│ │ │ ├── index.ts
│ │ │ ├── input-readonly.pipe.spec.ts
│ │ │ ├── input-readonly.pipe.ts
│ │ │ ├── map-get.pipe.spec.ts
│ │ │ ├── map-get.pipe.ts
│ │ │ ├── map-key.pipe.spec.ts
│ │ │ ├── map-key.pipe.ts
│ │ │ ├── name.pipe.spec.ts
│ │ │ ├── name.pipe.ts
│ │ │ ├── pipes.module.ts
│ │ │ ├── status.pipe.spec.ts
│ │ │ ├── status.pipe.ts
│ │ │ ├── user.pipe.spec.ts
│ │ │ └── user.pipe.ts
│ │ ├── prompt/
│ │ │ ├── prompt-form/
│ │ │ │ ├── prompt-form.component.html
│ │ │ │ ├── prompt-form.component.scss
│ │ │ │ ├── prompt-form.component.spec.ts
│ │ │ │ └── prompt-form.component.ts
│ │ │ ├── prompt-routing.module.ts
│ │ │ ├── prompt-table/
│ │ │ │ ├── prompt-table.component.html
│ │ │ │ ├── prompt-table.component.scss
│ │ │ │ ├── prompt-table.component.spec.ts
│ │ │ │ └── prompt-table.component.ts
│ │ │ ├── prompt.module.ts
│ │ │ ├── prompt.resolver.spec.ts
│ │ │ ├── prompt.resolver.ts
│ │ │ ├── prompts.resolver.spec.ts
│ │ │ └── prompts.resolver.ts
│ │ ├── radio-group/
│ │ │ ├── models/
│ │ │ │ ├── index.ts
│ │ │ │ └── radio-button-data.ts
│ │ │ ├── radio-group/
│ │ │ │ ├── radio-group.component.html
│ │ │ │ ├── radio-group.component.scss
│ │ │ │ ├── radio-group.component.spec.ts
│ │ │ │ └── radio-group.component.ts
│ │ │ └── radio-group.module.ts
│ │ ├── receipt-processing-settings/
│ │ │ ├── constants/
│ │ │ │ ├── ai-type-options.ts
│ │ │ │ ├── ocr-engine-options.ts
│ │ │ │ └── pretty-json.ts
│ │ │ ├── pipes/
│ │ │ │ ├── ai-type.pipe.spec.ts
│ │ │ │ ├── ai-type.pipe.ts
│ │ │ │ ├── ocr-engine.pipe.spec.ts
│ │ │ │ ├── ocr-engine.pipe.ts
│ │ │ │ ├── url-label.pipe.spec.ts
│ │ │ │ └── url-label.pipe.ts
│ │ │ ├── receipt-processing-settings-child-system-task-accordion/
│ │ │ │ ├── receipt-processing-settings-child-system-task-accordion.component.html
│ │ │ │ ├── receipt-processing-settings-child-system-task-accordion.component.scss
│ │ │ │ ├── receipt-processing-settings-child-system-task-accordion.component.spec.ts
│ │ │ │ └── receipt-processing-settings-child-system-task-accordion.component.ts
│ │ │ ├── receipt-processing-settings-form/
│ │ │ │ ├── receipt-processing-settings-form.component.html
│ │ │ │ ├── receipt-processing-settings-form.component.scss
│ │ │ │ ├── receipt-processing-settings-form.component.spec.ts
│ │ │ │ └── receipt-processing-settings-form.component.ts
│ │ │ ├── receipt-processing-settings-table/
│ │ │ │ ├── receipt-processing-settings-table.component.html
│ │ │ │ ├── receipt-processing-settings-table.component.scss
│ │ │ │ ├── receipt-processing-settings-table.component.spec.ts
│ │ │ │ ├── receipt-processing-settings-table.component.ts
│ │ │ │ ├── receipt-processing-settings-table.service.spec.ts
│ │ │ │ └── receipt-processing-settings-table.service.ts
│ │ │ ├── receipt-processing-settings.module.ts
│ │ │ ├── receipt-processing-settings.resolver.spec.ts
│ │ │ └── receipt-processing-settings.resolver.ts
│ │ ├── receipts/
│ │ │ ├── bulk-resolve-dialog/
│ │ │ │ ├── bulk-status-update-dialog.component.html
│ │ │ │ ├── bulk-status-update-dialog.component.scss
│ │ │ │ ├── bulk-status-update-dialog.component.spec.ts
│ │ │ │ └── bulk-status-update-dialog.component.ts
│ │ │ ├── column-configuration-dialog/
│ │ │ │ ├── column-configuration-dialog.component.html
│ │ │ │ ├── column-configuration-dialog.component.scss
│ │ │ │ ├── column-configuration-dialog.component.spec.ts
│ │ │ │ └── column-configuration-dialog.component.ts
│ │ │ ├── custom-field/
│ │ │ │ ├── custom-field.component.html
│ │ │ │ ├── custom-field.component.scss
│ │ │ │ ├── custom-field.component.spec.ts
│ │ │ │ └── custom-field.component.ts
│ │ │ ├── item-add-form/
│ │ │ │ ├── item-add-form.component.html
│ │ │ │ ├── item-add-form.component.scss
│ │ │ │ ├── item-add-form.component.spec.ts
│ │ │ │ └── item-add-form.component.ts
│ │ │ ├── item-list/
│ │ │ │ ├── item-list.component.html
│ │ │ │ ├── item-list.component.scss
│ │ │ │ └── item-list.component.ts
│ │ │ ├── pipes/
│ │ │ │ ├── custom-field.pipe.spec.ts
│ │ │ │ └── custom-field.pipe.ts
│ │ │ ├── quick-actions-dialog/
│ │ │ │ ├── quick-actions-dialog.component.html
│ │ │ │ ├── quick-actions-dialog.component.scss
│ │ │ │ ├── quick-actions-dialog.component.spec.ts
│ │ │ │ └── quick-actions-dialog.component.ts
│ │ │ ├── quick-scan-dialog/
│ │ │ │ ├── quick-scan-dialog.component.html
│ │ │ │ ├── quick-scan-dialog.component.scss
│ │ │ │ ├── quick-scan-dialog.component.spec.ts
│ │ │ │ └── quick-scan-dialog.component.ts
│ │ │ ├── receipt-comments/
│ │ │ │ ├── receipt-comments.component.html
│ │ │ │ ├── receipt-comments.component.scss
│ │ │ │ ├── receipt-comments.component.spec.ts
│ │ │ │ └── receipt-comments.component.ts
│ │ │ ├── receipt-form/
│ │ │ │ ├── receipt-form.component.html
│ │ │ │ ├── receipt-form.component.scss
│ │ │ │ ├── receipt-form.component.spec.ts
│ │ │ │ └── receipt-form.component.ts
│ │ │ ├── receipts-routing.module.ts
│ │ │ ├── receipts-table/
│ │ │ │ ├── receipts-table.component.html
│ │ │ │ ├── receipts-table.component.scss
│ │ │ │ ├── receipts-table.component.spec.ts
│ │ │ │ └── receipts-table.component.ts
│ │ │ ├── receipts.module.ts
│ │ │ ├── share-list/
│ │ │ │ ├── share-list.component.html
│ │ │ │ ├── share-list.component.scss
│ │ │ │ ├── share-list.component.spec.ts
│ │ │ │ └── share-list.component.ts
│ │ │ ├── upload-image/
│ │ │ │ ├── upload-image.component.html
│ │ │ │ ├── upload-image.component.scss
│ │ │ │ ├── upload-image.component.spec.ts
│ │ │ │ └── upload-image.component.ts
│ │ │ ├── user-total-with-percentage.pipe.spec.ts
│ │ │ ├── user-total-with-percentage.pipe.ts
│ │ │ └── utils/
│ │ │ └── form.utils.ts
│ │ ├── resolvers/
│ │ │ ├── categories.resolver.spec.ts
│ │ │ ├── categories.resolver.ts
│ │ │ ├── custom-field.resolver.spec.ts
│ │ │ ├── custom-field.resolver.ts
│ │ │ ├── receipt.resolver.spec.ts
│ │ │ ├── receipt.resolver.ts
│ │ │ ├── tags.resolver.spec.ts
│ │ │ └── tags.resolver.ts
│ │ ├── searchbar/
│ │ │ ├── pipes/
│ │ │ │ ├── search-result.pipe.spec.ts
│ │ │ │ └── search-result.pipe.ts
│ │ │ ├── searchbar/
│ │ │ │ ├── searchbar.component.html
│ │ │ │ ├── searchbar.component.scss
│ │ │ │ ├── searchbar.component.spec.ts
│ │ │ │ └── searchbar.component.ts
│ │ │ └── searchbar.module.ts
│ │ ├── select/
│ │ │ ├── pipes/
│ │ │ │ ├── option-display.pipe.spec.ts
│ │ │ │ ├── option-display.pipe.ts
│ │ │ │ ├── readonly-value.pipe.spec.ts
│ │ │ │ └── readonly-value.pipe.ts
│ │ │ ├── select/
│ │ │ │ ├── select.component.html
│ │ │ │ ├── select.component.scss
│ │ │ │ ├── select.component.spec.ts
│ │ │ │ └── select.component.ts
│ │ │ └── select.module.ts
│ │ ├── services/
│ │ │ ├── app-init.service.spec.ts
│ │ │ ├── app-init.service.ts
│ │ │ ├── base-table.service.ts
│ │ │ ├── claims.service.spec.ts
│ │ │ ├── claims.service.ts
│ │ │ ├── environment.service.spec.ts
│ │ │ ├── environment.service.ts
│ │ │ ├── group-member-user.service.spec.ts
│ │ │ ├── group-member-user.service.ts
│ │ │ ├── index.ts
│ │ │ ├── injection-tokens/
│ │ │ │ └── table-service.ts
│ │ │ ├── keyboard-shortcut.service.spec.ts
│ │ │ ├── keyboard-shortcut.service.ts
│ │ │ ├── receipt-export.service.spec.ts
│ │ │ ├── receipt-export.service.ts
│ │ │ ├── receipt-filter.service.spec.ts
│ │ │ ├── receipt-filter.service.ts
│ │ │ ├── receipt-processing-settings-task-table.service.ts
│ │ │ ├── receipt-queue.service.spec.ts
│ │ │ ├── receipt-queue.service.ts
│ │ │ ├── snackbar.service.spec.ts
│ │ │ ├── snackbar.service.ts
│ │ │ ├── system-email-task-table.service.spec.ts
│ │ │ ├── system-email-task-table.service.ts
│ │ │ ├── system-task-table.service.spec.ts
│ │ │ ├── system-task-table.service.ts
│ │ │ ├── token-refresh.service.spec.ts
│ │ │ └── token-refresh.service.ts
│ │ ├── settings/
│ │ │ ├── api-key-form-dialog/
│ │ │ │ ├── api-key-form-dialog.component.html
│ │ │ │ ├── api-key-form-dialog.component.scss
│ │ │ │ ├── api-key-form-dialog.component.spec.ts
│ │ │ │ └── api-key-form-dialog.component.ts
│ │ │ ├── api-key-table/
│ │ │ │ ├── api-key-table.component.html
│ │ │ │ ├── api-key-table.component.scss
│ │ │ │ ├── api-key-table.component.ts
│ │ │ │ └── api-key-table.service.ts
│ │ │ ├── api-key-table-filter/
│ │ │ │ ├── api-key-table-filter.component.html
│ │ │ │ ├── api-key-table-filter.component.scss
│ │ │ │ ├── api-key-table-filter.component.ts
│ │ │ │ └── associated-api-key-options.ts
│ │ │ ├── api-keys/
│ │ │ │ ├── api-keys.component.html
│ │ │ │ ├── api-keys.component.scss
│ │ │ │ └── api-keys.component.ts
│ │ │ ├── delete-account-dialog/
│ │ │ │ ├── delete-account-dialog.component.html
│ │ │ │ ├── delete-account-dialog.component.scss
│ │ │ │ ├── delete-account-dialog.component.spec.ts
│ │ │ │ └── delete-account-dialog.component.ts
│ │ │ ├── settings/
│ │ │ │ ├── settings.component.html
│ │ │ │ ├── settings.component.scss
│ │ │ │ ├── settings.component.spec.ts
│ │ │ │ └── settings.component.ts
│ │ │ ├── settings-routing.module.ts
│ │ │ ├── settings.module.ts
│ │ │ ├── user-preferences/
│ │ │ │ ├── user-preferences.component.html
│ │ │ │ ├── user-preferences.component.scss
│ │ │ │ ├── user-preferences.component.spec.ts
│ │ │ │ └── user-preferences.component.ts
│ │ │ ├── user-profile/
│ │ │ │ ├── user-profile.component.html
│ │ │ │ ├── user-profile.component.scss
│ │ │ │ ├── user-profile.component.spec.ts
│ │ │ │ └── user-profile.component.ts
│ │ │ └── user-shortcut/
│ │ │ ├── user-shortcut.component.html
│ │ │ ├── user-shortcut.component.scss
│ │ │ ├── user-shortcut.component.spec.ts
│ │ │ └── user-shortcut.component.ts
│ │ ├── shared-ui/
│ │ │ ├── accordion/
│ │ │ │ ├── accordion-panel.interface.ts
│ │ │ │ ├── accordion.component.html
│ │ │ │ ├── accordion.component.scss
│ │ │ │ ├── accordion.component.spec.ts
│ │ │ │ └── accordion.component.ts
│ │ │ ├── add-button/
│ │ │ │ ├── add-button.component.html
│ │ │ │ ├── add-button.component.scss
│ │ │ │ ├── add-button.component.spec.ts
│ │ │ │ └── add-button.component.ts
│ │ │ ├── audit-detail-section/
│ │ │ │ ├── audit-detail-section.component.html
│ │ │ │ ├── audit-detail-section.component.scss
│ │ │ │ ├── audit-detail-section.component.spec.ts
│ │ │ │ └── audit-detail-section.component.ts
│ │ │ ├── back-button/
│ │ │ │ ├── back-button.component.html
│ │ │ │ ├── back-button.component.scss
│ │ │ │ ├── back-button.component.spec.ts
│ │ │ │ └── back-button.component.ts
│ │ │ ├── base-table/
│ │ │ │ ├── base-table.component.html
│ │ │ │ ├── base-table.component.scss
│ │ │ │ ├── base-table.component.spec.ts
│ │ │ │ └── base-table.component.ts
│ │ │ ├── cancel-button/
│ │ │ │ ├── cancel-button.component.html
│ │ │ │ ├── cancel-button.component.scss
│ │ │ │ ├── cancel-button.component.spec.ts
│ │ │ │ └── cancel-button.component.ts
│ │ │ ├── card/
│ │ │ │ ├── card.component.html
│ │ │ │ ├── card.component.scss
│ │ │ │ ├── card.component.spec.ts
│ │ │ │ └── card.component.ts
│ │ │ ├── confirmation-dialog/
│ │ │ │ ├── confirmation-dialog.component.html
│ │ │ │ ├── confirmation-dialog.component.scss
│ │ │ │ ├── confirmation-dialog.component.spec.ts
│ │ │ │ └── confirmation-dialog.component.ts
│ │ │ ├── copy-button/
│ │ │ │ ├── copy-button.component.html
│ │ │ │ ├── copy-button.component.scss
│ │ │ │ ├── copy-button.component.spec.ts
│ │ │ │ └── copy-button.component.ts
│ │ │ ├── delete-button/
│ │ │ │ ├── delete-button.component.html
│ │ │ │ ├── delete-button.component.scss
│ │ │ │ ├── delete-button.component.spec.ts
│ │ │ │ └── delete-button.component.ts
│ │ │ ├── description-viewer-dialog/
│ │ │ │ ├── description-viewer-dialog.component.html
│ │ │ │ ├── description-viewer-dialog.component.scss
│ │ │ │ └── description-viewer-dialog.component.ts
│ │ │ ├── dialog/
│ │ │ │ ├── dialog.component.html
│ │ │ │ ├── dialog.component.scss
│ │ │ │ ├── dialog.component.spec.ts
│ │ │ │ └── dialog.component.ts
│ │ │ ├── dialog-footer/
│ │ │ │ ├── dialog-footer.component.html
│ │ │ │ ├── dialog-footer.component.scss
│ │ │ │ ├── dialog-footer.component.spec.ts
│ │ │ │ └── dialog-footer.component.ts
│ │ │ ├── edit-button/
│ │ │ │ ├── edit-button.component.html
│ │ │ │ ├── edit-button.component.scss
│ │ │ │ ├── edit-button.component.spec.ts
│ │ │ │ └── edit-button.component.ts
│ │ │ ├── editable-list/
│ │ │ │ ├── editable-list.component.html
│ │ │ │ ├── editable-list.component.scss
│ │ │ │ ├── editable-list.component.spec.ts
│ │ │ │ └── editable-list.component.ts
│ │ │ ├── form/
│ │ │ │ ├── form.component.html
│ │ │ │ ├── form.component.scss
│ │ │ │ ├── form.component.spec.ts
│ │ │ │ └── form.component.ts
│ │ │ ├── form-button/
│ │ │ │ ├── form-button.component.html
│ │ │ │ ├── form-button.component.scss
│ │ │ │ ├── form-button.component.spec.ts
│ │ │ │ └── form-button.component.ts
│ │ │ ├── form-button-bar/
│ │ │ │ ├── form-button-bar.component.html
│ │ │ │ ├── form-button-bar.component.scss
│ │ │ │ ├── form-button-bar.component.spec.ts
│ │ │ │ └── form-button-bar.component.ts
│ │ │ ├── form-header/
│ │ │ │ ├── form-header.component.html
│ │ │ │ ├── form-header.component.scss
│ │ │ │ ├── form-header.component.spec.ts
│ │ │ │ └── form-header.component.ts
│ │ │ ├── form-list/
│ │ │ │ ├── form-list.component.html
│ │ │ │ ├── form-list.component.scss
│ │ │ │ ├── form-list.component.spec.ts
│ │ │ │ └── form-list.component.ts
│ │ │ ├── form-section/
│ │ │ │ ├── form-section.component.html
│ │ │ │ ├── form-section.component.scss
│ │ │ │ ├── form-section.component.spec.ts
│ │ │ │ └── form-section.component.ts
│ │ │ ├── group-autocomplete/
│ │ │ │ ├── group-autocomplete.component.html
│ │ │ │ ├── group-autocomplete.component.scss
│ │ │ │ ├── group-autocomplete.component.spec.ts
│ │ │ │ └── group-autocomplete.component.ts
│ │ │ ├── help-icon/
│ │ │ │ ├── help-icon.component.html
│ │ │ │ ├── help-icon.component.scss
│ │ │ │ ├── help-icon.component.spec.ts
│ │ │ │ └── help-icon.component.ts
│ │ │ ├── icon-autocomplete/
│ │ │ │ ├── icon-autocomplete.component.html
│ │ │ │ ├── icon-autocomplete.component.scss
│ │ │ │ ├── icon-autocomplete.component.spec.ts
│ │ │ │ └── icon-autocomplete.component.ts
│ │ │ ├── image-viewer/
│ │ │ │ ├── image-viewer.component.html
│ │ │ │ ├── image-viewer.component.scss
│ │ │ │ ├── image-viewer.component.spec.ts
│ │ │ │ └── image-viewer.component.ts
│ │ │ ├── pie-chart/
│ │ │ │ ├── pie-chart.component.html
│ │ │ │ ├── pie-chart.component.scss
│ │ │ │ ├── pie-chart.component.spec.ts
│ │ │ │ └── pie-chart.component.ts
│ │ │ ├── pretty-json/
│ │ │ │ ├── pretty-json.component.html
│ │ │ │ ├── pretty-json.component.scss
│ │ │ │ ├── pretty-json.component.spec.ts
│ │ │ │ └── pretty-json.component.ts
│ │ │ ├── queue-start-menu/
│ │ │ │ ├── queue-start-menu.component.html
│ │ │ │ ├── queue-start-menu.component.scss
│ │ │ │ ├── queue-start-menu.component.spec.ts
│ │ │ │ └── queue-start-menu.component.ts
│ │ │ ├── quick-scan-button/
│ │ │ │ ├── quick-scan-button.component.html
│ │ │ │ ├── quick-scan-button.component.scss
│ │ │ │ ├── quick-scan-button.component.spec.ts
│ │ │ │ └── quick-scan-button.component.ts
│ │ │ ├── receipt-filter/
│ │ │ │ ├── operations.pipe.spec.ts
│ │ │ │ ├── operations.pipe.ts
│ │ │ │ ├── receipt-filter.component.html
│ │ │ │ ├── receipt-filter.component.scss
│ │ │ │ ├── receipt-filter.component.spec.ts
│ │ │ │ └── receipt-filter.component.ts
│ │ │ ├── shared-ui.module.ts
│ │ │ ├── status-chip/
│ │ │ │ ├── status-chip.component.html
│ │ │ │ ├── status-chip.component.scss
│ │ │ │ ├── status-chip.component.spec.ts
│ │ │ │ └── status-chip.component.ts
│ │ │ ├── status-icon/
│ │ │ │ ├── status-icon.component.html
│ │ │ │ ├── status-icon.component.scss
│ │ │ │ ├── status-icon.component.spec.ts
│ │ │ │ └── status-icon.component.ts
│ │ │ ├── status-select/
│ │ │ │ ├── status-select.component.html
│ │ │ │ ├── status-select.component.scss
│ │ │ │ ├── status-select.component.spec.ts
│ │ │ │ └── status-select.component.ts
│ │ │ ├── submit-button/
│ │ │ │ ├── submit-button.component.html
│ │ │ │ ├── submit-button.component.scss
│ │ │ │ ├── submit-button.component.spec.ts
│ │ │ │ └── submit-button.component.ts
│ │ │ ├── summary-card/
│ │ │ │ ├── summary-card.component.html
│ │ │ │ ├── summary-card.component.scss
│ │ │ │ ├── summary-card.component.spec.ts
│ │ │ │ └── summary-card.component.ts
│ │ │ ├── table-header/
│ │ │ │ ├── table-header.component.html
│ │ │ │ ├── table-header.component.scss
│ │ │ │ ├── table-header.component.spec.ts
│ │ │ │ └── table-header.component.ts
│ │ │ ├── tabs/
│ │ │ │ ├── tab-config.interface.ts
│ │ │ │ ├── tabs.component.html
│ │ │ │ ├── tabs.component.scss
│ │ │ │ ├── tabs.component.spec.ts
│ │ │ │ └── tabs.component.ts
│ │ │ └── task-table/
│ │ │ ├── pretty-json.pipe.spec.ts
│ │ │ ├── pretty-json.pipe.ts
│ │ │ ├── system-task-type.pipe.spec.ts
│ │ │ ├── system-task-type.pipe.ts
│ │ │ ├── task-table.component.html
│ │ │ ├── task-table.component.scss
│ │ │ ├── task-table.component.spec.ts
│ │ │ └── task-table.component.ts
│ │ ├── slide-toggle/
│ │ │ ├── slide-toggle/
│ │ │ │ ├── slide-toggle.component.html
│ │ │ │ ├── slide-toggle.component.scss
│ │ │ │ ├── slide-toggle.component.spec.ts
│ │ │ │ └── slide-toggle.component.ts
│ │ │ └── slide-toggle.module.ts
│ │ ├── standalone/
│ │ │ └── components/
│ │ │ ├── date-block/
│ │ │ │ ├── date-block.component.html
│ │ │ │ ├── date-block.component.scss
│ │ │ │ ├── date-block.component.spec.ts
│ │ │ │ └── date-block.component.ts
│ │ │ ├── export-button/
│ │ │ │ ├── export-button.component.html
│ │ │ │ ├── export-button.component.scss
│ │ │ │ ├── export-button.component.spec.ts
│ │ │ │ └── export-button.component.ts
│ │ │ └── filtered-stateful-menu/
│ │ │ ├── filtered-stateful-menu.component.html
│ │ │ ├── filtered-stateful-menu.component.scss
│ │ │ ├── filtered-stateful-menu.component.spec.ts
│ │ │ ├── filtered-stateful-menu.component.ts
│ │ │ └── stateful-menu-item.ts
│ │ ├── store/
│ │ │ ├── about-state.interface.ts
│ │ │ ├── about.state.actions.ts
│ │ │ ├── about.state.ts
│ │ │ ├── api-key-table.state.actions.ts
│ │ │ ├── api-key-table.state.ts
│ │ │ ├── auth-state.interface.ts
│ │ │ ├── auth.state.actions.ts
│ │ │ ├── auth.state.ts
│ │ │ ├── category-table.state.actions.ts
│ │ │ ├── category-table.state.ts
│ │ │ ├── custom-field-table.state.actions.ts
│ │ │ ├── custom-field-table.state.ts
│ │ │ ├── dashboard.state.actions.ts
│ │ │ ├── dashboard.state.ts
│ │ │ ├── feature-config.state.actions.ts
│ │ │ ├── feature-config.state.ts
│ │ │ ├── group-table.state.actions.ts
│ │ │ ├── group-table.state.ts
│ │ │ ├── group.state.actions.ts
│ │ │ ├── group.state.ts
│ │ │ ├── index.ts
│ │ │ ├── layout.state.actions.ts
│ │ │ ├── layout.state.ts
│ │ │ ├── paged-table.state.actions.ts
│ │ │ ├── paged-table.state.ts
│ │ │ ├── prompt-table.state.actions.ts
│ │ │ ├── prompt-table.state.ts
│ │ │ ├── receipt-processing-settings-table.state.actions.ts
│ │ │ ├── receipt-processing-settings-table.state.ts
│ │ │ ├── receipt-processing-settings-task-table.state.actions.ts
│ │ │ ├── receipt-processing-settings-task-table.state.ts
│ │ │ ├── receipt-table.actions.ts
│ │ │ ├── receipt-table.state.spec.ts
│ │ │ ├── receipt-table.state.ts
│ │ │ ├── store.module.ts
│ │ │ ├── system-email-table.state.actions.ts
│ │ │ ├── system-email-table.state.ts
│ │ │ ├── system-email-task-table.state.actions.ts
│ │ │ ├── system-email-task-table.state.ts
│ │ │ ├── system-settings.state.actions.ts
│ │ │ ├── system-settings.state.ts
│ │ │ ├── system-task-table.state.actions.ts
│ │ │ ├── system-task-table.state.spec.ts
│ │ │ ├── system-task-table.state.ts
│ │ │ ├── tag-table.state.actions.ts
│ │ │ ├── tag-table.state.ts
│ │ │ ├── user.state.actions.ts
│ │ │ └── user.state.ts
│ │ ├── styles.scss
│ │ ├── system-settings/
│ │ │ ├── pipes/
│ │ │ │ ├── task-queue-form-control.pipe.spec.ts
│ │ │ │ └── task-queue-form-control.pipe.ts
│ │ │ ├── resolvers/
│ │ │ │ ├── receipt-processing-settings.resolver.ts
│ │ │ │ ├── system-email.resolver.ts
│ │ │ │ └── system-settings.resolver.ts
│ │ │ ├── system-email-child-system-task/
│ │ │ │ ├── system-email-child-system-task.component.html
│ │ │ │ ├── system-email-child-system-task.component.scss
│ │ │ │ ├── system-email-child-system-task.component.spec.ts
│ │ │ │ └── system-email-child-system-task.component.ts
│ │ │ ├── system-email-form/
│ │ │ │ ├── system-email-form.component.html
│ │ │ │ ├── system-email-form.component.scss
│ │ │ │ ├── system-email-form.component.spec.ts
│ │ │ │ └── system-email-form.component.ts
│ │ │ ├── system-email-table/
│ │ │ │ ├── all-groups.resolver.ts
│ │ │ │ ├── system-email-table.component.html
│ │ │ │ ├── system-email-table.component.scss
│ │ │ │ ├── system-email-table.component.spec.ts
│ │ │ │ └── system-email-table.component.ts
│ │ │ ├── system-settings/
│ │ │ │ ├── system-settings.component.html
│ │ │ │ ├── system-settings.component.scss
│ │ │ │ ├── system-settings.component.spec.ts
│ │ │ │ └── system-settings.component.ts
│ │ │ ├── system-settings-form/
│ │ │ │ ├── system-settings-form.component.html
│ │ │ │ ├── system-settings-form.component.scss
│ │ │ │ ├── system-settings-form.component.spec.ts
│ │ │ │ └── system-settings-form.component.ts
│ │ │ ├── system-settings-routing.module.ts
│ │ │ ├── system-settings.module.ts
│ │ │ └── system-task-table/
│ │ │ ├── system-task-table.component.html
│ │ │ ├── system-task-table.component.scss
│ │ │ ├── system-task-table.component.spec.ts
│ │ │ └── system-task-table.component.ts
│ │ ├── table/
│ │ │ ├── table/
│ │ │ │ ├── row-expandable.pipe.spec.ts
│ │ │ │ ├── row-expandable.pipe.ts
│ │ │ │ ├── table.component.html
│ │ │ │ ├── table.component.scss
│ │ │ │ ├── table.component.spec.ts
│ │ │ │ └── table.component.ts
│ │ │ ├── table-column.interface.ts
│ │ │ └── table.module.ts
│ │ ├── tag-autocomplete/
│ │ │ ├── tag-autocomplete.component.html
│ │ │ ├── tag-autocomplete.component.scss
│ │ │ ├── tag-autocomplete.component.spec.ts
│ │ │ └── tag-autocomplete.component.ts
│ │ ├── tags/
│ │ │ ├── tag-form/
│ │ │ │ ├── tag-form.component.html
│ │ │ │ ├── tag-form.component.scss
│ │ │ │ ├── tag-form.component.spec.ts
│ │ │ │ └── tag-form.component.ts
│ │ │ ├── tag-table/
│ │ │ │ ├── tag-table.component.html
│ │ │ │ ├── tag-table.component.scss
│ │ │ │ ├── tag-table.component.spec.ts
│ │ │ │ └── tag-table.component.ts
│ │ │ ├── tags-routing.module.ts
│ │ │ └── tags.module.ts
│ │ ├── textarea/
│ │ │ ├── textarea/
│ │ │ │ ├── textarea.component.html
│ │ │ │ ├── textarea.component.scss
│ │ │ │ ├── textarea.component.spec.ts
│ │ │ │ └── textarea.component.ts
│ │ │ └── textarea.module.ts
│ │ ├── user/
│ │ │ ├── dummy-user-conversion-dialog/
│ │ │ │ ├── dummy-user-conversion-dialog.component.html
│ │ │ │ ├── dummy-user-conversion-dialog.component.scss
│ │ │ │ ├── dummy-user-conversion-dialog.component.spec.ts
│ │ │ │ └── dummy-user-conversion-dialog.component.ts
│ │ │ ├── reset-password/
│ │ │ │ ├── reset-password.component.html
│ │ │ │ ├── reset-password.component.scss
│ │ │ │ ├── reset-password.component.spec.ts
│ │ │ │ └── reset-password.component.ts
│ │ │ ├── user-form/
│ │ │ │ ├── user-form.component.html
│ │ │ │ ├── user-form.component.scss
│ │ │ │ ├── user-form.component.spec.ts
│ │ │ │ └── user-form.component.ts
│ │ │ ├── user-list/
│ │ │ │ ├── user-list.component.html
│ │ │ │ ├── user-list.component.scss
│ │ │ │ ├── user-list.component.spec.ts
│ │ │ │ └── user-list.component.ts
│ │ │ ├── user-routing.module.ts
│ │ │ └── user.module.ts
│ │ ├── user-autocomplete/
│ │ │ ├── user-autocomplete/
│ │ │ │ ├── user-autocomplete.component.html
│ │ │ │ ├── user-autocomplete.component.scss
│ │ │ │ ├── user-autocomplete.component.spec.ts
│ │ │ │ └── user-autocomplete.component.ts
│ │ │ └── user-autocomplete.module.ts
│ │ ├── utils/
│ │ │ ├── app-data.utill.ts
│ │ │ ├── file.ts
│ │ │ ├── form.utils.ts
│ │ │ ├── group.utils.spec.ts
│ │ │ ├── group.utils.ts
│ │ │ ├── index.ts
│ │ │ ├── paramterized-data.parser.spec.ts
│ │ │ ├── paramterterized-data-parser.ts
│ │ │ ├── receipt-filter.ts
│ │ │ ├── sort-by-displayname.ts
│ │ │ └── status.utils.ts
│ │ ├── validators/
│ │ │ ├── duplicate-validator.ts
│ │ │ ├── index.ts
│ │ │ └── user-validators.ts
│ │ └── variables.scss
│ ├── tsconfig.app.json
│ ├── tsconfig.json
│ └── tsconfig.spec.json
├── docker/
│ ├── Dockerfile
│ ├── LICENSE
│ ├── README.md
│ ├── default.conf
│ ├── dev/
│ │ └── Dockerfile
│ └── entrypoint.sh
├── mobile/
│ ├── .gitignore
│ ├── .metadata
│ ├── .openapi-generator/
│ │ ├── FILES
│ │ └── VERSION
│ ├── .travis.yml
│ ├── CLAUDE.md
│ ├── README.md
│ ├── analysis_options.yaml
│ ├── android/
│ │ ├── .gitignore
│ │ ├── app/
│ │ │ ├── build.gradle
│ │ │ ├── release/
│ │ │ │ └── app-release.aab
│ │ │ └── src/
│ │ │ ├── debug/
│ │ │ │ └── AndroidManifest.xml
│ │ │ ├── main/
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── assets/
│ │ │ │ │ ├── capacitor.config.json
│ │ │ │ │ ├── capacitor.plugins.json
│ │ │ │ │ └── public/
│ │ │ │ │ ├── 1315.889df76956ff23ca.js
│ │ │ │ │ ├── 1372.adec2e4e15de229e.js
│ │ │ │ │ ├── 1745.3c8be738e4ed3473.js
│ │ │ │ │ ├── 185.e77de020be41917f.js
│ │ │ │ │ ├── 2841.0bc48a5b325bfb25.js
│ │ │ │ │ ├── 2975.e586449a75f61839.js
│ │ │ │ │ ├── 3150.5ae5046a8a6f3f3c.js
│ │ │ │ │ ├── 3483.42f8d84de3c6de1b.js
│ │ │ │ │ ├── 3544.e4a87e0193f7d36c.js
│ │ │ │ │ ├── 3672.b43100ea07272033.js
│ │ │ │ │ ├── 3734.77fa8da2119d4aac.js
│ │ │ │ │ ├── 3998.719b8513be715b74.js
│ │ │ │ │ ├── 3rdpartylicenses.txt
│ │ │ │ │ ├── 4087.31a09dafb629fd16.js
│ │ │ │ │ ├── 4090.5e1ea55e09eb2f12.js
│ │ │ │ │ ├── 433.3bc4840c1f5eb2b3.js
│ │ │ │ │ ├── 4458.44be36ff4581eb32.js
│ │ │ │ │ ├── 4530.0abd72787f9e91dc.js
│ │ │ │ │ ├── 4675.6ccbe3fbb2b06ecb.js
│ │ │ │ │ ├── 469.dc0e146587f2129b.js
│ │ │ │ │ ├── 4764.090d271cb454d91f.js
│ │ │ │ │ ├── 4882.843a9b809ef86c9d.js
│ │ │ │ │ ├── 505.c83e6d8d552a8bb9.js
│ │ │ │ │ ├── 5248.b4df00225e7d8231.js
│ │ │ │ │ ├── 5260.38639ab137eebcbc.js
│ │ │ │ │ ├── 5454.f4d8a62537982558.js
│ │ │ │ │ ├── 5675.821e04955152c08f.js
│ │ │ │ │ ├── 5860.0ac8af25bc16129a.js
│ │ │ │ │ ├── 5962.58545b793039a734.js
│ │ │ │ │ ├── 6304.4bec75a89dd581c3.js
│ │ │ │ │ ├── 6416.d2723744cffdb9ec.js
│ │ │ │ │ ├── 6642.58d302101b401ed9.js
│ │ │ │ │ ├── 6673.9819b24f769fce0c.js
│ │ │ │ │ ├── 6754.5772d3dd67e63dbc.js
│ │ │ │ │ ├── 7059.d953cea4f12e1b2d.js
│ │ │ │ │ ├── 7219.fe028ba572aafee0.js
│ │ │ │ │ ├── 7250.dd7a58df6c68d73e.js
│ │ │ │ │ ├── 7465.5b9aa191ea4695f4.js
│ │ │ │ │ ├── 7624.7cda70322a5d4667.js
│ │ │ │ │ ├── 7635.624d22499a5c00ab.js
│ │ │ │ │ ├── 7666.1fffcc2354ea9e7e.js
│ │ │ │ │ ├── 8382.210b66356588e32b.js
│ │ │ │ │ ├── 8484.edcc115af7c0b396.js
│ │ │ │ │ ├── 8577.2b2bc8d2ce36c186.js
│ │ │ │ │ ├── 8594.6e8e4b8ff83f929b.js
│ │ │ │ │ ├── 8633.85e2f6cee2a1b8c5.js
│ │ │ │ │ ├── 8811.bf59c840512ceced.js
│ │ │ │ │ ├── 8866.f0403804618ee8bd.js
│ │ │ │ │ ├── 9352.717af8fb47bada66.js
│ │ │ │ │ ├── 9588.22fd9fd752c53fa9.js
│ │ │ │ │ ├── 962.3fb0dac75d94cc95.js
│ │ │ │ │ ├── 9793.424c80d25d4c1bb9.js
│ │ │ │ │ ├── 9820.cc510d6e61612b37.js
│ │ │ │ │ ├── 9857.cd96d3ee191f805d.js
│ │ │ │ │ ├── 9882.c8bde9328055ee13.js
│ │ │ │ │ ├── 9992.03fca68ad09864e7.js
│ │ │ │ │ ├── common.a7d01b8de5a7fa76.js
│ │ │ │ │ ├── cordova.js
│ │ │ │ │ ├── cordova_plugins.js
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── main.8e4faf21f7692e8d.js
│ │ │ │ │ ├── polyfills-core-js.93f56369317b7a8e.js
│ │ │ │ │ ├── polyfills-dom.516ff539260f3e0d.js
│ │ │ │ │ ├── polyfills.441dd4ca9dc0674f.js
│ │ │ │ │ ├── runtime.da0ab16fef030a85.js
│ │ │ │ │ └── styles.e0a65e1d3857b3bb.css
│ │ │ │ ├── kotlin/
│ │ │ │ │ └── com/
│ │ │ │ │ └── example/
│ │ │ │ │ └── receipt_wrangler_mobile/
│ │ │ │ │ └── MainActivity.kt
│ │ │ │ └── res/
│ │ │ │ ├── drawable/
│ │ │ │ │ └── launch_background.xml
│ │ │ │ ├── drawable-v21/
│ │ │ │ │ └── launch_background.xml
│ │ │ │ ├── values/
│ │ │ │ │ └── styles.xml
│ │ │ │ ├── values-night/
│ │ │ │ │ └── styles.xml
│ │ │ │ ├── values-night-v31/
│ │ │ │ │ └── styles.xml
│ │ │ │ ├── values-v31/
│ │ │ │ │ └── styles.xml
│ │ │ │ └── xml/
│ │ │ │ └── config.xml
│ │ │ └── profile/
│ │ │ └── AndroidManifest.xml
│ │ ├── build.gradle
│ │ ├── capacitor-cordova-android-plugins/
│ │ │ ├── build.gradle
│ │ │ ├── cordova.variables.gradle
│ │ │ └── src/
│ │ │ └── main/
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── java/
│ │ │ │ └── .gitkeep
│ │ │ └── res/
│ │ │ └── .gitkeep
│ │ ├── gradle/
│ │ │ └── wrapper/
│ │ │ └── gradle-wrapper.properties
│ │ ├── gradle.properties
│ │ └── settings.gradle
│ ├── api/
│ │ ├── .gitignore
│ │ ├── .openapi-generator/
│ │ │ ├── FILES
│ │ │ └── VERSION
│ │ ├── .openapi-generator-ignore
│ │ ├── README.md
│ │ ├── analysis_options.yaml
│ │ ├── doc/
│ │ │ ├── About.md
│ │ │ ├── Activity.md
│ │ │ ├── AiType.md
│ │ │ ├── ApiKeyApi.md
│ │ │ ├── ApiKeyFilter.md
│ │ │ ├── ApiKeyResult.md
│ │ │ ├── ApiKeyScope.md
│ │ │ ├── ApiKeyView.md
│ │ │ ├── AppData.md
│ │ │ ├── AssociatedApiKeys.md
│ │ │ ├── AssociatedEntityType.md
│ │ │ ├── AssociatedGroup.md
│ │ │ ├── AuthApi.md
│ │ │ ├── BaseModel.md
│ │ │ ├── BulkStatusUpdateCommand.md
│ │ │ ├── BulkUserDeleteCommand.md
│ │ │ ├── Category.md
│ │ │ ├── CategoryApi.md
│ │ │ ├── CategoryView.md
│ │ │ ├── ChartGrouping.md
│ │ │ ├── CheckEmailConnectivityCommand.md
│ │ │ ├── CheckReceiptProcessingSettingsConnectivityCommand.md
│ │ │ ├── Claims.md
│ │ │ ├── Comment.md
│ │ │ ├── CommentApi.md
│ │ │ ├── CurrencySeparator.md
│ │ │ ├── CurrencySymbolPosition.md
│ │ │ ├── CustomField.md
│ │ │ ├── CustomFieldApi.md
│ │ │ ├── CustomFieldOption.md
│ │ │ ├── CustomFieldType.md
│ │ │ ├── CustomFieldValue.md
│ │ │ ├── Dashboard.md
│ │ │ ├── DashboardApi.md
│ │ │ ├── DeleteAccountCommand.md
│ │ │ ├── EncodedImage.md
│ │ │ ├── ExportApi.md
│ │ │ ├── ExportFormat.md
│ │ │ ├── FeatureConfig.md
│ │ │ ├── FeatureConfigApi.md
│ │ │ ├── FileData.md
│ │ │ ├── FileDataView.md
│ │ │ ├── FilterOperation.md
│ │ │ ├── GetNewRefreshToken200Response.md
│ │ │ ├── GetSystemTaskCommand.md
│ │ │ ├── Group.md
│ │ │ ├── GroupFilter.md
│ │ │ ├── GroupMember.md
│ │ │ ├── GroupReceiptSettings.md
│ │ │ ├── GroupRole.md
│ │ │ ├── GroupSettings.md
│ │ │ ├── GroupSettingsWhiteListEmail.md
│ │ │ ├── GroupStatus.md
│ │ │ ├── GroupsApi.md
│ │ │ ├── Icon.md
│ │ │ ├── ImportApi.md
│ │ │ ├── ImportType.md
│ │ │ ├── InternalErrorResponse.md
│ │ │ ├── Item.md
│ │ │ ├── ItemStatus.md
│ │ │ ├── LoginCommand.md
│ │ │ ├── LogoutCommand.md
│ │ │ ├── MagicFillCommand.md
│ │ │ ├── Notification.md
│ │ │ ├── NotificationsApi.md
│ │ │ ├── OcrEngine.md
│ │ │ ├── PagedActivityRequestCommand.md
│ │ │ ├── PagedApiKeyRequestCommand.md
│ │ │ ├── PagedData.md
│ │ │ ├── PagedDataDataInner.md
│ │ │ ├── PagedGroupRequestCommand.md
│ │ │ ├── PagedRequestCommand.md
│ │ │ ├── PagedRequestField.md
│ │ │ ├── PagedRequestFieldValue.md
│ │ │ ├── PieChartData.md
│ │ │ ├── PieChartDataCommand.md
│ │ │ ├── PieChartDataPoint.md
│ │ │ ├── Prompt.md
│ │ │ ├── PromptApi.md
│ │ │ ├── QueueName.md
│ │ │ ├── Receipt.md
│ │ │ ├── ReceiptApi.md
│ │ │ ├── ReceiptImageApi.md
│ │ │ ├── ReceiptPagedRequestCommand.md
│ │ │ ├── ReceiptPagedRequestFilter.md
│ │ │ ├── ReceiptProcessingSettings.md
│ │ │ ├── ReceiptProcessingSettingsApi.md
│ │ │ ├── ReceiptStatus.md
│ │ │ ├── ResetPasswordCommand.md
│ │ │ ├── SearchApi.md
│ │ │ ├── SearchResult.md
│ │ │ ├── SignUpCommand.md
│ │ │ ├── SortDirection.md
│ │ │ ├── SubjectLineRegex.md
│ │ │ ├── SystemEmail.md
│ │ │ ├── SystemEmailApi.md
│ │ │ ├── SystemSettings.md
│ │ │ ├── SystemSettingsApi.md
│ │ │ ├── SystemTask.md
│ │ │ ├── SystemTaskApi.md
│ │ │ ├── SystemTaskStatus.md
│ │ │ ├── SystemTaskType.md
│ │ │ ├── Tag.md
│ │ │ ├── TagApi.md
│ │ │ ├── TagView.md
│ │ │ ├── TaskQueueConfiguration.md
│ │ │ ├── TokenPair.md
│ │ │ ├── UpdateGroupReceiptSettingsCommand.md
│ │ │ ├── UpdateGroupSettingsCommand.md
│ │ │ ├── UpdateProfileCommand.md
│ │ │ ├── UpsertApiKeyCommand.md
│ │ │ ├── UpsertCategoryCommand.md
│ │ │ ├── UpsertCommentCommand.md
│ │ │ ├── UpsertCustomFieldCommand.md
│ │ │ ├── UpsertCustomFieldOptionCommand.md
│ │ │ ├── UpsertCustomFieldValueCommand.md
│ │ │ ├── UpsertDashboardCommand.md
│ │ │ ├── UpsertGroupCommand.md
│ │ │ ├── UpsertGroupMemberCommand.md
│ │ │ ├── UpsertItemCommand.md
│ │ │ ├── UpsertPromptCommand.md
│ │ │ ├── UpsertReceiptCommand.md
│ │ │ ├── UpsertReceiptProcessingSettingsCommand.md
│ │ │ ├── UpsertSystemEmailCommand.md
│ │ │ ├── UpsertSystemSettingsCommand.md
│ │ │ ├── UpsertTagCommand.md
│ │ │ ├── UpsertTaskQueueConfiguration.md
│ │ │ ├── UpsertWidgetCommand.md
│ │ │ ├── User.md
│ │ │ ├── UserApi.md
│ │ │ ├── UserPreferences.md
│ │ │ ├── UserPreferencesApi.md
│ │ │ ├── UserRole.md
│ │ │ ├── UserShortcut.md
│ │ │ ├── UserView.md
│ │ │ ├── Widget.md
│ │ │ ├── WidgetApi.md
│ │ │ └── WidgetType.md
│ │ ├── lib/
│ │ │ ├── openapi.dart
│ │ │ └── src/
│ │ │ ├── api/
│ │ │ │ ├── api_key_api.dart
│ │ │ │ ├── auth_api.dart
│ │ │ │ ├── category_api.dart
│ │ │ │ ├── comment_api.dart
│ │ │ │ ├── custom_field_api.dart
│ │ │ │ ├── dashboard_api.dart
│ │ │ │ ├── export_api.dart
│ │ │ │ ├── feature_config_api.dart
│ │ │ │ ├── groups_api.dart
│ │ │ │ ├── import_api.dart
│ │ │ │ ├── notifications_api.dart
│ │ │ │ ├── prompt_api.dart
│ │ │ │ ├── receipt_api.dart
│ │ │ │ ├── receipt_image_api.dart
│ │ │ │ ├── receipt_processing_settings_api.dart
│ │ │ │ ├── search_api.dart
│ │ │ │ ├── system_email_api.dart
│ │ │ │ ├── system_settings_api.dart
│ │ │ │ ├── system_task_api.dart
│ │ │ │ ├── tag_api.dart
│ │ │ │ ├── user_api.dart
│ │ │ │ ├── user_preferences_api.dart
│ │ │ │ └── widget_api.dart
│ │ │ ├── api.dart
│ │ │ ├── api_util.dart
│ │ │ ├── auth/
│ │ │ │ ├── api_key_auth.dart
│ │ │ │ ├── auth.dart
│ │ │ │ ├── basic_auth.dart
│ │ │ │ ├── bearer_auth.dart
│ │ │ │ └── oauth.dart
│ │ │ ├── date_serializer.dart
│ │ │ ├── model/
│ │ │ │ ├── about.dart
│ │ │ │ ├── about.g.dart
│ │ │ │ ├── activity.dart
│ │ │ │ ├── activity.g.dart
│ │ │ │ ├── ai_type.dart
│ │ │ │ ├── ai_type.g.dart
│ │ │ │ ├── api_key_filter.dart
│ │ │ │ ├── api_key_filter.g.dart
│ │ │ │ ├── api_key_result.dart
│ │ │ │ ├── api_key_result.g.dart
│ │ │ │ ├── api_key_scope.dart
│ │ │ │ ├── api_key_scope.g.dart
│ │ │ │ ├── api_key_view.dart
│ │ │ │ ├── api_key_view.g.dart
│ │ │ │ ├── app_data.dart
│ │ │ │ ├── app_data.g.dart
│ │ │ │ ├── associated_api_keys.dart
│ │ │ │ ├── associated_api_keys.g.dart
│ │ │ │ ├── associated_entity_type.dart
│ │ │ │ ├── associated_entity_type.g.dart
│ │ │ │ ├── associated_group.dart
│ │ │ │ ├── associated_group.g.dart
│ │ │ │ ├── base_model.dart
│ │ │ │ ├── base_model.g.dart
│ │ │ │ ├── bulk_status_update_command.dart
│ │ │ │ ├── bulk_status_update_command.g.dart
│ │ │ │ ├── bulk_user_delete_command.dart
│ │ │ │ ├── bulk_user_delete_command.g.dart
│ │ │ │ ├── category.dart
│ │ │ │ ├── category.g.dart
│ │ │ │ ├── category_view.dart
│ │ │ │ ├── category_view.g.dart
│ │ │ │ ├── chart_grouping.dart
│ │ │ │ ├── chart_grouping.g.dart
│ │ │ │ ├── check_email_connectivity_command.dart
│ │ │ │ ├── check_email_connectivity_command.g.dart
│ │ │ │ ├── check_receipt_processing_settings_connectivity_command.dart
│ │ │ │ ├── check_receipt_processing_settings_connectivity_command.g.dart
│ │ │ │ ├── claims.dart
│ │ │ │ ├── claims.g.dart
│ │ │ │ ├── comment.dart
│ │ │ │ ├── comment.g.dart
│ │ │ │ ├── currency_separator.dart
│ │ │ │ ├── currency_separator.g.dart
│ │ │ │ ├── currency_symbol_position.dart
│ │ │ │ ├── currency_symbol_position.g.dart
│ │ │ │ ├── custom_field.dart
│ │ │ │ ├── custom_field.g.dart
│ │ │ │ ├── custom_field_option.dart
│ │ │ │ ├── custom_field_option.g.dart
│ │ │ │ ├── custom_field_type.dart
│ │ │ │ ├── custom_field_type.g.dart
│ │ │ │ ├── custom_field_value.dart
│ │ │ │ ├── custom_field_value.g.dart
│ │ │ │ ├── dashboard.dart
│ │ │ │ ├── dashboard.g.dart
│ │ │ │ ├── date.dart
│ │ │ │ ├── delete_account_command.dart
│ │ │ │ ├── delete_account_command.g.dart
│ │ │ │ ├── encoded_image.dart
│ │ │ │ ├── encoded_image.g.dart
│ │ │ │ ├── export_format.dart
│ │ │ │ ├── export_format.g.dart
│ │ │ │ ├── feature_config.dart
│ │ │ │ ├── feature_config.g.dart
│ │ │ │ ├── file_data.dart
│ │ │ │ ├── file_data.g.dart
│ │ │ │ ├── file_data_view.dart
│ │ │ │ ├── file_data_view.g.dart
│ │ │ │ ├── filter_operation.dart
│ │ │ │ ├── filter_operation.g.dart
│ │ │ │ ├── get_new_refresh_token200_response.dart
│ │ │ │ ├── get_new_refresh_token200_response.g.dart
│ │ │ │ ├── get_system_task_command.dart
│ │ │ │ ├── get_system_task_command.g.dart
│ │ │ │ ├── group.dart
│ │ │ │ ├── group.g.dart
│ │ │ │ ├── group_filter.dart
│ │ │ │ ├── group_filter.g.dart
│ │ │ │ ├── group_member.dart
│ │ │ │ ├── group_member.g.dart
│ │ │ │ ├── group_receipt_settings.dart
│ │ │ │ ├── group_receipt_settings.g.dart
│ │ │ │ ├── group_role.dart
│ │ │ │ ├── group_role.g.dart
│ │ │ │ ├── group_settings.dart
│ │ │ │ ├── group_settings.g.dart
│ │ │ │ ├── group_settings_white_list_email.dart
│ │ │ │ ├── group_settings_white_list_email.g.dart
│ │ │ │ ├── group_status.dart
│ │ │ │ ├── group_status.g.dart
│ │ │ │ ├── icon.dart
│ │ │ │ ├── icon.g.dart
│ │ │ │ ├── import_type.dart
│ │ │ │ ├── import_type.g.dart
│ │ │ │ ├── internal_error_response.dart
│ │ │ │ ├── internal_error_response.g.dart
│ │ │ │ ├── item.dart
│ │ │ │ ├── item.g.dart
│ │ │ │ ├── item_status.dart
│ │ │ │ ├── item_status.g.dart
│ │ │ │ ├── login_command.dart
│ │ │ │ ├── login_command.g.dart
│ │ │ │ ├── logout_command.dart
│ │ │ │ ├── logout_command.g.dart
│ │ │ │ ├── magic_fill_command.dart
│ │ │ │ ├── magic_fill_command.g.dart
│ │ │ │ ├── notification.dart
│ │ │ │ ├── notification.g.dart
│ │ │ │ ├── ocr_engine.dart
│ │ │ │ ├── ocr_engine.g.dart
│ │ │ │ ├── paged_activity_request_command.dart
│ │ │ │ ├── paged_activity_request_command.g.dart
│ │ │ │ ├── paged_api_key_request_command.dart
│ │ │ │ ├── paged_api_key_request_command.g.dart
│ │ │ │ ├── paged_data.dart
│ │ │ │ ├── paged_data.g.dart
│ │ │ │ ├── paged_data_data_inner.dart
│ │ │ │ ├── paged_data_data_inner.g.dart
│ │ │ │ ├── paged_group_request_command.dart
│ │ │ │ ├── paged_group_request_command.g.dart
│ │ │ │ ├── paged_request_command.dart
│ │ │ │ ├── paged_request_command.g.dart
│ │ │ │ ├── paged_request_field.dart
│ │ │ │ ├── paged_request_field.g.dart
│ │ │ │ ├── paged_request_field_value.dart
│ │ │ │ ├── paged_request_field_value.g.dart
│ │ │ │ ├── pie_chart_data.dart
│ │ │ │ ├── pie_chart_data.g.dart
│ │ │ │ ├── pie_chart_data_command.dart
│ │ │ │ ├── pie_chart_data_command.g.dart
│ │ │ │ ├── pie_chart_data_point.dart
│ │ │ │ ├── pie_chart_data_point.g.dart
│ │ │ │ ├── prompt.dart
│ │ │ │ ├── prompt.g.dart
│ │ │ │ ├── queue_name.dart
│ │ │ │ ├── queue_name.g.dart
│ │ │ │ ├── receipt.dart
│ │ │ │ ├── receipt.g.dart
│ │ │ │ ├── receipt_paged_request_command.dart
│ │ │ │ ├── receipt_paged_request_command.g.dart
│ │ │ │ ├── receipt_paged_request_filter.dart
│ │ │ │ ├── receipt_paged_request_filter.g.dart
│ │ │ │ ├── receipt_processing_settings.dart
│ │ │ │ ├── receipt_processing_settings.g.dart
│ │ │ │ ├── receipt_status.dart
│ │ │ │ ├── receipt_status.g.dart
│ │ │ │ ├── reset_password_command.dart
│ │ │ │ ├── reset_password_command.g.dart
│ │ │ │ ├── search_result.dart
│ │ │ │ ├── search_result.g.dart
│ │ │ │ ├── sign_up_command.dart
│ │ │ │ ├── sign_up_command.g.dart
│ │ │ │ ├── sort_direction.dart
│ │ │ │ ├── sort_direction.g.dart
│ │ │ │ ├── subject_line_regex.dart
│ │ │ │ ├── subject_line_regex.g.dart
│ │ │ │ ├── system_email.dart
│ │ │ │ ├── system_email.g.dart
│ │ │ │ ├── system_settings.dart
│ │ │ │ ├── system_settings.g.dart
│ │ │ │ ├── system_task.dart
│ │ │ │ ├── system_task.g.dart
│ │ │ │ ├── system_task_status.dart
│ │ │ │ ├── system_task_status.g.dart
│ │ │ │ ├── system_task_type.dart
│ │ │ │ ├── system_task_type.g.dart
│ │ │ │ ├── tag.dart
│ │ │ │ ├── tag.g.dart
│ │ │ │ ├── tag_view.dart
│ │ │ │ ├── tag_view.g.dart
│ │ │ │ ├── task_queue_configuration.dart
│ │ │ │ ├── task_queue_configuration.g.dart
│ │ │ │ ├── token_pair.dart
│ │ │ │ ├── token_pair.g.dart
│ │ │ │ ├── update_group_receipt_settings_command.dart
│ │ │ │ ├── update_group_receipt_settings_command.g.dart
│ │ │ │ ├── update_group_settings_command.dart
│ │ │ │ ├── update_group_settings_command.g.dart
│ │ │ │ ├── update_profile_command.dart
│ │ │ │ ├── update_profile_command.g.dart
│ │ │ │ ├── upsert_api_key_command.dart
│ │ │ │ ├── upsert_api_key_command.g.dart
│ │ │ │ ├── upsert_category_command.dart
│ │ │ │ ├── upsert_category_command.g.dart
│ │ │ │ ├── upsert_comment_command.dart
│ │ │ │ ├── upsert_comment_command.g.dart
│ │ │ │ ├── upsert_custom_field_command.dart
│ │ │ │ ├── upsert_custom_field_command.g.dart
│ │ │ │ ├── upsert_custom_field_option_command.dart
│ │ │ │ ├── upsert_custom_field_option_command.g.dart
│ │ │ │ ├── upsert_custom_field_value_command.dart
│ │ │ │ ├── upsert_custom_field_value_command.g.dart
│ │ │ │ ├── upsert_dashboard_command.dart
│ │ │ │ ├── upsert_dashboard_command.g.dart
│ │ │ │ ├── upsert_group_command.dart
│ │ │ │ ├── upsert_group_command.g.dart
│ │ │ │ ├── upsert_group_member_command.dart
│ │ │ │ ├── upsert_group_member_command.g.dart
│ │ │ │ ├── upsert_item_command.dart
│ │ │ │ ├── upsert_item_command.g.dart
│ │ │ │ ├── upsert_prompt_command.dart
│ │ │ │ ├── upsert_prompt_command.g.dart
│ │ │ │ ├── upsert_receipt_command.dart
│ │ │ │ ├── upsert_receipt_command.g.dart
│ │ │ │ ├── upsert_receipt_processing_settings_command.dart
│ │ │ │ ├── upsert_receipt_processing_settings_command.g.dart
│ │ │ │ ├── upsert_system_email_command.dart
│ │ │ │ ├── upsert_system_email_command.g.dart
│ │ │ │ ├── upsert_system_settings_command.dart
│ │ │ │ ├── upsert_system_settings_command.g.dart
│ │ │ │ ├── upsert_tag_command.dart
│ │ │ │ ├── upsert_tag_command.g.dart
│ │ │ │ ├── upsert_task_queue_configuration.dart
│ │ │ │ ├── upsert_task_queue_configuration.g.dart
│ │ │ │ ├── upsert_widget_command.dart
│ │ │ │ ├── upsert_widget_command.g.dart
│ │ │ │ ├── user.dart
│ │ │ │ ├── user.g.dart
│ │ │ │ ├── user_preferences.dart
│ │ │ │ ├── user_preferences.g.dart
│ │ │ │ ├── user_role.dart
│ │ │ │ ├── user_role.g.dart
│ │ │ │ ├── user_shortcut.dart
│ │ │ │ ├── user_shortcut.g.dart
│ │ │ │ ├── user_view.dart
│ │ │ │ ├── user_view.g.dart
│ │ │ │ ├── widget.dart
│ │ │ │ ├── widget.g.dart
│ │ │ │ ├── widget_type.dart
│ │ │ │ └── widget_type.g.dart
│ │ │ ├── serializers.dart
│ │ │ └── serializers.g.dart
│ │ ├── pubspec.yaml
│ │ └── test/
│ │ ├── about_test.dart
│ │ ├── activity_test.dart
│ │ ├── ai_type_test.dart
│ │ ├── api_key_api_test.dart
│ │ ├── api_key_filter_test.dart
│ │ ├── api_key_result_test.dart
│ │ ├── api_key_scope_test.dart
│ │ ├── api_key_view_test.dart
│ │ ├── app_data_test.dart
│ │ ├── associated_api_keys_test.dart
│ │ ├── associated_entity_type_test.dart
│ │ ├── associated_group_test.dart
│ │ ├── auth_api_test.dart
│ │ ├── base_model_test.dart
│ │ ├── bulk_status_update_command_test.dart
│ │ ├── bulk_user_delete_command_test.dart
│ │ ├── category_api_test.dart
│ │ ├── category_test.dart
│ │ ├── category_view_test.dart
│ │ ├── chart_grouping_test.dart
│ │ ├── check_email_connectivity_command_test.dart
│ │ ├── check_receipt_processing_settings_connectivity_command_test.dart
│ │ ├── claims_test.dart
│ │ ├── comment_api_test.dart
│ │ ├── comment_test.dart
│ │ ├── currency_separator_test.dart
│ │ ├── currency_symbol_position_test.dart
│ │ ├── custom_field_api_test.dart
│ │ ├── custom_field_option_test.dart
│ │ ├── custom_field_test.dart
│ │ ├── custom_field_type_test.dart
│ │ ├── custom_field_value_test.dart
│ │ ├── dashboard_api_test.dart
│ │ ├── dashboard_test.dart
│ │ ├── delete_account_command_test.dart
│ │ ├── encoded_image_test.dart
│ │ ├── export_api_test.dart
│ │ ├── export_format_test.dart
│ │ ├── feature_config_api_test.dart
│ │ ├── feature_config_test.dart
│ │ ├── file_data_test.dart
│ │ ├── file_data_view_test.dart
│ │ ├── filter_operation_test.dart
│ │ ├── get_new_refresh_token200_response_test.dart
│ │ ├── get_system_task_command_test.dart
│ │ ├── group_filter_test.dart
│ │ ├── group_member_test.dart
│ │ ├── group_receipt_settings_test.dart
│ │ ├── group_role_test.dart
│ │ ├── group_settings_test.dart
│ │ ├── group_settings_white_list_email_test.dart
│ │ ├── group_status_test.dart
│ │ ├── group_test.dart
│ │ ├── groups_api_test.dart
│ │ ├── icon_test.dart
│ │ ├── import_api_test.dart
│ │ ├── import_type_test.dart
│ │ ├── internal_error_response_test.dart
│ │ ├── item_status_test.dart
│ │ ├── item_test.dart
│ │ ├── login_command_test.dart
│ │ ├── logout_command_test.dart
│ │ ├── magic_fill_command_test.dart
│ │ ├── notification_test.dart
│ │ ├── notifications_api_test.dart
│ │ ├── ocr_engine_test.dart
│ │ ├── paged_activity_request_command_test.dart
│ │ ├── paged_api_key_request_command_test.dart
│ │ ├── paged_data_data_inner_test.dart
│ │ ├── paged_data_test.dart
│ │ ├── paged_group_request_command_test.dart
│ │ ├── paged_request_command_test.dart
│ │ ├── paged_request_field_test.dart
│ │ ├── paged_request_field_value_test.dart
│ │ ├── pie_chart_data_command_test.dart
│ │ ├── pie_chart_data_point_test.dart
│ │ ├── pie_chart_data_test.dart
│ │ ├── prompt_api_test.dart
│ │ ├── prompt_test.dart
│ │ ├── queue_name_test.dart
│ │ ├── receipt_api_test.dart
│ │ ├── receipt_image_api_test.dart
│ │ ├── receipt_paged_request_command_test.dart
│ │ ├── receipt_paged_request_filter_test.dart
│ │ ├── receipt_processing_settings_api_test.dart
│ │ ├── receipt_processing_settings_test.dart
│ │ ├── receipt_status_test.dart
│ │ ├── receipt_test.dart
│ │ ├── reset_password_command_test.dart
│ │ ├── search_api_test.dart
│ │ ├── search_result_test.dart
│ │ ├── sign_up_command_test.dart
│ │ ├── sort_direction_test.dart
│ │ ├── subject_line_regex_test.dart
│ │ ├── system_email_api_test.dart
│ │ ├── system_email_test.dart
│ │ ├── system_settings_api_test.dart
│ │ ├── system_settings_test.dart
│ │ ├── system_task_api_test.dart
│ │ ├── system_task_status_test.dart
│ │ ├── system_task_test.dart
│ │ ├── system_task_type_test.dart
│ │ ├── tag_api_test.dart
│ │ ├── tag_test.dart
│ │ ├── tag_view_test.dart
│ │ ├── task_queue_configuration_test.dart
│ │ ├── token_pair_test.dart
│ │ ├── update_group_receipt_settings_command_test.dart
│ │ ├── update_group_settings_command_test.dart
│ │ ├── update_profile_command_test.dart
│ │ ├── upsert_api_key_command_test.dart
│ │ ├── upsert_category_command_test.dart
│ │ ├── upsert_comment_command_test.dart
│ │ ├── upsert_custom_field_command_test.dart
│ │ ├── upsert_custom_field_option_command_test.dart
│ │ ├── upsert_custom_field_value_command_test.dart
│ │ ├── upsert_dashboard_command_test.dart
│ │ ├── upsert_group_command_test.dart
│ │ ├── upsert_group_member_command_test.dart
│ │ ├── upsert_item_command_test.dart
│ │ ├── upsert_prompt_command_test.dart
│ │ ├── upsert_receipt_command_test.dart
│ │ ├── upsert_receipt_processing_settings_command_test.dart
│ │ ├── upsert_system_email_command_test.dart
│ │ ├── upsert_system_settings_command_test.dart
│ │ ├── upsert_tag_command_test.dart
│ │ ├── upsert_task_queue_configuration_test.dart
│ │ ├── upsert_widget_command_test.dart
│ │ ├── user_api_test.dart
│ │ ├── user_preferences_api_test.dart
│ │ ├── user_preferences_test.dart
│ │ ├── user_role_test.dart
│ │ ├── user_shortcut_test.dart
│ │ ├── user_test.dart
│ │ ├── user_view_test.dart
│ │ ├── widget_api_test.dart
│ │ ├── widget_test.dart
│ │ └── widget_type_test.dart
│ ├── devtools_options.yaml
│ ├── doc/
│ │ ├── AiType.md
│ │ ├── AppData.md
│ │ ├── AssociatedEntityType.md
│ │ ├── AssociatedGroup.md
│ │ ├── AuthApi.md
│ │ ├── BaseModel.md
│ │ ├── BulkStatusUpdateCommand.md
│ │ ├── Category.md
│ │ ├── CategoryApi.md
│ │ ├── CategoryView.md
│ │ ├── CheckEmailConnectivityCommand.md
│ │ ├── CheckReceiptProcessingSettingsConnectivityCommand.md
│ │ ├── Claims.md
│ │ ├── Comment.md
│ │ ├── CommentApi.md
│ │ ├── Dashboard.md
│ │ ├── DashboardApi.md
│ │ ├── EncodedImage.md
│ │ ├── FeatureConfig.md
│ │ ├── FeatureConfigApi.md
│ │ ├── FileData.md
│ │ ├── FileDataView.md
│ │ ├── FileDataViewAllOf.md
│ │ ├── FilterOperation.md
│ │ ├── GetNewRefreshToken200Response.md
│ │ ├── GetSystemTaskCommand.md
│ │ ├── Group.md
│ │ ├── GroupFilter.md
│ │ ├── GroupMember.md
│ │ ├── GroupRole.md
│ │ ├── GroupSettings.md
│ │ ├── GroupSettingsWhiteListEmail.md
│ │ ├── GroupStatus.md
│ │ ├── GroupsApi.md
│ │ ├── ImportApi.md
│ │ ├── ImportType.md
│ │ ├── Item.md
│ │ ├── ItemStatus.md
│ │ ├── LoginCommand.md
│ │ ├── LogoutCommand.md
│ │ ├── MagicFillCommand.md
│ │ ├── Notification.md
│ │ ├── NotificationsApi.md
│ │ ├── OcrEngine.md
│ │ ├── PagedData.md
│ │ ├── PagedDataDataInner.md
│ │ ├── PagedGroupRequestCommand.md
│ │ ├── PagedGroupRequestCommandAllOf.md
│ │ ├── PagedRequestCommand.md
│ │ ├── PagedRequestField.md
│ │ ├── PagedRequestFieldValue.md
│ │ ├── Prompt.md
│ │ ├── PromptAllOf.md
│ │ ├── PromptApi.md
│ │ ├── Receipt.md
│ │ ├── ReceiptApi.md
│ │ ├── ReceiptImageApi.md
│ │ ├── ReceiptPagedRequestCommand.md
│ │ ├── ReceiptPagedRequestFilter.md
│ │ ├── ReceiptProcessingSettings.md
│ │ ├── ReceiptProcessingSettingsAllOf.md
│ │ ├── ReceiptProcessingSettingsApi.md
│ │ ├── ReceiptStatus.md
│ │ ├── ResetPasswordCommand.md
│ │ ├── SearchApi.md
│ │ ├── SearchResult.md
│ │ ├── SignUpCommand.md
│ │ ├── SortDirection.md
│ │ ├── SubjectLineRegex.md
│ │ ├── SystemEmail.md
│ │ ├── SystemEmailAllOf.md
│ │ ├── SystemEmailApi.md
│ │ ├── SystemSettings.md
│ │ ├── SystemSettingsAllOf.md
│ │ ├── SystemSettingsApi.md
│ │ ├── SystemTask.md
│ │ ├── SystemTaskAllOf.md
│ │ ├── SystemTaskApi.md
│ │ ├── SystemTaskStatus.md
│ │ ├── SystemTaskType.md
│ │ ├── Tag.md
│ │ ├── TagApi.md
│ │ ├── TagView.md
│ │ ├── TokenPair.md
│ │ ├── UpdateGroupSettingsCommand.md
│ │ ├── UpdateProfileCommand.md
│ │ ├── UpsertCategoryCommand.md
│ │ ├── UpsertCommentCommand.md
│ │ ├── UpsertDashboardCommand.md
│ │ ├── UpsertItemCommand.md
│ │ ├── UpsertPromptCommand.md
│ │ ├── UpsertReceiptCommand.md
│ │ ├── UpsertReceiptProcessingSettingsCommand.md
│ │ ├── UpsertSystemEmailCommand.md
│ │ ├── UpsertSystemSettingsCommand.md
│ │ ├── UpsertTagCommand.md
│ │ ├── UpsertWidgetCommand.md
│ │ ├── User.md
│ │ ├── UserApi.md
│ │ ├── UserPreferences.md
│ │ ├── UserPreferencesAllOf.md
│ │ ├── UserPreferencesApi.md
│ │ ├── UserRole.md
│ │ ├── UserView.md
│ │ ├── Widget.md
│ │ └── WidgetType.md
│ ├── flutter_launcher_icons.yaml
│ ├── flutter_native_splash.yaml
│ ├── git_push.sh
│ ├── ios/
│ │ ├── .gitignore
│ │ ├── App/
│ │ │ └── App/
│ │ │ ├── capacitor.config.json
│ │ │ ├── config.xml
│ │ │ └── public/
│ │ │ ├── 1315.889df76956ff23ca.js
│ │ │ ├── 1372.adec2e4e15de229e.js
│ │ │ ├── 1745.3c8be738e4ed3473.js
│ │ │ ├── 185.e77de020be41917f.js
│ │ │ ├── 2841.0bc48a5b325bfb25.js
│ │ │ ├── 2975.e586449a75f61839.js
│ │ │ ├── 3150.5ae5046a8a6f3f3c.js
│ │ │ ├── 3483.42f8d84de3c6de1b.js
│ │ │ ├── 3544.e4a87e0193f7d36c.js
│ │ │ ├── 3672.b43100ea07272033.js
│ │ │ ├── 3734.77fa8da2119d4aac.js
│ │ │ ├── 3998.719b8513be715b74.js
│ │ │ ├── 3rdpartylicenses.txt
│ │ │ ├── 4087.31a09dafb629fd16.js
│ │ │ ├── 4090.5e1ea55e09eb2f12.js
│ │ │ ├── 433.3bc4840c1f5eb2b3.js
│ │ │ ├── 4458.44be36ff4581eb32.js
│ │ │ ├── 4530.0abd72787f9e91dc.js
│ │ │ ├── 4675.6ccbe3fbb2b06ecb.js
│ │ │ ├── 469.dc0e146587f2129b.js
│ │ │ ├── 4764.090d271cb454d91f.js
│ │ │ ├── 4882.843a9b809ef86c9d.js
│ │ │ ├── 505.c83e6d8d552a8bb9.js
│ │ │ ├── 5248.b4df00225e7d8231.js
│ │ │ ├── 5260.38639ab137eebcbc.js
│ │ │ ├── 5454.f4d8a62537982558.js
│ │ │ ├── 5675.821e04955152c08f.js
│ │ │ ├── 5860.0ac8af25bc16129a.js
│ │ │ ├── 5962.58545b793039a734.js
│ │ │ ├── 6304.4bec75a89dd581c3.js
│ │ │ ├── 6416.d2723744cffdb9ec.js
│ │ │ ├── 6642.58d302101b401ed9.js
│ │ │ ├── 6673.9819b24f769fce0c.js
│ │ │ ├── 6754.5772d3dd67e63dbc.js
│ │ │ ├── 7059.d953cea4f12e1b2d.js
│ │ │ ├── 7219.fe028ba572aafee0.js
│ │ │ ├── 7250.dd7a58df6c68d73e.js
│ │ │ ├── 7465.5b9aa191ea4695f4.js
│ │ │ ├── 7624.7cda70322a5d4667.js
│ │ │ ├── 7635.624d22499a5c00ab.js
│ │ │ ├── 7666.1fffcc2354ea9e7e.js
│ │ │ ├── 8382.210b66356588e32b.js
│ │ │ ├── 8484.edcc115af7c0b396.js
│ │ │ ├── 8577.2b2bc8d2ce36c186.js
│ │ │ ├── 8594.6e8e4b8ff83f929b.js
│ │ │ ├── 8633.85e2f6cee2a1b8c5.js
│ │ │ ├── 8811.bf59c840512ceced.js
│ │ │ ├── 8866.f0403804618ee8bd.js
│ │ │ ├── 9352.717af8fb47bada66.js
│ │ │ ├── 9588.22fd9fd752c53fa9.js
│ │ │ ├── 962.3fb0dac75d94cc95.js
│ │ │ ├── 9793.424c80d25d4c1bb9.js
│ │ │ ├── 9820.cc510d6e61612b37.js
│ │ │ ├── 9857.cd96d3ee191f805d.js
│ │ │ ├── 9882.c8bde9328055ee13.js
│ │ │ ├── 9992.03fca68ad09864e7.js
│ │ │ ├── common.a7d01b8de5a7fa76.js
│ │ │ ├── cordova.js
│ │ │ ├── cordova_plugins.js
│ │ │ ├── index.html
│ │ │ ├── main.8e4faf21f7692e8d.js
│ │ │ ├── polyfills-core-js.93f56369317b7a8e.js
│ │ │ ├── polyfills-dom.516ff539260f3e0d.js
│ │ │ ├── polyfills.441dd4ca9dc0674f.js
│ │ │ ├── runtime.da0ab16fef030a85.js
│ │ │ └── styles.e0a65e1d3857b3bb.css
│ │ ├── Flutter/
│ │ │ ├── AppFrameworkInfo.plist
│ │ │ ├── Debug.xcconfig
│ │ │ └── Release.xcconfig
│ │ ├── Podfile
│ │ ├── Runner/
│ │ │ ├── AppDelegate.swift
│ │ │ ├── Assets.xcassets/
│ │ │ │ ├── AppIcon.appiconset/
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── LaunchBackground.imageset/
│ │ │ │ │ └── Contents.json
│ │ │ │ └── LaunchImage.imageset/
│ │ │ │ ├── Contents.json
│ │ │ │ └── README.md
│ │ │ ├── Base.lproj/
│ │ │ │ ├── LaunchScreen.storyboard
│ │ │ │ └── Main.storyboard
│ │ │ ├── Info.plist
│ │ │ └── Runner-Bridging-Header.h
│ │ ├── Runner.xcodeproj/
│ │ │ ├── project.pbxproj
│ │ │ ├── project.xcworkspace/
│ │ │ │ ├── contents.xcworkspacedata
│ │ │ │ └── xcshareddata/
│ │ │ │ ├── IDEWorkspaceChecks.plist
│ │ │ │ └── WorkspaceSettings.xcsettings
│ │ │ └── xcshareddata/
│ │ │ └── xcschemes/
│ │ │ └── Runner.xcscheme
│ │ ├── Runner.xcworkspace/
│ │ │ ├── contents.xcworkspacedata
│ │ │ └── xcshareddata/
│ │ │ ├── IDEWorkspaceChecks.plist
│ │ │ └── WorkspaceSettings.xcsettings
│ │ ├── RunnerTests/
│ │ │ └── RunnerTests.swift
│ │ └── capacitor-cordova-ios-plugins/
│ │ ├── CordovaPlugins.podspec
│ │ ├── CordovaPluginsResources.podspec
│ │ ├── CordovaPluginsStatic.podspec
│ │ ├── resources/
│ │ │ └── .gitkeep
│ │ └── sources/
│ │ └── .gitkeep
│ ├── lib/
│ │ ├── auth/
│ │ │ ├── login/
│ │ │ │ ├── screens/
│ │ │ │ │ └── auth_screen.dart
│ │ │ │ └── widgets/
│ │ │ │ └── auth_form.dart
│ │ │ └── set-homeserver-url/
│ │ │ └── screens/
│ │ │ └── set_homeserver_url.dart
│ │ ├── client/
│ │ │ └── client.dart
│ │ ├── constants/
│ │ │ ├── colors.dart
│ │ │ ├── currency.dart
│ │ │ ├── font.dart
│ │ │ ├── receipts.dart
│ │ │ ├── routes.dart
│ │ │ ├── search.dart
│ │ │ └── spacing.dart
│ │ ├── enums/
│ │ │ ├── form_state.dart
│ │ │ └── upload_method.dart
│ │ ├── extensions/
│ │ │ └── duration.dart
│ │ ├── groups/
│ │ │ ├── nav/
│ │ │ │ ├── group/
│ │ │ │ │ ├── group_app_bar.dart
│ │ │ │ │ └── group_bottom_nav.dart
│ │ │ │ └── group_select/
│ │ │ │ ├── group_select_app_bar.dart
│ │ │ │ └── group_select_bottom_nav.dart
│ │ │ ├── screens/
│ │ │ │ ├── group_dashboards.dart
│ │ │ │ ├── group_receipts_screen.dart
│ │ │ │ └── group_select.dart
│ │ │ └── widgets/
│ │ │ ├── constants/
│ │ │ │ └── text_styles.dart
│ │ │ ├── dashboard_widgets/
│ │ │ │ ├── filtered_receipts.dart
│ │ │ │ ├── group_activities.dart
│ │ │ │ ├── group_summary.dart
│ │ │ │ └── pie_chart.dart
│ │ │ ├── group_activity_list_item.dart
│ │ │ ├── group_dashboard.dart
│ │ │ ├── group_dashboard_wrapper.dart
│ │ │ ├── group_list.dart
│ │ │ ├── group_list_card.dart
│ │ │ ├── group_receipts_list.dart
│ │ │ ├── image_scan.dart
│ │ │ └── receipt_list_item.dart
│ │ ├── guards/
│ │ │ └── auth-guard.dart
│ │ ├── home/
│ │ │ └── screens/
│ │ │ └── home.dart
│ │ ├── interceptors/
│ │ │ └── auth_interceptor.dart
│ │ ├── interfaces/
│ │ │ ├── form_item.dart
│ │ │ └── upload_multipart_file_data.dart
│ │ ├── main.dart
│ │ ├── models/
│ │ │ ├── auth_model.dart
│ │ │ ├── category_model.dart
│ │ │ ├── context_model.dart
│ │ │ ├── custom_field_model.dart
│ │ │ ├── group_model.dart
│ │ │ ├── loading_model.dart
│ │ │ ├── receipt-list-model.dart
│ │ │ ├── receipt_model.dart
│ │ │ ├── search_model.dart
│ │ │ ├── system_settings_model.dart
│ │ │ ├── tag_model.dart
│ │ │ ├── user_model.dart
│ │ │ └── user_preferences_model.dart
│ │ ├── persistence/
│ │ │ └── global_shared_preferences.dart
│ │ ├── profile/
│ │ │ ├── screens/
│ │ │ │ └── user_profile_screen.dart
│ │ │ └── widgets/
│ │ │ └── delete_account_dialog.dart
│ │ ├── receipts/
│ │ │ ├── nav/
│ │ │ │ ├── receipt_app_bar.dart
│ │ │ │ ├── receipt_app_bar_action_builder.dart
│ │ │ │ ├── receipt_bottom_nav.dart
│ │ │ │ └── receipt_bottom_sheet_builder.dart
│ │ │ ├── screens/
│ │ │ │ ├── receipt_comment_screen.dart
│ │ │ │ ├── receipt_form_screen.dart
│ │ │ │ └── receipt_image_screen.dart
│ │ │ └── widgets/
│ │ │ ├── quick_actions.dart
│ │ │ ├── quick_actions_submit_button.dart
│ │ │ ├── quick_scan.dart
│ │ │ ├── quick_scan_form.dart
│ │ │ ├── receipt_comment_app_bar.dart
│ │ │ ├── receipt_comments.dart
│ │ │ ├── receipt_form.dart
│ │ │ ├── receipt_image_app_bar.dart
│ │ │ ├── receipt_image_carousel.dart
│ │ │ ├── receipt_images.dart
│ │ │ ├── receipt_item_items.dart
│ │ │ └── receipt_item_list.dart
│ │ ├── search/
│ │ │ ├── nav/
│ │ │ │ └── search_app_bar.dart
│ │ │ ├── screens/
│ │ │ │ └── search_screen.dart
│ │ │ └── widgets/
│ │ │ └── searchbar.dart
│ │ ├── service/
│ │ │ └── file_upload.dart
│ │ ├── services/
│ │ │ └── token_refresh_service.dart
│ │ ├── shared/
│ │ │ ├── classes/
│ │ │ │ ├── base_ui_shell_builder.dart
│ │ │ │ ├── quick_scan_image.dart
│ │ │ │ └── receipt_navigation_extras.dart
│ │ │ ├── functions/
│ │ │ │ ├── activities.dart
│ │ │ │ ├── forms.dart
│ │ │ │ ├── multi_select_bottom_sheet.dart
│ │ │ │ ├── permissions.dart
│ │ │ │ ├── quick_scan.dart
│ │ │ │ ├── show_add_menu.dart
│ │ │ │ └── status_field.dart
│ │ │ └── widgets/
│ │ │ ├── amount_field.dart
│ │ │ ├── audit_detail_section.dart
│ │ │ ├── bottom_nav.dart
│ │ │ ├── bottom_sheet_container.dart
│ │ │ ├── bottom_submit_button.dart
│ │ │ ├── category_select_field.dart
│ │ │ ├── circular_loading_progress.dart
│ │ │ ├── custom_field_widget.dart
│ │ │ ├── date_block.dart
│ │ │ ├── delete_button.dart
│ │ │ ├── filter_multiselect.dart
│ │ │ ├── full_screen_image_viewer.dart
│ │ │ ├── image_viewer.dart
│ │ │ ├── list_item_color_block.dart
│ │ │ ├── list_item_lead.dart
│ │ │ ├── list_item_trailing_status.dart
│ │ │ ├── multi-select-field.dart
│ │ │ ├── paged_data_list.dart
│ │ │ ├── pie_chart_widget.dart
│ │ │ ├── receipt_edit_popup_menu.dart
│ │ │ ├── screen_wrapper.dart
│ │ │ ├── slidable_delete_button.dart
│ │ │ ├── slidable_edit_button.dart
│ │ │ ├── slidable_widget.dart
│ │ │ ├── tag_select_field.dart
│ │ │ ├── top_app_bar.dart
│ │ │ ├── total_display_widget.dart
│ │ │ └── user_avatar.dart
│ │ └── utils/
│ │ ├── auth.dart
│ │ ├── bottom_sheet.dart
│ │ ├── currency.dart
│ │ ├── date.dart
│ │ ├── forms.dart
│ │ ├── group.dart
│ │ ├── has_feature.dart
│ │ ├── permissions.dart
│ │ ├── receipts.dart
│ │ ├── scan.dart
│ │ ├── snackbar.dart
│ │ └── users.dart
│ ├── linux/
│ │ ├── .gitignore
│ │ ├── CMakeLists.txt
│ │ ├── flutter/
│ │ │ ├── CMakeLists.txt
│ │ │ ├── generated_plugin_registrant.cc
│ │ │ ├── generated_plugin_registrant.h
│ │ │ └── generated_plugins.cmake
│ │ ├── main.cc
│ │ ├── my_application.cc
│ │ └── my_application.h
│ ├── macos/
│ │ ├── .gitignore
│ │ ├── Flutter/
│ │ │ ├── Flutter-Debug.xcconfig
│ │ │ ├── Flutter-Release.xcconfig
│ │ │ └── GeneratedPluginRegistrant.swift
│ │ ├── Podfile
│ │ ├── Runner/
│ │ │ ├── AppDelegate.swift
│ │ │ ├── Assets.xcassets/
│ │ │ │ └── AppIcon.appiconset/
│ │ │ │ └── Contents.json
│ │ │ ├── Base.lproj/
│ │ │ │ └── MainMenu.xib
│ │ │ ├── Configs/
│ │ │ │ ├── AppInfo.xcconfig
│ │ │ │ ├── Debug.xcconfig
│ │ │ │ ├── Release.xcconfig
│ │ │ │ └── Warnings.xcconfig
│ │ │ ├── DebugProfile.entitlements
│ │ │ ├── Info.plist
│ │ │ ├── MainFlutterWindow.swift
│ │ │ └── Release.entitlements
│ │ ├── Runner.xcodeproj/
│ │ │ ├── project.pbxproj
│ │ │ ├── project.xcworkspace/
│ │ │ │ └── xcshareddata/
│ │ │ │ └── IDEWorkspaceChecks.plist
│ │ │ └── xcshareddata/
│ │ │ └── xcschemes/
│ │ │ └── Runner.xcscheme
│ │ ├── Runner.xcworkspace/
│ │ │ ├── contents.xcworkspacedata
│ │ │ └── xcshareddata/
│ │ │ └── IDEWorkspaceChecks.plist
│ │ └── RunnerTests/
│ │ └── RunnerTests.swift
│ ├── pubspec.yaml
│ ├── test/
│ │ ├── helpers/
│ │ │ ├── auth_test_helpers.dart
│ │ │ └── widget_test_helpers.dart
│ │ ├── interceptors/
│ │ │ └── auth_interceptor_test.dart
│ │ ├── services/
│ │ │ └── token_refresh_service_test.dart
│ │ ├── utils/
│ │ │ └── currency_test.dart
│ │ └── widgets/
│ │ └── amount_field_test.dart
│ ├── web/
│ │ ├── index.html
│ │ └── manifest.json
│ ├── windows/
│ │ ├── .gitignore
│ │ ├── CMakeLists.txt
│ │ ├── flutter/
│ │ │ ├── CMakeLists.txt
│ │ │ ├── generated_plugin_registrant.cc
│ │ │ ├── generated_plugin_registrant.h
│ │ │ └── generated_plugins.cmake
│ │ └── runner/
│ │ ├── CMakeLists.txt
│ │ ├── Runner.rc
│ │ ├── flutter_window.cpp
│ │ ├── flutter_window.h
│ │ ├── main.cpp
│ │ ├── resource.h
│ │ ├── runner.exe.manifest
│ │ ├── utils.cpp
│ │ ├── utils.h
│ │ ├── win32_window.cpp
│ │ └── win32_window.h
│ └── www/
│ ├── 1315.889df76956ff23ca.js
│ ├── 1372.adec2e4e15de229e.js
│ ├── 1745.3c8be738e4ed3473.js
│ ├── 185.e77de020be41917f.js
│ ├── 2841.0bc48a5b325bfb25.js
│ ├── 2975.e586449a75f61839.js
│ ├── 3150.5ae5046a8a6f3f3c.js
│ ├── 3483.42f8d84de3c6de1b.js
│ ├── 3544.e4a87e0193f7d36c.js
│ ├── 3672.b43100ea07272033.js
│ ├── 3734.77fa8da2119d4aac.js
│ ├── 3998.719b8513be715b74.js
│ ├── 3rdpartylicenses.txt
│ ├── 4087.31a09dafb629fd16.js
│ ├── 4090.5e1ea55e09eb2f12.js
│ ├── 433.3bc4840c1f5eb2b3.js
│ ├── 4458.44be36ff4581eb32.js
│ ├── 4530.0abd72787f9e91dc.js
│ ├── 4675.6ccbe3fbb2b06ecb.js
│ ├── 469.dc0e146587f2129b.js
│ ├── 4764.090d271cb454d91f.js
│ ├── 4882.843a9b809ef86c9d.js
│ ├── 505.c83e6d8d552a8bb9.js
│ ├── 5248.b4df00225e7d8231.js
│ ├── 5260.38639ab137eebcbc.js
│ ├── 5454.f4d8a62537982558.js
│ ├── 5675.821e04955152c08f.js
│ ├── 5860.0ac8af25bc16129a.js
│ ├── 5962.58545b793039a734.js
│ ├── 6304.4bec75a89dd581c3.js
│ ├── 6416.d2723744cffdb9ec.js
│ ├── 6642.58d302101b401ed9.js
│ ├── 6673.9819b24f769fce0c.js
│ ├── 6754.5772d3dd67e63dbc.js
│ ├── 7059.d953cea4f12e1b2d.js
│ ├── 7219.fe028ba572aafee0.js
│ ├── 7250.dd7a58df6c68d73e.js
│ ├── 7465.5b9aa191ea4695f4.js
│ ├── 7624.7cda70322a5d4667.js
│ ├── 7635.624d22499a5c00ab.js
│ ├── 7666.1fffcc2354ea9e7e.js
│ ├── 8382.210b66356588e32b.js
│ ├── 8484.edcc115af7c0b396.js
│ ├── 8577.2b2bc8d2ce36c186.js
│ ├── 8594.6e8e4b8ff83f929b.js
│ ├── 8633.85e2f6cee2a1b8c5.js
│ ├── 8811.bf59c840512ceced.js
│ ├── 8866.f0403804618ee8bd.js
│ ├── 9352.717af8fb47bada66.js
│ ├── 9588.22fd9fd752c53fa9.js
│ ├── 962.3fb0dac75d94cc95.js
│ ├── 9793.424c80d25d4c1bb9.js
│ ├── 9820.cc510d6e61612b37.js
│ ├── 9857.cd96d3ee191f805d.js
│ ├── 9882.c8bde9328055ee13.js
│ ├── 9992.03fca68ad09864e7.js
│ ├── common.a7d01b8de5a7fa76.js
│ ├── index.html
│ ├── main.8e4faf21f7692e8d.js
│ ├── polyfills-core-js.93f56369317b7a8e.js
│ ├── polyfills-dom.516ff539260f3e0d.js
│ ├── polyfills.441dd4ca9dc0674f.js
│ ├── runtime.da0ab16fef030a85.js
│ └── styles.e0a65e1d3857b3bb.css
└── tag-version.sh
================================================
FILE CONTENTS
================================================
================================================
FILE: .github/workflows/ci.yml
================================================
---
name: CI - Build and Test
on:
push:
branches: [main]
paths:
- 'api/**'
- 'desktop/**'
- 'docker/**'
- '.github/workflows/**'
concurrency:
group: docker-build-${{ github.ref }}
cancel-in-progress: true
jobs:
detect-changes:
runs-on: ubuntu-latest
outputs:
api: ${{ steps.filter.outputs.api }}
desktop: ${{ steps.filter.outputs.desktop }}
docker: ${{ steps.filter.outputs.docker }}
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: filter
with:
filters: |
api:
- 'api/**'
desktop:
- 'desktop/**'
docker:
- 'api/**'
- 'desktop/**'
- 'docker/**'
test-api:
needs: detect-changes
if: needs.detect-changes.outputs.api == 'true'
runs-on: ubuntu-latest
container: golang:1.24-trixie
steps:
- uses: actions/checkout@v4
- name: Mark workspace as safe directory
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Install app dependencies
run: sh set-up-dependencies.sh
working-directory: ./api
- name: Build
run: go build -v ./...
working-directory: ./api
- name: Test
run: go test -coverprofile=coverage.out -covermode=atomic -v ./...
working-directory: ./api
- name: Upload Coverage Report to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./api/coverage.out
flags: api
fail_ci_if_error: true
verbose: true
- name: Test imap client
run: |
. wranglervenv/bin/activate
python3 -m unittest discover -s ./imap-client
working-directory: ./api
test-desktop:
needs: detect-changes
if: needs.detect-changes.outputs.desktop == 'true'
runs-on: ubuntu-latest
env:
GH_PACKAGE_READ_TOKEN_DESKTOP: ${{ secrets.GH_PACKAGE_READ_TOKEN_DESKTOP }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.18.0"
- name: Install dependencies
run: npm ci --verbose
working-directory: ./desktop
- name: Run tests
run: npm run test:ci
working-directory: ./desktop
- name: Generate coverage report
uses: irongut/CodeCoverageSummary@v1.3.0
with:
filename: desktop/coverage/receipt-wrangler-desktop/cobertura-coverage.xml
format: markdown
output: both
badge: true
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./desktop/coverage/receipt-wrangler-desktop/cobertura-coverage.xml
flags: desktop
fail_ci_if_error: true
build-docker-arm64:
needs: [detect-changes, test-api, test-desktop]
if: |
always() &&
needs.detect-changes.outputs.docker == 'true' &&
!contains(needs.*.result, 'failure') &&
!contains(needs.*.result, 'cancelled')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get build date
id: date
run: echo "date=$(date +'%Y-%m-%d %H:%M:%S')" >> $GITHUB_OUTPUT
- name: Login to Docker Hub
uses: docker/login-action@v2.1.0
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.8.0
- name: Build and push ARM64
uses: docker/build-push-action@v6.13.0
with:
context: .
platforms: linux/arm64
file: ./docker/Dockerfile
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/receipt-wrangler:latest-arm64
build-args: |
VERSION=latest
BUILD_DATE=${{ steps.date.outputs.date }}
build-docker-amd64:
needs: [detect-changes, test-api, test-desktop]
if: |
always() &&
needs.detect-changes.outputs.docker == 'true' &&
!contains(needs.*.result, 'failure') &&
!contains(needs.*.result, 'cancelled')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get build date
id: date
run: echo "date=$(date +'%Y-%m-%d %H:%M:%S')" >> $GITHUB_OUTPUT
- name: Login to Docker Hub
uses: docker/login-action@v2.1.0
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.8.0
- name: Build and push AMD64
uses: docker/build-push-action@v6.13.0
with:
context: .
platforms: linux/amd64
file: ./docker/Dockerfile
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/receipt-wrangler:latest-amd64
build-args: |
VERSION=latest
BUILD_DATE=${{ steps.date.outputs.date }}
create-docker-manifest:
needs: [build-docker-arm64, build-docker-amd64]
if: |
always() &&
needs.build-docker-arm64.result == 'success' &&
needs.build-docker-amd64.result == 'success'
runs-on: ubuntu-latest
steps:
- name: Login to Docker Hub
uses: docker/login-action@v2.1.0
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Create Multi-Arch Manifest
uses: int128/docker-manifest-create-action@v2
with:
tags: ${{ secrets.DOCKER_USERNAME }}/receipt-wrangler:latest
sources: |
${{ secrets.DOCKER_USERNAME }}/receipt-wrangler:latest-amd64
${{ secrets.DOCKER_USERNAME }}/receipt-wrangler:latest-arm64
- name: Cleanup Architecture-Specific Tags
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}
run: |
TOKEN=$(curl -s -X POST -H "Content-Type: application/json" \
-d "{\"username\": \"${DOCKER_USERNAME}\", \"password\": \"${DOCKER_TOKEN}\"}" \
https://hub.docker.com/v2/users/login/ | jq -r .token)
curl -X DELETE \
-H "Authorization: Bearer ${TOKEN}" \
"https://hub.docker.com/v2/repositories/${DOCKER_USERNAME}/receipt-wrangler/tags/latest-amd64/"
curl -X DELETE \
-H "Authorization: Bearer ${TOKEN}" \
"https://hub.docker.com/v2/repositories/${DOCKER_USERNAME}/receipt-wrangler/tags/latest-arm64/"
================================================
FILE: .github/workflows/e2e.yml
================================================
---
name: E2E - Playwright
on:
push:
branches: [main]
paths:
- 'api/**'
- 'desktop/**'
- 'docker/**'
- '.github/workflows/**'
concurrency:
group: e2e-${{ github.ref }}
cancel-in-progress: true
jobs:
e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.18.0"
- name: Install dependencies
run: npm ci --verbose
working-directory: ./desktop
- name: Install Playwright browsers
run: npm run e2e:install
working-directory: ./desktop
- name: Warm up demo backend
run: |
curl -fsSL --max-time 60 "$E2E_BASE_URL" > /dev/null || true
curl -fsSL --max-time 60 "$E2E_BASE_URL/api/featureConfig" > /dev/null || true
env:
E2E_BASE_URL: ${{ secrets.E2E_BASE_URL }}
- name: Run Playwright tests
run: npm run e2e:ci
working-directory: ./desktop
env:
E2E_BASE_URL: ${{ secrets.E2E_BASE_URL }}
E2E_USER_USERNAME: ${{ secrets.E2E_USER_USERNAME }}
E2E_USER_PASSWORD: ${{ secrets.E2E_USER_PASSWORD }}
E2E_ADMIN_USERNAME: ${{ secrets.E2E_ADMIN_USERNAME }}
E2E_ADMIN_PASSWORD: ${{ secrets.E2E_ADMIN_PASSWORD }}
- name: Upload Playwright report
if: failure()
uses: actions/upload-artifact@v4
with:
name: playwright-report
path: desktop/playwright-report/
retention-days: 14
================================================
FILE: .github/workflows/release.yml
================================================
---
name: Release - Build and Test
on:
release:
types: [published]
jobs:
test-api:
runs-on: ubuntu-latest
container: golang:1.24-trixie
steps:
- uses: actions/checkout@v4
- name: Install app dependencies
run: sh set-up-dependencies.sh
working-directory: ./api
- name: Build
run: go build -v ./...
working-directory: ./api
- name: Test
run: go test -coverprofile=coverage.out -covermode=atomic -v ./...
working-directory: ./api
- name: Upload Coverage Report to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./api/coverage.out
flags: api
fail_ci_if_error: true
verbose: true
- name: Test imap client
run: python3 -m unittest discover -s ./imap-client
working-directory: ./api
test-desktop:
runs-on: ubuntu-latest
env:
GH_PACKAGE_READ_TOKEN_DESKTOP: ${{ secrets.GH_PACKAGE_READ_TOKEN_DESKTOP }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.18.0"
- name: Install dependencies
run: npm ci --verbose
working-directory: ./desktop
- name: Run tests
run: npm run test:ci
working-directory: ./desktop
- name: Generate coverage report
uses: irongut/CodeCoverageSummary@v1.3.0
with:
filename: desktop/coverage/receipt-wrangler-desktop/cobertura-coverage.xml
format: markdown
output: both
badge: true
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./desktop/coverage/receipt-wrangler-desktop/cobertura-coverage.xml
flags: desktop
fail_ci_if_error: true
build-docker-arm64:
needs: [test-api, test-desktop]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get build date
id: date
run: echo "date=$(date +'%Y-%m-%d %H:%M:%S')" >> $GITHUB_OUTPUT
- name: Login to Docker Hub
uses: docker/login-action@v2.1.0
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.8.0
- name: Build and push ARM64
uses: docker/build-push-action@v6.13.0
with:
context: .
platforms: linux/arm64
file: ./docker/Dockerfile
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/receipt-wrangler:${{ github.ref_name }}-arm64
build-args: |
VERSION=${{ github.ref_name }}
BUILD_DATE=${{ steps.date.outputs.date }}
build-docker-amd64:
needs: [test-api, test-desktop]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get build date
id: date
run: echo "date=$(date +'%Y-%m-%d %H:%M:%S')" >> $GITHUB_OUTPUT
- name: Login to Docker Hub
uses: docker/login-action@v2.1.0
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.8.0
- name: Build and push AMD64
uses: docker/build-push-action@v6.13.0
with:
context: .
platforms: linux/amd64
file: ./docker/Dockerfile
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/receipt-wrangler:${{ github.ref_name }}-amd64
build-args: |
VERSION=${{ github.ref_name }}
BUILD_DATE=${{ steps.date.outputs.date }}
create-docker-manifest:
needs: [build-docker-arm64, build-docker-amd64]
if: |
always() &&
needs.build-docker-arm64.result == 'success' &&
needs.build-docker-amd64.result == 'success'
runs-on: ubuntu-latest
steps:
- name: Login to Docker Hub
uses: docker/login-action@v2.1.0
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Create Multi-Arch Manifest
uses: int128/docker-manifest-create-action@v2
with:
tags: ${{ secrets.DOCKER_USERNAME }}/receipt-wrangler:${{ github.ref_name }}
sources: |
${{ secrets.DOCKER_USERNAME }}/receipt-wrangler:${{ github.ref_name }}-amd64
${{ secrets.DOCKER_USERNAME }}/receipt-wrangler:${{ github.ref_name }}-arm64
- name: Cleanup Architecture-Specific Tags
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}
VERSION: ${{ github.ref_name }}
run: |
TOKEN=$(curl -s -X POST -H "Content-Type: application/json" \
-d "{\"username\": \"${DOCKER_USERNAME}\", \"password\": \"${DOCKER_TOKEN}\"}" \
https://hub.docker.com/v2/users/login/ | jq -r .token)
curl -X DELETE \
-H "Authorization: Bearer ${TOKEN}" \
"https://hub.docker.com/v2/repositories/${DOCKER_USERNAME}/receipt-wrangler/tags/${VERSION}-amd64/"
curl -X DELETE \
-H "Authorization: Bearer ${TOKEN}" \
"https://hub.docker.com/v2/repositories/${DOCKER_USERNAME}/receipt-wrangler/tags/${VERSION}-arm64/"
================================================
FILE: .gitignore
================================================
.claude
================================================
FILE: .idea/app.iml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
================================================
FILE: .idea/forwardedPorts.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="PortForwardingSettings">
<ports>
<entry key="4200">
<ForwardedPortInfo>
<option name="hostPort" value="4200" />
<option name="readOnly" value="false" />
</ForwardedPortInfo>
</entry>
</ports>
</component>
</project>
================================================
FILE: .idea/git_toolbox_prj.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="GitToolBoxProjectSettings">
<option name="commitMessageIssueKeyValidationOverride">
<BoolValueOverride>
<option name="enabled" value="true" />
</BoolValueOverride>
</option>
<option name="commitMessageValidationEnabledOverride">
<BoolValueOverride>
<option name="enabled" value="true" />
</BoolValueOverride>
</option>
</component>
</project>
================================================
FILE: .idea/modules.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/app.iml" filepath="$PROJECT_DIR$/.idea/app.iml" />
</modules>
</component>
</project>
================================================
FILE: .idea/receipt-wrangler-api.iml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<module version="4">
<component name="Go" enabled="true" />
</module>
================================================
FILE: .idea/vcs.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>
================================================
FILE: .idea/workspace.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="AutoImportSettings">
<option name="autoReloadType" value="ALL" />
</component>
<component name="ChangeListManager">
<list default="true" id="1121391f-bfef-4c97-a438-a8b41793f28b" name="Changes" comment="fix bug and test">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
<option name="LAST_RESOLUTION" value="IGNORE" />
</component>
<component name="GOROOT" url="file://$USER_HOME$/sdk/go1.25.4" />
<component name="Git.Settings">
<option name="RECENT_BRANCH_BY_REPOSITORY">
<map>
<entry key="$PROJECT_DIR$" value="main" />
</map>
</option>
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
</component>
<component name="GitHubPullRequestSearchHistory">{
"lastFilter": {
"state": "OPEN",
"assignee": "Noah231515"
}
}</component>
<component name="GitToolBoxStore">
<option name="recentBranches">
<RecentBranches>
<option name="branchesForRepo">
<list>
<RecentBranchesForRepo>
<option name="branches">
<list>
<RecentBranch>
<option name="branchName" value="tech/monolith" />
<option name="lastUsedInstant" value="1767465490" />
</RecentBranch>
<RecentBranch>
<option name="branchName" value="main" />
<option name="lastUsedInstant" value="1767465489" />
</RecentBranch>
</list>
</option>
<option name="repositoryRootUrl" value="file://$PROJECT_DIR$" />
</RecentBranchesForRepo>
<RecentBranchesForRepo>
<option name="branches">
<list>
<RecentBranch>
<option name="branchName" value="tech/monolith" />
<option name="lastUsedInstant" value="1767465620" />
</RecentBranch>
<RecentBranch>
<option name="branchName" value="main" />
<option name="lastUsedInstant" value="1767465619" />
</RecentBranch>
</list>
</option>
<option name="repositoryRootUrl" value="file://$PROJECT_DIR$/docker" />
</RecentBranchesForRepo>
<RecentBranchesForRepo>
<option name="branches">
<list>
<RecentBranch>
<option name="branchName" value="tech/monolith" />
<option name="lastUsedInstant" value="1767465756" />
</RecentBranch>
<RecentBranch>
<option name="branchName" value="main" />
<option name="lastUsedInstant" value="1767465755" />
</RecentBranch>
</list>
</option>
<option name="repositoryRootUrl" value="file://$PROJECT_DIR$/receipt-wrangler-doc" />
</RecentBranchesForRepo>
<RecentBranchesForRepo>
<option name="branches">
<list>
<RecentBranch>
<option name="branchName" value="tech/monolith" />
<option name="lastUsedInstant" value="1767465810" />
</RecentBranch>
<RecentBranch>
<option name="branchName" value="main" />
<option name="lastUsedInstant" value="1767465809" />
</RecentBranch>
</list>
</option>
<option name="repositoryRootUrl" value="file://$PROJECT_DIR$/mobile" />
</RecentBranchesForRepo>
</list>
</option>
</RecentBranches>
</option>
</component>
<component name="GithubPullRequestsUISettings">{
"selectedUrlAndAccountId": {
"url": "https://github.com/Receipt-Wrangler/receipt-wrangler.git",
"accountId": "35ad7f8e-5cbf-4432-b73e-3b4a1ed37793"
}
}</component>
<component name="ProjectColorInfo">{
"associatedIndex": 1
}</component>
<component name="ProjectId" id="37l6nrbyQBHMsrZvsAGsPsr2Aim" />
<component name="ProjectViewState">
<option name="autoscrollFromSource" value="true" />
<option name="hideEmptyMiddlePackages" value="true" />
<option name="showLibraryContents" value="true" />
</component>
<component name="PropertiesComponent">{
"keyToString": {
"ModuleVcsDetector.initialDetectionPerformed": "true",
"RunOnceActivity.GoLinterPluginOnboarding": "true",
"RunOnceActivity.GoLinterPluginStorageMigration": "true",
"RunOnceActivity.ShowReadmeOnStart": "true",
"RunOnceActivity.TerminalTabsStorage.copyFrom.TerminalArrangementManager.252": "true",
"RunOnceActivity.git.unshallow": "true",
"RunOnceActivity.go.formatter.settings.were.checked": "true",
"RunOnceActivity.go.migrated.go.modules.settings": "true",
"RunOnceActivity.go.modules.go.list.on.any.changes.was.set": "true",
"RunOnceActivity.typescript.service.memoryLimit.init": "true",
"git-widget-placeholder": "tech/monolith",
"go.import.settings.migrated": "true",
"go.sdk.automatically.set": "true",
"kotlin-language-version-configured": "true",
"last_opened_file_path": "/home/navi",
"node.js.detected.package.eslint": "true",
"node.js.selected.package.eslint": "(autodetect)",
"nodejs_package_manager_path": "npm",
"settings.editor.selected.configurable": "project.propVCSSupport.DirectoryMappings",
"vue.rearranger.settings.migration": "true"
}
}</component>
<component name="RdControllerToolWindowsLayoutState" isNewUi="true">
<layout>
<window_info id="Bookmarks" side_tool="true" />
<window_info id="Merge Requests" />
<window_info id="Backup and Sync History" />
<window_info id="Pull Requests" />
<window_info id="Learn" show_stripe_button="false" />
<window_info content_ui="combo" id="Project" order="0" weight="0.33023047" />
<window_info active="true" id="Commit" order="1" visible="true" weight="0.33023047" />
<window_info id="Structure" order="2" side_tool="true" weight="0.25" />
<window_info anchor="bottom" id="Database Changes" />
<window_info anchor="bottom" id="TypeScript" />
<window_info anchor="bottom" id="Profiler" />
<window_info anchor="bottom" id="TODO" />
<window_info anchor="bottom" id="File Transfer" />
<window_info anchor="bottom" id="Version Control" order="0" />
<window_info anchor="bottom" id="Problems" order="1" />
<window_info anchor="bottom" id="Problems View" order="2" />
<window_info active="true" anchor="bottom" id="Terminal" order="3" visible="true" weight="0.32987553" />
<window_info anchor="bottom" id="Services" order="4" />
<window_info anchor="right" id="Code Provenance" side_tool="true" />
<window_info anchor="right" id="Endpoints" />
<window_info anchor="right" id="Coverage" side_tool="true" />
<window_info anchor="right" content_ui="combo" id="Notifications" order="0" weight="0.25" />
<window_info anchor="right" id="AIAssistant" order="1" weight="0.25" />
<window_info anchor="right" id="Database" order="2" weight="0.33023047" />
<window_info anchor="right" id="Gradle" order="3" weight="0.25" />
<window_info anchor="right" id="Maven" order="4" weight="0.25" />
<window_info anchor="right" id="Key Promoter X" order="5" />
</layout>
</component>
<component name="RecentsManager">
<key name="MoveFile.RECENT_KEYS">
<recent name="$PROJECT_DIR$/api" />
</key>
</component>
<component name="SharedIndexes">
<attachedChunks>
<set>
<option value="bundled-jdk-30f59d01ecdd-2fc7cc6b9a17-intellij.indexing.shared.core-IU-253.31033.145" />
<option value="bundled-js-predefined-d6986cc7102b-9b0f141eb926-JavaScript-IU-253.31033.145" />
</set>
</attachedChunks>
</component>
<component name="TaskManager">
<task active="true" id="Default" summary="Default task">
<changelist id="1121391f-bfef-4c97-a438-a8b41793f28b" name="Changes" comment="" />
<created>1767465480809</created>
<option name="number" value="Default" />
<option name="presentableId" value="Default" />
<updated>1767465480809</updated>
<workItem from="1772657071791" duration="1478000" />
<workItem from="1774057509200" duration="5824000" />
</task>
<task id="LOCAL-00001" summary="add">
<option name="closed" value="true" />
<created>1767465681421</created>
<option name="number" value="00001" />
<option name="presentableId" value="LOCAL-00001" />
<option name="project" value="LOCAL" />
<updated>1767465681421</updated>
</task>
<task id="LOCAL-00002" summary="add">
<option name="closed" value="true" />
<created>1767465682777</created>
<option name="number" value="00002" />
<option name="presentableId" value="LOCAL-00002" />
<option name="project" value="LOCAL" />
<updated>1767465682777</updated>
</task>
<task id="LOCAL-00003" summary="update workflows">
<option name="closed" value="true" />
<created>1767469034041</created>
<option name="number" value="00003" />
<option name="presentableId" value="LOCAL-00003" />
<option name="project" value="LOCAL" />
<updated>1767469034041</updated>
</task>
<task id="LOCAL-00004" summary="update dev container">
<option name="closed" value="true" />
<created>1767469896108</created>
<option name="number" value="00004" />
<option name="presentableId" value="LOCAL-00004" />
<option name="project" value="LOCAL" />
<updated>1767469896108</updated>
</task>
<task id="LOCAL-00005" summary="fix paths">
<option name="closed" value="true" />
<created>1767471049665</created>
<option name="number" value="00005" />
<option name="presentableId" value="LOCAL-00005" />
<option name="project" value="LOCAL" />
<updated>1767471049665</updated>
</task>
<task id="LOCAL-00006" summary="idea stuff">
<option name="closed" value="true" />
<created>1767542199436</created>
<option name="number" value="00006" />
<option name="presentableId" value="LOCAL-00006" />
<option name="project" value="LOCAL" />
<updated>1767542199436</updated>
</task>
<task id="LOCAL-00007" summary="ignore">
<option name="closed" value="true" />
<created>1767542308515</created>
<option name="number" value="00007" />
<option name="presentableId" value="LOCAL-00007" />
<option name="project" value="LOCAL" />
<updated>1767542308515</updated>
</task>
<task id="LOCAL-00008" summary="clean up">
<option name="closed" value="true" />
<created>1774019764704</created>
<option name="number" value="00008" />
<option name="presentableId" value="LOCAL-00008" />
<option name="project" value="LOCAL" />
<updated>1774019764704</updated>
</task>
<task id="LOCAL-00009" summary="more fixes">
<option name="closed" value="true" />
<created>1774021359139</created>
<option name="number" value="00009" />
<option name="presentableId" value="LOCAL-00009" />
<option name="project" value="LOCAL" />
<updated>1774021359139</updated>
</task>
<task id="LOCAL-00010" summary="more fixes">
<option name="closed" value="true" />
<created>1774035429797</created>
<option name="number" value="00010" />
<option name="presentableId" value="LOCAL-00010" />
<option name="project" value="LOCAL" />
<updated>1774035429797</updated>
</task>
<task id="LOCAL-00011" summary="fix pipeline?">
<option name="closed" value="true" />
<created>1774058024785</created>
<option name="number" value="00011" />
<option name="presentableId" value="LOCAL-00011" />
<option name="project" value="LOCAL" />
<updated>1774058024785</updated>
</task>
<task id="LOCAL-00012" summary="fix pipeline?">
<option name="closed" value="true" />
<created>1774058505997</created>
<option name="number" value="00012" />
<option name="presentableId" value="LOCAL-00012" />
<option name="project" value="LOCAL" />
<updated>1774058505997</updated>
</task>
<task id="LOCAL-00013" summary="validate tests">
<option name="closed" value="true" />
<created>1774060074243</created>
<option name="number" value="00013" />
<option name="presentableId" value="LOCAL-00013" />
<option name="project" value="LOCAL" />
<updated>1774060074243</updated>
</task>
<task id="LOCAL-00014" summary="fix bug and test">
<option name="closed" value="true" />
<created>1774064707844</created>
<option name="number" value="00014" />
<option name="presentableId" value="LOCAL-00014" />
<option name="project" value="LOCAL" />
<updated>1774064707844</updated>
</task>
<option name="localTasksCounter" value="15" />
<servers />
</component>
<component name="TypeScriptGeneratedFilesManager">
<option name="version" value="3" />
</component>
<component name="VcsManagerConfiguration">
<ignored-roots>
<path value="$PROJECT_DIR$/docker" />
<path value="$PROJECT_DIR$/mobile" />
</ignored-roots>
<MESSAGE value="add" />
<MESSAGE value="update workflows" />
<MESSAGE value="update dev container" />
<MESSAGE value="fix paths" />
<MESSAGE value="idea stuff" />
<MESSAGE value="ignore" />
<MESSAGE value="clean up" />
<MESSAGE value="more fixes" />
<MESSAGE value="fix pipeline?" />
<MESSAGE value="validate tests" />
<MESSAGE value="fix bug and test" />
<option name="LAST_COMMIT_MESSAGE" value="fix bug and test" />
</component>
<component name="VgoProject">
<settings-migrated>true</settings-migrated>
</component>
<component name="XSLT-Support.FileAssociations.UIState">
<expand />
<select />
</component>
</project>
================================================
FILE: CLAUDE.md
================================================
# CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
## Project Overview
Receipt Wrangler is a full-stack receipt management and splitting application with OCR-powered scanning, AI-assisted data extraction, and multi-user group management. This is a **monorepo** containing three main components:
- **api/** - Go backend service (port 8081)
- **desktop/** - Angular 19 web interface (port 4200 dev, port 80 production)
- **mobile/** - Flutter cross-platform mobile app
- **docker/** - Monolith Docker build configuration
Each component has its own CLAUDE.md with detailed component-specific guidance. This file covers monorepo-level architecture and workflows.
## Monorepo Architecture
### Component Communication
- **API Contract**: OpenAPI 3.1 specification in `api/swagger.yml` defines the API contract
- **Client Generation**: API clients are auto-generated from swagger.yml using `api/generate-client.sh`
- Desktop: TypeScript Angular client → `desktop/src/open-api/`
- Mobile: Dart Dio client → `mobile/api/`
- MCP: TypeScript client for MCP integration
- **Development Flow**: Changes to API → update swagger.yml → regenerate clients → update frontend
### Technology Stack
- **Backend**: Go 1.24 with Chi router, GORM ORM, Asynq background jobs
- **Frontend**: Angular 19 with NGXS state management, Material + Bootstrap UI
- **Mobile**: Flutter with Provider state management, go_router navigation
- **Infrastructure**: Docker, nginx, PostgreSQL/MySQL/SQLite
## Docker Deployment
### Production Build (Monolith)
The `docker/Dockerfile` builds a single container with both API and web interface:
- Stage 1: Build Angular desktop app
- Stage 2: Build Go API and install dependencies (Tesseract, ImageMagick, Python)
- Final: nginx serves frontend, proxies `/api` to Go backend on port 80
### Development Build
The `docker/dev/Dockerfile` includes:
- All production components plus development tools
- SSH access for debugging (port 22, password: "development")
- Documentation site build from receipt-wrangler-doc repo
- Java runtime for OpenAPI generator
### Build Commands
```bash
# Production monolith
docker build -f docker/Dockerfile -t receipt-wrangler .
# Development container
docker build -f docker/dev/Dockerfile -t receipt-wrangler-dev .
```
## API Client Regeneration
When the API swagger.yml changes, regenerate clients:
```bash
# From api/ directory
./generate-client.sh desktop ../desktop/src/open-api
./generate-client.sh mobile ../mobile/api
./generate-client.sh mcp <output-path>
```
**IMPORTANT**: Never manually edit generated client code in `desktop/src/open-api/` or `mobile/api/`. Changes will be overwritten.
## Component Development
### Backend Development (api/)
```bash
cd api
go run main.go # Run API server
go test -v ./... # Run tests
./set-up-dependencies.sh # Install system deps (first time)
```
See `api/CLAUDE.md` for detailed backend architecture and testing requirements.
### Frontend Development (desktop/)
```bash
cd desktop
npm start # Dev server with API proxy (localhost:4200)
npm test # Run tests with coverage
npm run build # Production build
```
See `desktop/CLAUDE.md` for Angular architecture, NGXS state management, and component structure.
### Mobile Development (mobile/)
```bash
cd mobile
flutter run # Run on device/emulator
flutter test # Run tests
flutter build apk # Build Android APK
flutter build ios # Build iOS app
```
See `mobile/CLAUDE.md` for Flutter architecture, Provider state management, and navigation.
## Critical Cross-Component Considerations
### API Changes Workflow
1. Modify backend code in `api/internal/`
2. Update `api/swagger.yml` to reflect API changes
3. Regenerate clients: `cd api && ./generate-client.sh desktop ../desktop/src/open-api`
4. Update frontend code to use new client methods
5. Test integration between components
### Authentication Flow
- JWT-based authentication with refresh tokens
- Backend issues tokens in `api/internal/handlers/auth.go`
- Desktop stores tokens via NGXS persistent storage
- Mobile uses `flutter_secure_storage` for secure token storage
- All API endpoints except `/api/auth/login` and `/api/auth/signup` require authentication
### State Management Patterns
- **Backend**: Service layer handles business logic, repositories handle data access
- **Desktop**: NGXS store with actions/selectors, persistent storage for auth/preferences
- **Mobile**: Provider pattern with ChangeNotifier models, models own their state
### Background Processing
- Backend uses Asynq for async jobs (OCR processing, email polling, cleanup)
- Long-running operations (OCR, AI extraction) run as background jobs
- Frontend polls for completion or uses WebSocket-like patterns where implemented
## Version Management
Each component has version tagging scripts:
- `api/tag-version.sh` - Tag API version
- `desktop/tag-version.sh` - Tag desktop version
- `mobile/tag-version.sh` - Tag mobile version
Version is embedded in Docker builds via `VERSION` and `BUILD_DATE` build args.
## Data Persistence
### Development
- API defaults to SQLite in `api/sqlite/`
- Desktop proxy config in `desktop/proxy.conf.json` routes to localhost:8081
- Mobile configures API base URL in app settings
### Production (Docker)
- Volumes for persistent data:
- `/app/receipt-wrangler-api/data` - Receipt images and uploads
- `/app/receipt-wrangler-api/sqlite` - SQLite database
- `/app/receipt-wrangler-api/logs` - Application logs
- nginx serves frontend from `/usr/share/nginx/html`
- API runs on same container, proxied via nginx
## Common Pitfalls
1. **Forgot to regenerate clients**: After API changes, clients are out of sync → regenerate!
2. **Editing generated code**: Changes to `desktop/src/open-api/` or `mobile/api/` will be lost
3. **Missing system dependencies**: API requires Tesseract, ImageMagick → run `api/set-up-dependencies.sh`
4. **Test database cleanup**: Failed Go tests leave `app.db` in test dirs → remove before rerunning
5. **Port conflicts**: API (8081), desktop dev (4200), docker prod (80) must be available
6. **CORS in development**: Desktop proxy handles CORS, but mobile needs proper API base URL
## Project Structure Summary
```
receipt-wrangler-api/ # Monorepo root
├── api/ # Go backend
│ ├── internal/ # Core application code
│ │ ├── handlers/ # HTTP handlers
│ │ ├── services/ # Business logic
│ │ ├── repositories/ # Database access
│ │ ├── models/ # Data models
│ │ └── wranglerasynq/ # Background jobs
│ ├── swagger.yml # API specification (source of truth)
│ └── CLAUDE.md # Backend-specific guidance
├── desktop/ # Angular web app
│ ├── src/
│ │ ├── app/ # Application modules
│ │ ├── store/ # NGXS state management
│ │ ├── shared-ui/ # Reusable components
│ │ └── open-api/ # Generated API client (DO NOT EDIT)
│ └── CLAUDE.md # Frontend-specific guidance
├── mobile/ # Flutter mobile app
│ ├── lib/
│ │ ├── models/ # Provider state models
│ │ ├── groups/ # Group features
│ │ ├── receipts/ # Receipt features
│ │ └── shared/ # Shared widgets
│ ├── api/ # Generated API client (DO NOT EDIT)
│ └── CLAUDE.md # Mobile-specific guidance
└── docker/ # Docker build configs
├── Dockerfile # Production monolith
└── dev/Dockerfile # Development container
```
## Code Changes Philosophy
- Prefer minimal, targeted changes. Do not refactor or restructure code beyond what was explicitly requested.
- A primary focus of yours is overall code quality. Your focus should be on producing code that is stable, flexible when
needed, readable and maintainable. You should not be writing code that is difficult to read, confusing, insecure or
too long.
- Follow **DRY (Don't Repeat Yourself) pragmatically**. If two or more places share nearly identical logic that would
need to be updated together, extract it into a shared utility, function, or component. This is not a dogmatic rule —
three similar lines in a single file or minor template repetition is fine. Apply DRY when it meaningfully reduces
maintenance burden, not for every tiny duplication.
- When the first approach fails, stop and ask the user for direction rather than trying multiple speculative approaches
in sequence.
- After you have completed the planning phase, and you have your plan, please iterate over your plan at a maximum of 3
times. During these iterations, your goals are to verify that your code makes sense, and solves the requested things,
that your code is sound, secure and consistent with style across the codebase, and that your code is clean, and not a
hacked together solution.
## Parallel Agent Execution
When a task spans multiple components (e.g., backend `api/` and frontend `desktop/` or `mobile/`), follow these rules:
- **Run backend and frontend agents in parallel** whenever possible. Do not serialize work across components unless
there is a hard dependency.
- **Frontend agents should order their work to defer backend-dependent tasks.** If the frontend needs something from the
backend (generated client, models, API endpoints), schedule that work last so independent frontend work happens first.
- **If the frontend agent is blocked on the backend agent** (e.g., waiting for a generated client, new API models, or
endpoint changes), the frontend agent should:
1. Continue planning its backend-dependent work (design the component, write the template, stub the types).
2. **Wait** for the backend agent to finish before executing backend-dependent code. Do not guess at API shapes or
generate placeholder clients.
3. Resume execution once the backend deliverables are available.
- **The backend agent should signal completion clearly** — after finishing its work, the orchestrating agent should
trigger any required client regeneration (e.g., `./generate-client.sh desktop ../desktop/src/open-api`) before
unblocking the frontend agent.
- **Mobile (`mobile/`) changes** follow the same pattern: if a backend change requires a mobile update, run the mobile
agent in parallel with the desktop agent after the backend agent completes.
### Example Task Ordering
For a feature that adds a new API endpoint and a corresponding UI:
1. **Phase 1 (parallel):**
- Backend agent: handler → service → repository → route → tests → swagger update
- Frontend agent: independent UI work (layout, styling, routing, non-API components)
2. **Phase 2 (sequential, after backend completes):**
- Regenerate client (`cd api && ./generate-client.sh desktop ../desktop/src/open-api`)
- Frontend agent: wire up API calls, integrate generated types, write dependent components
3. **Phase 3 (parallel):**
- Backend agent: any follow-up fixes
- Frontend agent: integration tests, final UI polish
## Testing
- After ANY code change, run the full relevant test suite before considering the task complete.
- When tests fail, fix both the code AND the tests — don't assume tests are correct or code is correct without
verifying.
## Workflow Rules
- Always complete implementation AND verify (build + tests pass) before committing. Do not commit code that hasn't been
validated.
- During your planning sessions, explicitly check if your planned code introduces regressions. We want to make sure that
we do not break existing code, especially things that may not show themselves through build errors like scss changes,
conflicting styles, and so on.
- During your planning sessions, take a moment to think if there are any edge cases, or possible regressions or any
additional things for the user to test before considering the task complete.
- After implementing any full feature, always commit/push.
## CLAUDE.md Maintenance
- After modifying files in any component, check whether the corresponding `CLAUDE.md` needs updating.
- Each component has its own documentation: `api/CLAUDE.md`, `desktop/CLAUDE.md`, `mobile/CLAUDE.md`.
- If a change alters behavior, configuration, architecture, commands, or conventions documented in a `CLAUDE.md` file,
update that file to stay accurate before considering the task complete.
================================================
FILE: README.md
================================================
# Welcome to Receipt Wrangler
This repository contains the Receipt Wrangler API, Desktop app and Mobile app.
Previously these were separate repositories, they are now merged into one monolith repository for simplicity.
To get started, check out the directories containing each application.
================================================
FILE: desktop/.dockerignore
================================================
node_modules
.git
.gitignore
.angular
================================================
FILE: desktop/.editorconfig
================================================
# Editor configuration, see https://editorconfig.org
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true
[*.ts]
quote_type = single
[*.md]
max_line_length = off
trim_trailing_whitespace = false
================================================
FILE: desktop/.gitignore
================================================
# See http://help.github.com/ignore-files/ for more about ignoring files.
# Compiled output
/dist
/tmp
/out-tsc
/bazel-out
# Node
/node_modules
npm-debug.log
yarn-error.log
# IDEs and editors
.idea/
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace
# Visual Studio Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history/*
# Miscellaneous
/.angular/cache
/.jest-cache
.sass-cache/
/connect.lock
/coverage
/libpeerconnection.log
testem.log
/typings
# Playwright
/test-results
/playwright-report
/playwright/.cache
/e2e/.auth
# System files
.DS_Store
Thumbs.db
.npmrc
.qemu-arm-static
================================================
FILE: desktop/.vscode/extensions.json
================================================
{
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846
"recommendations": ["angular.ng-template"]
}
================================================
FILE: desktop/.vscode/launch.json
================================================
{
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "ng serve",
"type": "pwa-chrome",
"request": "launch",
"preLaunchTask": "npm: start",
"url": "http://localhost:4200/"
},
{
"name": "ng test",
"type": "chrome",
"request": "launch",
"preLaunchTask": "npm: test",
"url": "http://localhost:9876/debug.html"
}
]
}
================================================
FILE: desktop/.vscode/tasks.json
================================================
{
// For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "start",
"isBackground": true,
"problemMatcher": {
"owner": "typescript",
"pattern": "$tsc",
"background": {
"activeOnStart": true,
"beginsPattern": {
"regexp": "(.*?)"
},
"endsPattern": {
"regexp": "bundle generation complete"
}
}
}
},
{
"type": "npm",
"script": "test",
"isBackground": true,
"problemMatcher": {
"owner": "typescript",
"pattern": "$tsc",
"background": {
"activeOnStart": true,
"beginsPattern": {
"regexp": "(.*?)"
},
"endsPattern": {
"regexp": "bundle generation complete"
}
}
}
}
]
}
================================================
FILE: desktop/CLAUDE.md
================================================
# CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
## Development Commands
### Core Development
- `npm start` - Start development server with proxy configuration (serves on localhost:4200, proxies /api to localhost:8081)
- `npm run build` - Build production application
- `npm run watch` - Build in watch mode for development
- `npm test` - Run unit tests with coverage
- `npm test:ci` - Run tests in CI mode with ChromeHeadless
- `npm run e2e` - Run Playwright end-to-end tests (see **E2E Testing** below)
- `npm run e2e:ui` - Run Playwright tests in interactive UI mode
- `npm run e2e:install` - Install Playwright browser binaries (one-time setup)
### Build Configuration
- Production builds go to `dist/receipt-wrangler/`
- Development server uses proxy configuration in `proxy.conf.json` to route API calls to backend
- Angular CLI configuration in `angular.json`
## Code Architecture
### Application Structure
Receipt Wrangler Desktop is an Angular 19 application with modular architecture using:
- **State Management**: NGXS store with persistent storage for application state
- **API Layer**: Auto-generated OpenAPI client in `src/open-api/` (do not manually edit these files)
- **Component Architecture**: Feature modules with lazy-loaded routing
- **UI Framework**: Angular Material + Bootstrap 5 + custom shared components
### Key Architectural Patterns
#### Module Organization
- Feature modules (receipts, dashboard, groups, etc.) with their own routing
- Shared UI components in `src/shared-ui/` for reusable elements
- Lazy-loaded modules for performance optimization
- Centralized store management with NGXS states
#### State Management (NGXS)
- All application state managed through NGXS store
- State persistence configured for key data (auth, user preferences, table states)
- Individual state files for each feature (receipt-table.state.ts, group.state.ts, etc.)
- Actions and state updates follow NGXS patterns
#### Component Structure
- Feature components organized by domain (receipts/, dashboard/, groups/)
- Shared UI components provide consistent design patterns
- Form components use reactive forms with custom validation
- Table components use base table service pattern for pagination and filtering
### Key Directories
#### Core Application
- `src/app/` - Main application module and routing
- `src/store/` - NGXS state management (18+ state files)
- `src/services/` - Application services and business logic
- `src/guards/` - Route guards for authentication and authorization
#### Features
- `src/receipts/` - Receipt management (forms, tables, processing)
- `src/dashboard/` - Customizable dashboard widgets and views
- `src/groups/` - Group management and member administration
- `src/categories/` and `src/tags/` - Receipt organization features
- `src/auth/` - Authentication and user management
#### Shared Infrastructure
- `src/shared-ui/` - 30+ reusable UI components (buttons, forms, tables, dialogs)
- `src/pipes/` - Custom Angular pipes for data transformation
- `src/utils/` - Utility functions and helpers
- `src/open-api/` - Generated API client (auto-generated, do not edit)
### Testing Strategy
- Unit tests use Jasmine/Karma framework
- Code coverage reporting with minimum thresholds
- Tests exclude auto-generated API code (`src/open-api/`)
- CI tests run in headless Chrome
### Development Environment
- Angular CLI 21 with TypeScript 5.9
- Bootstrap 5 + Angular Material for UI components
- NGXS for state management with Redux DevTools integration
- Strict TypeScript configuration with comprehensive compiler options
### API Integration
- Backend API proxied through development server
- OpenAPI client generated from backend specification
- API base path configurable through environment
- HTTP interceptors handle authentication and error responses
### Code Conventions
- SCSS for styling with component-scoped styles
- TypeScript strict mode enabled
- Angular style guide followed for component organization
- Lazy loading for feature modules to optimize bundle size
## Signals & Zoneless Change Detection
This application uses Angular's signal-based reactivity model with zoneless change detection (`provideZonelessChangeDetection()`). All new code MUST follow these patterns.
### Signal Primitives — Decision Guide
| Need | Use | NOT |
|------|-----|-----|
| Mutable state | `signal()` | Plain class properties |
| Read-only derived value | `computed()` | `effect()` that copies signals |
| Writable derived state (resets on dependency change, can be overridden) | `linkedSignal()` | `effect()` that sets a signal |
| Sync signal state to imperative/external APIs (DOM, localStorage, canvas, analytics) | `effect()` | — |
| DOM measurement/manipulation after render | `afterRenderEffect()` | `effect()` + `setTimeout` |
| Async data fetching | `resource()` | Manual subscribe + signal set |
| Observable → Signal bridge | `toSignal()` | `subscribe()` + signal set |
| Signal → Observable bridge | `toObservable()` | — |
### signal() — Writable State
- Use for mutable, source-of-truth state in components or services.
- Prefer `signal()` over plain class properties — signals automatically notify Angular's change detection.
- Provide a custom equality function when needed to avoid unnecessary updates.
```typescript
count = signal(0);
items = signal<Item[]>([]);
```
### computed() — Derived State
- Use whenever a value is derived from other signals. Always prefer over `effect()` for derivations.
- Computed signals are lazy (not evaluated until read) and cached (not recalculated until dependencies change).
- Safe to perform expensive operations (e.g., filtering arrays) inside computed.
```typescript
fullName = computed(() => `${this.firstName()} ${this.lastName()}`);
filteredItems = computed(() => this.items().filter(i => i.active));
```
### linkedSignal() — Writable Derived State
- Use when a value normally follows a computation but can be manually overridden.
- Resets to the computed value when dependencies change, but allows `set()`/`update()`.
- Perfect for selections that reset when options change.
```typescript
// Resets to first option when options change, but user can select manually
selectedOption = linkedSignal(() => this.options()[0]);
```
### effect() — Side Effects (Last Resort)
- **NEVER** use `effect()` to derive state or copy signal values between signals. Use `computed()` or `linkedSignal()` instead.
- **ONLY** use for syncing to non-reactive/imperative APIs: logging, localStorage, canvas rendering, third-party UI libraries.
- Effects run during change detection. They do not need `allowSignalWrites` (removed in Angular 19).
- Use `afterRenderEffect()` instead when you need to read DOM properties (offsetWidth, etc.) after rendering.
```typescript
// GOOD: Syncing to localStorage
effect(() => {
localStorage.setItem('theme', this.theme());
});
// BAD: Deriving state — use computed() instead
effect(() => {
this.fullName.set(`${this.firstName()} ${this.lastName()}`); // ❌ NEVER DO THIS
});
```
### Signal Inputs — input() and input.required()
- Use `input()` for optional inputs with defaults. Use `input.required()` for required inputs.
- Signal inputs are read-only (`InputSignal`). Template binding syntax `[prop]="value"` is unchanged.
- Use `computed()` to derive values from inputs. Use `effect()` only for imperative side effects triggered by input changes.
- Use `model()` for two-way binding (component modifies a value based on user interaction, e.g., custom form controls).
```typescript
// Required input — no undefined in type
mode = input.required<FormMode>();
// Optional input with default
disabled = input(false);
// Optional input without default
tooltip = input<string>();
// Two-way binding
value = model<string>('');
// Deriving from inputs — use computed, NOT effect
displayText = computed(() => this.mode() === FormMode.Edit ? 'Save' : 'Create');
```
**Replacing ngOnChanges:** Convert input-watching logic from `ngOnChanges` to `computed()` (for derived values) or `effect()` (for imperative side effects like loading data).
```typescript
// Before (ngOnChanges)
ngOnChanges(changes: SimpleChanges) {
if (changes['groupId']) this.loadData();
}
// After (effect for imperative side effect)
constructor() {
effect(() => {
const id = this.groupId();
if (id) this.loadData(id);
});
}
```
### Signal Outputs — output()
- Use `output()` instead of `@Output() + EventEmitter`. Template syntax `(event)="handler($event)"` is unchanged.
- Use `outputFromObservable()` when the source is an Observable.
```typescript
clicked = output<MouseEvent>();
// Emit: this.clicked.emit(event);
```
### Signal Queries — viewChild() / viewChildren()
- Use `viewChild()` / `viewChildren()` instead of `@ViewChild` / `@ViewChildren`.
- Access via signal call: `this.paginator()` instead of `this.paginator`.
- Use `viewChild.required()` when the element is guaranteed to exist (not behind `@if`).
```typescript
paginator = viewChild.required(MatPaginator);
optionalEl = viewChild<ElementRef>('myEl');
items = viewChildren(ItemComponent);
```
### RxJS Interop
- **`toSignal(observable)`**: Converts Observable to Signal. Creates a subscription — call once and reuse the signal, never call repeatedly. Automatically unsubscribes on destroy.
- Provide `initialValue` for Observables that don't emit synchronously.
- Use `requireSync: true` for BehaviorSubject or other synchronous sources.
- **`toObservable(signal)`**: Converts Signal to Observable. Only emits the latest stabilized value.
- **`takeUntilDestroyed()`**: Replaces `@UntilDestroy()` / `untilDestroyed(this)`. Use in constructor or pass `DestroyRef`.
- **`outputFromObservable()`**: Declares an output from an Observable source.
```typescript
// NGXS selector → signal (preferred pattern)
groups = this.store.selectSignal(GroupState.groups);
// HTTP Observable → signal
data = toSignal(this.http.get<Data>('/api/data'), { initialValue: [] });
// Cleanup subscriptions
constructor() {
this.someObservable$.pipe(
takeUntilDestroyed(),
).subscribe(val => this.doSomething(val));
}
```
### NGXS State Access
- Use `store.selectSignal()` instead of `@Select` decorator for template-bound state. Returns a `Signal<T>`.
- `store.selectSnapshot()` remains valid for synchronous one-time reads in methods.
- Remove `| async` pipe from templates — use signal reads `()` instead.
```typescript
// Before
@Select(AuthState.isLoggedIn) isLoggedIn!: Observable<boolean>;
// Template: *ngIf="isLoggedIn | async"
// After
isLoggedIn = this.store.selectSignal(AuthState.isLoggedIn);
// Template: @if (isLoggedIn()) { ... }
```
### Zoneless Change Detection Rules
Angular no longer uses zone.js. Change detection is triggered ONLY by:
1. **Signal writes** — `signal.set()`, `signal.update()`, `computed()` recalculation
2. **`ChangeDetectorRef.markForCheck()`** — for non-signal reactive patterns (AsyncPipe calls this automatically)
3. **Template event bindings** — `(click)="handler()"` automatically triggers CD
4. **`ComponentRef.setInput()`** — programmatic input setting
**Key implications:**
- Plain property mutations (`this.foo = 'bar'`) in async callbacks (subscribe, setTimeout, Promise.then) will NOT trigger change detection. Always use signals for state that affects templates.
- `ChangeDetectorRef.detectChanges()` still works but is rarely needed — prefer signals.
- `setTimeout` still works for delays but won't auto-trigger CD. The callback must write to a signal if the template needs updating.
- All `@HostListener` handlers automatically trigger CD (same as template events).
### Testing with Zoneless
- Add `provideZonelessChangeDetection()` to `TestBed.configureTestingModule` providers.
- Prefer `await fixture.whenStable()` over `fixture.detectChanges()` for most realistic test behavior.
- Use `TestBed.flushEffects()` when testing effect-based logic.
## E2E Testing
End-to-end tests live in `e2e/` and use **Playwright**. They drive the real Angular UI against a real Go API. Config is `playwright.config.ts`.
### Running locally
1. **One-time:** install browsers — `npm run e2e:install`.
2. **One-time:** sign up the two e2e accounts against your local DB. The **first** signup is auto-promoted to admin, so order matters. With the API running, go to `http://localhost:4200/auth/sign-up` and create:
- Admin first: username `e2e-admin`, password `e2e-admin-password`
- Then user: username `e2e-user`, password `e2e-user-password`
3. **Every run:** source the dev env script so the `E2E_*` vars are exported:
```bash
cd ../api/dev && source switch-to-sqlite.sh && cd -
```
(`switch-to-mariadb.sh` / `switch-to-postgresql.sh` work the same — all three export the same `E2E_*` defaults.)
4. Start the Go API separately (`cd ../api && go run main.go`). Playwright auto-starts the Angular dev server via its `webServer` config, but it cannot launch the API.
5. Run the tests: `npm run e2e` (or `npm run e2e:ui` for watch-style debugging).
### CI
In CI the same spec files run against the demo URL. GitHub secrets populate the `E2E_*` vars — point `E2E_BASE_URL` at `https://demo.receiptwrangler.io` and supply the secret credentials. When `E2E_BASE_URL` is remote, the config skips the `webServer` block and does not start a local dev server.
### Best practices (follow these when adding new e2e tests)
**Locators — use user-facing, auto-retrying selectors.**
- Prefer `page.getByRole('button', { name: 'Login' })`, `page.getByLabel('Password')`, `page.getByPlaceholder(...)`, `page.getByText(...)`.
- Use `page.getByTestId(...)` only when no accessible role/label exists. The codebase has no `data-testid` convention yet — add one on a component only when role/label truly can't identify the element.
- Avoid raw CSS/XPath (`page.locator('.btn-primary')`) — brittle to refactors.
**Assertions — rely on web-first expects, never `waitForTimeout`.**
- Use `await expect(locator).toBeVisible()`, `toHaveText()`, `toHaveURL()`, `toHaveCount()` — they auto-retry until `expect.timeout`.
- Never `await page.waitForTimeout(ms)` — it's a fixed sleep and flakes.
- Prefer `await page.waitForURL(/.../)` or `await page.waitForResponse(...)` for navigation/network waits.
**Isolation — each test gets a fresh `BrowserContext`.**
- No cookies/localStorage/session leak between siblings.
- Do NOT hand-write state-sharing between tests. If two tests need a logged-in session, use Playwright's `storageState` pattern (see below), not module-level globals.
**Auth — reuse login state, don't re-login in every test.**
- Current suite is tiny (login IS the test), so each test logs in via the UI. Fine for now.
- When the suite grows, switch to the **setup project** pattern: a `*.setup.ts` file logs in once and saves `storageState` to `e2e/.auth/<role>.json`; other tests declare `test.use({ storageState: 'e2e/.auth/user.json' })`. Keep `.auth/` git-ignored — it contains session cookies.
- One storageState file per role (admin, user). Never share one login across roles.
**`webServer` — for processes Playwright can launch.**
- The config uses `webServer` to start `npm start` when `E2E_BASE_URL` is localhost, and skips it when the URL is remote. `reuseExistingServer: !process.env.CI` lets local devs keep `ng serve` running between runs.
- Playwright cannot launch the Go API — that's always a separate process.
**Env vars and secrets.**
- Read via `process.env.E2E_*` — never hardcode credentials.
- Local defaults come from `api/dev/switch-to-*.sh`. CI values come from GitHub secrets.
- Never commit `.env` files or `e2e/.auth/` artifacts.
**Parallelism and flake budget.**
- `fullyParallel: true` is on. Tests must not mutate shared server state in ways that collide (same DB row, same uploaded file, same group membership). When you need mutation, create unique data per test (timestamp/UUID in names) and clean up after.
- `retries: 2` in CI, `0` locally — a test that only passes with retries is a bug, not a feature. Fix the root cause.
- `trace: 'on-first-retry'` captures a trace file on the first retry; view with `npx playwright show-trace <file>`. Do not set `trace: 'on'` — too heavy.
**Writing selectors for this app.**
- Forms use a custom `<app-input>` wrapper over `<mat-form-field>`. `page.getByLabel('Username')` resolves through the `<mat-label>` association.
- Submit buttons use `<app-button>` rendering `<button>` with visible text — `page.getByRole('button', { name: '...' })` works directly.
- Error feedback is often a Material snackbar (not inline `<mat-error>`). When asserting errors, locate the snackbar container or its text, not the form.
## Testing Requirements
**All new code must have accompanying unit tests.**
Before considering any work complete:
1. Write unit tests for all new components, services, and pipes
2. Use Angular TestBed for component testing
3. Mock services and HTTP calls appropriately
4. Run the full test suite: `npm test`
5. Ensure all tests pass before submitting changes
Tests should cover:
- Component rendering and user interactions
- Component method inputs and outputs
- Service method behavior
- Form validation logic
- Error handling scenarios
================================================
FILE: desktop/Dockerfile
================================================
# Build app
FROM node:lts-alpine3.17 as node
WORKDIR .
RUN mkdir desktop
WORKDIR desktop
COPY . .
RUN npm i -g @angular/cli@17.3.3
RUN npm i
RUN ng build
# Deploy via nginx
FROM nginx:alpine
COPY --from=node /desktop/dist/receipt-wrangler /usr/share/nginx/html
COPY --from=node /desktop/docker/nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
================================================
FILE: desktop/LICENSE
================================================
GNU AFFERO GENERAL PUBLIC LICENSE
Version 3, 19 November 2007
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU Affero General Public License is a free, copyleft license for
software and other kinds of works, specifically designed to ensure
cooperation with the community in the case of network server software.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
our General Public Licenses are intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
Developers that use our General Public Licenses protect your rights
with two steps: (1) assert copyright on the software, and (2) offer
you this License which gives you legal permission to copy, distribute
and/or modify the software.
A secondary benefit of defending all users' freedom is that
improvements made in alternate versions of the program, if they
receive widespread use, become available for other developers to
incorporate. Many developers of free software are heartened and
encouraged by the resulting cooperation. However, in the case of
software used on network servers, this result may fail to come about.
The GNU General Public License permits making a modified version and
letting the public access it on a server without ever releasing its
source code to the public.
The GNU Affero General Public License is designed specifically to
ensure that, in such cases, the modified source code becomes available
to the community. It requires the operator of a network server to
provide the source code of the modified version running there to the
users of that server. Therefore, public use of a modified version, on
a publicly accessible server, gives the public access to the source
code of the modified version.
An older license, called the Affero General Public License and
published by Affero, was designed to accomplish similar goals. This is
a different license, not a version of the Affero GPL, but Affero has
released a new version of the Affero GPL which permits relicensing under
this license.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU Affero General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Remote Network Interaction; Use with the GNU General Public License.
Notwithstanding any other provision of this License, if you modify the
Program, your modified version must prominently offer all users
interacting with it remotely through a computer network (if your version
supports such interaction) an opportunity to receive the Corresponding
Source of your version by providing access to the Corresponding Source
from a network server at no charge, through some standard or customary
means of facilitating copying of software. This Corresponding Source
shall include the Corresponding Source for any work covered by version 3
of the GNU General Public License that is incorporated pursuant to the
following paragraph.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the work with which it is combined will remain governed by version
3 of the GNU General Public License.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU Affero General Public License from time to time. Such new versions
will be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU Affero General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU Affero General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU Affero General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If your software can interact with users remotely through a computer
network, you should also make sure that it provides a way for users to
get its source. For example, if your program is a web application, its
interface could display a "Source" link that leads users to an archive
of the code. There are many ways you could offer source, and different
solutions will be better for different programs; see section 13 for the
specific requirements.
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU AGPL, see
<https://www.gnu.org/licenses/>.
================================================
FILE: desktop/README.md
================================================
[](https://github.com/Noah231515/receipt-wrangler-desktop/actions/workflows/docker-image.yml)
[](https://codecov.io/gh/Receipt-Wrangler/receipt-wrangler-desktop)
# Receipt Wrangler Desktop
The Receipt Wrangler Desktop provides the web interface for Receipt Wrangler, a free and open-source receipt management and splitting application.
## Overview
The desktop interface offers an intuitive way to interact with Receipt Wrangler's features including:
- Customizable dashboards
- Quick receipt scanning and processing
- Viewing/Editing receipts one after another, in a queue
- Receipt sharing and splitting
- Receipt image viewing/downloading
## Getting Started
Visit our [official documentation](https://receiptwrangler.io) for comprehensive setup and configuration instructions.
## Development
For development guidelines, configuration details, and component documentation, please refer to our [developer documentation](https://receiptwrangler.io/docs/category/development). Contributions welcome!
## License
This project is licensed under the AGPL-3.0 license - see the LICENSE file for details.
================================================
FILE: desktop/angular.json
================================================
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"receipt-wrangler": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
}
},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": {
"base": "dist/receipt-wrangler"
},
"index": "src/index.html",
"polyfills": [],
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
"src/favicon.svg",
"src/assets"
],
"styles": [
"src/styles.scss",
"node_modules/bootstrap-scss/bootstrap.scss",
"node_modules/pretty-print-json/dist/css/pretty-print-json.css"
],
"scripts": [],
"preserveSymlinks": true,
"browser": "src/main.ts"
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "3.0mb",
"maximumError": "5.0mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "250kb",
"maximumError": "300kb"
}
],
"outputHashing": "all"
},
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true,
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.development.ts"
}
]
}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"buildTarget": "receipt-wrangler:build:production"
},
"development": {
"buildTarget": "receipt-wrangler:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"buildTarget": "receipt-wrangler:build"
}
}
}
}
},
"cli": {
"analytics": false,
"cache": {
"enabled": true
}
},
"schematics": {
"@schematics/angular:component": {
"type": "component"
},
"@schematics/angular:directive": {
"type": "directive"
},
"@schematics/angular:service": {
"type": "service"
},
"@schematics/angular:guard": {
"typeSeparator": "."
},
"@schematics/angular:interceptor": {
"typeSeparator": "."
},
"@schematics/angular:module": {
"typeSeparator": "."
},
"@schematics/angular:pipe": {
"typeSeparator": "."
},
"@schematics/angular:resolver": {
"typeSeparator": "."
}
}
}
================================================
FILE: desktop/docker/nginx.conf
================================================
server {
listen 80;
root /usr/share/nginx/html;
index index.html;
server_name _;
location / {
try_files $uri /index.html;
}
}
================================================
FILE: desktop/docker-update.sh
================================================
#!/bin/bash
if [ -z "$1" ]; then
echo "Please provide a tag"
exit 1
fi
docker build . --no-cache -t noah231515/receipt-wrangler-desktop:$1
docker push noah231515/receipt-wrangler-desktop:$1
================================================
FILE: desktop/e2e/auth.setup.ts
================================================
import { test as setup } from '@playwright/test';
import { mkdirSync } from 'node:fs';
import { dirname } from 'node:path';
import { loginViaUi } from './helpers/auth';
// One state file per role. Tests default to the user state via the chromium
// project config; admin-scoped tests override with:
// test.use({ storageState: 'e2e/.auth/admin.json' });
export const USER_AUTH_FILE = 'e2e/.auth/user.json';
setup('authenticate as regular user', async ({ page }) => {
mkdirSync(dirname(USER_AUTH_FILE), { recursive: true });
await loginViaUi(page, 'user');
await page.context().storageState({ path: USER_AUTH_FILE });
});
// To add admin state, uncomment:
// export const ADMIN_AUTH_FILE = 'e2e/.auth/admin.json';
// setup('authenticate as admin', async ({ page }) => {
// mkdirSync(dirname(ADMIN_AUTH_FILE), { recursive: true });
// await loginViaUi(page, 'admin');
// await page.context().storageState({ path: ADMIN_AUTH_FILE });
// });
================================================
FILE: desktop/e2e/auth.spec.ts
================================================
import { expect, test } from '@playwright/test';
import { loginViaUi } from './helpers/auth';
// These tests exercise the login UI itself, so they must start unauthenticated
// even though the chromium project defaults to a logged-in storage state.
test.use({ storageState: { cookies: [], origins: [] } });
test.describe('authentication', () => {
test('admin can log in and reach the dashboard', async ({ page }) => {
await loginViaUi(page, 'admin');
await expect(page).toHaveURL(/\/dashboard\/group\/\d+/);
});
test('regular user can log in and reach the dashboard', async ({ page }) => {
await loginViaUi(page, 'user');
await expect(page).toHaveURL(/\/dashboard\/group\/\d+/);
});
});
================================================
FILE: desktop/e2e/helpers/auth.ts
================================================
import { expect, type Page } from '@playwright/test';
import { Buffer } from 'node:buffer';
export type Role = 'admin' | 'user';
export function creds(role: Role) {
const username = process.env[`E2E_${role.toUpperCase()}_USERNAME`];
const password = process.env[`E2E_${role.toUpperCase()}_PASSWORD`];
if (!username || !password) {
throw new Error(
`Missing E2E_${role.toUpperCase()}_USERNAME / E2E_${role.toUpperCase()}_PASSWORD. ` +
`Source api/dev/switch-to-sqlite.sh or set the vars in your environment.`,
);
}
return { username, password };
}
/**
* The backend's refresh token middleware single-uses refresh tokens, and the
* Angular APP_INITIALIZER fires /api/token on every page load. Left
* unmocked, that rotates the token out from under storageState-based tests:
* test N refreshes and marks the old token used, test N+1 loads the same
* storageState file with the now-invalid refresh token and gets bounced to
* /auth/login. Intercept the refresh call and synthesize a response from
* the existing (still-valid) access token so the app keeps the original
* cookies for the whole test.
*/
export async function stubTokenRefresh(page: Page) {
await page.route('**/api/token/**', async (route) => {
const cookies = await page.context().cookies();
const jwt = cookies.find((c) => c.name === 'jwt');
if (!jwt) {
await route.continue();
return;
}
const payload = JSON.parse(
Buffer.from(jwt.value.split('.')[1], 'base64url').toString(),
);
await route.fulfill({
status: 200,
contentType: 'application/json',
body: JSON.stringify(payload),
});
});
}
export async function loginViaUi(page: Page, role: Role) {
const { username, password } = creds(role);
await page.goto('/auth/login');
await page.getByLabel('Username').fill(username);
await page.getByLabel('Password').fill(password);
await page.getByRole('button', { name: 'Login' }).click();
// Generous timeout: the CI → demo hop is slower than local, and login can
// also be backed off by the API's rate-limiter.
await expect(page).toHaveURL(/\/dashboard\/group\/\d+/, { timeout: 15_000 });
}
================================================
FILE: desktop/e2e/receipts.spec.ts
================================================
import { expect, test, type Page } from '@playwright/test';
import { stubTokenRefresh } from './helpers/auth';
function uniqueName(tag: string) {
return `e2e-${tag}-${Date.now()}`;
}
async function getGroupId(page: Page): Promise<string> {
// storageState loaded by the project means we're already authed; going to
// `/` should redirect to /dashboard/group/<id>.
await page.goto('/');
await page.waitForURL(/\/dashboard\/group\/\d+/);
const match = page.url().match(/\/dashboard\/group\/(\d+)/);
return match![1];
}
async function openAddReceipt(page: Page) {
await page.goto('/receipts/add');
await expect(page.getByLabel('Name')).toBeVisible();
}
async function selectFirstOption(page: Page, label: string) {
await page.getByLabel(label).click();
await page.getByRole('option').first().click();
}
async function fillBasics(page: Page, name: string, amount = '42.00') {
await page.getByLabel('Name').fill(name);
await page.getByLabel('Amount').fill(amount);
await selectFirstOption(page, 'Group');
await selectFirstOption(page, 'Paid By');
}
async function saveReceipt(page: Page) {
// Top-level form Save button (dialog Saves are scoped separately in tests).
// Use force:true — the form can re-render after inline additions (shares),
// briefly detaching the Save button during Playwright's stability check.
const save = page.getByRole('button', { name: 'Save', exact: true }).first();
await save.waitFor({ state: 'visible' });
await save.click({ force: true });
await expect(page).toHaveURL(/\/receipts\/\d+\/view/);
}
async function ensureCustomFieldExists(page: Page) {
await page.goto('/custom-fields');
// Header renders an "add" icon button (no accessible name) next to the H1.
const existingRows = await page.locator('tbody tr').count();
if (existingRows > 0) {
return;
}
// Click the add button in the table header.
await page.locator('app-table-header').getByRole('button').first().click();
const dialog = page.getByRole('dialog');
await expect(dialog).toBeVisible();
await dialog.getByLabel('Name').fill('e2e-field');
await dialog.getByLabel('Description').fill('Created by e2e suite');
// Pick the first type (Text) — required field, no default.
await dialog.getByLabel('Type').click();
await page.getByRole('option').first().click();
await dialog.locator('button:has(mat-icon:has-text("done"))').click();
await expect(dialog).toBeHidden();
await expect(page.locator('tbody tr')).not.toHaveCount(0);
}
async function deleteReceiptByName(page: Page, groupId: string, name: string) {
await page.goto(`/receipts/group/${groupId}`);
// `.first()` defends against orphan rows on the shared demo DB that would
// otherwise trip strict-mode on the row.locator(...) click below.
const row = page.getByRole('row').filter({ hasText: name }).first();
await expect(row).toBeVisible();
// The delete action is the mat-icon "delete" inside the row's action cell.
await row.locator('button:has(mat-icon:has-text("delete"))').click();
const dialog = page.getByRole('dialog');
await expect(dialog).toBeVisible();
// Confirm button renders as an icon-only "done" button with no accessible name.
await dialog.locator('button:has(mat-icon:has-text("done"))').click();
await expect(page.getByRole('row').filter({ hasText: name })).toHaveCount(0);
}
test.describe('receipts', () => {
let groupId: string;
// Tests that persist a receipt set this to the receipt's unique name after
// saveReceipt(), and clear it after the explicit deleteReceiptByName(). If a
// test fails between save and delete, the afterEach below reaps the orphan
// so nothing accumulates on the shared demo.
let currentReceiptName: string | null = null;
test.beforeEach(async ({ page }) => {
await stubTokenRefresh(page);
groupId = await getGroupId(page);
});
test.afterEach(async ({ page }) => {
if (!currentReceiptName) return;
const leftover = currentReceiptName;
currentReceiptName = null;
try {
await deleteReceiptByName(page, groupId, leftover);
} catch {
// Best-effort — the test already failed and we don't want to mask it
// with a cleanup error.
}
});
test('create a basic receipt, see it in the list, and delete it', async ({ page }) => {
const name = uniqueName('basic');
await openAddReceipt(page);
await fillBasics(page, name);
await saveReceipt(page);
currentReceiptName = name;
await page.goto(`/receipts/group/${groupId}`);
await expect(page.getByRole('row').filter({ hasText: name }).first()).toBeVisible();
await deleteReceiptByName(page, groupId, name);
currentReceiptName = null;
});
test('create a receipt with a manual share', async ({ page }) => {
const name = uniqueName('share');
const shareName = `share-item-${Date.now()}`;
await openAddReceipt(page);
await fillBasics(page, name, '30.00');
// Open the "Add share" inline card (first button in Shares section header).
const sharesHeader = page.locator('strong:has-text("Shares")');
await sharesHeader.locator('xpath=../..').getByRole('button').first().click();
// Add-share card renders inside app-share-list; scope selectors there.
const shareList = page.locator('app-share-list');
await shareList.getByLabel('Shared with').click();
await page.getByRole('option').first().click();
await shareList.getByLabel('Name').fill(shareName);
await shareList.getByLabel('Amount').fill('30.00');
// Done is additive only (submitButtonType="button"); save separately.
await shareList.locator('button:has(mat-icon:has-text("done"))').click();
// Wait for the newly-added share to render before saving, otherwise the
// form re-render can detach the outer Save button mid-click.
await expect(page.getByText(/Total amount owed: \$30\.00/).first()).toBeVisible();
await saveReceipt(page);
currentReceiptName = name;
// Detail view should show the share's total amount owed for the user.
await expect(page.getByText(/Total amount owed: \$30\.00/)).toBeVisible();
await page.goto(`/receipts/group/${groupId}`);
await expect(page.getByRole('row').filter({ hasText: name }).first()).toBeVisible();
await deleteReceiptByName(page, groupId, name);
currentReceiptName = null;
});
test('create a receipt with a custom field (dynamic)', async ({ page }) => {
const name = uniqueName('custom');
await ensureCustomFieldExists(page);
await openAddReceipt(page);
await fillBasics(page, name);
// Attach the first available custom field to this receipt via the
// "Manage custom fields" menu (list_alt icon near the form title).
await page.locator('button:has(mat-icon:has-text("list_alt"))').first().click();
// Menu renders a disabled "No items found" div when filteredItems is empty;
// skip that and click the first real (non-pe-none) menuitem.
await page.locator('[role="menuitem"]:not(.pe-none)').first().click();
await page.keyboard.press('Escape');
// There is one custom field but we don't know its type. Probe supported
// control shapes in priority order and fill the first one we find.
const firstField = page.locator('app-custom-field').first();
await expect(firstField).toBeVisible();
const filled = await (async () => {
const boolean = firstField.locator('input[type="checkbox"]');
if (await boolean.count()) {
await boolean.first().check();
return 'boolean';
}
const select = firstField.locator('mat-select');
if (await select.count()) {
await select.first().click();
await page.getByRole('option').first().click();
return 'select';
}
const text = firstField.locator('input[matinput]');
if (await text.count()) {
// Currency / text / date inputs all accept a numeric string.
await text.first().fill('42');
return 'text';
}
return null;
})();
expect(filled, 'at least one custom field type should have matched').not.toBeNull();
await saveReceipt(page);
currentReceiptName = name;
await page.goto(`/receipts/group/${groupId}`);
await expect(page.getByRole('row').filter({ hasText: name }).first()).toBeVisible();
await deleteReceiptByName(page, groupId, name);
currentReceiptName = null;
});
test('create a receipt with a comment', async ({ page }) => {
const name = uniqueName('receipt');
const commentText = `note-${Date.now()}`;
await openAddReceipt(page);
await fillBasics(page, name);
// In add mode the comment is staged locally and persisted on save.
await page.getByLabel('Comment').fill(commentText);
await page.getByRole('button', { name: 'Comment', exact: true }).click();
await saveReceipt(page);
currentReceiptName = name;
// The saved comment should render inside the comments section on view.
const comments = page.locator('app-receipt-comments');
await expect(comments.getByText(commentText)).toBeVisible();
await page.goto(`/receipts/group/${groupId}`);
await expect(page.getByRole('row').filter({ hasText: name }).first()).toBeVisible();
await deleteReceiptByName(page, groupId, name);
currentReceiptName = null;
});
test('create a receipt using Quick Actions (Split Evenly)', async ({ page }) => {
const name = uniqueName('quick');
await openAddReceipt(page);
await fillBasics(page, name, '100.00');
// Second button in the Shares header opens the Quick Actions dialog.
const sharesHeader = page.locator('strong:has-text("Shares")');
await sharesHeader.locator('xpath=../..').getByRole('button').nth(1).click();
const dialog = page.getByRole('dialog');
await expect(dialog).toBeVisible();
// Default action is "Split Evenly". Pick the first available user.
await dialog.getByLabel('Users to Split Between').click();
const firstOption = page.getByRole('option').first();
const optionCount = await page.getByRole('option').count();
test.skip(optionCount === 0, 'Quick Actions requires a group with more than one member');
await firstOption.click();
// Wait for the selected-user chip to settle before submitting — the
// autocomplete re-render was causing the submit button to detach/retry.
await expect(dialog.locator('mat-chip-row, mat-chip').first()).toBeVisible();
await page.keyboard.press('Escape');
// Submit the "Split" action via the dialog footer's submit button.
const submit = dialog.locator('app-dialog-footer app-submit-button button').first();
await submit.click({ force: true });
await expect(dialog).toBeHidden();
await saveReceipt(page);
currentReceiptName = name;
await page.goto(`/receipts/group/${groupId}`);
await expect(page.getByRole('row').filter({ hasText: name }).first()).toBeVisible();
await deleteReceiptByName(page, groupId, name);
currentReceiptName = null;
});
test.describe('validation', () => {
async function clickSave(page: Page) {
await page.getByRole('button', { name: 'Save', exact: true }).first().click();
}
test('empty form submit shows all required-field errors and does not navigate', async ({ page }) => {
await openAddReceipt(page);
await clickSave(page);
await expect(page).toHaveURL(/\/receipts\/add$/);
await expect(page.getByText('Name is required.', { exact: true })).toBeVisible();
await expect(page.getByText('Amount is required.', { exact: true })).toBeVisible();
await expect(page.getByText('Group is required.', { exact: true })).toBeVisible();
await expect(page.getByText('Paid By is required.', { exact: true })).toBeVisible();
});
test('missing Name blocks submit and shows the Name error', async ({ page }) => {
await openAddReceipt(page);
await page.getByLabel('Amount').fill('10.00');
await selectFirstOption(page, 'Group');
await selectFirstOption(page, 'Paid By');
await clickSave(page);
await expect(page).toHaveURL(/\/receipts\/add$/);
await expect(page.getByText('Name is required.', { exact: true })).toBeVisible();
await expect(page.getByText('Amount is required.', { exact: true })).toBeHidden();
});
test('missing Amount blocks submit and shows the Amount error', async ({ page }) => {
await openAddReceipt(page);
await page.getByLabel('Name').fill(uniqueName('val'));
await selectFirstOption(page, 'Group');
await selectFirstOption(page, 'Paid By');
await clickSave(page);
await expect(page).toHaveURL(/\/receipts\/add$/);
await expect(page.getByText('Amount is required.', { exact: true })).toBeVisible();
await expect(page.getByText('Name is required.', { exact: true })).toBeHidden();
});
test('adding a share does not auto-submit the receipt form', async ({ page }) => {
await openAddReceipt(page);
await fillBasics(page, uniqueName('share-no-submit'), '10.00');
const sharesHeader = page.locator('strong:has-text("Shares")');
await sharesHeader.locator('xpath=../..').getByRole('button').first().click();
const shareList = page.locator('app-share-list');
await shareList.getByLabel('Shared with').click();
await page.getByRole('option').first().click();
await shareList.getByLabel('Name').fill('inline-share');
await shareList.getByLabel('Amount').fill('10.00');
await shareList.locator('button:has(mat-icon:has-text("done"))').click();
// Still on the add form — the inline Done must not save the receipt.
await expect(page).toHaveURL(/\/receipts\/add$/);
await expect(page.getByText(/Total amount owed: \$10/)).toBeVisible();
});
test('filling a required field clears its error in place', async ({ page }) => {
await openAddReceipt(page);
await clickSave(page);
await expect(page.getByText('Name is required.', { exact: true })).toBeVisible();
await page.getByLabel('Name').fill('Not Empty');
await expect(page.getByText('Name is required.', { exact: true })).toBeHidden();
// Other errors remain until their fields are filled.
await expect(page.getByText('Amount is required.', { exact: true })).toBeVisible();
});
});
test('create a receipt with items', async ({ page }) => {
const name = uniqueName('items');
const itemName = `apple-${Date.now()}`;
await openAddReceipt(page);
await fillBasics(page, name, '50.00');
// form-section renders "<strong> Items</strong>" inside a column-flex div,
// and the headerButtonsTemplate (the add button) is a sibling two levels up.
const itemsHeader = page.locator('strong:has-text("Items")');
await itemsHeader.locator('xpath=../..').getByRole('button').first().click();
const itemForm = page.locator('app-item-add-form');
await itemForm.getByLabel('Name').fill(itemName);
await itemForm.getByLabel('Amount').fill('10.00');
await itemForm.getByRole('button', { name: /Add & Done/i }).click();
// The items section collapses into a summary; verify the count + total.
await expect(page.getByText(/Items \(1\)/)).toBeVisible();
await expect(page.getByText(/Total: \$10\.00/)).toBeVisible();
await saveReceipt(page);
currentReceiptName = name;
// Detail view should still show the item count/total summary.
await expect(page.getByText(/Items \(1\)/)).toBeVisible();
await expect(page.getByText(/Total: \$10\.00/)).toBeVisible();
await page.goto(`/receipts/group/${groupId}`);
await expect(page.getByRole('row').filter({ hasText: name }).first()).toBeVisible();
await deleteReceiptByName(page, groupId, name);
currentReceiptName = null;
});
});
================================================
FILE: desktop/jest.config.js
================================================
module.exports = {
preset: 'jest-preset-angular',
setupFilesAfterEnv: ['<rootDir>/setup-jest.ts'],
testPathIgnorePatterns: [
'<rootDir>/node_modules/',
'<rootDir>/dist/',
'<rootDir>/src/open-api/',
'<rootDir>/e2e/'
],
// Performance optimizations
maxWorkers: '50%',
cache: true,
cacheDirectory: '<rootDir>/.jest-cache',
// Transform configuration with isolatedModules for faster compilation
transform: {
'^.+\\.(ts|js|mjs|html|svg)$': [
'jest-preset-angular',
{
tsconfig: '<rootDir>/tsconfig.spec.json',
stringifyContentPathRegex: '\\.(html|svg)$',
}
]
},
collectCoverageFrom: [
'src/**/*.ts',
'!src/**/*.d.ts',
'!src/main.ts',
'!src/open-api/**',
'!src/environments/**'
],
coverageDirectory: 'coverage/receipt-wrangler-desktop',
coverageReporters: ['html', 'lcov', 'cobertura', 'text-summary'],
coverageThreshold: {
global: {
statements: 1,
branches: 1,
functions: 1,
lines: 1
}
},
moduleNameMapper: {
'^src/(.*)$': '<rootDir>/src/$1'
},
transformIgnorePatterns: [
'node_modules/(?!.*\\.mjs$|@angular|@ngxs|rxjs|ngx-mask|@ng-bootstrap|ngx-bootstrap|pretty-print-json|ng2-charts|lodash-es|chart\\.js)'
],
// Additional performance settings
testEnvironmentOptions: {
customExportConditions: ['node', 'node-addons']
},
workerIdleMemoryLimit: '512MB'
};
================================================
FILE: desktop/openapitools.json
================================================
{
"$schema": "./node_modules/@openapitools/openapi-generator-cli/config.schema.json",
"spaces": 2,
"generator-cli": {
"version": "7.11.0"
}
}
================================================
FILE: desktop/package.json
================================================
{
"name": "receipt-wrangler",
"version": "1.3.0",
"scripts": {
"ng": "ng",
"start": "ng serve --proxy-config ./proxy.conf.json --host 0.0.0.0",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --coverage --ci",
"e2e": "playwright test",
"e2e:ci": "playwright test --fail-on-flaky-tests",
"e2e:ui": "playwright test --ui",
"e2e:install": "playwright install --with-deps chromium"
},
"private": true,
"dependencies": {
"@angular/animations": "21.2.1",
"@angular/cdk": "21.2.0",
"@angular/common": "21.2.1",
"@angular/compiler": "21.2.1",
"@angular/core": "21.2.1",
"@angular/forms": "21.2.1",
"@angular/material": "21.2.0",
"@angular/platform-browser": "21.2.1",
"@angular/platform-browser-dynamic": "21.2.1",
"@angular/router": "21.2.1",
"@fontsource/inter": "^5.0.17",
"@fontsource/raleway": "^5.0.17",
"@ng-bootstrap/ng-bootstrap": "^20.0.0",
"@ngneat/until-destroy": "^10.0.0",
"@ngxs/storage-plugin": "^21.0.0",
"@ngxs/store": "^21.0.0",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.3",
"bootstrap-scss": "^5.3.3",
"chart.js": "^4.4.8",
"chartjs-plugin-datalabels": "^2.2.0",
"date-fns": "^4.1.0",
"jwt-decode": "^4.0.0",
"material-icons": "^1.13.1",
"ng2-charts": "^9.0.0",
"ngx-bootstrap": "^21.0.1",
"ngx-mask": "21.0.1",
"pretty-print-json": "^3.0.1",
"rxjs": "~7.8.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^21.2.0",
"@angular/cli": "~21.2.0",
"@angular/compiler-cli": "21.2.1",
"@angular/localize": "21.2.1",
"@ngxs/devtools-plugin": "^21.0.0",
"@playwright/test": "^1.59.1",
"@types/jest": "^30.0.0",
"@types/node": "^20.12.3",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-preset-angular": "^16.1.1",
"typescript": "~5.9.3"
}
}
================================================
FILE: desktop/playwright.config.ts
================================================
import { defineConfig, devices } from '@playwright/test';
const baseURL = process.env.E2E_BASE_URL ?? 'http://localhost:4200';
const isLocal = /^(https?:\/\/)?(localhost|127\.0\.0\.1)(:\d+)?\/?/i.test(baseURL);
export default defineConfig({
testDir: './e2e',
timeout: 60_000,
fullyParallel: true,
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
reporter: process.env.CI ? [['list'], ['html', { open: 'never' }]] : 'html',
use: {
baseURL,
trace: 'on-first-retry',
},
projects: [
// Logs in once per role and writes the session to e2e/.auth/*.json.
{
name: 'setup',
testMatch: '**/*.setup.ts',
use: { ...devices['Desktop Chrome'] },
},
// All *.spec.ts tests start pre-authenticated as the regular user.
// Individual tests can override with test.use({ storageState: ... }).
// Inherits the default testMatch ('**/*.@(spec|test).*'), which does not
// match *.setup.ts, so setup files aren't double-run here.
{
name: 'chromium',
dependencies: ['setup'],
use: {
...devices['Desktop Chrome'],
storageState: 'e2e/.auth/user.json',
},
},
],
webServer: isLocal
? {
command: 'npm start',
url: baseURL,
reuseExistingServer: !process.env.CI,
timeout: 120_000,
}
: undefined,
});
================================================
FILE: desktop/proxy.conf.json
================================================
{
"/api": {
"target": "http://localhost:8081",
"secure": false
}
}
================================================
FILE: desktop/push-version.sh
================================================
#!/bin/bash
if [ -z "$1" ]; then
echo "Please provide a version"
exit 0
else
echo $1
sh tag-version.sh $1
sh docker-update.sh
fi
================================================
FILE: desktop/setup-jest.ts
================================================
import { setupZonelessTestEnv } from 'jest-preset-angular/setup-env/zoneless';
setupZonelessTestEnv();
// jsdom does not implement HTMLCanvasElement.getContext; ng2-charts calls it
// during component initialization, which spams console.error in otherwise
// passing test runs. Returning null matches the no-op behavior the charts
// already tolerate under jsdom.
HTMLCanvasElement.prototype.getContext = jest.fn(() => null) as any;
================================================
FILE: desktop/src/about/about/about.component.html
================================================
<app-dialog
headerText="About"
>
<div class="mb-3">
<app-form-section
headerText="Project"
>
<div class="d-flex flex-column m-2">
@for (link of links; track link["url"]) {
<span>
{{ link.label }}: <a [href]="link.url" target="_blank">{{ link.url }}</a>
</span>
}
</div>
</app-form-section>
</div>
<app-form-section
headerText="Build"
>
<div class="d-flex flex-column m-2">
<span>Version: {{ about()?.version || 'unknown' }}</span>
@if (about()?.buildDate !== "unknown") {
<span>Build Date: {{ (about()?.buildDate | date) || 'unknown' }}</span>
} @else {
<span>Build Date: unknown</span>
}
</div>
</app-form-section>
</app-dialog>
================================================
FILE: desktop/src/about/about/about.component.scss
================================================
================================================
FILE: desktop/src/about/about/about.component.spec.ts
================================================
import { provideHttpClientTesting } from "@angular/common/http/testing";
import { ComponentFixture, TestBed } from "@angular/core/testing";
import { provideStore } from "@ngxs/store";
import { AboutComponent } from "./about.component";
import { provideHttpClient, withInterceptorsFromDi } from "@angular/common/http";
import { AboutState } from "../../store/about.state";
describe("AboutComponent", () => {
let component: AboutComponent;
let fixture: ComponentFixture<AboutComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [AboutComponent],
providers: [
provideHttpClient(withInterceptorsFromDi()),
provideHttpClientTesting(),
provideStore([AboutState])
]
})
.compileComponents();
fixture = TestBed.createComponent(AboutComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it("should create", () => {
expect(component).toBeTruthy();
});
});
================================================
FILE: desktop/src/about/about/about.component.ts
================================================
import { CommonModule } from "@angular/common";
import { Component, inject } from "@angular/core";
import { Store } from "@ngxs/store";
import { About } from "../../open-api/index";
import { SharedUiModule } from "../../shared-ui/shared-ui.module";
import { AboutState } from "../../store/about.state";
interface Link {
url: string;
label: string;
}
@Component({
selector: "app-about",
imports: [
CommonModule,
SharedUiModule
],
templateUrl: "./about.component.html",
styleUrl: "./about.component.scss"
})
export class AboutComponent {
private store = inject(Store);
public about = this.store.selectSignal(AboutState.about);
public links: Link[] = [
{
label: "Documentation",
url: "https://receiptwrangler.io"
},
{
label: "Source Code",
url: "https://github.com/Receipt-Wrangler"
},
{
label: "Reddit",
url: "https://reddit.com/r/receiptwrangler"
}
];
}
================================================
FILE: desktop/src/alert/alert.component.html
================================================
<div
class="d-flex flex-column alert-container p-3"
[ngClass]="{
'warning-background': type() === 'warning',
}"
>
<ng-container [ngSwitch]="type()">
<ng-container *ngSwitchCase="'warning'" [ngTemplateOutlet]="warningHeader"></ng-container>
</ng-container>
{{ message() }}
</div>
<ng-template
#warningHeader
>
<div class="d-flex align-items-center warning-header mb-1">
<mat-icon>warning</mat-icon>
<strong>Warning</strong>
</div>
</ng-template>
================================================
FILE: desktop/src/alert/alert.component.scss
================================================
.warning-background {
background-color: #FFF9C4;
}
.warning-header {
color: #FF8F00;
}
.alert-container {
border-radius: 10px;
}
================================================
FILE: desktop/src/alert/alert.component.spec.ts
================================================
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { AlertComponent } from './alert.component';
describe('AlertComponent', () => {
let component: AlertComponent;
let fixture: ComponentFixture<AlertComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [AlertComponent]
})
.compileComponents();
fixture = TestBed.createComponent(AlertComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
================================================
FILE: desktop/src/alert/alert.component.ts
================================================
import { CommonModule } from "@angular/common";
import { Component, input } from "@angular/core";
import { MatIconModule } from "@angular/material/icon";
@Component({
selector: "app-alert",
standalone: true,
imports: [
CommonModule,
MatIconModule
],
templateUrl: "./alert.component.html",
styleUrl: "./alert.component.scss"
})
export class AlertComponent {
public readonly type = input<"warning">("warning");
public readonly message = input<string>("");
}
================================================
FILE: desktop/src/animations/fade.animation.ts
================================================
import { animate, state, style, transition, trigger, } from "@angular/animations";
export const fadeInOut = [
trigger("fadeInOut", [
state(
"void",
style({
opacity: 0,
visibility: "hidden",
})
),
transition(":enter", [
animate(
"0.2s",
style({
opacity: 1,
visibility: "visible",
})
),
]),
transition(":leave", [
animate(
"0.2s",
style({
opacity: 0,
visibility: "hidden",
})
),
]),
]),
];
export const fadeIn = [
trigger("fadeIn", [
state(
"void",
style({
opacity: 0,
visibility: "hidden",
})
),
transition(":enter", [
animate(
"0.2s",
style({
opacity: 1,
visibility: "visible",
})
),
]),
]),
];
================================================
FILE: desktop/src/animations/index.ts
================================================
export * from './fade.animation';
================================================
FILE: desktop/src/app/app-routing.module.ts
================================================
import { NgModule } from "@angular/core";
import { RouterModule, Routes } from "@angular/router";
import { AuthGuard } from "src/guards/auth.guard";
import { SidebarComponent } from "src/layout/sidebar/sidebar.component";
import { UserRole } from "../open-api";
// set up dashboard
const routes: Routes = [
{
path: "",
component: SidebarComponent,
children: [
{
path: "auth",
loadChildren: () =>
import("../auth").then(
(m) => m.AuthModule
),
canActivate: [AuthGuard],
},
{
path: "dashboard",
loadChildren: () =>
import("../dashboard/dashboard.module").then(
(m) => m.DashboardModule
),
canActivate: [AuthGuard],
},
{
path: "categories",
loadChildren: () =>
import("../categories/categories.module").then(
(m) => m.CategoriesModule
),
canActivate: [AuthGuard],
},
{
path: "tags",
loadChildren: () =>
import("../tags/tags.module").then((m) => m.TagsModule),
canActivate: [AuthGuard],
},
{
path: "custom-fields",
loadChildren: () =>
import("../custom-fields/custom-fields.module").then((m) => m.CustomFieldsModule),
canActivate: [AuthGuard],
},
{
path: "groups",
loadChildren: () =>
import("../group/group.module").then((m) => m.GroupsModule),
canActivate: [AuthGuard],
},
{
path: "receipts",
loadChildren: () =>
import("../receipts/receipts.module").then((m) => m.ReceiptsModule),
canActivate: [AuthGuard],
},
{
path: "settings",
loadChildren: () =>
import("../settings/settings.module").then((m) => m.SettingsModule),
canActivate: [AuthGuard],
},
{
path: "system-settings",
loadChildren: () =>
import("../system-settings/system-settings.module").then((m) => m.SystemSettingsModule),
canActivate: [AuthGuard],
data: {
role: UserRole.Admin,
},
},
{
path: "users",
loadChildren: () =>
import("../user/user.module").then((m) => m.UserModule),
canActivate: [AuthGuard],
data: {
role: UserRole.Admin,
},
},
{
path: "",
redirectTo: "/auth/login",
pathMatch: "full",
},
],
},
];
@NgModule({
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule],
})
export class AppRoutingModule {}
================================================
FILE: desktop/src/app/app.component.html
================================================
<div class="d-flex h-100 flex-column">
<router-outlet></router-outlet>
</div>
================================================
FILE: desktop/src/app/app.component.scss
================================================
:host {
display: block;
width: 100%;
height: 100%;
}
================================================
FILE: desktop/src/app/app.component.spec.ts
================================================
import { provideHttpClientTesting } from "@angular/common/http/testing";
import { provideZonelessChangeDetection } from "@angular/core";
import { TestBed } from "@angular/core/testing";
import { RouterTestingModule } from "@angular/router/testing";
import { NgxsModule } from "@ngxs/store";
import { ApiModule } from "../open-api";
import { AppComponent } from "./app.component";
import { provideHttpClient, withInterceptorsFromDi } from "@angular/common/http";
describe("AppComponent", () => {
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [
RouterTestingModule,
NgxsModule.forRoot([]),
ApiModule,
AppComponent,
],
providers: [
provideZonelessChangeDetection(),
provideHttpClient(withInterceptorsFromDi()),
provideHttpClientTesting(),
]
}).compileComponents();
});
it("should create the app", () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.componentInstance;
expect(app).toBeTruthy();
});
});
================================================
FILE: desktop/src/app/app.component.ts
================================================
import { Component, OnInit } from "@angular/core";
import { RouterOutlet } from "@angular/router";
import { UntilDestroy, untilDestroyed } from "@ngneat/until-destroy";
import { Store } from "@ngxs/store";
import { interval, take, tap } from "rxjs";
import { HideProgressBar } from "src/store/layout.state.actions";
import { TokenRefreshService } from "../services";
import { AuthState } from "../store";
@UntilDestroy()
@Component({
selector: "app-root",
templateUrl: "./app.component.html",
styleUrls: ["./app.component.scss"],
imports: [RouterOutlet],
})
export class AppComponent implements OnInit {
constructor(
private tokenRefreshService: TokenRefreshService,
private store: Store
) {}
public ngOnInit(): void {
this.store.dispatch(new HideProgressBar());
this.refreshTokens();
}
private refreshTokens(): void {
const fifteenMinutes = 1000 * 60 * 15;
interval(fifteenMinutes)
.pipe(
untilDestroyed(this),
tap(() => {
if (this.store.selectSnapshot(AuthState.isLoggedIn)) {
this.tokenRefreshService.refreshToken().pipe(take(1)).subscribe();
}
})
).subscribe();
}
}
================================================
FILE: desktop/src/app/app.config.ts
================================================
import { ApplicationConfig, provideAppInitializer, provideZonelessChangeDetection, inject } from "@angular/core";
import { provideHttpClient, withInterceptors } from "@angular/common/http";
import { importProvidersFrom } from "@angular/core";
import { provideAnimationsAsync } from "@angular/platform-browser/animations/async";
import { provideCharts, withDefaultRegisterables } from "ng2-charts";
import { provideNgxMask } from "ngx-mask";
import { withNgxsReduxDevtoolsPlugin } from "@ngxs/devtools-plugin";
import { withNgxsStoragePlugin } from "@ngxs/storage-plugin";
import { provideStore } from "@ngxs/store";
import { AppInitService, initAppData } from "src/services";
import { httpInterceptor } from "../interceptors/http-interceptor";
import { MatSnackBarModule } from "@angular/material/snack-bar";
import { MatTooltipModule } from "@angular/material/tooltip";
import { NgxMaskDirective, NgxMaskPipe } from "ngx-mask";
import { AppRoutingModule } from "./app-routing.module";
import { IconModule } from "../icon/icon.module";
import { LayoutModule } from "../layout/layout.module";
import { ApiModule, Configuration } from "../open-api";
import { PipesModule } from "../pipes";
import { AboutState } from "../store/about.state";
import { ApiKeyTableState } from "../store/api-key-table.state";
import { AuthState } from "../store/auth.state";
import { CategoryTableState } from "../store/category-table.state";
import { CustomFieldTableState } from "../store/custom-field-table.state";
import { DashboardState } from "../store/dashboard.state";
import { FeatureConfigState } from "../store/feature-config.state";
import { GroupTableState } from "../store/group-table.state";
import { GroupState } from "../store/group.state";
import { LayoutState } from "../store/layout.state";
import { PromptTableState } from "../store/prompt-table.state";
import { ReceiptProcessingSettingsTableState } from "../store/receipt-processing-settings-table.state";
import { ReceiptProcessingSettingsTaskTableState } from "../store/receipt-processing-settings-task-table.state";
import { ReceiptTableState } from "../store/receipt-table.state";
import { SystemEmailTableState } from "../store/system-email-table.state";
import { SystemEmailTaskTableState } from "../store/system-email-task-table.state";
import { SystemSettingsState } from "../store/system-settings.state";
import { SystemTaskTableState } from "../store/system-task-table.state";
import { TagTableState } from "../store/tag-table.state";
import { UserState } from "../store/user.state";
import { environment } from "src/environments/environment.development";
const ngxsStates = [
AboutState,
ApiKeyTableState,
AuthState,
CategoryTableState,
CustomFieldTableState,
DashboardState,
FeatureConfigState,
GroupState,
GroupTableState,
LayoutState,
PromptTableState,
ReceiptProcessingSettingsTableState,
ReceiptProcessingSettingsTaskTableState,
ReceiptTableState,
SystemEmailTableState,
SystemEmailTaskTableState,
SystemSettingsState,
SystemTaskTableState,
TagTableState,
UserState,
];
const ngxsStorageKeys = [
"about",
"apiKeyTable",
"auth",
"categoryTable",
"customFieldTable",
"dashboards",
"groupTable",
"groups",
"layout",
"promptTable",
"receiptProcessingSettingsTable",
"receiptProcessingSettingsTaskTable",
"receiptTable",
"systemEmailTable",
"systemEmailTaskTable",
"systemSettings",
"systemTaskTable",
"tagTable",
"users",
];
export const appConfig: ApplicationConfig = {
providers: [
provideZonelessChangeDetection(),
provideAnimationsAsync(),
provideHttpClient(withInterceptors([httpInterceptor])),
provideNgxMask(),
provideCharts(withDefaultRegisterables()),
provideAppInitializer(() => {
const initializerFn = (initAppData)(inject(AppInitService));
return initializerFn();
}),
provideStore(
ngxsStates,
{ developmentMode: !environment.isProd },
withNgxsStoragePlugin({ keys: ngxsStorageKeys }),
withNgxsReduxDevtoolsPlugin({ disabled: environment.isProd }),
),
importProvidersFrom(
ApiModule.forRoot(() => new Configuration({ basePath: undefined })),
AppRoutingModule,
IconModule,
LayoutModule,
MatSnackBarModule,
MatTooltipModule,
NgxMaskDirective,
NgxMaskPipe,
PipesModule,
),
],
};
================================================
FILE: desktop/src/assets/.gitkeep
================================================
================================================
FILE: desktop/src/auth/auth-routing.module.ts
================================================
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { FeatureGuard } from '../guards/feature.guard';
import { AuthForm } from './sign-up/auth-form.component';
export const authRoutes: Routes = [
{
path: 'sign-up',
component: AuthForm,
data: {
isSignUp: true,
feature: 'enableLocalSignUp',
},
canActivate: [FeatureGuard],
},
{
path: 'login',
component: AuthForm,
},
];
@NgModule({
imports: [RouterModule.forChild(authRoutes)],
exports: [RouterModule],
})
export class AuthRoutingModule {}
================================================
FILE: desktop/src/auth/auth.module.ts
================================================
import { CommonModule, NgOptimizedImage } from "@angular/common";
import { NgModule } from "@angular/core";
import { ReactiveFormsModule } from "@angular/forms";
import { MatProgressSpinner } from "@angular/material/progress-spinner";
import { ButtonModule } from "../button/button.module";
import { DirectivesModule } from "../directives/directives.module";
import { InputModule } from "../input/input.module";
import { PipesModule } from "../pipes/pipes.module";
import { AuthRoutingModule } from "./auth-routing.module";
import { AuthForm } from "./sign-up/auth-form.component";
@NgModule({
declarations: [AuthForm],
imports: [
AuthRoutingModule,
ButtonModule,
CommonModule,
DirectivesModule,
InputModule,
PipesModule,
ReactiveFormsModule,
NgOptimizedImage,
MatProgressSpinner,
],
exports: [AuthForm],
})
export class AuthModule {
}
================================================
FILE: desktop/src/auth/index.ts
================================================
export * from './sign-up/auth-form.component';
export * from './auth-routing.module';
export * from './auth.module';
export * from './sign-up/auth-form.util';
================================================
FILE: desktop/src/auth/sign-up/auth-form.component.html
================================================
@if (isLoading) {
<div class="loading-container" @fadeInOut>
<img src="assets/branding/loading.gif" class="loading-gif">
<div class="loading-text">Loading...</div>
</div>
} @else {
<div class="auth-container" @fadeIn>
<div class="auth-card">
<!-- Logo and Welcome -->
<div class="logo-section">
<img src="assets/branding/logo-large.svg" alt="Receipt Wrangler" class="logo">
<h1 class="welcome-text">
{{ (isSignUp | async) ? 'Join us!' : 'Hey there!' }}
<span class="wave">👋</span>
</h1>
<p class="subtitle">
{{ (isSignUp | async) ? 'Create your account to get started' : 'Welcome back, ready to wrangle some receipts?' }}
</p>
</div>
<!-- Form -->
<form [formGroup]="form" (ngSubmit)="submit()">
<!-- Form Fields -->
<div class="form-fields">
<ng-container *ngIf="isSignUp | async">
<app-input
appearance="outline"
label="Display Name"
[inputFormControl]="form | formGet : 'displayname'"
></app-input>
</ng-container>
<app-input
appearance="outline"
label="Username"
[inputFormControl]="form | formGet : 'username'"
></app-input>
<app-input
appearance="outline"
label="Password"
type="password"
[showVisibilityEye]="true"
[inputFormControl]="form | formGet : 'password'"
></app-input>
</div>
<!-- Form Actions -->
<div class="form-actions">
<div class="primary-action w-100">
<app-button
buttonClass="w-100"
matButtonType="matRaisedButton"
type="submit"
[buttonText]="primaryButtonText"
></app-button>
</div>
<div class="secondary-action" *appFeature="'enableLocalSignUp'">
<app-button
buttonClass="w-100"
matButtonType="matRaisedButton"
type="button"
[buttonText]="secondaryButtonText"
[routerLink]="secondaryButtonRouterLink"
></app-button>
</div>
</div>
</form>
</div>
</div>
}
================================================
FILE: desktop/src/auth/sign-up/auth-form.component.scss
================================================
@use "../../variables.scss" as variables;
app-auth-form {
min-height: 100vh;
background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
position: relative;
display: flex;
align-items: center;
justify-content: center;
padding: variables.$spacing-lg;
// Fun background elements
&::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: radial-gradient(circle at 20% 80%, rgba(39, 177, 255, 0.08) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(39, 177, 255, 0.06) 0%, transparent 50%);
pointer-events: none;
}
.auth-container {
position: relative;
z-index: 1;
width: 100%;
max-width: 420px;
}
.auth-card {
background: white;
border-radius: variables.$border-radius-2xl;
box-shadow: 0 8px 32px rgba(39, 177, 255, 0.12);
padding: variables.$spacing-2xl;
position: relative;
overflow: hidden;
&::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #27b1ff 0%, #009efa 100%);
}
}
.logo-section {
text-align: center;
margin-bottom: variables.$spacing-lg;
.logo {
width: 100px;
height: auto;
margin-bottom: variables.$spacing-md;
transition: transform 0.3s ease;
&:hover {
transform: scale(1.05) rotate(2deg);
}
}
.welcome-text {
font-size: 1.75rem;
font-weight: 700;
color: #0f172a;
margin-bottom: variables.$spacing-xs;
.wave {
display: inline-block;
animation: wave 2s ease-in-out infinite;
}
}
.subtitle {
font-size: 1rem;
color: #64748b;
font-weight: 400;
}
}
.form-fields {
margin-bottom: variables.$spacing-sm;
app-input {
display: block;
width: 100%;
margin-bottom: variables.$spacing-sm;
&:last-child {
margin-bottom: 0;
}
::ng-deep {
.mat-mdc-form-field {
width: 100%;
.mat-mdc-text-field-wrapper {
height: 56px;
border-radius: variables.$border-radius-xl !important;
background-color: #f8fafc;
border: 2px solid #e2e8f0;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
&:hover {
border-color: #27b1ff;
background-color: white;
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(39, 177, 255, 0.1);
}
}
&.mat-focused .mat-mdc-text-field-wrapper {
border-color: #27b1ff;
background-color: white;
box-shadow: 0 0 0 4px rgba(39, 177, 255, 0.12);
transform: translateY(-1px);
}
.mat-mdc-form-field-label {
color: #64748b;
font-weight: 500;
}
}
}
}
}
.form-actions {
display: flex;
flex-direction: column;
gap: variables.$spacing-sm;
.primary-action {
width: 100%;
app-button {
width: 100%;
display: block;
::ng-deep .mat-mdc-raised-button {
width: 100%;
height: 56px;
border-radius: variables.$border-radius-xl !important;
font-weight: 600;
font-size: 1rem;
background: linear-gradient(135deg, #27b1ff 0%, #009efa 100%);
color: white;
box-shadow: 0 4px 14px rgba(39, 177, 255, 0.3);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
&:hover {
background: linear-gradient(135deg, #009efa 0%, #0086d4 100%);
box-shadow: 0 6px 20px rgba(39, 177, 255, 0.4);
transform: translateY(-2px);
}
}
}
}
.secondary-action {
width: 100%;
text-align: center;
padding: variables.$spacing-xs 0;
app-button {
width: 100%;
display: block;
::ng-deep .mat-mdc-raised-button {
width: 100%;
height: 48px;
border-radius: variables.$border-radius-xl !important;
font-weight: 500;
font-size: 0.95rem;
background: linear-gradient(135deg, #64748b 0%, #475569 100%);
color: white;
box-shadow: 0 2px 8px rgba(100, 116, 139, 0.2);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
&:hover {
background: linear-gradient(135deg, #475569 0%, #334155 100%);
box-shadow: 0 4px 12px rgba(100, 116, 139, 0.3);
transform: translateY(-1px);
}
}
}
}
}
// Fun animations
@keyframes wave {
0%, 100% {
transform: rotate(0deg);
}
10%, 30%, 50%, 70% {
transform: rotate(-10deg);
}
20%, 40%, 60%, 80% {
transform: rotate(10deg);
}
}
@keyframes float {
0%, 100% {
transform: translateY(0px);
}
50% {
transform: translateY(-5px);
}
}
.loading-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
.loading-gif {
width: 60px;
height: 60px;
margin-bottom: variables.$spacing-lg;
border-radius: 50%;
padding: variables.$spacing-sm;
background: white;
box-shadow: 0 4px 12px rgba(39, 177, 255, 0.1);
}
.loading-text {
color: #64748b;
font-weight: 500;
font-size: 1rem;
}
}
// Responsive design
@media (max-width: 768px) {
padding: variables.$spacing-md;
.auth-card {
padding: variables.$spacing-xl;
}
.logo-section {
.logo {
width: 80px;
}
.welcome-text {
font-size: 1.5rem;
}
}
}
@media (max-width: 480px) {
padding: variables.$spacing-sm;
.auth-card {
padding: variables.$spacing-lg;
}
.logo-section {
margin-bottom: variables.$spacing-lg;
.logo {
width: 70px;
margin-bottom: variables.$spacing-md;
}
.welcome-text {
font-size: 1.25rem;
}
.subtitle {
font-size: 0.9rem;
}
}
.form-fields {
margin-bottom: variables.$spacing-lg;
app-input {
margin-bottom: variables.$spacing-md;
}
}
}
}
================================================
FILE: desktop/src/auth/sign-up/auth-form.component.spec.ts
================================================
import { provideHttpClientTesting } from '@angular/common/http/testing';
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { ReactiveFormsModule } from '@angular/forms';
import { MatSnackBarModule } from '@angular/material/snack-bar';
import { NoopAnimationsModule } from '@angular/platform-browser/animations';
import { ActivatedRoute } from '@angular/router';
import { NgxsModule } from '@ngxs/store';
import { of } from 'rxjs';
import { ApiModule } from '../../open-api';
import { ButtonModule } from '../../button';
import { FeatureDirective } from '../../directives/feature.directive';
import { InputModule } from '../../input';
import { PipesModule } from '../../pipes/pipes.module';
import { AppInitService } from '../../services/app-init.service';
import { SnackbarService } from '../../services/snackbar.service';
import { AuthForm } from './auth-form.component';
import { AuthState } from '../../store/auth.state';
import { FeatureConfigState } from '../../store/feature-config.state';
import { AuthFormUtil } from './auth-form.util';
import { RouterTestingModule } from '@angular/router/testing';
import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
describe('AuthForm', () => {
let component: AuthForm;
let fixture: ComponentFixture<AuthForm>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [AuthForm, FeatureDirective],
imports: [ButtonModule,
InputModule,
MatSnackBarModule,
NgxsModule.forRoot([AuthState, FeatureConfigState]),
NoopAnimationsModule,
PipesModule,
ReactiveFormsModule,
ApiModule,
RouterTestingModule],
providers: [
SnackbarService,
AppInitService,
AuthFormUtil,
{
provide: ActivatedRoute,
useValue: {
data: of(undefined),
},
},
provideHttpClient(withInterceptorsFromDi()),
provideHttpClientTesting(),
]
}).compileComponents();
fixture = TestBed.createComponent(AuthForm);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
================================================
FILE: desktop/src/auth/sign-up/auth-form.component.ts
================================================
import { Component, OnInit, ViewEncapsulation } from "@angular/core";
import { FormBuilder, FormControl, FormGroup, Validators, } from "@angular/forms";
import { ActivatedRoute, Router } from "@angular/router";
import { Store } from "@ngxs/store";
import { BehaviorSubject, catchError, finalize, of, switchMap, tap, } from "rxjs";
import { AppData, AuthService } from "src/open-api";
import { SnackbarService } from "src/services";
import { setAppData } from "src/utils";
import { fadeIn, fadeInOut } from "../../animations";
import { GroupState } from "../../store";
import { UserValidators } from "../../validators";
@Component({
selector: "app-auth-form",
templateUrl: "./auth-form.component.html",
styleUrls: ["./auth-form.component.scss"],
encapsulation: ViewEncapsulation.None,
providers: [UserValidators],
animations: [fadeInOut, fadeIn],
standalone: false
})
export class AuthForm implements OnInit {
public form: FormGroup = new FormGroup({});
public isSignUp: BehaviorSubject<boolean> = new BehaviorSubject<boolean>(
false
);
public headerText: string = "";
public primaryButtonText: string = "";
public secondaryButtonText: string = "";
public secondaryButtonRouterLink: string[] = [];
public isLoading = false;
constructor(
private authSerivce: AuthService,
private snackbarService: SnackbarService,
protected formBuilder: FormBuilder,
protected route: ActivatedRoute,
protected router: Router,
protected store: Store,
protected userValidators: UserValidators
) {
}
public ngOnInit(): void {
this.initForm();
this.listenForRouteChanges();
this.listenForIsSignUpChanges();
}
private listenForRouteChanges(): void {
this.route.data
.pipe(
tap((data) => {
this.isSignUp.next(!!data?.["isSignUp"]);
})
)
.subscribe();
}
private listenForIsSignUpChanges(): void {
this.isSignUp
.pipe(
tap((isSignUp) => {
if (isSignUp) {
this.headerText = "Sign Up";
this.primaryButtonText = "Sign Up";
this.secondaryButtonRouterLink = ["/auth/login"];
this.secondaryButtonText = "Back to Login";
this.form
.get("username")
?.addAsyncValidators(this.userValidators.uniqueUsername(0, ""));
this.form.addControl(
"displayname",
new FormControl("", Validators.required)
);
} else {
this.headerText = "Login";
this.primaryButtonText = "Login";
this.secondaryButtonRouterLink = ["/auth/sign-up"];
this.secondaryButtonText = "Sign Up";
this.form
.get("username")
?.removeAsyncValidators(
this.userValidators.uniqueUsername(0, "")
);
this.form.removeControl("displayname");
}
})
)
.subscribe();
}
private initForm(): void {
this.form = this.formBuilder.group({
username: ["", [Validators.required]],
password: ["", Validators.required],
});
}
public submit(): void {
const isSignUp = this.isSignUp.getValue();
const isValid = this.form.valid;
if (isValid && isSignUp) {
this.signUp();
} else if (isValid && !isSignUp) {
this.login();
}
}
private signUp(): void {
this.authSerivce
.signUp(this.form.value)
.pipe(
tap(() => {
this.login();
}),
catchError((err) =>
of(
this.snackbarService.error(err.error["username"] ?? err["errMsg"])
)
)
)
.subscribe();
}
private login(): void {
this.isLoading = true;
this.authSerivce
.login(this.form.value)
.pipe(
switchMap((appData: AppData) => setAppData(this.store, appData)),
tap(() =>
this.router.navigate([
this.store.selectSnapshot(GroupState.dashboardLink),
]),
),
finalize(() => this.isLoading = false)
)
.subscribe();
}
}
================================================
FILE: desktop/src/auth/sign-up/auth-form.util.ts
================================================
import { Injectable } from "@angular/core";
import { FormGroup } from "@angular/forms";
import { Store } from "@ngxs/store";
import { catchError, map, Observable, of, switchMap, tap } from "rxjs";
import { AppData, AuthService } from "../../open-api";
import { SnackbarService } from "../../services";
import { setAppData } from "../../utils";
@Injectable()
export class AuthFormUtil {
constructor(
private authService: AuthService,
private snackbarService: SnackbarService,
private store: Store
) {}
public getSubmitObservable(
form: FormGroup,
isSignUp: boolean
): Observable<void> {
const isValid = form.valid;
if (isValid && isSignUp) {
return this.authService.signUp(form.value).pipe(
tap(() => {
this.snackbarService.success("User successfully signed up");
}),
catchError((err) =>
of(this.snackbarService.error(err.error["username"] ?? err["errMsg"]))
)
);
} else if (isValid && !isSignUp) {
return this.authService.login(form.value).pipe(
tap(() => {
this.snackbarService.success("Successfully logged in");
}),
switchMap((appData: AppData) => setAppData(this.store, appData)),
map(() => undefined)
);
} else {
return of(undefined);
}
}
}
================================================
FILE: desktop/src/autocomplete/autocomlete/autocomlete.component.html
================================================
<mat-form-field class="w-100" appearance="fill" [hintLabel]="hint ?? ''">
<mat-label>{{ label }}</mat-label>
<ng-container *ngIf="multiple">
<mat-chip-grid #chipGrid>
<mat-chip-row
*ngFor="let option of inputFormControl.value; let i = index"
(removed)="removeOption(i)"
>
<ng-template
*ngIf="optionChipTemplate"
[ngTemplateOutlet]="optionChipTemplate"
[ngTemplateOutletContext]="{
option: option
}"
></ng-template>
<div *ngIf="!optionChipTemplate">
{{
option | optionDisplay : options() : optionDisplayKey() : optionValueKey
}}
</div>
<button *ngIf="!readonly" matChipRemove>
<mat-icon>cancel</mat-icon>
</button>
</mat-chip-row
>
</mat-chip-grid>
<input
#inputMultiple
*ngIf="multiple"
matInput
type="text"
[id]="inputId"
[formControl]="filterFormControl"
[matAutocomplete]="auto"
[matChipInputFor]="chipGrid"
[readonly]="readonly"
[required]="isRequired"
/>
</ng-container>
<div class="d-flex justify-content-between">
<input
*ngIf="!multiple"
matInput
type="text"
[formControl]="filterFormControl"
[matAutocomplete]="auto"
[readonly]="readonly || singleOptionSelected()"
[required]="isRequired"
/>
<app-button
*ngIf="singleOptionSelected() && !readonly"
matButtonType="iconButton"
icon="close"
color="secondary"
(clicked)="removeSingleOption()"
></app-button>
</div>
<mat-autocomplete
autoActiveFirstOption
[displayWith]="displayWith()"
(optionSelected)="optionSelected($event)"
#auto="matAutocomplete"
>
<mat-option
*ngFor="let option of filteredOptions | async"
[value]="optionValueKey ? option[optionValueKey] : option"
>
<ng-template
*ngIf="optionTemplate"
[ngTemplateOutlet]="optionTemplate"
[ngTemplateOutletContext]="{
option: option
}"
>
</ng-template>
<ng-container *ngIf="!optionTemplate">
{{
option | optionDisplay : options() : optionDisplayKey() : optionValueKey
}}
</ng-container
>
</mat-option>
<ng-container
*ngIf="
creatable() &&
(filteredOptions | async)?.length === 0 &&
filterFormControl?.value?.length > 0
"
>
<mat-option [id]="creatableOptionId" [value]="filterFormControl.value"
>Add {{ filterFormControl.value }}
</mat-option
>
</ng-container>
</mat-autocomplete>
<mat-error *ngFor="let err of formControlErrors | async">{{
err.message
}}
</mat-error>
</mat-form-field>
================================================
FILE: desktop/src/autocomplete/autocomlete/autocomlete.component.scss
================================================
================================================
FILE: desktop/src/autocomplete/autocomlete/autocomlete.component.spec.ts
================================================
import { CUSTOM_ELEMENTS_SCHEMA } from "@angular/core";
import { ComponentFixture, TestBed } from "@angular/core/testing";
import { FormArray, FormControl, FormGroup, ReactiveFormsModule, } from "@angular/forms";
import { MatAutocompleteModule, MatAutocompleteSelectedEvent, } from "@angular/material/autocomplete";
import { NgxsModule } from "@ngxs/store";
import { BaseInputComponent } from "../../base-input";
import { AutocomleteComponent } from "./autocomlete.component";
describe("AutocomleteComponent", () => {
let component: AutocomleteComponent;
let fixture: ComponentFixture<AutocomleteComponent>;
jest.useFakeTimers();
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [AutocomleteComponent, BaseInputComponent],
imports: [
NgxsModule.forRoot([]),
MatAutocompleteModule,
ReactiveFormsModule,
],
schemas: [CUSTOM_ELEMENTS_SCHEMA],
}).compileComponents();
fixture = TestBed.createComponent(AutocomleteComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it("should create", () => {
expect(component).toBeTruthy();
});
it("should filter the options when multiple is false", () => {
fixture.componentRef.setInput('options', [
{ id: 1, name: "Option 1" },
{ id: 2, name: "Option 2" },
{ id: 3, name: "Option 3" },
]);
fixture.componentRef.setInput('optionFilterKey', "name");
component.multiple = false;
const result = component._filter("Option 1");
expect(result).toEqual([{ id: 1, name: "Option 1" }]);
});
// it('should filter the options when multiple is true and values are selected', () => {
// const service = TestBed.inject(FormBuilder);
// component.options = [
// { id: 1, name: 'Option 1' },
// { id: 2, name: 'Option 2' },
// { id: 3, name: 'Option 3' },
// ];
// component.optionFilterKey = 'name';
// component.multiple = true;
// component.inputFormControl = new FormArray([
// new FormGroup({
// id: new FormControl(2),
// name: new FormControl('Option 2'),
// }),
// ]) as any;
// const result = component._filter('Option');
// console.log(result);
// expect(result).toEqual([
// { id: 1, name: 'Option 1' },
// { id: 3, name: 'Option 3' },
// ]);
// });
it("should return an empty array when no options match the filter", () => {
fixture.componentRef.setInput('options', [
{ id: 1, name: "Option 1" },
{ id: 2, name: "Option 2" },
{ id: 3, name: "Option 3" },
]);
fixture.componentRef.setInput('optionFilterKey', "name");
component.multiple = false;
const result = component._filter("Non-existing option");
expect(result).toEqual([]);
});
it("should set the selected option value to the inputFormControl in single mode", () => {
component.multiple = false;
component.optionValueKey = "value";
const event = {
option: {
id: "selected-option",
value: "value",
},
} as MatAutocompleteSelectedEvent;
component.optionSelected(event);
expect(component.inputFormControl.value).toEqual("value");
});
it("should set the selected option value to the inputFormControl in single mode with full object as value", () => {
component.multiple = false;
const event = {
option: {
id: "selected-option",
value: { id: "id1", name: "Groceries" },
},
} as MatAutocompleteSelectedEvent;
component.optionSelected(event);
expect(component.inputFormControl.value).toEqual({
id: "id1",
name: "Groceries",
});
});
it("should add the selected option value to the inputFormControl as a FormControl instance in multiple mode", () => {
component.multiple = true;
component.optionValueKey = "value";
component.inputFormControl = new FormArray([
new FormControl("value 1"),
]) as any;
const event = {
option: {
id: "selected-option",
value: "value 2",
},
} as MatAutocompleteSelectedEvent;
component.optionSelected(event);
expect((component.inputFormControl as any as FormArray).value).toEqual([
"value 1",
"value 2",
]);
});
it("should add the selected option value to the inputFormControl as a FormControl instance in multiple mode with full object", () => {
component.multiple = true;
component.optionValueKey = "value";
component.inputFormControl = new FormArray([
new FormGroup({
id: new FormControl("id0"),
name: new FormControl("Utilities"),
}),
]) as any;
const event = {
option: {
id: "selected-option",
value: {
id: "id1",
name: "Groceries",
},
},
} as MatAutocompleteSelectedEvent;
component.optionSelected(event);
expect((component.inputFormControl as any as FormArray).value).toEqual([
{
id: "id0",
name: "Utilities",
},
{
id: "id1",
name: "Groceries",
},
]);
});
it("should add a custom option value to the inputFormControl as a FormControl instance in multiple mode with no option value key", () => {
component.creatableOptionId = "create-option";
fixture.componentRef.setInput('defaultCreatableObject', { name: "Custom Option" });
fixture.componentRef.setInput('creatableValueKey', "name");
component.multiple = true;
component.inputFormControl = new FormArray([
new FormControl("value 1"),
]) as any;
const event = {
option: {
id: component.creatableOptionId,
value: "Custom Option",
},
} as MatAutocompleteSelectedEvent;
component.filterFormControl.setValue("new value");
component.optionSelected(event);
expect((component.inputFormControl as any as FormArray).value).toEqual([
"value 1",
{
name: "new value",
},
]);
});
it("should add a custom option value to the inputFormControl as a FormControl instance in multiple mode with option value key", () => {
component.creatableOptionId = "create-option";
component.optionValueKey = "name";
component.multiple = true;
component.inputFormControl = new FormArray([
new FormControl("value 1"),
]) as any;
const event = {
option: {
id: component.creatableOptionId,
value: "Custom Option",
},
} as MatAutocompleteSelectedEvent;
component.filterFormControl.setValue("new value");
component.optionSelected(event);
expect((component.inputFormControl as any as FormArray).value).toEqual([
"value 1",
"new value",
]);
});
});
================================================
FILE: desktop/src/autocomplete/autocomlete/autocomlete.component.ts
================================================
import { Component, effect, ElementRef, Input, OnInit, signal, TemplateRef, input, viewChild } from "@angular/core";
import { FormArray, FormControl, Validators } from "@angular/forms";
import { MatAutocompleteSelectedEvent, MatAutocompleteTrigger, } from "@angular/material/autocomplete";
import { map, Observable, of, startWith } from "rxjs";
import { BaseInputComponent } from "../../base-input";
@Component({
selector: "app-autocomlete",
templateUrl: "./autocomlete.component.html",
styleUrls: ["./autocomlete.component.scss"],
standalone: false
})
export class AutocomleteComponent
extends BaseInputComponent
implements OnInit {
@Input() public inputId: string = "";
public readonly options = input<any[]>([]);
@Input() public optionTemplate!: TemplateRef<any>;
@Input() public optionChipTemplate!: TemplateRef<any>;
public readonly optionFilterKey = input<string>("");
@Input() public optionValueKey: string = "";
public readonly optionDisplayKey = input<string>("");
@Input() public multiple: boolean = false;
public readonly displayWith = input<(value: any) => string>(() => '');
public readonly creatable = input<boolean>(false);
public readonly defaultCreatableObject = input<any>({});
public readonly creatableValueKey = input<string>("");
public readonly matAutocompleteTrigger = viewChild.required(MatAutocompleteTrigger);
public readonly inputMultiple = viewChild.required<ElementRef>("inputMultiple");
public filteredOptions: Observable<any[]> = of([]);
public filterFormControl: FormControl = new FormControl("");
public creatableOptionId = (Math.random() + 1).toString(36).substring(7);
public duplicateValuesFound: any[] = [];
public isRequired: boolean = false;
public singleOptionSelected = signal(false);
private optionsEffect = effect(() => {
this.options();
this.filteredOptions = this.filterFormControl.valueChanges.pipe(
startWith(this.filterFormControl.value),
map((value) => {
return this._filter(value);
})
);
});
constructor() {
super();
}
public override ngOnInit(): void {
super.ngOnInit();
if (!this.inputId) {
this.inputId = this.label.replace(/ /g, "_").toLowerCase();
}
this.isRequired = this.inputFormControl.hasValidator(Validators.required);
this.setSingleOptionSelected();
if (!this.multiple) {
this.initSingleAutocomplete();
}
}
private setSingleOptionSelected(): void {
if (!this.multiple) {
this.inputFormControl.valueChanges
.pipe(startWith(this.inputFormControl.value))
.subscribe((v) => {
this.singleOptionSelected.set(!!v);
});
}
}
private initSingleAutocomplete(): void {
this.filterFormControl.setValue(this.inputFormControl.value);
}
public _filter(value: string): any[] {
value = value ?? "";
const filterValue = value.toString()?.toLowerCase();
if (this.multiple) {
const formArray = this.inputFormControl as any as FormArray;
const selectedValues = (formArray.value as any[]) ?? [];
// TODO: Restrict the user form adding an already added value
return this.options()
.filter((o) => !selectedValues.includes(o))
.filter((option) => {
const optionFilterKey = this.optionFilterKey();
if (optionFilterKey) {
return option[optionFilterKey]
.toLowerCase()
.includes(filterValue);
} else {
return option.toLowerCase().includes(filterValue);
}
});
} else {
if (this.optionFilterKey()) {
return this.options().filter((option) =>
option[this.optionFilterKey()].toLowerCase().includes(filterValue)
);
} else {
return this.options().filter((o) => o.toLowerCase().includes(filterValue));
}
}
}
public optionSelected(event: MatAutocompleteSelectedEvent): void {
if (this.multiple) {
const customOptionSelected = event.option.id === this.creatableOptionId;
const formArray = this.inputFormControl as any as FormArray;
if (customOptionSelected && !this.optionValueKey) {
formArray.push(
new FormControl({
...this.defaultCreatableObject(),
[this.creatableValueKey()]: this.filterFormControl.value,
})
);
} else if (customOptionSelected && this.optionValueKey) {
formArray.push(new FormControl(this.filterFormControl.value));
} else {
(this.inputFormControl as any as FormArray).push(
new FormControl(event.option.value)
);
}
setTimeout(() => {
this.clearFilterAndOpenPanel();
}, 0);
} else {
this.inputFormControl.setValue(event.option.value);
}
}
private clearFilterAndOpenPanel(): void {
if (this.inputId) {
(document.getElementById(this.inputId) as any).value = "";
}
this.filterFormControl.setValue("");
this.matAutocompleteTrigger().openPanel();
}
public removeOption(index: number) {
if (this.multiple) {
const formArray = this.inputFormControl as any as FormArray;
formArray.removeAt(index);
this.filterFormControl.setValue(null);
this.inputMultiple().nativeElement.focus();
}
}
public removeSingleOption(): void {
this.clearFilter();
}
public clearFilter(): void {
if (this.multiple) {
this.inputFormControl.setValue([]);
} else {
this.inputFormControl.setValue(null);
}
this.filterFormControl.setValue("");
}
}
================================================
FILE: desktop/src/autocomplete/autocomlete/option-display.pipe.spec.ts
================================================
import { TestBed } from '@angular/core/testing';
import { OptionDisplayPipe } from './option-display.pipe';
describe('OptionDisplayPipe', () => {
let pipe: OptionDisplayPipe;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [OptionDisplayPipe],
imports: [],
providers: [OptionDisplayPipe],
}).compileComponents();
pipe = TestBed.inject(OptionDisplayPipe);
});
it('create an instance', () => {
expect(pipe).toBeTruthy();
});
it('should just return the option', () => {
const result = pipe.transform('option', []);
expect(result).toEqual('option');
});
it('should just return the option at display key', () => {
const result = pipe.transform({ test: 'the result' }, [], 'test');
expect(result).toEqual('the result');
});
it('should return the option when there is a value key and display key', () => {
const options = [
{
display: 'best option display',
value: 'best option value',
},
];
const result = pipe.transform(options[0], options, 'display', 'value');
expect(result).toEqual('best option display');
});
});
================================================
FILE: desktop/src/autocomplete/autocomlete/option-display.pipe.ts
================================================
import { Pipe, PipeTransform } from "@angular/core";
@Pipe({
name: "optionDisplay",
standalone: false
})
export class OptionDisplayPipe implements PipeTransform {
public transform(
option: any,
options: any[],
optionDisplayKey?: string,
optionValueKey?: string
): any {
// If we have just the value
if (optionValueKey && optionDisplayKey) {
return options.find(
(o) => o?.[optionValueKey] === (option?.[optionValueKey] ?? option)
)?.[optionDisplayKey];
}
// If we have the whole option object
if (optionDisplayKey) {
return option?.[optionDisplayKey];
}
return option;
}
}
================================================
FILE: desktop/src/autocomplete/autocomplete.module.ts
================================================
import { CommonModule } from "@angular/common";
import { NgModule } from "@angular/core";
import { ReactiveFormsModule } from "@angular/forms";
import { MatAutocompleteModule } from "@angular/material/autocomplete";
import { MatChipsModule } from "@angular/material/chips";
import { MatIconModule } from "@angular/material/icon";
import { MatInputModule } from "@angular/material/input";
import { ButtonModule } from "../button";
import { AutocomleteComponent } from "./autocomlete/autocomlete.component";
import { OptionDisplayPipe } from "./autocomlete/option-display.pipe";
@NgModule({
declarations: [AutocomleteComponent, OptionDisplayPipe],
imports: [
CommonModule,
MatAutocompleteModule,
ReactiveFormsModule,
MatInputModule,
MatChipsModule,
MatIconModule,
ButtonModule,
],
exports: [AutocomleteComponent],
})
export class AutocompleteModule {}
================================================
FILE: desktop/src/avatar/avatar/avatar.component.html
================================================
<div
[matTooltip]="user()?.displayName ?? group()?.name ?? ''"
[style.background-color]="user()?.defaultAvatarColor ?? '#27b1ff'"
class="avatar d-flex justify-content-center align-items-center"
>
{{
user()?.displayName?.toUpperCase() ?? group()?.name?.toUpperCase()
| slice : 0 : 1
}}
</div>
================================================
FILE: desktop/src/avatar/avatar/avatar.component.scss
================================================
@use "../../variables" as variables;
.avatar {
width: 50px;
height: 50px;
color: white;
border-radius: 50px;
box-shadow: variables.$global-shadow;
}
================================================
FILE: desktop/src/avatar/avatar/avatar.component.spec.ts
================================================
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { AvatarComponent } from './avatar.component';
import { MatTooltipModule } from '@angular/material/tooltip';
describe('AvatarComponent', () => {
let component: AvatarComponent;
let fixture: ComponentFixture<AvatarComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [AvatarComponent],
imports: [MatTooltipModule],
}).compileComponents();
fixture = TestBed.createComponent(AvatarComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
================================================
FILE: desktop/src/avatar/avatar/avatar.component.ts
================================================
import { Component, input } from "@angular/core";
import { Group, User } from "../../open-api";
@Component({
selector: "app-avatar",
templateUrl: "./avatar.component.html",
styleUrls: ["./avatar.component.scss"],
standalone: false
})
export class AvatarComponent {
public readonly user = input<User>();
public readonly group = input<Group>();
}
================================================
FILE: desktop/src/avatar/avatar.module.ts
================================================
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { AvatarComponent } from './avatar/avatar.component';
import { MatTooltipModule } from '@angular/material/tooltip';
@NgModule({
declarations: [AvatarComponent],
imports: [CommonModule, MatTooltipModule],
exports: [AvatarComponent],
})
export class AvatarModule {}
================================================
FILE: desktop/src/avatar/index.ts
================================================
export * from './avatar.module';
================================================
FILE: desktop/src/base-input/base-input/base-input.component.html
================================================
<p>base-input works!</p>
================================================
FILE: desktop/src/base-input/base-input/base-input.component.scss
================================================
================================================
FILE: desktop/src/base-input/base-input/base-input.component.spec.ts
================================================
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { BaseInputComponent } from './base-input.component';
describe('BaseInputComponent', () => {
let component: BaseInputComponent;
let fixture: ComponentFixture<BaseInputComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ BaseInputComponent ]
})
.compileComponents();
fixture = TestBed.createComponent(BaseInputComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
================================================
FILE: desktop/src/base-input/base-input/base-input.component.ts
================================================
import { Component, Input, OnInit, input, output } from "@angular/core";
import { FormControl } from "@angular/forms";
import { map, Observable, startWith } from "rxjs";
import { BaseInputInterface } from "../base-input.interface";
import { InputErrorMessage } from "./input-error-message";
@Component({
selector: "app-base-input",
templateUrl: "./base-input.component.html",
styleUrls: ["./base-input.component.scss"],
standalone: false
})
export class BaseInputComponent implements OnInit, BaseInputInterface {
@Input() public inputFormControl: FormControl = new FormControl();
@Input() public label: string = "";
@Input() public additionalErrorMessages?: { [key: string]: string };
@Input() public readonly: boolean = false;
@Input() public placeholder?: string;
@Input() public hint?: string;
public readonly appearance = input<"fill" | "outline">("fill");
public readonly inputBlur = output<any>();
public formControlErrors!: Observable<InputErrorMessage[]>;
public errorMessages: { [key: string]: string } = {};
public ngOnInit(): void {
this.errorMessages = {
required: `${this.label} is required.`,
email: `${this.label} must be a valid email address.`,
duplicate: `${this.label} must be unique.`,
min: `Value must be larger than 0`,
};
this.formControlErrors = this.inputFormControl.statusChanges.pipe(
startWith(this.inputFormControl.status),
map(() => {
const errors = this.inputFormControl.errors;
if (errors) {
const keys = Object.keys(this.inputFormControl.errors as any);
return keys.map((k: string) => {
const value = errors[k];
let message = "";
if (typeof value === "string") {
message = value;
} else if (this.errorMessages[k]) {
message = this.errorMessages[k];
}
return {
error: k as string,
message: message,
};
});
} else {
return [];
}
})
);
if (this.additionalErrorMessages) {
this.errorMessages = {
...this.errorMessages,
...this.additionalErrorMessages,
};
}
}
}
================================================
FILE: desktop/src/base-input/base-input/input-error-message.ts
================================================
export interface InputErrorMessage {
error: string;
message: string;
}
================================================
FILE: desktop/src/base-input/base-input.interface.ts
================================================
import { FormControl } from '@angular/forms';
export interface BaseInputInterface {
inputFormControl: FormControl;
label: string;
additionalErrorMessages?: { [key: string]: string };
readonly: boolean;
placeholder?: string;
helpText?: string;
}
================================================
FILE: desktop/src/base-input/base-input.module.ts
================================================
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { BaseInputComponent } from './base-input/base-input.component';
@NgModule({
declarations: [BaseInputComponent],
imports: [CommonModule],
exports: [BaseInputComponent],
})
export class BaseInputModule {}
================================================
FILE: desktop/src/base-input/index.ts
================================================
export * from './base-input/base-input.component';
export * from './base-input.interface';
export * from './base-input.module';
================================================
FILE: desktop/src/button/base-button/base-button.component.html
================================================
<p>base-button works!</p>
================================================
FILE: desktop/src/button/base-button/base-button.component.scss
================================================
================================================
FILE: desktop/src/button/base-button/base-button.component.spec.ts
================================================
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { BaseButtonComponent } from './base-button.component';
describe('BaseButtonComponent', () => {
let component: BaseButtonComponent;
let fixture: ComponentFixture<BaseButtonComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [BaseButtonComponent]
})
.compileComponents();
fixture = TestBed.createComponent(BaseButtonComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
================================================
FILE: desktop/src/button/base-button/base-button.component.ts
================================================
import { Component, Input, input, output } from "@angular/core";
import { ThemePalette } from "@angular/material/core";
@Component({
selector: "app-base-button",
standalone: false,
templateUrl: "./base-button.component.html",
styleUrl: "./base-button.component.scss"
})
export class BaseButtonComponent {
public readonly buttonClass = input<string>("");
public readonly color = input<string>("primary");
public readonly buttonText = input<string>("");
public readonly type = input<"button" | "menu" | "submit" | "reset">("button");
public readonly matButtonType = input<"matRaisedButton" | "iconButton" | "basic">("matRaisedButton");
@Input() public icon: string = "";
@Input() public customIcon: string = "";
public readonly disabled = input<boolean>(false);
public readonly buttonRouterLink = input<string[]>();
public readonly buttonQueryParams = input<any>({});
public readonly tooltip = input<string>("");
public readonly matBadgeContent = input<any>();
public readonly matBadgeColor = input<ThemePalette>("primary");
public readonly clicked = output<MouseEvent>();
}
================================================
FILE: desktop/src/button/button/button.component.html
================================================
<ng-container [ngSwitch]="matButtonType()">
<button
mat-button
*ngSwitchCase="'basic'"
[class]="buttonClass()"
[type]="type()"
[color]="color()"
[disabled]="disabled()"
[matTooltip]="tooltip()"
[routerLink]="buttonRouterLink()"
[queryParams]="buttonQueryParams()"
[matBadgeColor]="matBadgeColor()"
[matBadge]="matBadgeContent()"
(click)="emitClicked($event)"
>
<div class="d-flex align-items-center">
<mat-icon *ngIf="icon" class="me-1">
{{ icon }}
</mat-icon>
<span>
<strong>
{{ buttonText() }}
</strong>
</span>
</div>
</button>
<button
mat-raised-button
*ngSwitchCase="'matRaisedButton'"
[class]="buttonClass()"
[type]="type()"
[color]="color()"
[disabled]="disabled()"
[matTooltip]="tooltip()"
[matBadgeColor]="matBadgeColor()"
[matBadge]="matB
gitextract_7hmvqmij/ ├── .github/ │ └── workflows/ │ ├── ci.yml │ ├── e2e.yml │ └── release.yml ├── .gitignore ├── .idea/ │ ├── app.iml │ ├── forwardedPorts.xml │ ├── git_toolbox_prj.xml │ ├── modules.xml │ ├── receipt-wrangler-api.iml │ ├── vcs.xml │ └── workspace.xml ├── CLAUDE.md ├── README.md ├── desktop/ │ ├── .dockerignore │ ├── .editorconfig │ ├── .gitignore │ ├── .vscode/ │ │ ├── extensions.json │ │ ├── launch.json │ │ └── tasks.json │ ├── CLAUDE.md │ ├── Dockerfile │ ├── LICENSE │ ├── README.md │ ├── angular.json │ ├── docker/ │ │ └── nginx.conf │ ├── docker-update.sh │ ├── e2e/ │ │ ├── auth.setup.ts │ │ ├── auth.spec.ts │ │ ├── helpers/ │ │ │ └── auth.ts │ │ └── receipts.spec.ts │ ├── jest.config.js │ ├── openapitools.json │ ├── package.json │ ├── playwright.config.ts │ ├── proxy.conf.json │ ├── push-version.sh │ ├── setup-jest.ts │ ├── src/ │ │ ├── about/ │ │ │ └── about/ │ │ │ ├── about.component.html │ │ │ ├── about.component.scss │ │ │ ├── about.component.spec.ts │ │ │ └── about.component.ts │ │ ├── alert/ │ │ │ ├── alert.component.html │ │ │ ├── alert.component.scss │ │ │ ├── alert.component.spec.ts │ │ │ └── alert.component.ts │ │ ├── animations/ │ │ │ ├── fade.animation.ts │ │ │ └── index.ts │ │ ├── app/ │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ └── app.config.ts │ │ ├── assets/ │ │ │ └── .gitkeep │ │ ├── auth/ │ │ │ ├── auth-routing.module.ts │ │ │ ├── auth.module.ts │ │ │ ├── index.ts │ │ │ └── sign-up/ │ │ │ ├── auth-form.component.html │ │ │ ├── auth-form.component.scss │ │ │ ├── auth-form.component.spec.ts │ │ │ ├── auth-form.component.ts │ │ │ └── auth-form.util.ts │ │ ├── autocomplete/ │ │ │ ├── autocomlete/ │ │ │ │ ├── autocomlete.component.html │ │ │ │ ├── autocomlete.component.scss │ │ │ │ ├── autocomlete.component.spec.ts │ │ │ │ ├── autocomlete.component.ts │ │ │ │ ├── option-display.pipe.spec.ts │ │ │ │ └── option-display.pipe.ts │ │ │ └── autocomplete.module.ts │ │ ├── avatar/ │ │ │ ├── avatar/ │ │ │ │ ├── avatar.component.html │ │ │ │ ├── avatar.component.scss │ │ │ │ ├── avatar.component.spec.ts │ │ │ │ └── avatar.component.ts │ │ │ ├── avatar.module.ts │ │ │ └── index.ts │ │ ├── base-input/ │ │ │ ├── base-input/ │ │ │ │ ├── base-input.component.html │ │ │ │ ├── base-input.component.scss │ │ │ │ ├── base-input.component.spec.ts │ │ │ │ ├── base-input.component.ts │ │ │ │ └── input-error-message.ts │ │ │ ├── base-input.interface.ts │ │ │ ├── base-input.module.ts │ │ │ └── index.ts │ │ ├── button/ │ │ │ ├── base-button/ │ │ │ │ ├── base-button.component.html │ │ │ │ ├── base-button.component.scss │ │ │ │ ├── base-button.component.spec.ts │ │ │ │ └── base-button.component.ts │ │ │ ├── button/ │ │ │ │ ├── button.component.html │ │ │ │ ├── button.component.scss │ │ │ │ ├── button.component.spec.ts │ │ │ │ └── button.component.ts │ │ │ ├── button.module.ts │ │ │ └── index.ts │ │ ├── carousel/ │ │ │ ├── carousel/ │ │ │ │ ├── carousel.component.html │ │ │ │ ├── carousel.component.scss │ │ │ │ ├── carousel.component.spec.ts │ │ │ │ └── carousel.component.ts │ │ │ └── carousel.module.ts │ │ ├── categories/ │ │ │ ├── categories-routing.module.ts │ │ │ ├── categories.module.ts │ │ │ ├── category-form/ │ │ │ │ ├── category-form.component.html │ │ │ │ ├── category-form.component.scss │ │ │ │ ├── category-form.component.spec.ts │ │ │ │ └── category-form.component.ts │ │ │ └── category-table/ │ │ │ ├── category-table.component.html │ │ │ ├── category-table.component.scss │ │ │ ├── category-table.component.spec.ts │ │ │ └── category-table.component.ts │ │ ├── category-autocomplete/ │ │ │ ├── category-autocomplete.component.html │ │ │ ├── category-autocomplete.component.scss │ │ │ ├── category-autocomplete.component.spec.ts │ │ │ └── category-autocomplete.component.ts │ │ ├── checkbox/ │ │ │ ├── checkbox/ │ │ │ │ ├── checkbox.component.html │ │ │ │ ├── checkbox.component.scss │ │ │ │ ├── checkbox.component.spec.ts │ │ │ │ └── checkbox.component.ts │ │ │ └── checkbox.module.ts │ │ ├── color-picker/ │ │ │ ├── color-picker/ │ │ │ │ ├── color-picker.component.html │ │ │ │ ├── color-picker.component.scss │ │ │ │ ├── color-picker.component.spec.ts │ │ │ │ └── color-picker.component.ts │ │ │ └── color-picker.module.ts │ │ ├── constants/ │ │ │ ├── components.constant.ts │ │ │ ├── dialog.constant.ts │ │ │ ├── filter-operations-options.constant.ts │ │ │ ├── index.ts │ │ │ ├── keyboard-shortcuts.constant.ts │ │ │ ├── receipt-status-options.ts │ │ │ └── snackbar.constant.ts │ │ ├── custom-fields/ │ │ │ ├── custom-field-form/ │ │ │ │ ├── custom-field-form.component.html │ │ │ │ ├── custom-field-form.component.scss │ │ │ │ ├── custom-field-form.component.spec.ts │ │ │ │ └── custom-field-form.component.ts │ │ │ ├── custom-field-table/ │ │ │ │ ├── custom-field-table.component.html │ │ │ │ ├── custom-field-table.component.scss │ │ │ │ ├── custom-field-table.component.spec.ts │ │ │ │ └── custom-field-table.component.ts │ │ │ ├── custom-fields-routing.module.ts │ │ │ └── custom-fields.module.ts │ │ ├── dashboard/ │ │ │ ├── activity/ │ │ │ │ ├── activity.component.html │ │ │ │ ├── activity.component.scss │ │ │ │ ├── activity.component.spec.ts │ │ │ │ └── activity.component.ts │ │ │ ├── constants/ │ │ │ │ ├── chart-grouping-options.ts │ │ │ │ └── widget-options.ts │ │ │ ├── dashboard/ │ │ │ │ ├── dashboard.component.html │ │ │ │ ├── dashboard.component.scss │ │ │ │ ├── dashboard.component.spec.ts │ │ │ │ └── dashboard.component.ts │ │ │ ├── dashboard-form/ │ │ │ │ ├── dashboard-form.component.html │ │ │ │ ├── dashboard-form.component.scss │ │ │ │ ├── dashboard-form.component.spec.ts │ │ │ │ └── dashboard-form.component.ts │ │ │ ├── dashboard-list/ │ │ │ │ ├── dashboard-list.component.html │ │ │ │ ├── dashboard-list.component.scss │ │ │ │ ├── dashboard-list.component.spec.ts │ │ │ │ └── dashboard-list.component.ts │ │ │ ├── dashboard-routing.module.ts │ │ │ ├── dashboard.module.ts │ │ │ ├── filtered-receipts/ │ │ │ │ ├── filtered-receipts.component.html │ │ │ │ ├── filtered-receipts.component.scss │ │ │ │ ├── filtered-receipts.component.spec.ts │ │ │ │ └── filtered-receipts.component.ts │ │ │ ├── group-dashboards/ │ │ │ │ ├── group-dashboards.component.html │ │ │ │ ├── group-dashboards.component.scss │ │ │ │ ├── group-dashboards.component.spec.ts │ │ │ │ └── group-dashboards.component.ts │ │ │ ├── guards/ │ │ │ │ ├── dashboard.guard.spec.ts │ │ │ │ └── dashboard.guard.ts │ │ │ ├── pie-chart/ │ │ │ │ ├── pie-chart.component.html │ │ │ │ ├── pie-chart.component.scss │ │ │ │ ├── pie-chart.component.spec.ts │ │ │ │ └── pie-chart.component.ts │ │ │ ├── resolvers/ │ │ │ │ ├── dashboard.resolver.spec.ts │ │ │ │ └── dashboard.resolver.ts │ │ │ ├── widget-type.pipe.spec.ts │ │ │ └── widget-type.pipe.ts │ │ ├── datepicker/ │ │ │ ├── datepicker/ │ │ │ │ ├── datepicker.component.html │ │ │ │ ├── datepicker.component.scss │ │ │ │ ├── datepicker.component.spec.ts │ │ │ │ └── datepicker.component.ts │ │ │ └── datepicker.module.ts │ │ ├── directives/ │ │ │ ├── development.directive.spec.ts │ │ │ ├── development.directive.ts │ │ │ ├── directives.module.ts │ │ │ ├── feature.directive.spec.ts │ │ │ ├── feature.directive.ts │ │ │ ├── index.ts │ │ │ ├── role.directive.spec.ts │ │ │ └── role.directive.ts │ │ ├── enums/ │ │ │ └── form-mode.enum.ts │ │ ├── environments/ │ │ │ ├── environment.development.ts │ │ │ └── environment.ts │ │ ├── form/ │ │ │ ├── base-form/ │ │ │ │ ├── base-form.component.html │ │ │ │ ├── base-form.component.scss │ │ │ │ ├── base-form.component.spec.ts │ │ │ │ ├── base-form.component.ts │ │ │ │ └── index.ts │ │ │ ├── form.module.ts │ │ │ ├── index.ts │ │ │ └── interfaces/ │ │ │ ├── form-command.ts │ │ │ └── index.ts │ │ ├── group/ │ │ │ ├── group-details/ │ │ │ │ ├── group-details.component.html │ │ │ │ ├── group-details.component.scss │ │ │ │ ├── group-details.component.spec.ts │ │ │ │ └── group-details.component.ts │ │ │ ├── group-form/ │ │ │ │ ├── group-form.component.html │ │ │ │ ├── group-form.component.scss │ │ │ │ ├── group-form.component.spec.ts │ │ │ │ └── group-form.component.ts │ │ │ ├── group-member-form/ │ │ │ │ ├── group-member-form.component.html │ │ │ │ ├── group-member-form.component.scss │ │ │ │ ├── group-member-form.component.spec.ts │ │ │ │ └── group-member-form.component.ts │ │ │ ├── group-receipt-settings/ │ │ │ │ ├── group-receipt-settings.component.html │ │ │ │ ├── group-receipt-settings.component.scss │ │ │ │ ├── group-receipt-settings.component.spec.ts │ │ │ │ └── group-receipt-settings.component.ts │ │ │ ├── group-routing.module.ts │ │ │ ├── group-settings/ │ │ │ │ ├── group-settings.component.html │ │ │ │ ├── group-settings.component.scss │ │ │ │ ├── group-settings.component.spec.ts │ │ │ │ └── group-settings.component.ts │ │ │ ├── group-settings-ai/ │ │ │ │ ├── group-settings-ai.component.html │ │ │ │ ├── group-settings-ai.component.scss │ │ │ │ ├── group-settings-ai.component.spec.ts │ │ │ │ └── group-settings-ai.component.ts │ │ │ ├── group-settings-email/ │ │ │ │ ├── group-settings-email.component.html │ │ │ │ ├── group-settings-email.component.scss │ │ │ │ ├── group-settings-email.component.spec.ts │ │ │ │ └── group-settings-email.component.ts │ │ │ ├── group-table/ │ │ │ │ ├── group-table-edit-button.pipe.spec.ts │ │ │ │ ├── group-table-edit-button.pipe.ts │ │ │ │ ├── group-table.component.html │ │ │ │ ├── group-table.component.scss │ │ │ │ ├── group-table.component.spec.ts │ │ │ │ ├── group-table.component.ts │ │ │ │ └── group-table.service.ts │ │ │ ├── group-table-filter/ │ │ │ │ ├── associated-group-options.ts │ │ │ │ ├── group-table-filter.component.html │ │ │ │ ├── group-table-filter.component.scss │ │ │ │ ├── group-table-filter.component.spec.ts │ │ │ │ └── group-table-filter.component.ts │ │ │ ├── group-tabs/ │ │ │ │ ├── group-tabs.component.html │ │ │ │ ├── group-tabs.component.scss │ │ │ │ ├── group-tabs.component.spec.ts │ │ │ │ └── group-tabs.component.ts │ │ │ ├── group.module.ts │ │ │ ├── resolvers/ │ │ │ │ ├── group-resolver.service.spec.ts │ │ │ │ ├── group-resolver.service.ts │ │ │ │ └── system-emails.resolver.ts │ │ │ ├── role-options.ts │ │ │ └── utils/ │ │ │ └── group-member.utils.ts │ │ ├── guards/ │ │ │ ├── auth.guard.spec.ts │ │ │ ├── auth.guard.ts │ │ │ ├── development.guard.spec.ts │ │ │ ├── development.guard.ts │ │ │ ├── feature.guard.spec.ts │ │ │ ├── feature.guard.ts │ │ │ ├── group-role.guard.spec.ts │ │ │ ├── group-role.guard.ts │ │ │ ├── group.guard.spec.ts │ │ │ ├── group.guard.ts │ │ │ ├── index.ts │ │ │ ├── receipt-guard.guard.spec.ts │ │ │ ├── receipt-guard.guard.ts │ │ │ ├── role.guard.spec.ts │ │ │ └── role.guard.ts │ │ ├── icon/ │ │ │ └── icon.module.ts │ │ ├── import/ │ │ │ ├── import-form/ │ │ │ │ ├── import-form.component.html │ │ │ │ ├── import-form.component.scss │ │ │ │ ├── import-form.component.spec.ts │ │ │ │ └── import-form.component.ts │ │ │ └── import.module.ts │ │ ├── index.html │ │ ├── input/ │ │ │ ├── index.ts │ │ │ ├── input/ │ │ │ │ ├── input.component.html │ │ │ │ ├── input.component.scss │ │ │ │ ├── input.component.spec.ts │ │ │ │ └── input.component.ts │ │ │ ├── input.interface.ts │ │ │ └── input.module.ts │ │ ├── interceptors/ │ │ │ ├── http-interceptor.spec.ts │ │ │ └── http-interceptor.ts │ │ ├── interfaces/ │ │ │ ├── dashboard-state.interface.ts │ │ │ ├── extended-user-preferences.interface.ts │ │ │ ├── form-config.interface.ts │ │ │ ├── form-option.interface.ts │ │ │ ├── index.ts │ │ │ ├── paged-table.interface.ts │ │ │ ├── quick-scan-command.interface.ts │ │ │ ├── receipt-file-upload-command.interface.ts │ │ │ ├── receipt-table-column-config.interface.ts │ │ │ ├── receipt-table-interface.ts │ │ │ └── snackbar.interface.ts │ │ ├── layout/ │ │ │ ├── add-receipt-icon/ │ │ │ │ ├── add-receipt-icon.component.html │ │ │ │ ├── add-receipt-icon.component.scss │ │ │ │ ├── add-receipt-icon.component.spec.ts │ │ │ │ └── add-receipt-icon.component.ts │ │ │ ├── dashboard-icon/ │ │ │ │ ├── dashboard-icon.component.html │ │ │ │ ├── dashboard-icon.component.scss │ │ │ │ ├── dashboard-icon.component.spec.ts │ │ │ │ └── dashboard-icon.component.ts │ │ │ ├── header/ │ │ │ │ ├── header.component.html │ │ │ │ ├── header.component.scss │ │ │ │ ├── header.component.spec.ts │ │ │ │ └── header.component.ts │ │ │ ├── layout.module.ts │ │ │ ├── receipt-list-icon/ │ │ │ │ ├── receipt-list-icon.component.html │ │ │ │ ├── receipt-list-icon.component.scss │ │ │ │ ├── receipt-list-icon.component.spec.ts │ │ │ │ └── receipt-list-icon.component.ts │ │ │ └── sidebar/ │ │ │ ├── sidebar.component.html │ │ │ ├── sidebar.component.scss │ │ │ ├── sidebar.component.spec.ts │ │ │ └── sidebar.component.ts │ │ ├── main.ts │ │ ├── notifications/ │ │ │ ├── notification/ │ │ │ │ ├── notification.component.html │ │ │ │ ├── notification.component.scss │ │ │ │ ├── notification.component.spec.ts │ │ │ │ └── notification.component.ts │ │ │ ├── notifications-list/ │ │ │ │ ├── notifications-list.component.html │ │ │ │ ├── notifications-list.component.scss │ │ │ │ ├── notifications-list.component.spec.ts │ │ │ │ └── notifications-list.component.ts │ │ │ └── notifications.module.ts │ │ ├── open-api/ │ │ │ ├── .gitignore │ │ │ ├── .openapi-generator/ │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── .openapi-generator-ignore │ │ │ ├── README.md │ │ │ ├── api/ │ │ │ │ ├── api.ts │ │ │ │ ├── apiKey.service.ts │ │ │ │ ├── auth.service.ts │ │ │ │ ├── category.service.ts │ │ │ │ ├── comment.service.ts │ │ │ │ ├── customField.service.ts │ │ │ │ ├── dashboard.service.ts │ │ │ │ ├── export.service.ts │ │ │ │ ├── featureConfig.service.ts │ │ │ │ ├── groups.service.ts │ │ │ │ ├── import.service.ts │ │ │ │ ├── notifications.service.ts │ │ │ │ ├── prompt.service.ts │ │ │ │ ├── receipt.service.ts │ │ │ │ ├── receiptImage.service.ts │ │ │ │ ├── receiptProcessingSettings.service.ts │ │ │ │ ├── search.service.ts │ │ │ │ ├── systemEmail.service.ts │ │ │ │ ├── systemSettings.service.ts │ │ │ │ ├── systemTask.service.ts │ │ │ │ ├── tag.service.ts │ │ │ │ ├── user.service.ts │ │ │ │ ├── userPreferences.service.ts │ │ │ │ └── widget.service.ts │ │ │ ├── api.module.ts │ │ │ ├── configuration.ts │ │ │ ├── encoder.ts │ │ │ ├── git_push.sh │ │ │ ├── index.ts │ │ │ ├── model/ │ │ │ │ ├── about.ts │ │ │ │ ├── activity.ts │ │ │ │ ├── aiType.ts │ │ │ │ ├── apiKeyFilter.ts │ │ │ │ ├── apiKeyResult.ts │ │ │ │ ├── apiKeyScope.ts │ │ │ │ ├── apiKeyView.ts │ │ │ │ ├── appData.ts │ │ │ │ ├── associatedApiKeys.ts │ │ │ │ ├── associatedEntityType.ts │ │ │ │ ├── associatedGroup.ts │ │ │ │ ├── asynqQueueConfiguration.ts │ │ │ │ ├── baseModel.ts │ │ │ │ ├── bulkStatusUpdateCommand.ts │ │ │ │ ├── bulkUserDeleteCommand.ts │ │ │ │ ├── category.ts │ │ │ │ ├── categoryView.ts │ │ │ │ ├── chartGrouping.ts │ │ │ │ ├── checkEmailConnectivityCommand.ts │ │ │ │ ├── checkEmailConnectivityCommandAllOf.ts │ │ │ │ ├── checkReceiptProcessingSettingsConnectivityCommand.ts │ │ │ │ ├── claims.ts │ │ │ │ ├── comment.ts │ │ │ │ ├── configImportCommand.ts │ │ │ │ ├── currencySeparator.ts │ │ │ │ ├── currencySymbolPosition.ts │ │ │ │ ├── customField.ts │ │ │ │ ├── customFieldOption.ts │ │ │ │ ├── customFieldType.ts │ │ │ │ ├── customFieldValue.ts │ │ │ │ ├── dashboard.ts │ │ │ │ ├── deleteAccountCommand.ts │ │ │ │ ├── encodedImage.ts │ │ │ │ ├── exportFormat.ts │ │ │ │ ├── featureConfig.ts │ │ │ │ ├── fileData.ts │ │ │ │ ├── fileDataView.ts │ │ │ │ ├── fileDataViewAllOf.ts │ │ │ │ ├── filterOperation.ts │ │ │ │ ├── getNewRefreshToken200Response.ts │ │ │ │ ├── getSystemTaskCommand.ts │ │ │ │ ├── group.ts │ │ │ │ ├── groupFilter.ts │ │ │ │ ├── groupMember.ts │ │ │ │ ├── groupReceiptSettings.ts │ │ │ │ ├── groupRole.ts │ │ │ │ ├── groupSettings.ts │ │ │ │ ├── groupSettingsWhiteListEmail.ts │ │ │ │ ├── groupStatus.ts │ │ │ │ ├── icon.ts │ │ │ │ ├── importType.ts │ │ │ │ ├── internalErrorResponse.ts │ │ │ │ ├── item.ts │ │ │ │ ├── itemStatus.ts │ │ │ │ ├── loginCommand.ts │ │ │ │ ├── logoutCommand.ts │ │ │ │ ├── magicFillCommand.ts │ │ │ │ ├── models.ts │ │ │ │ ├── notification.ts │ │ │ │ ├── ocrEngine.ts │ │ │ │ ├── pagedActivityRequestCommand.ts │ │ │ │ ├── pagedApiKeyRequestCommand.ts │ │ │ │ ├── pagedData.ts │ │ │ │ ├── pagedDataDataInner.ts │ │ │ │ ├── pagedGroupRequestCommand.ts │ │ │ │ ├── pagedGroupRequestCommandAllOf.ts │ │ │ │ ├── pagedRequestCommand.ts │ │ │ │ ├── pagedRequestField.ts │ │ │ │ ├── pagedRequestFieldValue.ts │ │ │ │ ├── pieChartData.ts │ │ │ │ ├── pieChartDataCommand.ts │ │ │ │ ├── pieChartDataPoint.ts │ │ │ │ ├── prompt.ts │ │ │ │ ├── promptAllOf.ts │ │ │ │ ├── queueName.ts │ │ │ │ ├── receipt.ts │ │ │ │ ├── receiptPagedRequestCommand.ts │ │ │ │ ├── receiptPagedRequestFilter.ts │ │ │ │ ├── receiptProcessingSettings.ts │ │ │ │ ├── receiptProcessingSettingsAllOf.ts │ │ │ │ ├── receiptStatus.ts │ │ │ │ ├── resetPasswordCommand.ts │ │ │ │ ├── searchResult.ts │ │ │ │ ├── signUpCommand.ts │ │ │ │ ├── sortDirection.ts │ │ │ │ ├── subjectLineRegex.ts │ │ │ │ ├── systemEmail.ts │ │ │ │ ├── systemEmailAllOf.ts │ │ │ │ ├── systemSettings.ts │ │ │ │ ├── systemSettingsAllOf.ts │ │ │ │ ├── systemTask.ts │ │ │ │ ├── systemTaskAllOf.ts │ │ │ │ ├── systemTaskStatus.ts │ │ │ │ ├── systemTaskType.ts │ │ │ │ ├── tag.ts │ │ │ │ ├── tagView.ts │ │ │ │ ├── taskQueueConfiguration.ts │ │ │ │ ├── tokenPair.ts │ │ │ │ ├── updateGroupReceiptSettingsCommand.ts │ │ │ │ ├── updateGroupSettingsCommand.ts │ │ │ │ ├── updateProfileCommand.ts │ │ │ │ ├── upsertApiKeyCommand.ts │ │ │ │ ├── upsertAsynqQueueConfiguration.ts │ │ │ │ ├── upsertCategoryCommand.ts │ │ │ │ ├── upsertCommentCommand.ts │ │ │ │ ├── upsertCustomFieldCommand.ts │ │ │ │ ├── upsertCustomFieldOptionCommand.ts │ │ │ │ ├── upsertCustomFieldValueCommand.ts │ │ │ │ ├── upsertDashboardCommand.ts │ │ │ │ ├── upsertGroupCommand.ts │ │ │ │ ├── upsertGroupMemberCommand.ts │ │ │ │ ├── upsertItemCommand.ts │ │ │ │ ├── upsertPromptCommand.ts │ │ │ │ ├── upsertReceiptCommand.ts │ │ │ │ ├── upsertReceiptProcessingSettingsCommand.ts │ │ │ │ ├── upsertSystemEmailCommand.ts │ │ │ │ ├── upsertSystemSettingsCommand.ts │ │ │ │ ├── upsertTagCommand.ts │ │ │ │ ├── upsertTaskQueueConfiguration.ts │ │ │ │ ├── upsertWidgetCommand.ts │ │ │ │ ├── user.ts │ │ │ │ ├── userPreferences.ts │ │ │ │ ├── userPreferencesAllOf.ts │ │ │ │ ├── userRole.ts │ │ │ │ ├── userShortcut.ts │ │ │ │ ├── userView.ts │ │ │ │ ├── widget.ts │ │ │ │ └── widgetType.ts │ │ │ ├── param.ts │ │ │ └── variables.ts │ │ ├── pipes/ │ │ │ ├── custom-currency.pipe.spec.ts │ │ │ ├── custom-currency.pipe.ts │ │ │ ├── custom-field-type.pipe.spec.ts │ │ │ ├── custom-field-type.pipe.ts │ │ │ ├── duration.pipe.spec.ts │ │ │ ├── duration.pipe.ts │ │ │ ├── form-array-last.pipe.spec.ts │ │ │ ├── form-array-last.pipe.ts │ │ │ ├── form-get.pipe.spec.ts │ │ │ ├── form-get.pipe.ts │ │ │ ├── group-role.pipe.spec.ts │ │ │ ├── group-role.pipe.ts │ │ │ ├── group.pipe.spec.ts │ │ │ ├── group.pipe.ts │ │ │ ├── image.pipe.spec.ts │ │ │ ├── image.pipe.ts │ │ │ ├── index.ts │ │ │ ├── input-readonly.pipe.spec.ts │ │ │ ├── input-readonly.pipe.ts │ │ │ ├── map-get.pipe.spec.ts │ │ │ ├── map-get.pipe.ts │ │ │ ├── map-key.pipe.spec.ts │ │ │ ├── map-key.pipe.ts │ │ │ ├── name.pipe.spec.ts │ │ │ ├── name.pipe.ts │ │ │ ├── pipes.module.ts │ │ │ ├── status.pipe.spec.ts │ │ │ ├── status.pipe.ts │ │ │ ├── user.pipe.spec.ts │ │ │ └── user.pipe.ts │ │ ├── prompt/ │ │ │ ├── prompt-form/ │ │ │ │ ├── prompt-form.component.html │ │ │ │ ├── prompt-form.component.scss │ │ │ │ ├── prompt-form.component.spec.ts │ │ │ │ └── prompt-form.component.ts │ │ │ ├── prompt-routing.module.ts │ │ │ ├── prompt-table/ │ │ │ │ ├── prompt-table.component.html │ │ │ │ ├── prompt-table.component.scss │ │ │ │ ├── prompt-table.component.spec.ts │ │ │ │ └── prompt-table.component.ts │ │ │ ├── prompt.module.ts │ │ │ ├── prompt.resolver.spec.ts │ │ │ ├── prompt.resolver.ts │ │ │ ├── prompts.resolver.spec.ts │ │ │ └── prompts.resolver.ts │ │ ├── radio-group/ │ │ │ ├── models/ │ │ │ │ ├── index.ts │ │ │ │ └── radio-button-data.ts │ │ │ ├── radio-group/ │ │ │ │ ├── radio-group.component.html │ │ │ │ ├── radio-group.component.scss │ │ │ │ ├── radio-group.component.spec.ts │ │ │ │ └── radio-group.component.ts │ │ │ └── radio-group.module.ts │ │ ├── receipt-processing-settings/ │ │ │ ├── constants/ │ │ │ │ ├── ai-type-options.ts │ │ │ │ ├── ocr-engine-options.ts │ │ │ │ └── pretty-json.ts │ │ │ ├── pipes/ │ │ │ │ ├── ai-type.pipe.spec.ts │ │ │ │ ├── ai-type.pipe.ts │ │ │ │ ├── ocr-engine.pipe.spec.ts │ │ │ │ ├── ocr-engine.pipe.ts │ │ │ │ ├── url-label.pipe.spec.ts │ │ │ │ └── url-label.pipe.ts │ │ │ ├── receipt-processing-settings-child-system-task-accordion/ │ │ │ │ ├── receipt-processing-settings-child-system-task-accordion.component.html │ │ │ │ ├── receipt-processing-settings-child-system-task-accordion.component.scss │ │ │ │ ├── receipt-processing-settings-child-system-task-accordion.component.spec.ts │ │ │ │ └── receipt-processing-settings-child-system-task-accordion.component.ts │ │ │ ├── receipt-processing-settings-form/ │ │ │ │ ├── receipt-processing-settings-form.component.html │ │ │ │ ├── receipt-processing-settings-form.component.scss │ │ │ │ ├── receipt-processing-settings-form.component.spec.ts │ │ │ │ └── receipt-processing-settings-form.component.ts │ │ │ ├── receipt-processing-settings-table/ │ │ │ │ ├── receipt-processing-settings-table.component.html │ │ │ │ ├── receipt-processing-settings-table.component.scss │ │ │ │ ├── receipt-processing-settings-table.component.spec.ts │ │ │ │ ├── receipt-processing-settings-table.component.ts │ │ │ │ ├── receipt-processing-settings-table.service.spec.ts │ │ │ │ └── receipt-processing-settings-table.service.ts │ │ │ ├── receipt-processing-settings.module.ts │ │ │ ├── receipt-processing-settings.resolver.spec.ts │ │ │ └── receipt-processing-settings.resolver.ts │ │ ├── receipts/ │ │ │ ├── bulk-resolve-dialog/ │ │ │ │ ├── bulk-status-update-dialog.component.html │ │ │ │ ├── bulk-status-update-dialog.component.scss │ │ │ │ ├── bulk-status-update-dialog.component.spec.ts │ │ │ │ └── bulk-status-update-dialog.component.ts │ │ │ ├── column-configuration-dialog/ │ │ │ │ ├── column-configuration-dialog.component.html │ │ │ │ ├── column-configuration-dialog.component.scss │ │ │ │ ├── column-configuration-dialog.component.spec.ts │ │ │ │ └── column-configuration-dialog.component.ts │ │ │ ├── custom-field/ │ │ │ │ ├── custom-field.component.html │ │ │ │ ├── custom-field.component.scss │ │ │ │ ├── custom-field.component.spec.ts │ │ │ │ └── custom-field.component.ts │ │ │ ├── item-add-form/ │ │ │ │ ├── item-add-form.component.html │ │ │ │ ├── item-add-form.component.scss │ │ │ │ ├── item-add-form.component.spec.ts │ │ │ │ └── item-add-form.component.ts │ │ │ ├── item-list/ │ │ │ │ ├── item-list.component.html │ │ │ │ ├── item-list.component.scss │ │ │ │ └── item-list.component.ts │ │ │ ├── pipes/ │ │ │ │ ├── custom-field.pipe.spec.ts │ │ │ │ └── custom-field.pipe.ts │ │ │ ├── quick-actions-dialog/ │ │ │ │ ├── quick-actions-dialog.component.html │ │ │ │ ├── quick-actions-dialog.component.scss │ │ │ │ ├── quick-actions-dialog.component.spec.ts │ │ │ │ └── quick-actions-dialog.component.ts │ │ │ ├── quick-scan-dialog/ │ │ │ │ ├── quick-scan-dialog.component.html │ │ │ │ ├── quick-scan-dialog.component.scss │ │ │ │ ├── quick-scan-dialog.component.spec.ts │ │ │ │ └── quick-scan-dialog.component.ts │ │ │ ├── receipt-comments/ │ │ │ │ ├── receipt-comments.component.html │ │ │ │ ├── receipt-comments.component.scss │ │ │ │ ├── receipt-comments.component.spec.ts │ │ │ │ └── receipt-comments.component.ts │ │ │ ├── receipt-form/ │ │ │ │ ├── receipt-form.component.html │ │ │ │ ├── receipt-form.component.scss │ │ │ │ ├── receipt-form.component.spec.ts │ │ │ │ └── receipt-form.component.ts │ │ │ ├── receipts-routing.module.ts │ │ │ ├── receipts-table/ │ │ │ │ ├── receipts-table.component.html │ │ │ │ ├── receipts-table.component.scss │ │ │ │ ├── receipts-table.component.spec.ts │ │ │ │ └── receipts-table.component.ts │ │ │ ├── receipts.module.ts │ │ │ ├── share-list/ │ │ │ │ ├── share-list.component.html │ │ │ │ ├── share-list.component.scss │ │ │ │ ├── share-list.component.spec.ts │ │ │ │ └── share-list.component.ts │ │ │ ├── upload-image/ │ │ │ │ ├── upload-image.component.html │ │ │ │ ├── upload-image.component.scss │ │ │ │ ├── upload-image.component.spec.ts │ │ │ │ └── upload-image.component.ts │ │ │ ├── user-total-with-percentage.pipe.spec.ts │ │ │ ├── user-total-with-percentage.pipe.ts │ │ │ └── utils/ │ │ │ └── form.utils.ts │ │ ├── resolvers/ │ │ │ ├── categories.resolver.spec.ts │ │ │ ├── categories.resolver.ts │ │ │ ├── custom-field.resolver.spec.ts │ │ │ ├── custom-field.resolver.ts │ │ │ ├── receipt.resolver.spec.ts │ │ │ ├── receipt.resolver.ts │ │ │ ├── tags.resolver.spec.ts │ │ │ └── tags.resolver.ts │ │ ├── searchbar/ │ │ │ ├── pipes/ │ │ │ │ ├── search-result.pipe.spec.ts │ │ │ │ └── search-result.pipe.ts │ │ │ ├── searchbar/ │ │ │ │ ├── searchbar.component.html │ │ │ │ ├── searchbar.component.scss │ │ │ │ ├── searchbar.component.spec.ts │ │ │ │ └── searchbar.component.ts │ │ │ └── searchbar.module.ts │ │ ├── select/ │ │ │ ├── pipes/ │ │ │ │ ├── option-display.pipe.spec.ts │ │ │ │ ├── option-display.pipe.ts │ │ │ │ ├── readonly-value.pipe.spec.ts │ │ │ │ └── readonly-value.pipe.ts │ │ │ ├── select/ │ │ │ │ ├── select.component.html │ │ │ │ ├── select.component.scss │ │ │ │ ├── select.component.spec.ts │ │ │ │ └── select.component.ts │ │ │ └── select.module.ts │ │ ├── services/ │ │ │ ├── app-init.service.spec.ts │ │ │ ├── app-init.service.ts │ │ │ ├── base-table.service.ts │ │ │ ├── claims.service.spec.ts │ │ │ ├── claims.service.ts │ │ │ ├── environment.service.spec.ts │ │ │ ├── environment.service.ts │ │ │ ├── group-member-user.service.spec.ts │ │ │ ├── group-member-user.service.ts │ │ │ ├── index.ts │ │ │ ├── injection-tokens/ │ │ │ │ └── table-service.ts │ │ │ ├── keyboard-shortcut.service.spec.ts │ │ │ ├── keyboard-shortcut.service.ts │ │ │ ├── receipt-export.service.spec.ts │ │ │ ├── receipt-export.service.ts │ │ │ ├── receipt-filter.service.spec.ts │ │ │ ├── receipt-filter.service.ts │ │ │ ├── receipt-processing-settings-task-table.service.ts │ │ │ ├── receipt-queue.service.spec.ts │ │ │ ├── receipt-queue.service.ts │ │ │ ├── snackbar.service.spec.ts │ │ │ ├── snackbar.service.ts │ │ │ ├── system-email-task-table.service.spec.ts │ │ │ ├── system-email-task-table.service.ts │ │ │ ├── system-task-table.service.spec.ts │ │ │ ├── system-task-table.service.ts │ │ │ ├── token-refresh.service.spec.ts │ │ │ └── token-refresh.service.ts │ │ ├── settings/ │ │ │ ├── api-key-form-dialog/ │ │ │ │ ├── api-key-form-dialog.component.html │ │ │ │ ├── api-key-form-dialog.component.scss │ │ │ │ ├── api-key-form-dialog.component.spec.ts │ │ │ │ └── api-key-form-dialog.component.ts │ │ │ ├── api-key-table/ │ │ │ │ ├── api-key-table.component.html │ │ │ │ ├── api-key-table.component.scss │ │ │ │ ├── api-key-table.component.ts │ │ │ │ └── api-key-table.service.ts │ │ │ ├── api-key-table-filter/ │ │ │ │ ├── api-key-table-filter.component.html │ │ │ │ ├── api-key-table-filter.component.scss │ │ │ │ ├── api-key-table-filter.component.ts │ │ │ │ └── associated-api-key-options.ts │ │ │ ├── api-keys/ │ │ │ │ ├── api-keys.component.html │ │ │ │ ├── api-keys.component.scss │ │ │ │ └── api-keys.component.ts │ │ │ ├── delete-account-dialog/ │ │ │ │ ├── delete-account-dialog.component.html │ │ │ │ ├── delete-account-dialog.component.scss │ │ │ │ ├── delete-account-dialog.component.spec.ts │ │ │ │ └── delete-account-dialog.component.ts │ │ │ ├── settings/ │ │ │ │ ├── settings.component.html │ │ │ │ ├── settings.component.scss │ │ │ │ ├── settings.component.spec.ts │ │ │ │ └── settings.component.ts │ │ │ ├── settings-routing.module.ts │ │ │ ├── settings.module.ts │ │ │ ├── user-preferences/ │ │ │ │ ├── user-preferences.component.html │ │ │ │ ├── user-preferences.component.scss │ │ │ │ ├── user-preferences.component.spec.ts │ │ │ │ └── user-preferences.component.ts │ │ │ ├── user-profile/ │ │ │ │ ├── user-profile.component.html │ │ │ │ ├── user-profile.component.scss │ │ │ │ ├── user-profile.component.spec.ts │ │ │ │ └── user-profile.component.ts │ │ │ └── user-shortcut/ │ │ │ ├── user-shortcut.component.html │ │ │ ├── user-shortcut.component.scss │ │ │ ├── user-shortcut.component.spec.ts │ │ │ └── user-shortcut.component.ts │ │ ├── shared-ui/ │ │ │ ├── accordion/ │ │ │ │ ├── accordion-panel.interface.ts │ │ │ │ ├── accordion.component.html │ │ │ │ ├── accordion.component.scss │ │ │ │ ├── accordion.component.spec.ts │ │ │ │ └── accordion.component.ts │ │ │ ├── add-button/ │ │ │ │ ├── add-button.component.html │ │ │ │ ├── add-button.component.scss │ │ │ │ ├── add-button.component.spec.ts │ │ │ │ └── add-button.component.ts │ │ │ ├── audit-detail-section/ │ │ │ │ ├── audit-detail-section.component.html │ │ │ │ ├── audit-detail-section.component.scss │ │ │ │ ├── audit-detail-section.component.spec.ts │ │ │ │ └── audit-detail-section.component.ts │ │ │ ├── back-button/ │ │ │ │ ├── back-button.component.html │ │ │ │ ├── back-button.component.scss │ │ │ │ ├── back-button.component.spec.ts │ │ │ │ └── back-button.component.ts │ │ │ ├── base-table/ │ │ │ │ ├── base-table.component.html │ │ │ │ ├── base-table.component.scss │ │ │ │ ├── base-table.component.spec.ts │ │ │ │ └── base-table.component.ts │ │ │ ├── cancel-button/ │ │ │ │ ├── cancel-button.component.html │ │ │ │ ├── cancel-button.component.scss │ │ │ │ ├── cancel-button.component.spec.ts │ │ │ │ └── cancel-button.component.ts │ │ │ ├── card/ │ │ │ │ ├── card.component.html │ │ │ │ ├── card.component.scss │ │ │ │ ├── card.component.spec.ts │ │ │ │ └── card.component.ts │ │ │ ├── confirmation-dialog/ │ │ │ │ ├── confirmation-dialog.component.html │ │ │ │ ├── confirmation-dialog.component.scss │ │ │ │ ├── confirmation-dialog.component.spec.ts │ │ │ │ └── confirmation-dialog.component.ts │ │ │ ├── copy-button/ │ │ │ │ ├── copy-button.component.html │ │ │ │ ├── copy-button.component.scss │ │ │ │ ├── copy-button.component.spec.ts │ │ │ │ └── copy-button.component.ts │ │ │ ├── delete-button/ │ │ │ │ ├── delete-button.component.html │ │ │ │ ├── delete-button.component.scss │ │ │ │ ├── delete-button.component.spec.ts │ │ │ │ └── delete-button.component.ts │ │ │ ├── description-viewer-dialog/ │ │ │ │ ├── description-viewer-dialog.component.html │ │ │ │ ├── description-viewer-dialog.component.scss │ │ │ │ └── description-viewer-dialog.component.ts │ │ │ ├── dialog/ │ │ │ │ ├── dialog.component.html │ │ │ │ ├── dialog.component.scss │ │ │ │ ├── dialog.component.spec.ts │ │ │ │ └── dialog.component.ts │ │ │ ├── dialog-footer/ │ │ │ │ ├── dialog-footer.component.html │ │ │ │ ├── dialog-footer.component.scss │ │ │ │ ├── dialog-footer.component.spec.ts │ │ │ │ └── dialog-footer.component.ts │ │ │ ├── edit-button/ │ │ │ │ ├── edit-button.component.html │ │ │ │ ├── edit-button.component.scss │ │ │ │ ├── edit-button.component.spec.ts │ │ │ │ └── edit-button.component.ts │ │ │ ├── editable-list/ │ │ │ │ ├── editable-list.component.html │ │ │ │ ├── editable-list.component.scss │ │ │ │ ├── editable-list.component.spec.ts │ │ │ │ └── editable-list.component.ts │ │ │ ├── form/ │ │ │ │ ├── form.component.html │ │ │ │ ├── form.component.scss │ │ │ │ ├── form.component.spec.ts │ │ │ │ └── form.component.ts │ │ │ ├── form-button/ │ │ │ │ ├── form-button.component.html │ │ │ │ ├── form-button.component.scss │ │ │ │ ├── form-button.component.spec.ts │ │ │ │ └── form-button.component.ts │ │ │ ├── form-button-bar/ │ │ │ │ ├── form-button-bar.component.html │ │ │ │ ├── form-button-bar.component.scss │ │ │ │ ├── form-button-bar.component.spec.ts │ │ │ │ └── form-button-bar.component.ts │ │ │ ├── form-header/ │ │ │ │ ├── form-header.component.html │ │ │ │ ├── form-header.component.scss │ │ │ │ ├── form-header.component.spec.ts │ │ │ │ └── form-header.component.ts │ │ │ ├── form-list/ │ │ │ │ ├── form-list.component.html │ │ │ │ ├── form-list.component.scss │ │ │ │ ├── form-list.component.spec.ts │ │ │ │ └── form-list.component.ts │ │ │ ├── form-section/ │ │ │ │ ├── form-section.component.html │ │ │ │ ├── form-section.component.scss │ │ │ │ ├── form-section.component.spec.ts │ │ │ │ └── form-section.component.ts │ │ │ ├── group-autocomplete/ │ │ │ │ ├── group-autocomplete.component.html │ │ │ │ ├── group-autocomplete.component.scss │ │ │ │ ├── group-autocomplete.component.spec.ts │ │ │ │ └── group-autocomplete.component.ts │ │ │ ├── help-icon/ │ │ │ │ ├── help-icon.component.html │ │ │ │ ├── help-icon.component.scss │ │ │ │ ├── help-icon.component.spec.ts │ │ │ │ └── help-icon.component.ts │ │ │ ├── icon-autocomplete/ │ │ │ │ ├── icon-autocomplete.component.html │ │ │ │ ├── icon-autocomplete.component.scss │ │ │ │ ├── icon-autocomplete.component.spec.ts │ │ │ │ └── icon-autocomplete.component.ts │ │ │ ├── image-viewer/ │ │ │ │ ├── image-viewer.component.html │ │ │ │ ├── image-viewer.component.scss │ │ │ │ ├── image-viewer.component.spec.ts │ │ │ │ └── image-viewer.component.ts │ │ │ ├── pie-chart/ │ │ │ │ ├── pie-chart.component.html │ │ │ │ ├── pie-chart.component.scss │ │ │ │ ├── pie-chart.component.spec.ts │ │ │ │ └── pie-chart.component.ts │ │ │ ├── pretty-json/ │ │ │ │ ├── pretty-json.component.html │ │ │ │ ├── pretty-json.component.scss │ │ │ │ ├── pretty-json.component.spec.ts │ │ │ │ └── pretty-json.component.ts │ │ │ ├── queue-start-menu/ │ │ │ │ ├── queue-start-menu.component.html │ │ │ │ ├── queue-start-menu.component.scss │ │ │ │ ├── queue-start-menu.component.spec.ts │ │ │ │ └── queue-start-menu.component.ts │ │ │ ├── quick-scan-button/ │ │ │ │ ├── quick-scan-button.component.html │ │ │ │ ├── quick-scan-button.component.scss │ │ │ │ ├── quick-scan-button.component.spec.ts │ │ │ │ └── quick-scan-button.component.ts │ │ │ ├── receipt-filter/ │ │ │ │ ├── operations.pipe.spec.ts │ │ │ │ ├── operations.pipe.ts │ │ │ │ ├── receipt-filter.component.html │ │ │ │ ├── receipt-filter.component.scss │ │ │ │ ├── receipt-filter.component.spec.ts │ │ │ │ └── receipt-filter.component.ts │ │ │ ├── shared-ui.module.ts │ │ │ ├── status-chip/ │ │ │ │ ├── status-chip.component.html │ │ │ │ ├── status-chip.component.scss │ │ │ │ ├── status-chip.component.spec.ts │ │ │ │ └── status-chip.component.ts │ │ │ ├── status-icon/ │ │ │ │ ├── status-icon.component.html │ │ │ │ ├── status-icon.component.scss │ │ │ │ ├── status-icon.component.spec.ts │ │ │ │ └── status-icon.component.ts │ │ │ ├── status-select/ │ │ │ │ ├── status-select.component.html │ │ │ │ ├── status-select.component.scss │ │ │ │ ├── status-select.component.spec.ts │ │ │ │ └── status-select.component.ts │ │ │ ├── submit-button/ │ │ │ │ ├── submit-button.component.html │ │ │ │ ├── submit-button.component.scss │ │ │ │ ├── submit-button.component.spec.ts │ │ │ │ └── submit-button.component.ts │ │ │ ├── summary-card/ │ │ │ │ ├── summary-card.component.html │ │ │ │ ├── summary-card.component.scss │ │ │ │ ├── summary-card.component.spec.ts │ │ │ │ └── summary-card.component.ts │ │ │ ├── table-header/ │ │ │ │ ├── table-header.component.html │ │ │ │ ├── table-header.component.scss │ │ │ │ ├── table-header.component.spec.ts │ │ │ │ └── table-header.component.ts │ │ │ ├── tabs/ │ │ │ │ ├── tab-config.interface.ts │ │ │ │ ├── tabs.component.html │ │ │ │ ├── tabs.component.scss │ │ │ │ ├── tabs.component.spec.ts │ │ │ │ └── tabs.component.ts │ │ │ └── task-table/ │ │ │ ├── pretty-json.pipe.spec.ts │ │ │ ├── pretty-json.pipe.ts │ │ │ ├── system-task-type.pipe.spec.ts │ │ │ ├── system-task-type.pipe.ts │ │ │ ├── task-table.component.html │ │ │ ├── task-table.component.scss │ │ │ ├── task-table.component.spec.ts │ │ │ └── task-table.component.ts │ │ ├── slide-toggle/ │ │ │ ├── slide-toggle/ │ │ │ │ ├── slide-toggle.component.html │ │ │ │ ├── slide-toggle.component.scss │ │ │ │ ├── slide-toggle.component.spec.ts │ │ │ │ └── slide-toggle.component.ts │ │ │ └── slide-toggle.module.ts │ │ ├── standalone/ │ │ │ └── components/ │ │ │ ├── date-block/ │ │ │ │ ├── date-block.component.html │ │ │ │ ├── date-block.component.scss │ │ │ │ ├── date-block.component.spec.ts │ │ │ │ └── date-block.component.ts │ │ │ ├── export-button/ │ │ │ │ ├── export-button.component.html │ │ │ │ ├── export-button.component.scss │ │ │ │ ├── export-button.component.spec.ts │ │ │ │ └── export-button.component.ts │ │ │ └── filtered-stateful-menu/ │ │ │ ├── filtered-stateful-menu.component.html │ │ │ ├── filtered-stateful-menu.component.scss │ │ │ ├── filtered-stateful-menu.component.spec.ts │ │ │ ├── filtered-stateful-menu.component.ts │ │ │ └── stateful-menu-item.ts │ │ ├── store/ │ │ │ ├── about-state.interface.ts │ │ │ ├── about.state.actions.ts │ │ │ ├── about.state.ts │ │ │ ├── api-key-table.state.actions.ts │ │ │ ├── api-key-table.state.ts │ │ │ ├── auth-state.interface.ts │ │ │ ├── auth.state.actions.ts │ │ │ ├── auth.state.ts │ │ │ ├── category-table.state.actions.ts │ │ │ ├── category-table.state.ts │ │ │ ├── custom-field-table.state.actions.ts │ │ │ ├── custom-field-table.state.ts │ │ │ ├── dashboard.state.actions.ts │ │ │ ├── dashboard.state.ts │ │ │ ├── feature-config.state.actions.ts │ │ │ ├── feature-config.state.ts │ │ │ ├── group-table.state.actions.ts │ │ │ ├── group-table.state.ts │ │ │ ├── group.state.actions.ts │ │ │ ├── group.state.ts │ │ │ ├── index.ts │ │ │ ├── layout.state.actions.ts │ │ │ ├── layout.state.ts │ │ │ ├── paged-table.state.actions.ts │ │ │ ├── paged-table.state.ts │ │ │ ├── prompt-table.state.actions.ts │ │ │ ├── prompt-table.state.ts │ │ │ ├── receipt-processing-settings-table.state.actions.ts │ │ │ ├── receipt-processing-settings-table.state.ts │ │ │ ├── receipt-processing-settings-task-table.state.actions.ts │ │ │ ├── receipt-processing-settings-task-table.state.ts │ │ │ ├── receipt-table.actions.ts │ │ │ ├── receipt-table.state.spec.ts │ │ │ ├── receipt-table.state.ts │ │ │ ├── store.module.ts │ │ │ ├── system-email-table.state.actions.ts │ │ │ ├── system-email-table.state.ts │ │ │ ├── system-email-task-table.state.actions.ts │ │ │ ├── system-email-task-table.state.ts │ │ │ ├── system-settings.state.actions.ts │ │ │ ├── system-settings.state.ts │ │ │ ├── system-task-table.state.actions.ts │ │ │ ├── system-task-table.state.spec.ts │ │ │ ├── system-task-table.state.ts │ │ │ ├── tag-table.state.actions.ts │ │ │ ├── tag-table.state.ts │ │ │ ├── user.state.actions.ts │ │ │ └── user.state.ts │ │ ├── styles.scss │ │ ├── system-settings/ │ │ │ ├── pipes/ │ │ │ │ ├── task-queue-form-control.pipe.spec.ts │ │ │ │ └── task-queue-form-control.pipe.ts │ │ │ ├── resolvers/ │ │ │ │ ├── receipt-processing-settings.resolver.ts │ │ │ │ ├── system-email.resolver.ts │ │ │ │ └── system-settings.resolver.ts │ │ │ ├── system-email-child-system-task/ │ │ │ │ ├── system-email-child-system-task.component.html │ │ │ │ ├── system-email-child-system-task.component.scss │ │ │ │ ├── system-email-child-system-task.component.spec.ts │ │ │ │ └── system-email-child-system-task.component.ts │ │ │ ├── system-email-form/ │ │ │ │ ├── system-email-form.component.html │ │ │ │ ├── system-email-form.component.scss │ │ │ │ ├── system-email-form.component.spec.ts │ │ │ │ └── system-email-form.component.ts │ │ │ ├── system-email-table/ │ │ │ │ ├── all-groups.resolver.ts │ │ │ │ ├── system-email-table.component.html │ │ │ │ ├── system-email-table.component.scss │ │ │ │ ├── system-email-table.component.spec.ts │ │ │ │ └── system-email-table.component.ts │ │ │ ├── system-settings/ │ │ │ │ ├── system-settings.component.html │ │ │ │ ├── system-settings.component.scss │ │ │ │ ├── system-settings.component.spec.ts │ │ │ │ └── system-settings.component.ts │ │ │ ├── system-settings-form/ │ │ │ │ ├── system-settings-form.component.html │ │ │ │ ├── system-settings-form.component.scss │ │ │ │ ├── system-settings-form.component.spec.ts │ │ │ │ └── system-settings-form.component.ts │ │ │ ├── system-settings-routing.module.ts │ │ │ ├── system-settings.module.ts │ │ │ └── system-task-table/ │ │ │ ├── system-task-table.component.html │ │ │ ├── system-task-table.component.scss │ │ │ ├── system-task-table.component.spec.ts │ │ │ └── system-task-table.component.ts │ │ ├── table/ │ │ │ ├── table/ │ │ │ │ ├── row-expandable.pipe.spec.ts │ │ │ │ ├── row-expandable.pipe.ts │ │ │ │ ├── table.component.html │ │ │ │ ├── table.component.scss │ │ │ │ ├── table.component.spec.ts │ │ │ │ └── table.component.ts │ │ │ ├── table-column.interface.ts │ │ │ └── table.module.ts │ │ ├── tag-autocomplete/ │ │ │ ├── tag-autocomplete.component.html │ │ │ ├── tag-autocomplete.component.scss │ │ │ ├── tag-autocomplete.component.spec.ts │ │ │ └── tag-autocomplete.component.ts │ │ ├── tags/ │ │ │ ├── tag-form/ │ │ │ │ ├── tag-form.component.html │ │ │ │ ├── tag-form.component.scss │ │ │ │ ├── tag-form.component.spec.ts │ │ │ │ └── tag-form.component.ts │ │ │ ├── tag-table/ │ │ │ │ ├── tag-table.component.html │ │ │ │ ├── tag-table.component.scss │ │ │ │ ├── tag-table.component.spec.ts │ │ │ │ └── tag-table.component.ts │ │ │ ├── tags-routing.module.ts │ │ │ └── tags.module.ts │ │ ├── textarea/ │ │ │ ├── textarea/ │ │ │ │ ├── textarea.component.html │ │ │ │ ├── textarea.component.scss │ │ │ │ ├── textarea.component.spec.ts │ │ │ │ └── textarea.component.ts │ │ │ └── textarea.module.ts │ │ ├── user/ │ │ │ ├── dummy-user-conversion-dialog/ │ │ │ │ ├── dummy-user-conversion-dialog.component.html │ │ │ │ ├── dummy-user-conversion-dialog.component.scss │ │ │ │ ├── dummy-user-conversion-dialog.component.spec.ts │ │ │ │ └── dummy-user-conversion-dialog.component.ts │ │ │ ├── reset-password/ │ │ │ │ ├── reset-password.component.html │ │ │ │ ├── reset-password.component.scss │ │ │ │ ├── reset-password.component.spec.ts │ │ │ │ └── reset-password.component.ts │ │ │ ├── user-form/ │ │ │ │ ├── user-form.component.html │ │ │ │ ├── user-form.component.scss │ │ │ │ ├── user-form.component.spec.ts │ │ │ │ └── user-form.component.ts │ │ │ ├── user-list/ │ │ │ │ ├── user-list.component.html │ │ │ │ ├── user-list.component.scss │ │ │ │ ├── user-list.component.spec.ts │ │ │ │ └── user-list.component.ts │ │ │ ├── user-routing.module.ts │ │ │ └── user.module.ts │ │ ├── user-autocomplete/ │ │ │ ├── user-autocomplete/ │ │ │ │ ├── user-autocomplete.component.html │ │ │ │ ├── user-autocomplete.component.scss │ │ │ │ ├── user-autocomplete.component.spec.ts │ │ │ │ └── user-autocomplete.component.ts │ │ │ └── user-autocomplete.module.ts │ │ ├── utils/ │ │ │ ├── app-data.utill.ts │ │ │ ├── file.ts │ │ │ ├── form.utils.ts │ │ │ ├── group.utils.spec.ts │ │ │ ├── group.utils.ts │ │ │ ├── index.ts │ │ │ ├── paramterized-data.parser.spec.ts │ │ │ ├── paramterterized-data-parser.ts │ │ │ ├── receipt-filter.ts │ │ │ ├── sort-by-displayname.ts │ │ │ └── status.utils.ts │ │ ├── validators/ │ │ │ ├── duplicate-validator.ts │ │ │ ├── index.ts │ │ │ └── user-validators.ts │ │ └── variables.scss │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── docker/ │ ├── Dockerfile │ ├── LICENSE │ ├── README.md │ ├── default.conf │ ├── dev/ │ │ └── Dockerfile │ └── entrypoint.sh ├── mobile/ │ ├── .gitignore │ ├── .metadata │ ├── .openapi-generator/ │ │ ├── FILES │ │ └── VERSION │ ├── .travis.yml │ ├── CLAUDE.md │ ├── README.md │ ├── analysis_options.yaml │ ├── android/ │ │ ├── .gitignore │ │ ├── app/ │ │ │ ├── build.gradle │ │ │ ├── release/ │ │ │ │ └── app-release.aab │ │ │ └── src/ │ │ │ ├── debug/ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── main/ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── assets/ │ │ │ │ │ ├── capacitor.config.json │ │ │ │ │ ├── capacitor.plugins.json │ │ │ │ │ └── public/ │ │ │ │ │ ├── 1315.889df76956ff23ca.js │ │ │ │ │ ├── 1372.adec2e4e15de229e.js │ │ │ │ │ ├── 1745.3c8be738e4ed3473.js │ │ │ │ │ ├── 185.e77de020be41917f.js │ │ │ │ │ ├── 2841.0bc48a5b325bfb25.js │ │ │ │ │ ├── 2975.e586449a75f61839.js │ │ │ │ │ ├── 3150.5ae5046a8a6f3f3c.js │ │ │ │ │ ├── 3483.42f8d84de3c6de1b.js │ │ │ │ │ ├── 3544.e4a87e0193f7d36c.js │ │ │ │ │ ├── 3672.b43100ea07272033.js │ │ │ │ │ ├── 3734.77fa8da2119d4aac.js │ │ │ │ │ ├── 3998.719b8513be715b74.js │ │ │ │ │ ├── 3rdpartylicenses.txt │ │ │ │ │ ├── 4087.31a09dafb629fd16.js │ │ │ │ │ ├── 4090.5e1ea55e09eb2f12.js │ │ │ │ │ ├── 433.3bc4840c1f5eb2b3.js │ │ │ │ │ ├── 4458.44be36ff4581eb32.js │ │ │ │ │ ├── 4530.0abd72787f9e91dc.js │ │ │ │ │ ├── 4675.6ccbe3fbb2b06ecb.js │ │ │ │ │ ├── 469.dc0e146587f2129b.js │ │ │ │ │ ├── 4764.090d271cb454d91f.js │ │ │ │ │ ├── 4882.843a9b809ef86c9d.js │ │ │ │ │ ├── 505.c83e6d8d552a8bb9.js │ │ │ │ │ ├── 5248.b4df00225e7d8231.js │ │ │ │ │ ├── 5260.38639ab137eebcbc.js │ │ │ │ │ ├── 5454.f4d8a62537982558.js │ │ │ │ │ ├── 5675.821e04955152c08f.js │ │ │ │ │ ├── 5860.0ac8af25bc16129a.js │ │ │ │ │ ├── 5962.58545b793039a734.js │ │ │ │ │ ├── 6304.4bec75a89dd581c3.js │ │ │ │ │ ├── 6416.d2723744cffdb9ec.js │ │ │ │ │ ├── 6642.58d302101b401ed9.js │ │ │ │ │ ├── 6673.9819b24f769fce0c.js │ │ │ │ │ ├── 6754.5772d3dd67e63dbc.js │ │ │ │ │ ├── 7059.d953cea4f12e1b2d.js │ │ │ │ │ ├── 7219.fe028ba572aafee0.js │ │ │ │ │ ├── 7250.dd7a58df6c68d73e.js │ │ │ │ │ ├── 7465.5b9aa191ea4695f4.js │ │ │ │ │ ├── 7624.7cda70322a5d4667.js │ │ │ │ │ ├── 7635.624d22499a5c00ab.js │ │ │ │ │ ├── 7666.1fffcc2354ea9e7e.js │ │ │ │ │ ├── 8382.210b66356588e32b.js │ │ │ │ │ ├── 8484.edcc115af7c0b396.js │ │ │ │ │ ├── 8577.2b2bc8d2ce36c186.js │ │ │ │ │ ├── 8594.6e8e4b8ff83f929b.js │ │ │ │ │ ├── 8633.85e2f6cee2a1b8c5.js │ │ │ │ │ ├── 8811.bf59c840512ceced.js │ │ │ │ │ ├── 8866.f0403804618ee8bd.js │ │ │ │ │ ├── 9352.717af8fb47bada66.js │ │ │ │ │ ├── 9588.22fd9fd752c53fa9.js │ │ │ │ │ ├── 962.3fb0dac75d94cc95.js │ │ │ │ │ ├── 9793.424c80d25d4c1bb9.js │ │ │ │ │ ├── 9820.cc510d6e61612b37.js │ │ │ │ │ ├── 9857.cd96d3ee191f805d.js │ │ │ │ │ ├── 9882.c8bde9328055ee13.js │ │ │ │ │ ├── 9992.03fca68ad09864e7.js │ │ │ │ │ ├── common.a7d01b8de5a7fa76.js │ │ │ │ │ ├── cordova.js │ │ │ │ │ ├── cordova_plugins.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── main.8e4faf21f7692e8d.js │ │ │ │ │ ├── polyfills-core-js.93f56369317b7a8e.js │ │ │ │ │ ├── polyfills-dom.516ff539260f3e0d.js │ │ │ │ │ ├── polyfills.441dd4ca9dc0674f.js │ │ │ │ │ ├── runtime.da0ab16fef030a85.js │ │ │ │ │ └── styles.e0a65e1d3857b3bb.css │ │ │ │ ├── kotlin/ │ │ │ │ │ └── com/ │ │ │ │ │ └── example/ │ │ │ │ │ └── receipt_wrangler_mobile/ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res/ │ │ │ │ ├── drawable/ │ │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable-v21/ │ │ │ │ │ └── launch_background.xml │ │ │ │ ├── values/ │ │ │ │ │ └── styles.xml │ │ │ │ ├── values-night/ │ │ │ │ │ └── styles.xml │ │ │ │ ├── values-night-v31/ │ │ │ │ │ └── styles.xml │ │ │ │ ├── values-v31/ │ │ │ │ │ └── styles.xml │ │ │ │ └── xml/ │ │ │ │ └── config.xml │ │ │ └── profile/ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── capacitor-cordova-android-plugins/ │ │ │ ├── build.gradle │ │ │ ├── cordova.variables.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── java/ │ │ │ │ └── .gitkeep │ │ │ └── res/ │ │ │ └── .gitkeep │ │ ├── gradle/ │ │ │ └── wrapper/ │ │ │ └── gradle-wrapper.properties │ │ ├── gradle.properties │ │ └── settings.gradle │ ├── api/ │ │ ├── .gitignore │ │ ├── .openapi-generator/ │ │ │ ├── FILES │ │ │ └── VERSION │ │ ├── .openapi-generator-ignore │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── doc/ │ │ │ ├── About.md │ │ │ ├── Activity.md │ │ │ ├── AiType.md │ │ │ ├── ApiKeyApi.md │ │ │ ├── ApiKeyFilter.md │ │ │ ├── ApiKeyResult.md │ │ │ ├── ApiKeyScope.md │ │ │ ├── ApiKeyView.md │ │ │ ├── AppData.md │ │ │ ├── AssociatedApiKeys.md │ │ │ ├── AssociatedEntityType.md │ │ │ ├── AssociatedGroup.md │ │ │ ├── AuthApi.md │ │ │ ├── BaseModel.md │ │ │ ├── BulkStatusUpdateCommand.md │ │ │ ├── BulkUserDeleteCommand.md │ │ │ ├── Category.md │ │ │ ├── CategoryApi.md │ │ │ ├── CategoryView.md │ │ │ ├── ChartGrouping.md │ │ │ ├── CheckEmailConnectivityCommand.md │ │ │ ├── CheckReceiptProcessingSettingsConnectivityCommand.md │ │ │ ├── Claims.md │ │ │ ├── Comment.md │ │ │ ├── CommentApi.md │ │ │ ├── CurrencySeparator.md │ │ │ ├── CurrencySymbolPosition.md │ │ │ ├── CustomField.md │ │ │ ├── CustomFieldApi.md │ │ │ ├── CustomFieldOption.md │ │ │ ├── CustomFieldType.md │ │ │ ├── CustomFieldValue.md │ │ │ ├── Dashboard.md │ │ │ ├── DashboardApi.md │ │ │ ├── DeleteAccountCommand.md │ │ │ ├── EncodedImage.md │ │ │ ├── ExportApi.md │ │ │ ├── ExportFormat.md │ │ │ ├── FeatureConfig.md │ │ │ ├── FeatureConfigApi.md │ │ │ ├── FileData.md │ │ │ ├── FileDataView.md │ │ │ ├── FilterOperation.md │ │ │ ├── GetNewRefreshToken200Response.md │ │ │ ├── GetSystemTaskCommand.md │ │ │ ├── Group.md │ │ │ ├── GroupFilter.md │ │ │ ├── GroupMember.md │ │ │ ├── GroupReceiptSettings.md │ │ │ ├── GroupRole.md │ │ │ ├── GroupSettings.md │ │ │ ├── GroupSettingsWhiteListEmail.md │ │ │ ├── GroupStatus.md │ │ │ ├── GroupsApi.md │ │ │ ├── Icon.md │ │ │ ├── ImportApi.md │ │ │ ├── ImportType.md │ │ │ ├── InternalErrorResponse.md │ │ │ ├── Item.md │ │ │ ├── ItemStatus.md │ │ │ ├── LoginCommand.md │ │ │ ├── LogoutCommand.md │ │ │ ├── MagicFillCommand.md │ │ │ ├── Notification.md │ │ │ ├── NotificationsApi.md │ │ │ ├── OcrEngine.md │ │ │ ├── PagedActivityRequestCommand.md │ │ │ ├── PagedApiKeyRequestCommand.md │ │ │ ├── PagedData.md │ │ │ ├── PagedDataDataInner.md │ │ │ ├── PagedGroupRequestCommand.md │ │ │ ├── PagedRequestCommand.md │ │ │ ├── PagedRequestField.md │ │ │ ├── PagedRequestFieldValue.md │ │ │ ├── PieChartData.md │ │ │ ├── PieChartDataCommand.md │ │ │ ├── PieChartDataPoint.md │ │ │ ├── Prompt.md │ │ │ ├── PromptApi.md │ │ │ ├── QueueName.md │ │ │ ├── Receipt.md │ │ │ ├── ReceiptApi.md │ │ │ ├── ReceiptImageApi.md │ │ │ ├── ReceiptPagedRequestCommand.md │ │ │ ├── ReceiptPagedRequestFilter.md │ │ │ ├── ReceiptProcessingSettings.md │ │ │ ├── ReceiptProcessingSettingsApi.md │ │ │ ├── ReceiptStatus.md │ │ │ ├── ResetPasswordCommand.md │ │ │ ├── SearchApi.md │ │ │ ├── SearchResult.md │ │ │ ├── SignUpCommand.md │ │ │ ├── SortDirection.md │ │ │ ├── SubjectLineRegex.md │ │ │ ├── SystemEmail.md │ │ │ ├── SystemEmailApi.md │ │ │ ├── SystemSettings.md │ │ │ ├── SystemSettingsApi.md │ │ │ ├── SystemTask.md │ │ │ ├── SystemTaskApi.md │ │ │ ├── SystemTaskStatus.md │ │ │ ├── SystemTaskType.md │ │ │ ├── Tag.md │ │ │ ├── TagApi.md │ │ │ ├── TagView.md │ │ │ ├── TaskQueueConfiguration.md │ │ │ ├── TokenPair.md │ │ │ ├── UpdateGroupReceiptSettingsCommand.md │ │ │ ├── UpdateGroupSettingsCommand.md │ │ │ ├── UpdateProfileCommand.md │ │ │ ├── UpsertApiKeyCommand.md │ │ │ ├── UpsertCategoryCommand.md │ │ │ ├── UpsertCommentCommand.md │ │ │ ├── UpsertCustomFieldCommand.md │ │ │ ├── UpsertCustomFieldOptionCommand.md │ │ │ ├── UpsertCustomFieldValueCommand.md │ │ │ ├── UpsertDashboardCommand.md │ │ │ ├── UpsertGroupCommand.md │ │ │ ├── UpsertGroupMemberCommand.md │ │ │ ├── UpsertItemCommand.md │ │ │ ├── UpsertPromptCommand.md │ │ │ ├── UpsertReceiptCommand.md │ │ │ ├── UpsertReceiptProcessingSettingsCommand.md │ │ │ ├── UpsertSystemEmailCommand.md │ │ │ ├── UpsertSystemSettingsCommand.md │ │ │ ├── UpsertTagCommand.md │ │ │ ├── UpsertTaskQueueConfiguration.md │ │ │ ├── UpsertWidgetCommand.md │ │ │ ├── User.md │ │ │ ├── UserApi.md │ │ │ ├── UserPreferences.md │ │ │ ├── UserPreferencesApi.md │ │ │ ├── UserRole.md │ │ │ ├── UserShortcut.md │ │ │ ├── UserView.md │ │ │ ├── Widget.md │ │ │ ├── WidgetApi.md │ │ │ └── WidgetType.md │ │ ├── lib/ │ │ │ ├── openapi.dart │ │ │ └── src/ │ │ │ ├── api/ │ │ │ │ ├── api_key_api.dart │ │ │ │ ├── auth_api.dart │ │ │ │ ├── category_api.dart │ │ │ │ ├── comment_api.dart │ │ │ │ ├── custom_field_api.dart │ │ │ │ ├── dashboard_api.dart │ │ │ │ ├── export_api.dart │ │ │ │ ├── feature_config_api.dart │ │ │ │ ├── groups_api.dart │ │ │ │ ├── import_api.dart │ │ │ │ ├── notifications_api.dart │ │ │ │ ├── prompt_api.dart │ │ │ │ ├── receipt_api.dart │ │ │ │ ├── receipt_image_api.dart │ │ │ │ ├── receipt_processing_settings_api.dart │ │ │ │ ├── search_api.dart │ │ │ │ ├── system_email_api.dart │ │ │ │ ├── system_settings_api.dart │ │ │ │ ├── system_task_api.dart │ │ │ │ ├── tag_api.dart │ │ │ │ ├── user_api.dart │ │ │ │ ├── user_preferences_api.dart │ │ │ │ └── widget_api.dart │ │ │ ├── api.dart │ │ │ ├── api_util.dart │ │ │ ├── auth/ │ │ │ │ ├── api_key_auth.dart │ │ │ │ ├── auth.dart │ │ │ │ ├── basic_auth.dart │ │ │ │ ├── bearer_auth.dart │ │ │ │ └── oauth.dart │ │ │ ├── date_serializer.dart │ │ │ ├── model/ │ │ │ │ ├── about.dart │ │ │ │ ├── about.g.dart │ │ │ │ ├── activity.dart │ │ │ │ ├── activity.g.dart │ │ │ │ ├── ai_type.dart │ │ │ │ ├── ai_type.g.dart │ │ │ │ ├── api_key_filter.dart │ │ │ │ ├── api_key_filter.g.dart │ │ │ │ ├── api_key_result.dart │ │ │ │ ├── api_key_result.g.dart │ │ │ │ ├── api_key_scope.dart │ │ │ │ ├── api_key_scope.g.dart │ │ │ │ ├── api_key_view.dart │ │ │ │ ├── api_key_view.g.dart │ │ │ │ ├── app_data.dart │ │ │ │ ├── app_data.g.dart │ │ │ │ ├── associated_api_keys.dart │ │ │ │ ├── associated_api_keys.g.dart │ │ │ │ ├── associated_entity_type.dart │ │ │ │ ├── associated_entity_type.g.dart │ │ │ │ ├── associated_group.dart │ │ │ │ ├── associated_group.g.dart │ │ │ │ ├── base_model.dart │ │ │ │ ├── base_model.g.dart │ │ │ │ ├── bulk_status_update_command.dart │ │ │ │ ├── bulk_status_update_command.g.dart │ │ │ │ ├── bulk_user_delete_command.dart │ │ │ │ ├── bulk_user_delete_command.g.dart │ │ │ │ ├── category.dart │ │ │ │ ├── category.g.dart │ │ │ │ ├── category_view.dart │ │ │ │ ├── category_view.g.dart │ │ │ │ ├── chart_grouping.dart │ │ │ │ ├── chart_grouping.g.dart │ │ │ │ ├── check_email_connectivity_command.dart │ │ │ │ ├── check_email_connectivity_command.g.dart │ │ │ │ ├── check_receipt_processing_settings_connectivity_command.dart │ │ │ │ ├── check_receipt_processing_settings_connectivity_command.g.dart │ │ │ │ ├── claims.dart │ │ │ │ ├── claims.g.dart │ │ │ │ ├── comment.dart │ │ │ │ ├── comment.g.dart │ │ │ │ ├── currency_separator.dart │ │ │ │ ├── currency_separator.g.dart │ │ │ │ ├── currency_symbol_position.dart │ │ │ │ ├── currency_symbol_position.g.dart │ │ │ │ ├── custom_field.dart │ │ │ │ ├── custom_field.g.dart │ │ │ │ ├── custom_field_option.dart │ │ │ │ ├── custom_field_option.g.dart │ │ │ │ ├── custom_field_type.dart │ │ │ │ ├── custom_field_type.g.dart │ │ │ │ ├── custom_field_value.dart │ │ │ │ ├── custom_field_value.g.dart │ │ │ │ ├── dashboard.dart │ │ │ │ ├── dashboard.g.dart │ │ │ │ ├── date.dart │ │ │ │ ├── delete_account_command.dart │ │ │ │ ├── delete_account_command.g.dart │ │ │ │ ├── encoded_image.dart │ │ │ │ ├── encoded_image.g.dart │ │ │ │ ├── export_format.dart │ │ │ │ ├── export_format.g.dart │ │ │ │ ├── feature_config.dart │ │ │ │ ├── feature_config.g.dart │ │ │ │ ├── file_data.dart │ │ │ │ ├── file_data.g.dart │ │ │ │ ├── file_data_view.dart │ │ │ │ ├── file_data_view.g.dart │ │ │ │ ├── filter_operation.dart │ │ │ │ ├── filter_operation.g.dart │ │ │ │ ├── get_new_refresh_token200_response.dart │ │ │ │ ├── get_new_refresh_token200_response.g.dart │ │ │ │ ├── get_system_task_command.dart │ │ │ │ ├── get_system_task_command.g.dart │ │ │ │ ├── group.dart │ │ │ │ ├── group.g.dart │ │ │ │ ├── group_filter.dart │ │ │ │ ├── group_filter.g.dart │ │ │ │ ├── group_member.dart │ │ │ │ ├── group_member.g.dart │ │ │ │ ├── group_receipt_settings.dart │ │ │ │ ├── group_receipt_settings.g.dart │ │ │ │ ├── group_role.dart │ │ │ │ ├── group_role.g.dart │ │ │ │ ├── group_settings.dart │ │ │ │ ├── group_settings.g.dart │ │ │ │ ├── group_settings_white_list_email.dart │ │ │ │ ├── group_settings_white_list_email.g.dart │ │ │ │ ├── group_status.dart │ │ │ │ ├── group_status.g.dart │ │ │ │ ├── icon.dart │ │ │ │ ├── icon.g.dart │ │ │ │ ├── import_type.dart │ │ │ │ ├── import_type.g.dart │ │ │ │ ├── internal_error_response.dart │ │ │ │ ├── internal_error_response.g.dart │ │ │ │ ├── item.dart │ │ │ │ ├── item.g.dart │ │ │ │ ├── item_status.dart │ │ │ │ ├── item_status.g.dart │ │ │ │ ├── login_command.dart │ │ │ │ ├── login_command.g.dart │ │ │ │ ├── logout_command.dart │ │ │ │ ├── logout_command.g.dart │ │ │ │ ├── magic_fill_command.dart │ │ │ │ ├── magic_fill_command.g.dart │ │ │ │ ├── notification.dart │ │ │ │ ├── notification.g.dart │ │ │ │ ├── ocr_engine.dart │ │ │ │ ├── ocr_engine.g.dart │ │ │ │ ├── paged_activity_request_command.dart │ │ │ │ ├── paged_activity_request_command.g.dart │ │ │ │ ├── paged_api_key_request_command.dart │ │ │ │ ├── paged_api_key_request_command.g.dart │ │ │ │ ├── paged_data.dart │ │ │ │ ├── paged_data.g.dart │ │ │ │ ├── paged_data_data_inner.dart │ │ │ │ ├── paged_data_data_inner.g.dart │ │ │ │ ├── paged_group_request_command.dart │ │ │ │ ├── paged_group_request_command.g.dart │ │ │ │ ├── paged_request_command.dart │ │ │ │ ├── paged_request_command.g.dart │ │ │ │ ├── paged_request_field.dart │ │ │ │ ├── paged_request_field.g.dart │ │ │ │ ├── paged_request_field_value.dart │ │ │ │ ├── paged_request_field_value.g.dart │ │ │ │ ├── pie_chart_data.dart │ │ │ │ ├── pie_chart_data.g.dart │ │ │ │ ├── pie_chart_data_command.dart │ │ │ │ ├── pie_chart_data_command.g.dart │ │ │ │ ├── pie_chart_data_point.dart │ │ │ │ ├── pie_chart_data_point.g.dart │ │ │ │ ├── prompt.dart │ │ │ │ ├── prompt.g.dart │ │ │ │ ├── queue_name.dart │ │ │ │ ├── queue_name.g.dart │ │ │ │ ├── receipt.dart │ │ │ │ ├── receipt.g.dart │ │ │ │ ├── receipt_paged_request_command.dart │ │ │ │ ├── receipt_paged_request_command.g.dart │ │ │ │ ├── receipt_paged_request_filter.dart │ │ │ │ ├── receipt_paged_request_filter.g.dart │ │ │ │ ├── receipt_processing_settings.dart │ │ │ │ ├── receipt_processing_settings.g.dart │ │ │ │ ├── receipt_status.dart │ │ │ │ ├── receipt_status.g.dart │ │ │ │ ├── reset_password_command.dart │ │ │ │ ├── reset_password_command.g.dart │ │ │ │ ├── search_result.dart │ │ │ │ ├── search_result.g.dart │ │ │ │ ├── sign_up_command.dart │ │ │ │ ├── sign_up_command.g.dart │ │ │ │ ├── sort_direction.dart │ │ │ │ ├── sort_direction.g.dart │ │ │ │ ├── subject_line_regex.dart │ │ │ │ ├── subject_line_regex.g.dart │ │ │ │ ├── system_email.dart │ │ │ │ ├── system_email.g.dart │ │ │ │ ├── system_settings.dart │ │ │ │ ├── system_settings.g.dart │ │ │ │ ├── system_task.dart │ │ │ │ ├── system_task.g.dart │ │ │ │ ├── system_task_status.dart │ │ │ │ ├── system_task_status.g.dart │ │ │ │ ├── system_task_type.dart │ │ │ │ ├── system_task_type.g.dart │ │ │ │ ├── tag.dart │ │ │ │ ├── tag.g.dart │ │ │ │ ├── tag_view.dart │ │ │ │ ├── tag_view.g.dart │ │ │ │ ├── task_queue_configuration.dart │ │ │ │ ├── task_queue_configuration.g.dart │ │ │ │ ├── token_pair.dart │ │ │ │ ├── token_pair.g.dart │ │ │ │ ├── update_group_receipt_settings_command.dart │ │ │ │ ├── update_group_receipt_settings_command.g.dart │ │ │ │ ├── update_group_settings_command.dart │ │ │ │ ├── update_group_settings_command.g.dart │ │ │ │ ├── update_profile_command.dart │ │ │ │ ├── update_profile_command.g.dart │ │ │ │ ├── upsert_api_key_command.dart │ │ │ │ ├── upsert_api_key_command.g.dart │ │ │ │ ├── upsert_category_command.dart │ │ │ │ ├── upsert_category_command.g.dart │ │ │ │ ├── upsert_comment_command.dart │ │ │ │ ├── upsert_comment_command.g.dart │ │ │ │ ├── upsert_custom_field_command.dart │ │ │ │ ├── upsert_custom_field_command.g.dart │ │ │ │ ├── upsert_custom_field_option_command.dart │ │ │ │ ├── upsert_custom_field_option_command.g.dart │ │ │ │ ├── upsert_custom_field_value_command.dart │ │ │ │ ├── upsert_custom_field_value_command.g.dart │ │ │ │ ├── upsert_dashboard_command.dart │ │ │ │ ├── upsert_dashboard_command.g.dart │ │ │ │ ├── upsert_group_command.dart │ │ │ │ ├── upsert_group_command.g.dart │ │ │ │ ├── upsert_group_member_command.dart │ │ │ │ ├── upsert_group_member_command.g.dart │ │ │ │ ├── upsert_item_command.dart │ │ │ │ ├── upsert_item_command.g.dart │ │ │ │ ├── upsert_prompt_command.dart │ │ │ │ ├── upsert_prompt_command.g.dart │ │ │ │ ├── upsert_receipt_command.dart │ │ │ │ ├── upsert_receipt_command.g.dart │ │ │ │ ├── upsert_receipt_processing_settings_command.dart │ │ │ │ ├── upsert_receipt_processing_settings_command.g.dart │ │ │ │ ├── upsert_system_email_command.dart │ │ │ │ ├── upsert_system_email_command.g.dart │ │ │ │ ├── upsert_system_settings_command.dart │ │ │ │ ├── upsert_system_settings_command.g.dart │ │ │ │ ├── upsert_tag_command.dart │ │ │ │ ├── upsert_tag_command.g.dart │ │ │ │ ├── upsert_task_queue_configuration.dart │ │ │ │ ├── upsert_task_queue_configuration.g.dart │ │ │ │ ├── upsert_widget_command.dart │ │ │ │ ├── upsert_widget_command.g.dart │ │ │ │ ├── user.dart │ │ │ │ ├── user.g.dart │ │ │ │ ├── user_preferences.dart │ │ │ │ ├── user_preferences.g.dart │ │ │ │ ├── user_role.dart │ │ │ │ ├── user_role.g.dart │ │ │ │ ├── user_shortcut.dart │ │ │ │ ├── user_shortcut.g.dart │ │ │ │ ├── user_view.dart │ │ │ │ ├── user_view.g.dart │ │ │ │ ├── widget.dart │ │ │ │ ├── widget.g.dart │ │ │ │ ├── widget_type.dart │ │ │ │ └── widget_type.g.dart │ │ │ ├── serializers.dart │ │ │ └── serializers.g.dart │ │ ├── pubspec.yaml │ │ └── test/ │ │ ├── about_test.dart │ │ ├── activity_test.dart │ │ ├── ai_type_test.dart │ │ ├── api_key_api_test.dart │ │ ├── api_key_filter_test.dart │ │ ├── api_key_result_test.dart │ │ ├── api_key_scope_test.dart │ │ ├── api_key_view_test.dart │ │ ├── app_data_test.dart │ │ ├── associated_api_keys_test.dart │ │ ├── associated_entity_type_test.dart │ │ ├── associated_group_test.dart │ │ ├── auth_api_test.dart │ │ ├── base_model_test.dart │ │ ├── bulk_status_update_command_test.dart │ │ ├── bulk_user_delete_command_test.dart │ │ ├── category_api_test.dart │ │ ├── category_test.dart │ │ ├── category_view_test.dart │ │ ├── chart_grouping_test.dart │ │ ├── check_email_connectivity_command_test.dart │ │ ├── check_receipt_processing_settings_connectivity_command_test.dart │ │ ├── claims_test.dart │ │ ├── comment_api_test.dart │ │ ├── comment_test.dart │ │ ├── currency_separator_test.dart │ │ ├── currency_symbol_position_test.dart │ │ ├── custom_field_api_test.dart │ │ ├── custom_field_option_test.dart │ │ ├── custom_field_test.dart │ │ ├── custom_field_type_test.dart │ │ ├── custom_field_value_test.dart │ │ ├── dashboard_api_test.dart │ │ ├── dashboard_test.dart │ │ ├── delete_account_command_test.dart │ │ ├── encoded_image_test.dart │ │ ├── export_api_test.dart │ │ ├── export_format_test.dart │ │ ├── feature_config_api_test.dart │ │ ├── feature_config_test.dart │ │ ├── file_data_test.dart │ │ ├── file_data_view_test.dart │ │ ├── filter_operation_test.dart │ │ ├── get_new_refresh_token200_response_test.dart │ │ ├── get_system_task_command_test.dart │ │ ├── group_filter_test.dart │ │ ├── group_member_test.dart │ │ ├── group_receipt_settings_test.dart │ │ ├── group_role_test.dart │ │ ├── group_settings_test.dart │ │ ├── group_settings_white_list_email_test.dart │ │ ├── group_status_test.dart │ │ ├── group_test.dart │ │ ├── groups_api_test.dart │ │ ├── icon_test.dart │ │ ├── import_api_test.dart │ │ ├── import_type_test.dart │ │ ├── internal_error_response_test.dart │ │ ├── item_status_test.dart │ │ ├── item_test.dart │ │ ├── login_command_test.dart │ │ ├── logout_command_test.dart │ │ ├── magic_fill_command_test.dart │ │ ├── notification_test.dart │ │ ├── notifications_api_test.dart │ │ ├── ocr_engine_test.dart │ │ ├── paged_activity_request_command_test.dart │ │ ├── paged_api_key_request_command_test.dart │ │ ├── paged_data_data_inner_test.dart │ │ ├── paged_data_test.dart │ │ ├── paged_group_request_command_test.dart │ │ ├── paged_request_command_test.dart │ │ ├── paged_request_field_test.dart │ │ ├── paged_request_field_value_test.dart │ │ ├── pie_chart_data_command_test.dart │ │ ├── pie_chart_data_point_test.dart │ │ ├── pie_chart_data_test.dart │ │ ├── prompt_api_test.dart │ │ ├── prompt_test.dart │ │ ├── queue_name_test.dart │ │ ├── receipt_api_test.dart │ │ ├── receipt_image_api_test.dart │ │ ├── receipt_paged_request_command_test.dart │ │ ├── receipt_paged_request_filter_test.dart │ │ ├── receipt_processing_settings_api_test.dart │ │ ├── receipt_processing_settings_test.dart │ │ ├── receipt_status_test.dart │ │ ├── receipt_test.dart │ │ ├── reset_password_command_test.dart │ │ ├── search_api_test.dart │ │ ├── search_result_test.dart │ │ ├── sign_up_command_test.dart │ │ ├── sort_direction_test.dart │ │ ├── subject_line_regex_test.dart │ │ ├── system_email_api_test.dart │ │ ├── system_email_test.dart │ │ ├── system_settings_api_test.dart │ │ ├── system_settings_test.dart │ │ ├── system_task_api_test.dart │ │ ├── system_task_status_test.dart │ │ ├── system_task_test.dart │ │ ├── system_task_type_test.dart │ │ ├── tag_api_test.dart │ │ ├── tag_test.dart │ │ ├── tag_view_test.dart │ │ ├── task_queue_configuration_test.dart │ │ ├── token_pair_test.dart │ │ ├── update_group_receipt_settings_command_test.dart │ │ ├── update_group_settings_command_test.dart │ │ ├── update_profile_command_test.dart │ │ ├── upsert_api_key_command_test.dart │ │ ├── upsert_category_command_test.dart │ │ ├── upsert_comment_command_test.dart │ │ ├── upsert_custom_field_command_test.dart │ │ ├── upsert_custom_field_option_command_test.dart │ │ ├── upsert_custom_field_value_command_test.dart │ │ ├── upsert_dashboard_command_test.dart │ │ ├── upsert_group_command_test.dart │ │ ├── upsert_group_member_command_test.dart │ │ ├── upsert_item_command_test.dart │ │ ├── upsert_prompt_command_test.dart │ │ ├── upsert_receipt_command_test.dart │ │ ├── upsert_receipt_processing_settings_command_test.dart │ │ ├── upsert_system_email_command_test.dart │ │ ├── upsert_system_settings_command_test.dart │ │ ├── upsert_tag_command_test.dart │ │ ├── upsert_task_queue_configuration_test.dart │ │ ├── upsert_widget_command_test.dart │ │ ├── user_api_test.dart │ │ ├── user_preferences_api_test.dart │ │ ├── user_preferences_test.dart │ │ ├── user_role_test.dart │ │ ├── user_shortcut_test.dart │ │ ├── user_test.dart │ │ ├── user_view_test.dart │ │ ├── widget_api_test.dart │ │ ├── widget_test.dart │ │ └── widget_type_test.dart │ ├── devtools_options.yaml │ ├── doc/ │ │ ├── AiType.md │ │ ├── AppData.md │ │ ├── AssociatedEntityType.md │ │ ├── AssociatedGroup.md │ │ ├── AuthApi.md │ │ ├── BaseModel.md │ │ ├── BulkStatusUpdateCommand.md │ │ ├── Category.md │ │ ├── CategoryApi.md │ │ ├── CategoryView.md │ │ ├── CheckEmailConnectivityCommand.md │ │ ├── CheckReceiptProcessingSettingsConnectivityCommand.md │ │ ├── Claims.md │ │ ├── Comment.md │ │ ├── CommentApi.md │ │ ├── Dashboard.md │ │ ├── DashboardApi.md │ │ ├── EncodedImage.md │ │ ├── FeatureConfig.md │ │ ├── FeatureConfigApi.md │ │ ├── FileData.md │ │ ├── FileDataView.md │ │ ├── FileDataViewAllOf.md │ │ ├── FilterOperation.md │ │ ├── GetNewRefreshToken200Response.md │ │ ├── GetSystemTaskCommand.md │ │ ├── Group.md │ │ ├── GroupFilter.md │ │ ├── GroupMember.md │ │ ├── GroupRole.md │ │ ├── GroupSettings.md │ │ ├── GroupSettingsWhiteListEmail.md │ │ ├── GroupStatus.md │ │ ├── GroupsApi.md │ │ ├── ImportApi.md │ │ ├── ImportType.md │ │ ├── Item.md │ │ ├── ItemStatus.md │ │ ├── LoginCommand.md │ │ ├── LogoutCommand.md │ │ ├── MagicFillCommand.md │ │ ├── Notification.md │ │ ├── NotificationsApi.md │ │ ├── OcrEngine.md │ │ ├── PagedData.md │ │ ├── PagedDataDataInner.md │ │ ├── PagedGroupRequestCommand.md │ │ ├── PagedGroupRequestCommandAllOf.md │ │ ├── PagedRequestCommand.md │ │ ├── PagedRequestField.md │ │ ├── PagedRequestFieldValue.md │ │ ├── Prompt.md │ │ ├── PromptAllOf.md │ │ ├── PromptApi.md │ │ ├── Receipt.md │ │ ├── ReceiptApi.md │ │ ├── ReceiptImageApi.md │ │ ├── ReceiptPagedRequestCommand.md │ │ ├── ReceiptPagedRequestFilter.md │ │ ├── ReceiptProcessingSettings.md │ │ ├── ReceiptProcessingSettingsAllOf.md │ │ ├── ReceiptProcessingSettingsApi.md │ │ ├── ReceiptStatus.md │ │ ├── ResetPasswordCommand.md │ │ ├── SearchApi.md │ │ ├── SearchResult.md │ │ ├── SignUpCommand.md │ │ ├── SortDirection.md │ │ ├── SubjectLineRegex.md │ │ ├── SystemEmail.md │ │ ├── SystemEmailAllOf.md │ │ ├── SystemEmailApi.md │ │ ├── SystemSettings.md │ │ ├── SystemSettingsAllOf.md │ │ ├── SystemSettingsApi.md │ │ ├── SystemTask.md │ │ ├── SystemTaskAllOf.md │ │ ├── SystemTaskApi.md │ │ ├── SystemTaskStatus.md │ │ ├── SystemTaskType.md │ │ ├── Tag.md │ │ ├── TagApi.md │ │ ├── TagView.md │ │ ├── TokenPair.md │ │ ├── UpdateGroupSettingsCommand.md │ │ ├── UpdateProfileCommand.md │ │ ├── UpsertCategoryCommand.md │ │ ├── UpsertCommentCommand.md │ │ ├── UpsertDashboardCommand.md │ │ ├── UpsertItemCommand.md │ │ ├── UpsertPromptCommand.md │ │ ├── UpsertReceiptCommand.md │ │ ├── UpsertReceiptProcessingSettingsCommand.md │ │ ├── UpsertSystemEmailCommand.md │ │ ├── UpsertSystemSettingsCommand.md │ │ ├── UpsertTagCommand.md │ │ ├── UpsertWidgetCommand.md │ │ ├── User.md │ │ ├── UserApi.md │ │ ├── UserPreferences.md │ │ ├── UserPreferencesAllOf.md │ │ ├── UserPreferencesApi.md │ │ ├── UserRole.md │ │ ├── UserView.md │ │ ├── Widget.md │ │ └── WidgetType.md │ ├── flutter_launcher_icons.yaml │ ├── flutter_native_splash.yaml │ ├── git_push.sh │ ├── ios/ │ │ ├── .gitignore │ │ ├── App/ │ │ │ └── App/ │ │ │ ├── capacitor.config.json │ │ │ ├── config.xml │ │ │ └── public/ │ │ │ ├── 1315.889df76956ff23ca.js │ │ │ ├── 1372.adec2e4e15de229e.js │ │ │ ├── 1745.3c8be738e4ed3473.js │ │ │ ├── 185.e77de020be41917f.js │ │ │ ├── 2841.0bc48a5b325bfb25.js │ │ │ ├── 2975.e586449a75f61839.js │ │ │ ├── 3150.5ae5046a8a6f3f3c.js │ │ │ ├── 3483.42f8d84de3c6de1b.js │ │ │ ├── 3544.e4a87e0193f7d36c.js │ │ │ ├── 3672.b43100ea07272033.js │ │ │ ├── 3734.77fa8da2119d4aac.js │ │ │ ├── 3998.719b8513be715b74.js │ │ │ ├── 3rdpartylicenses.txt │ │ │ ├── 4087.31a09dafb629fd16.js │ │ │ ├── 4090.5e1ea55e09eb2f12.js │ │ │ ├── 433.3bc4840c1f5eb2b3.js │ │ │ ├── 4458.44be36ff4581eb32.js │ │ │ ├── 4530.0abd72787f9e91dc.js │ │ │ ├── 4675.6ccbe3fbb2b06ecb.js │ │ │ ├── 469.dc0e146587f2129b.js │ │ │ ├── 4764.090d271cb454d91f.js │ │ │ ├── 4882.843a9b809ef86c9d.js │ │ │ ├── 505.c83e6d8d552a8bb9.js │ │ │ ├── 5248.b4df00225e7d8231.js │ │ │ ├── 5260.38639ab137eebcbc.js │ │ │ ├── 5454.f4d8a62537982558.js │ │ │ ├── 5675.821e04955152c08f.js │ │ │ ├── 5860.0ac8af25bc16129a.js │ │ │ ├── 5962.58545b793039a734.js │ │ │ ├── 6304.4bec75a89dd581c3.js │ │ │ ├── 6416.d2723744cffdb9ec.js │ │ │ ├── 6642.58d302101b401ed9.js │ │ │ ├── 6673.9819b24f769fce0c.js │ │ │ ├── 6754.5772d3dd67e63dbc.js │ │ │ ├── 7059.d953cea4f12e1b2d.js │ │ │ ├── 7219.fe028ba572aafee0.js │ │ │ ├── 7250.dd7a58df6c68d73e.js │ │ │ ├── 7465.5b9aa191ea4695f4.js │ │ │ ├── 7624.7cda70322a5d4667.js │ │ │ ├── 7635.624d22499a5c00ab.js │ │ │ ├── 7666.1fffcc2354ea9e7e.js │ │ │ ├── 8382.210b66356588e32b.js │ │ │ ├── 8484.edcc115af7c0b396.js │ │ │ ├── 8577.2b2bc8d2ce36c186.js │ │ │ ├── 8594.6e8e4b8ff83f929b.js │ │ │ ├── 8633.85e2f6cee2a1b8c5.js │ │ │ ├── 8811.bf59c840512ceced.js │ │ │ ├── 8866.f0403804618ee8bd.js │ │ │ ├── 9352.717af8fb47bada66.js │ │ │ ├── 9588.22fd9fd752c53fa9.js │ │ │ ├── 962.3fb0dac75d94cc95.js │ │ │ ├── 9793.424c80d25d4c1bb9.js │ │ │ ├── 9820.cc510d6e61612b37.js │ │ │ ├── 9857.cd96d3ee191f805d.js │ │ │ ├── 9882.c8bde9328055ee13.js │ │ │ ├── 9992.03fca68ad09864e7.js │ │ │ ├── common.a7d01b8de5a7fa76.js │ │ │ ├── cordova.js │ │ │ ├── cordova_plugins.js │ │ │ ├── index.html │ │ │ ├── main.8e4faf21f7692e8d.js │ │ │ ├── polyfills-core-js.93f56369317b7a8e.js │ │ │ ├── polyfills-dom.516ff539260f3e0d.js │ │ │ ├── polyfills.441dd4ca9dc0674f.js │ │ │ ├── runtime.da0ab16fef030a85.js │ │ │ └── styles.e0a65e1d3857b3bb.css │ │ ├── Flutter/ │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── Runner/ │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── LaunchBackground.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── LaunchImage.imageset/ │ │ │ │ ├── Contents.json │ │ │ │ └── README.md │ │ │ ├── Base.lproj/ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ │ ├── Runner.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── RunnerTests/ │ │ │ └── RunnerTests.swift │ │ └── capacitor-cordova-ios-plugins/ │ │ ├── CordovaPlugins.podspec │ │ ├── CordovaPluginsResources.podspec │ │ ├── CordovaPluginsStatic.podspec │ │ ├── resources/ │ │ │ └── .gitkeep │ │ └── sources/ │ │ └── .gitkeep │ ├── lib/ │ │ ├── auth/ │ │ │ ├── login/ │ │ │ │ ├── screens/ │ │ │ │ │ └── auth_screen.dart │ │ │ │ └── widgets/ │ │ │ │ └── auth_form.dart │ │ │ └── set-homeserver-url/ │ │ │ └── screens/ │ │ │ └── set_homeserver_url.dart │ │ ├── client/ │ │ │ └── client.dart │ │ ├── constants/ │ │ │ ├── colors.dart │ │ │ ├── currency.dart │ │ │ ├── font.dart │ │ │ ├── receipts.dart │ │ │ ├── routes.dart │ │ │ ├── search.dart │ │ │ └── spacing.dart │ │ ├── enums/ │ │ │ ├── form_state.dart │ │ │ └── upload_method.dart │ │ ├── extensions/ │ │ │ └── duration.dart │ │ ├── groups/ │ │ │ ├── nav/ │ │ │ │ ├── group/ │ │ │ │ │ ├── group_app_bar.dart │ │ │ │ │ └── group_bottom_nav.dart │ │ │ │ └── group_select/ │ │ │ │ ├── group_select_app_bar.dart │ │ │ │ └── group_select_bottom_nav.dart │ │ │ ├── screens/ │ │ │ │ ├── group_dashboards.dart │ │ │ │ ├── group_receipts_screen.dart │ │ │ │ └── group_select.dart │ │ │ └── widgets/ │ │ │ ├── constants/ │ │ │ │ └── text_styles.dart │ │ │ ├── dashboard_widgets/ │ │ │ │ ├── filtered_receipts.dart │ │ │ │ ├── group_activities.dart │ │ │ │ ├── group_summary.dart │ │ │ │ └── pie_chart.dart │ │ │ ├── group_activity_list_item.dart │ │ │ ├── group_dashboard.dart │ │ │ ├── group_dashboard_wrapper.dart │ │ │ ├── group_list.dart │ │ │ ├── group_list_card.dart │ │ │ ├── group_receipts_list.dart │ │ │ ├── image_scan.dart │ │ │ └── receipt_list_item.dart │ │ ├── guards/ │ │ │ └── auth-guard.dart │ │ ├── home/ │ │ │ └── screens/ │ │ │ └── home.dart │ │ ├── interceptors/ │ │ │ └── auth_interceptor.dart │ │ ├── interfaces/ │ │ │ ├── form_item.dart │ │ │ └── upload_multipart_file_data.dart │ │ ├── main.dart │ │ ├── models/ │ │ │ ├── auth_model.dart │ │ │ ├── category_model.dart │ │ │ ├── context_model.dart │ │ │ ├── custom_field_model.dart │ │ │ ├── group_model.dart │ │ │ ├── loading_model.dart │ │ │ ├── receipt-list-model.dart │ │ │ ├── receipt_model.dart │ │ │ ├── search_model.dart │ │ │ ├── system_settings_model.dart │ │ │ ├── tag_model.dart │ │ │ ├── user_model.dart │ │ │ └── user_preferences_model.dart │ │ ├── persistence/ │ │ │ └── global_shared_preferences.dart │ │ ├── profile/ │ │ │ ├── screens/ │ │ │ │ └── user_profile_screen.dart │ │ │ └── widgets/ │ │ │ └── delete_account_dialog.dart │ │ ├── receipts/ │ │ │ ├── nav/ │ │ │ │ ├── receipt_app_bar.dart │ │ │ │ ├── receipt_app_bar_action_builder.dart │ │ │ │ ├── receipt_bottom_nav.dart │ │ │ │ └── receipt_bottom_sheet_builder.dart │ │ │ ├── screens/ │ │ │ │ ├── receipt_comment_screen.dart │ │ │ │ ├── receipt_form_screen.dart │ │ │ │ └── receipt_image_screen.dart │ │ │ └── widgets/ │ │ │ ├── quick_actions.dart │ │ │ ├── quick_actions_submit_button.dart │ │ │ ├── quick_scan.dart │ │ │ ├── quick_scan_form.dart │ │ │ ├── receipt_comment_app_bar.dart │ │ │ ├── receipt_comments.dart │ │ │ ├── receipt_form.dart │ │ │ ├── receipt_image_app_bar.dart │ │ │ ├── receipt_image_carousel.dart │ │ │ ├── receipt_images.dart │ │ │ ├── receipt_item_items.dart │ │ │ └── receipt_item_list.dart │ │ ├── search/ │ │ │ ├── nav/ │ │ │ │ └── search_app_bar.dart │ │ │ ├── screens/ │ │ │ │ └── search_screen.dart │ │ │ └── widgets/ │ │ │ └── searchbar.dart │ │ ├── service/ │ │ │ └── file_upload.dart │ │ ├── services/ │ │ │ └── token_refresh_service.dart │ │ ├── shared/ │ │ │ ├── classes/ │ │ │ │ ├── base_ui_shell_builder.dart │ │ │ │ ├── quick_scan_image.dart │ │ │ │ └── receipt_navigation_extras.dart │ │ │ ├── functions/ │ │ │ │ ├── activities.dart │ │ │ │ ├── forms.dart │ │ │ │ ├── multi_select_bottom_sheet.dart │ │ │ │ ├── permissions.dart │ │ │ │ ├── quick_scan.dart │ │ │ │ ├── show_add_menu.dart │ │ │ │ └── status_field.dart │ │ │ └── widgets/ │ │ │ ├── amount_field.dart │ │ │ ├── audit_detail_section.dart │ │ │ ├── bottom_nav.dart │ │ │ ├── bottom_sheet_container.dart │ │ │ ├── bottom_submit_button.dart │ │ │ ├── category_select_field.dart │ │ │ ├── circular_loading_progress.dart │ │ │ ├── custom_field_widget.dart │ │ │ ├── date_block.dart │ │ │ ├── delete_button.dart │ │ │ ├── filter_multiselect.dart │ │ │ ├── full_screen_image_viewer.dart │ │ │ ├── image_viewer.dart │ │ │ ├── list_item_color_block.dart │ │ │ ├── list_item_lead.dart │ │ │ ├── list_item_trailing_status.dart │ │ │ ├── multi-select-field.dart │ │ │ ├── paged_data_list.dart │ │ │ ├── pie_chart_widget.dart │ │ │ ├── receipt_edit_popup_menu.dart │ │ │ ├── screen_wrapper.dart │ │ │ ├── slidable_delete_button.dart │ │ │ ├── slidable_edit_button.dart │ │ │ ├── slidable_widget.dart │ │ │ ├── tag_select_field.dart │ │ │ ├── top_app_bar.dart │ │ │ ├── total_display_widget.dart │ │ │ └── user_avatar.dart │ │ └── utils/ │ │ ├── auth.dart │ │ ├── bottom_sheet.dart │ │ ├── currency.dart │ │ ├── date.dart │ │ ├── forms.dart │ │ ├── group.dart │ │ ├── has_feature.dart │ │ ├── permissions.dart │ │ ├── receipts.dart │ │ ├── scan.dart │ │ ├── snackbar.dart │ │ └── users.dart │ ├── linux/ │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── flutter/ │ │ │ ├── CMakeLists.txt │ │ │ ├── generated_plugin_registrant.cc │ │ │ ├── generated_plugin_registrant.h │ │ │ └── generated_plugins.cmake │ │ ├── main.cc │ │ ├── my_application.cc │ │ └── my_application.h │ ├── macos/ │ │ ├── .gitignore │ │ ├── Flutter/ │ │ │ ├── Flutter-Debug.xcconfig │ │ │ ├── Flutter-Release.xcconfig │ │ │ └── GeneratedPluginRegistrant.swift │ │ ├── Podfile │ │ ├── Runner/ │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets/ │ │ │ │ └── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj/ │ │ │ │ └── MainMenu.xib │ │ │ ├── Configs/ │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ └── Warnings.xcconfig │ │ │ ├── DebugProfile.entitlements │ │ │ ├── Info.plist │ │ │ ├── MainFlutterWindow.swift │ │ │ └── Release.entitlements │ │ ├── Runner.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace/ │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── RunnerTests/ │ │ └── RunnerTests.swift │ ├── pubspec.yaml │ ├── test/ │ │ ├── helpers/ │ │ │ ├── auth_test_helpers.dart │ │ │ └── widget_test_helpers.dart │ │ ├── interceptors/ │ │ │ └── auth_interceptor_test.dart │ │ ├── services/ │ │ │ └── token_refresh_service_test.dart │ │ ├── utils/ │ │ │ └── currency_test.dart │ │ └── widgets/ │ │ └── amount_field_test.dart │ ├── web/ │ │ ├── index.html │ │ └── manifest.json │ ├── windows/ │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── flutter/ │ │ │ ├── CMakeLists.txt │ │ │ ├── generated_plugin_registrant.cc │ │ │ ├── generated_plugin_registrant.h │ │ │ └── generated_plugins.cmake │ │ └── runner/ │ │ ├── CMakeLists.txt │ │ ├── Runner.rc │ │ ├── flutter_window.cpp │ │ ├── flutter_window.h │ │ ├── main.cpp │ │ ├── resource.h │ │ ├── runner.exe.manifest │ │ ├── utils.cpp │ │ ├── utils.h │ │ ├── win32_window.cpp │ │ └── win32_window.h │ └── www/ │ ├── 1315.889df76956ff23ca.js │ ├── 1372.adec2e4e15de229e.js │ ├── 1745.3c8be738e4ed3473.js │ ├── 185.e77de020be41917f.js │ ├── 2841.0bc48a5b325bfb25.js │ ├── 2975.e586449a75f61839.js │ ├── 3150.5ae5046a8a6f3f3c.js │ ├── 3483.42f8d84de3c6de1b.js │ ├── 3544.e4a87e0193f7d36c.js │ ├── 3672.b43100ea07272033.js │ ├── 3734.77fa8da2119d4aac.js │ ├── 3998.719b8513be715b74.js │ ├── 3rdpartylicenses.txt │ ├── 4087.31a09dafb629fd16.js │ ├── 4090.5e1ea55e09eb2f12.js │ ├── 433.3bc4840c1f5eb2b3.js │ ├── 4458.44be36ff4581eb32.js │ ├── 4530.0abd72787f9e91dc.js │ ├── 4675.6ccbe3fbb2b06ecb.js │ ├── 469.dc0e146587f2129b.js │ ├── 4764.090d271cb454d91f.js │ ├── 4882.843a9b809ef86c9d.js │ ├── 505.c83e6d8d552a8bb9.js │ ├── 5248.b4df00225e7d8231.js │ ├── 5260.38639ab137eebcbc.js │ ├── 5454.f4d8a62537982558.js │ ├── 5675.821e04955152c08f.js │ ├── 5860.0ac8af25bc16129a.js │ ├── 5962.58545b793039a734.js │ ├── 6304.4bec75a89dd581c3.js │ ├── 6416.d2723744cffdb9ec.js │ ├── 6642.58d302101b401ed9.js │ ├── 6673.9819b24f769fce0c.js │ ├── 6754.5772d3dd67e63dbc.js │ ├── 7059.d953cea4f12e1b2d.js │ ├── 7219.fe028ba572aafee0.js │ ├── 7250.dd7a58df6c68d73e.js │ ├── 7465.5b9aa191ea4695f4.js │ ├── 7624.7cda70322a5d4667.js │ ├── 7635.624d22499a5c00ab.js │ ├── 7666.1fffcc2354ea9e7e.js │ ├── 8382.210b66356588e32b.js │ ├── 8484.edcc115af7c0b396.js │ ├── 8577.2b2bc8d2ce36c186.js │ ├── 8594.6e8e4b8ff83f929b.js │ ├── 8633.85e2f6cee2a1b8c5.js │ ├── 8811.bf59c840512ceced.js │ ├── 8866.f0403804618ee8bd.js │ ├── 9352.717af8fb47bada66.js │ ├── 9588.22fd9fd752c53fa9.js │ ├── 962.3fb0dac75d94cc95.js │ ├── 9793.424c80d25d4c1bb9.js │ ├── 9820.cc510d6e61612b37.js │ ├── 9857.cd96d3ee191f805d.js │ ├── 9882.c8bde9328055ee13.js │ ├── 9992.03fca68ad09864e7.js │ ├── common.a7d01b8de5a7fa76.js │ ├── index.html │ ├── main.8e4faf21f7692e8d.js │ ├── polyfills-core-js.93f56369317b7a8e.js │ ├── polyfills-dom.516ff539260f3e0d.js │ ├── polyfills.441dd4ca9dc0674f.js │ ├── runtime.da0ab16fef030a85.js │ └── styles.e0a65e1d3857b3bb.css └── tag-version.sh
Copy disabled (too large)
Download .txt
Showing preview only (16,516K chars total). Download the full file to get everything.
SYMBOL INDEX (20027 symbols across 1186 files)
FILE: desktop/e2e/auth.setup.ts
constant USER_AUTH_FILE (line 9) | const USER_AUTH_FILE = 'e2e/.auth/user.json';
FILE: desktop/e2e/helpers/auth.ts
type Role (line 4) | type Role = 'admin' | 'user';
function creds (line 6) | function creds(role: Role) {
function stubTokenRefresh (line 28) | async function stubTokenRefresh(page: Page) {
function loginViaUi (line 47) | async function loginViaUi(page: Page, role: Role) {
FILE: desktop/e2e/receipts.spec.ts
function uniqueName (line 4) | function uniqueName(tag: string) {
function getGroupId (line 8) | async function getGroupId(page: Page): Promise<string> {
function openAddReceipt (line 17) | async function openAddReceipt(page: Page) {
function selectFirstOption (line 22) | async function selectFirstOption(page: Page, label: string) {
function fillBasics (line 27) | async function fillBasics(page: Page, name: string, amount = '42.00') {
function saveReceipt (line 34) | async function saveReceipt(page: Page) {
function ensureCustomFieldExists (line 44) | async function ensureCustomFieldExists(page: Page) {
function deleteReceiptByName (line 65) | async function deleteReceiptByName(page: Page, groupId: string, name: st...
function clickSave (line 269) | async function clickSave(page: Page) {
FILE: desktop/src/about/about/about.component.ts
type Link (line 8) | interface Link {
class AboutComponent (line 22) | class AboutComponent {
FILE: desktop/src/alert/alert.component.ts
class AlertComponent (line 15) | class AlertComponent {
FILE: desktop/src/app/app-routing.module.ts
class AppRoutingModule (line 98) | class AppRoutingModule {}
FILE: desktop/src/app/app.component.ts
class AppComponent (line 17) | class AppComponent implements OnInit {
method constructor (line 19) | constructor(
method ngOnInit (line 24) | public ngOnInit(): void {
method refreshTokens (line 29) | private refreshTokens(): void {
FILE: desktop/src/auth/auth-routing.module.ts
class AuthRoutingModule (line 26) | class AuthRoutingModule {}
FILE: desktop/src/auth/auth.module.ts
class AuthModule (line 27) | class AuthModule {
FILE: desktop/src/auth/sign-up/auth-form.component.ts
class AuthForm (line 22) | class AuthForm implements OnInit {
method constructor (line 33) | constructor(
method ngOnInit (line 44) | public ngOnInit(): void {
method listenForRouteChanges (line 50) | private listenForRouteChanges(): void {
method listenForIsSignUpChanges (line 60) | private listenForIsSignUpChanges(): void {
method initForm (line 93) | private initForm(): void {
method submit (line 100) | public submit(): void {
method signUp (line 111) | private signUp(): void {
method login (line 127) | private login(): void {
FILE: desktop/src/auth/sign-up/auth-form.util.ts
class AuthFormUtil (line 10) | class AuthFormUtil {
method constructor (line 11) | constructor(
method getSubmitObservable (line 17) | public getSubmitObservable(
FILE: desktop/src/autocomplete/autocomlete/autocomlete.component.ts
class AutocomleteComponent (line 13) | class AutocomleteComponent
method constructor (line 66) | constructor() {
method ngOnInit (line 70) | public override ngOnInit(): void {
method setSingleOptionSelected (line 83) | private setSingleOptionSelected(): void {
method initSingleAutocomplete (line 93) | private initSingleAutocomplete(): void {
method _filter (line 97) | public _filter(value: string): any[] {
method optionSelected (line 129) | public optionSelected(event: MatAutocompleteSelectedEvent): void {
method clearFilterAndOpenPanel (line 156) | private clearFilterAndOpenPanel(): void {
method removeOption (line 164) | public removeOption(index: number) {
method removeSingleOption (line 173) | public removeSingleOption(): void {
method clearFilter (line 177) | public clearFilter(): void {
FILE: desktop/src/autocomplete/autocomlete/option-display.pipe.ts
class OptionDisplayPipe (line 7) | class OptionDisplayPipe implements PipeTransform {
method transform (line 8) | public transform(
FILE: desktop/src/autocomplete/autocomplete.module.ts
class AutocompleteModule (line 25) | class AutocompleteModule {}
FILE: desktop/src/avatar/avatar.module.ts
class AvatarModule (line 11) | class AvatarModule {}
FILE: desktop/src/avatar/avatar/avatar.component.ts
class AvatarComponent (line 10) | class AvatarComponent {
FILE: desktop/src/base-input/base-input.interface.ts
type BaseInputInterface (line 3) | interface BaseInputInterface {
FILE: desktop/src/base-input/base-input.module.ts
class BaseInputModule (line 10) | class BaseInputModule {}
FILE: desktop/src/base-input/base-input/base-input.component.ts
class BaseInputComponent (line 13) | class BaseInputComponent implements OnInit, BaseInputInterface {
method ngOnInit (line 34) | public ngOnInit(): void {
FILE: desktop/src/base-input/base-input/input-error-message.ts
type InputErrorMessage (line 1) | interface InputErrorMessage {
FILE: desktop/src/button/base-button/base-button.component.ts
class BaseButtonComponent (line 10) | class BaseButtonComponent {
FILE: desktop/src/button/button.module.ts
class ButtonModule (line 23) | class ButtonModule {}
FILE: desktop/src/button/button/button.component.ts
class ButtonComponent (line 11) | class ButtonComponent extends BaseButtonComponent {
method emitClicked (line 13) | public emitClicked(event: MouseEvent): void {
FILE: desktop/src/carousel/carousel.module.ts
class CarouselModule (line 26) | class CarouselModule {}
FILE: desktop/src/carousel/carousel/carousel.component.ts
class CarouselComponent (line 15) | class CarouselComponent implements OnChanges {
method ngOnChanges (line 34) | public ngOnChanges(changes: SimpleChanges): void {
method emitRemoveButtonClicked (line 40) | public emitRemoveButtonClicked(index: number): void {
method zoomOut (line 44) | public zoomOut() {
method zoomIn (line 48) | public zoomIn() {
method onScroll (line 52) | public onScroll(event: WheelEvent): void {
method updateCurrentlyShownImage (line 58) | public updateCurrentlyShownImage(index: number): void {
method adjustScale (line 62) | public adjustScale(amount: number): void {
FILE: desktop/src/categories/categories-routing.module.ts
class CategoriesRoutingModule (line 22) | class CategoriesRoutingModule {}
FILE: desktop/src/categories/categories.module.ts
class CategoriesModule (line 28) | class CategoriesModule {}
FILE: desktop/src/categories/category-form/category-form.component.ts
class CategoryForm (line 15) | class CategoryForm implements OnInit {
method constructor (line 22) | constructor(
method ngOnInit (line 30) | public ngOnInit(): void {
method initForm (line 34) | private initForm(): void {
method submit (line 44) | public submit(): void {
method closeDialog (line 75) | public closeDialog(): void {
FILE: desktop/src/categories/category-table/category-table.component.ts
class CategoryTableComponent (line 24) | class CategoryTableComponent implements OnInit, AfterViewInit {
method constructor (line 37) | constructor(
method ngOnInit (line 54) | public ngOnInit(): void {
method ngAfterViewInit (line 58) | public ngAfterViewInit(): void {
method initTableData (line 62) | private initTableData(): void {
method getCategories (line 66) | private getCategories(): void {
method updatePageData (line 85) | public updatePageData(pageEvent: PageEvent) {
method sorted (line 94) | public sorted(sortState: Sort): void {
method initTable (line 101) | private initTable(): void {
method setColumns (line 105) | private setColumns(): void {
method openEditDialog (line 150) | public openEditDialog(categoryView: CategoryView): void {
method openAddDialog (line 169) | public openAddDialog(): void {
method openDeleteConfirmationDialog (line 187) | public openDeleteConfirmationDialog(categoryView: CategoryView) {
FILE: desktop/src/category-autocomplete/category-autocomplete.component.ts
class CategoryAutocompleteComponent (line 17) | class CategoryAutocompleteComponent {
FILE: desktop/src/checkbox/checkbox.module.ts
class CheckboxModule (line 22) | class CheckboxModule {}
FILE: desktop/src/checkbox/checkbox/checkbox.component.ts
class CheckboxComponent (line 11) | class CheckboxComponent implements BaseInputInterface {
method handleKeydown (line 26) | public handleKeydown(event: KeyboardEvent): void {
FILE: desktop/src/color-picker/color-picker.module.ts
class ColorPickerModule (line 25) | class ColorPickerModule {}
FILE: desktop/src/color-picker/color-picker/color-picker.component.ts
class ColorPickerComponent (line 11) | class ColorPickerComponent implements BaseInputInterface {
method colorSelected (line 21) | public colorSelected(event: any): void {
method handleClick (line 25) | public handleClick(event: MouseEvent) {
FILE: desktop/src/constants/components.constant.ts
constant DEFAULT_HOST_CLASS (line 1) | const DEFAULT_HOST_CLASS = {
FILE: desktop/src/constants/dialog.constant.ts
constant DEFAULT_DIALOG_CONFIG (line 3) | const DEFAULT_DIALOG_CONFIG: MatDialogConfig<any> = {
FILE: desktop/src/constants/keyboard-shortcuts.constant.ts
constant ITEM_MANAGEMENT_SHORTCUTS (line 6) | const ITEM_MANAGEMENT_SHORTCUTS: KeyboardShortcut[] = [
constant KEYBOARD_SHORTCUT_ACTIONS (line 36) | const KEYBOARD_SHORTCUT_ACTIONS = {
constant DISPLAY_SHORTCUTS (line 46) | const DISPLAY_SHORTCUTS = [
type KeyboardShortcutAction (line 69) | type KeyboardShortcutAction = typeof KEYBOARD_SHORTCUT_ACTIONS[keyof typ...
FILE: desktop/src/constants/receipt-status-options.ts
constant RECEIPT_STATUS_OPTIONS (line 5) | const RECEIPT_STATUS_OPTIONS: FormOption[] = Object.keys(
constant RECEIPT_ITEM_STATUS_OPTIONS (line 15) | const RECEIPT_ITEM_STATUS_OPTIONS: FormOption[] = Object.keys(
constant GROUP_STATUS_OPTIONS (line 25) | const GROUP_STATUS_OPTIONS: FormOption[] = Object.keys(GroupStatus).map(
FILE: desktop/src/constants/snackbar.constant.ts
constant DEFAULT_SNACKBAR_ACTION (line 3) | const DEFAULT_SNACKBAR_ACTION: string = 'Ok';
constant DEFAULT_SNACKBAR_CONFIG (line 5) | const DEFAULT_SNACKBAR_CONFIG: MatSnackBarConfig<any> = {
FILE: desktop/src/custom-fields/custom-field-form/custom-field-form.component.ts
class CustomFieldFormComponent (line 18) | class CustomFieldFormComponent implements OnInit {
method constructor (line 36) | constructor(
method options (line 43) | public get options(): CustomFieldOption[] {
method ngOnInit (line 47) | public ngOnInit(): void {
method submit (line 53) | public submit(): void {
method closeDialog (line 67) | public closeDialog(): void {
method addOption (line 71) | public addOption(): void {
method deleteOption (line 75) | public deleteOption(index: number): void {
method initForm (line 79) | private initForm(): void {
method listenForTypeChanges (line 88) | private listenForTypeChanges(): void {
method buildOption (line 105) | private buildOption(option?: CustomFieldOption): FormGroup {
FILE: desktop/src/custom-fields/custom-field-table/custom-field-table.component.ts
class CustomFieldTableComponent (line 26) | class CustomFieldTableComponent implements OnInit, AfterViewInit {
method constructor (line 47) | constructor(
method ngOnInit (line 54) | public ngOnInit(): void {
method ngAfterViewInit (line 58) | public ngAfterViewInit(): void {
method updatePageData (line 62) | public updatePageData(pageEvent: PageEvent) {
method sorted (line 71) | public sorted({ sortState }: { sortState: Sort }): void {
method openCustomFieldDialog (line 78) | public openCustomFieldDialog(customField?: CustomField): void {
method initTableData (line 97) | private initTableData(): void {
method getCustomFields (line 101) | private getCustomFields(): void {
method initTable (line 120) | private initTable(): void {
method setColumns (line 124) | private setColumns(): void {
method openDeleteConfirmationDialog (line 173) | public openDeleteConfirmationDialog(customField: CustomField) {
FILE: desktop/src/custom-fields/custom-fields-routing.module.ts
class CustomFieldsRoutingModule (line 22) | class CustomFieldsRoutingModule {}
FILE: desktop/src/custom-fields/custom-fields.module.ts
class CustomFieldsModule (line 35) | class CustomFieldsModule {}
FILE: desktop/src/dashboard/activity/activity.component.ts
class ActivityComponent (line 24) | class ActivityComponent implements OnInit {
method constructor (line 46) | constructor(
method ngOnInit (line 52) | public ngOnInit(): void {
method endOfListReached (line 56) | public endOfListReached(): void {
method onRefreshButtonClick (line 61) | public onRefreshButtonClick(id: number): void {
method getData (line 73) | private getData(): void {
method getGroupIds (line 95) | private getGroupIds(): number[] {
method buildItemRouterLinkString (line 103) | public buildItemRouterLinkString(item: Activity): string {
FILE: desktop/src/dashboard/dashboard-form/dashboard-form.component.ts
class DashboardFormComponent (line 25) | class DashboardFormComponent extends BaseFormComponent implements OnInit {
method widgets (line 38) | public get widgets(): FormArray {
method constructor (line 42) | constructor(
method ngOnInit (line 53) | public ngOnInit(): void {
method initForm (line 58) | public initForm(): void {
method buildWidgetFormGroup (line 71) | private buildWidgetFormGroup(widget: Widget): FormGroup {
method buildPieChartConfigForm (line 116) | private buildPieChartConfigForm(config: any): FormGroup {
method submit (line 123) | public submit(): void {
method submitWidget (line 158) | public submitWidget(index: number): void {
method cancelButtonClicked (line 174) | public cancelButtonClicked(): void {
method addWidget (line 178) | public addWidget(): void {
method cancelWidgetEdit (line 188) | public cancelWidgetEdit(): void {
method filterSubmitted (line 206) | public filterSubmitted(): void {
method patchFilterConfig (line 237) | private patchFilterConfig(index: number): void {
method removeWidget (line 250) | public removeWidget(index: number): void {
FILE: desktop/src/dashboard/dashboard-list/dashboard-list.component.ts
class DashboardListComponent (line 14) | class DashboardListComponent implements AfterViewInit {
method ngAfterViewInit (line 37) | public ngAfterViewInit(): void {
method listenForEndOfList (line 41) | private listenForEndOfList(): void {
FILE: desktop/src/dashboard/dashboard-routing.module.ts
class DashboardRoutingModule (line 39) | class DashboardRoutingModule {}
FILE: desktop/src/dashboard/dashboard.module.ts
class DashboardModule (line 63) | class DashboardModule {}
FILE: desktop/src/dashboard/dashboard/dashboard.component.ts
class DashboardComponent (line 19) | class DashboardComponent implements OnInit {
method constructor (line 28) | constructor(
method ngOnInit (line 33) | public ngOnInit(): void {
method listenForParamChanges (line 38) | private listenForParamChanges(): void {
method listenForDashboardChanges (line 48) | private listenForDashboardChanges(): void {
method setSelectedDashboard (line 64) | private setSelectedDashboard(): void {
FILE: desktop/src/dashboard/filtered-receipts/filtered-receipts.component.ts
class FilteredReceiptsComponent (line 16) | class FilteredReceiptsComponent implements OnInit {
method constructor (line 31) | constructor(
method ngOnInit (line 35) | public ngOnInit(): void {
method endOfListReached (line 39) | public endOfListReached(): void {
method getData (line 44) | private getData(): void {
FILE: desktop/src/dashboard/group-dashboards/group-dashboards.component.ts
class GroupDashboardsComponent (line 23) | class GroupDashboardsComponent implements OnInit {
method constructor (line 24) | constructor(
method ngOnInit (line 38) | public ngOnInit(): void {
method checkForSelectedDashboard (line 42) | private checkForSelectedDashboard(): void {
method setDashboards (line 56) | private setDashboards(): void {
method navigateToDashboard (line 69) | public navigateToDashboard(dashboardId: number): void {
method openDashboardDialog (line 81) | public openDashboardDialog(isCreate?: boolean): void {
method setSelectedDashboardId (line 123) | public setSelectedDashboardId(dashboardId: number): void {
method refreshDashboards (line 127) | private refreshDashboards(groupId: string): void {
method openDeleteConfirmationDialog (line 139) | public openDeleteConfirmationDialog(): void {
FILE: desktop/src/dashboard/pie-chart/pie-chart.component.ts
class PieChartComponent (line 22) | class PieChartComponent implements OnInit, OnChanges {
method constructor (line 54) | constructor(
method ngOnInit (line 95) | public ngOnInit(): void {
method ngOnChanges (line 99) | public ngOnChanges(changes: SimpleChanges): void {
method loadData (line 105) | private loadData(): void {
method updateChartData (line 137) | private updateChartData(data: PieChartData): void {
method getChartGroupingLabel (line 158) | public getChartGroupingLabel(): string {
FILE: desktop/src/dashboard/widget-type.pipe.ts
class WidgetTypePipe (line 8) | class WidgetTypePipe implements PipeTransform {
method transform (line 9) | transform(value: WidgetType): string {
FILE: desktop/src/datepicker/datepicker.module.ts
class DatepickerModule (line 22) | class DatepickerModule {}
FILE: desktop/src/datepicker/datepicker/datepicker.component.ts
class DatepickerComponent (line 10) | class DatepickerComponent extends BaseInputComponent {}
FILE: desktop/src/directives/development.directive.ts
class DevelopmentDirective (line 8) | class DevelopmentDirective {
method constructor (line 11) | constructor(
FILE: desktop/src/directives/directives.module.ts
class DirectivesModule (line 12) | class DirectivesModule {}
FILE: desktop/src/directives/feature.directive.ts
class FeatureDirective (line 12) | class FeatureDirective {
method constructor (line 15) | constructor(
method appFeature (line 21) | set appFeature(feature: string) {
FILE: desktop/src/directives/role.directive.ts
class RoleDirective (line 9) | class RoleDirective {
method constructor (line 12) | constructor(
method appRole (line 18) | set appRole(role: string) {
FILE: desktop/src/enums/form-mode.enum.ts
type FormMode (line 1) | enum FormMode {
FILE: desktop/src/form/base-form/base-form.component.ts
class BaseFormComponent (line 15) | class BaseFormComponent {
method constructor (line 24) | constructor() {}
method setFormConfigFromRoute (line 26) | public setFormConfigFromRoute(activatedRoute: ActivatedRoute): void {
method handleFormCommand (line 30) | public handleFormCommand(formCommand: FormCommand): void {
method emitFormCommand (line 34) | public emitFormCommand(formCommand: FormCommand): void {
FILE: desktop/src/form/form.module.ts
class FormModule (line 18) | class FormModule { }
FILE: desktop/src/form/interfaces/form-command.ts
type FormCommand (line 3) | interface FormCommand {
FILE: desktop/src/group/group-details/group-details.component.ts
class GroupDetailsComponent (line 12) | class GroupDetailsComponent implements OnInit {
method constructor (line 17) | constructor(
method ngOnInit (line 24) | public ngOnInit(): void {
FILE: desktop/src/group/group-form/group-form.component.ts
class GroupFormComponent (line 31) | class GroupFormComponent implements OnInit, AfterViewInit {
method groupMembers (line 44) | public get groupMembers(): FormArray {
method constructor (line 66) | constructor(
method ngOnInit (line 78) | public ngOnInit(): void {
method ngAfterViewInit (line 87) | public ngAfterViewInit(): void {
method initTable (line 91) | private initTable(): void {
method listenForGroupMemberChanges (line 97) | private listenForGroupMemberChanges(): void {
method setColumns (line 108) | private setColumns(): void {
method setDataSource (line 136) | private setDataSource(): void {
method sortName (line 144) | public sortName(sortState: Sort): void {
method initForm (line 161) | private initForm(): void {
method addGroupMemberClicked (line 189) | public addGroupMemberClicked(): void {
method editGroupMemberClicked (line 205) | public editGroupMemberClicked(index: number): void {
method removeGroupMember (line 223) | public removeGroupMember(index: number): void {
method submit (line 227) | public submit(): void {
method createGroup (line 251) | private createGroup(): void {
method updateGroup (line 267) | private updateGroup(): void {
method navigateToGroupDetails (line 281) | private navigateToGroupDetails(groupId: number): void {
FILE: desktop/src/group/group-member-form/group-member-form.component.ts
class GroupMemberFormComponent (line 17) | class GroupMemberFormComponent implements OnInit {
method constructor (line 32) | constructor(
method ngOnInit (line 37) | public ngOnInit(): void {
method setUsersToOmit (line 42) | private setUsersToOmit(): void {
method closeModal (line 50) | public closeModal(): void {
method submit (line 54) | public submit(): void {
FILE: desktop/src/group/group-receipt-settings/group-receipt-settings.component.ts
class GroupReceiptSettingsComponent (line 19) | class GroupReceiptSettingsComponent extends BaseFormComponent implements...
method constructor (line 26) | constructor(
method ngOnInit (line 38) | public ngOnInit(): void {
method initForm (line 45) | private initForm(): void {
method setOriginalGroup (line 63) | private setOriginalGroup(): void {
method submit (line 68) | public submit(): void {
FILE: desktop/src/group/group-routing.module.ts
class GroupRoutingModule (line 166) | class GroupRoutingModule {}
FILE: desktop/src/group/group-settings-ai/group-settings-ai.component.ts
class GroupSettingsAiComponent (line 14) | class GroupSettingsAiComponent extends BaseFormComponent implements OnIn...
method constructor (line 25) | constructor(
method ngOnInit (line 31) | public ngOnInit(): void {
method setPrompts (line 37) | private setPrompts(): void {
method initForm (line 56) | private initForm(): void {
method setInitialValues (line 60) | private setInitialValues(): void {
method promptDisplayWith (line 77) | public promptDisplayWith(id: number): string {
FILE: desktop/src/group/group-settings-email/group-settings-email.component.ts
class GroupSettingsEmailComponent (line 17) | class GroupSettingsEmailComponent
method constructor (line 32) | constructor(
method subjectLineRegexes (line 39) | public get subjectLineRegexes(): FormArray {
method emailWhiteList (line 43) | public get emailWhiteList(): FormArray {
method ngOnInit (line 47) | public ngOnInit(): void {
method initForm (line 56) | private initForm(): void {
method listenForEnableEmailIntegrationChanges (line 65) | private listenForEnableEmailIntegrationChanges(): void {
method addValidators (line 163) | private addValidators(): void {
method setInitialValues (line 166) | private setInitialValues(): void {
method buildGroupSettingsEmail (line 223) | private buildGroupSettingsEmail(
method buildSubjectLineRegexes (line 234) | private buildSubjectLineRegexes(regex?: SubjectLineRegex): FormGroup {
method addSubjectLineRegex (line 240) | public addSubjectLineRegex(): void {
method itemDoneButtonClicked (line 248) | public itemDoneButtonClicked(index: number): void {
method subjectLineItemCancelButtonClicked (line 254) | public subjectLineItemCancelButtonClicked(): void {
method subjectLineItemDeleteButtonClicked (line 264) | public subjectLineItemDeleteButtonClicked(index: number): void {
method addEmailWhiteList (line 273) | public addEmailWhiteList(): void {
method emailWhiteListItemCancelButtonClicked (line 281) | public emailWhiteListItemCancelButtonClicked(): void {
method emailWhiteListItemDeleteButtonClicked (line 291) | public emailWhiteListItemDeleteButtonClicked(index: number): void {
method systemEmailDisplayWith (line 300) | public systemEmailDisplayWith(id: number): string {
FILE: desktop/src/group/group-settings/group-settings.component.ts
class GroupSettingsComponent (line 18) | class GroupSettingsComponent
method constructor (line 28) | constructor(
method ngOnInit (line 39) | public ngOnInit(): void {
method initForm (line 50) | private initForm(): void {
method submit (line 64) | public submit(): void {
FILE: desktop/src/group/group-table-filter/group-table-filter.component.ts
class GroupTableFilterComponent (line 16) | class GroupTableFilterComponent extends BaseFormComponent implements OnI...
method constructor (line 17) | constructor(
method ngOnInit (line 27) | public ngOnInit(): void {
method initForm (line 31) | private initForm(): void {
method submit (line 39) | public submit(): void {
method cancel (line 44) | cancel(): void {
FILE: desktop/src/group/group-table/group-table-edit-button.pipe.ts
class GroupTableEditButtonPipe (line 9) | class GroupTableEditButtonPipe implements PipeTransform {
method constructor (line 11) | constructor(private groupUtil: GroupUtil) {}
method transform (line 13) | public transform(group: Group, isAdmin: boolean): {
FILE: desktop/src/group/group-table/group-table.component.ts
class GroupTableComponent (line 34) | class GroupTableComponent extends BaseTableComponent<Group> implements O...
method constructor (line 55) | constructor(
method ngOnInit (line 65) | public ngOnInit(): void {
method ngAfterViewInit (line 70) | public ngAfterViewInit(): void {
method listenForFilterChanges (line 74) | private listenForFilterChanges(): void {
method initTable (line 91) | private initTable(): void {
method setColumns (line 95) | private setColumns(): void {
method deleteGroup (line 137) | public deleteGroup(index: number): void {
method openFilterDialog (line 169) | public openFilterDialog(): void {
FILE: desktop/src/group/group-table/group-table.service.ts
class GroupTableService (line 13) | class GroupTableService extends BaseTableService {
method constructor (line 18) | constructor(
method setPage (line 28) | public setPage(page: number): void {
method setPageSize (line 32) | public setPageSize(pageSize: number): void {
method setOrderBy (line 36) | public setOrderBy(orderBy: Sort): void {
method setSortDirection (line 40) | public setSortDirection(sortDirection: SortDirection): void {
method getPagedRequestCommand (line 44) | public getPagedRequestCommand(): PagedRequestCommand {
method getPagedData (line 48) | public getPagedData(): Observable<PagedData> {
FILE: desktop/src/group/group-tabs/group-tabs.component.ts
class GroupTabsComponent (line 12) | class GroupTabsComponent {
method ngOnInit (line 15) | public ngOnInit(): void {
method constructor (line 19) | constructor(private store: Store) {}
method initTabs (line 21) | private initTabs(): void {
FILE: desktop/src/group/group.module.ts
class GroupsModule (line 65) | class GroupsModule {}
FILE: desktop/src/group/role-options.ts
constant GROUP_ROLE_OPTIONS (line 5) | const GROUP_ROLE_OPTIONS: FormOption[] = Object.keys(GroupRole).map(
constant USER_ROLE_OPTIONS (line 15) | const USER_ROLE_OPTIONS: FormOption[] = Object.keys(UserRole).map(
FILE: desktop/src/group/utils/group-member.utils.ts
function buildGroupMemberForm (line 4) | function buildGroupMemberForm(groupMember?: GroupMember): FormGroup {
FILE: desktop/src/guards/auth.guard.ts
class AuthGuard (line 11) | class AuthGuard {
method constructor (line 12) | constructor(
method canActivate (line 18) | canActivate(
FILE: desktop/src/guards/feature.guard.ts
class FeatureGuard (line 9) | class FeatureGuard {
method constructor (line 10) | constructor(private store: Store) {}
method canActivate (line 12) | canActivate(
FILE: desktop/src/guards/group-role.guard.ts
class GroupRoleGuard (line 12) | class GroupRoleGuard {
method constructor (line 13) | constructor(
method canActivate (line 19) | canActivate(
FILE: desktop/src/guards/group.guard.ts
class GroupGuard (line 9) | class GroupGuard {
method constructor (line 10) | constructor(private store: Store, private router: Router) {}
method canActivate (line 12) | canActivate(
method resetSelectedDashboardIfGroupDashboardChanged (line 37) | private resetSelectedDashboardIfGroupDashboardChanged(groupId: string)...
FILE: desktop/src/guards/role.guard.ts
class RoleGuard (line 9) | class RoleGuard {
method constructor (line 10) | constructor(private store: Store) {}
method canActivate (line 12) | canActivate(
FILE: desktop/src/icon/icon.module.ts
class IconModule (line 10) | class IconModule {
method constructor (line 11) | constructor(
FILE: desktop/src/import/import-form/import-form.component.ts
class ImportFormComponent (line 25) | class ImportFormComponent extends BaseFormComponent implements OnInit {
method constructor (line 38) | constructor(
method ngOnInit (line 57) | public ngOnInit(): void {
method initForm (line 61) | private initForm(): void {
method openFileUploadDialog (line 67) | public openFileUploadDialog(): void {
method fileLoaded (line 71) | public fileLoaded(fileData: ReceiptFileUploadCommand): void {
method clearFileContents (line 85) | public clearFileContents(): void {
method closeDialog (line 90) | public closeDialog(): void {
method submit (line 94) | public submit(): void {
method handleImportConfigSubmit (line 105) | private handleImportConfigSubmit(): void {
FILE: desktop/src/import/import.module.ts
class ImportModule (line 29) | class ImportModule {}
FILE: desktop/src/input/input.interface.ts
type InputInterface (line 3) | interface InputInterface {
FILE: desktop/src/input/input.module.ts
class InputModule (line 27) | class InputModule {}
FILE: desktop/src/input/input/input.component.ts
class InputComponent (line 14) | class InputComponent
method constructor (line 47) | constructor(private store: Store) {
method ngOnChanges (line 52) | public ngOnChanges(changes: SimpleChanges): void {
method initCurrencyField (line 60) | private initCurrencyField(): void {
method toggleVisibility (line 86) | public toggleVisibility(): void {
FILE: desktop/src/interceptors/http-interceptor.ts
constant RETRY_HEADER (line 9) | const RETRY_HEADER = "X-Token-Retry";
FILE: desktop/src/interfaces/dashboard-state.interface.ts
type DashboardStateInterface (line 3) | interface DashboardStateInterface {
FILE: desktop/src/interfaces/extended-user-preferences.interface.ts
type ExtendedUserPreferences (line 4) | interface ExtendedUserPreferences extends UserPreferences {
FILE: desktop/src/interfaces/form-config.interface.ts
type FormConfig (line 3) | interface FormConfig {
FILE: desktop/src/interfaces/form-option.interface.ts
type FormOption (line 1) | interface FormOption {
FILE: desktop/src/interfaces/paged-table.interface.ts
type PagedTableInterface (line 3) | interface PagedTableInterface {
FILE: desktop/src/interfaces/quick-scan-command.interface.ts
type QuickScanCommand (line 3) | interface QuickScanCommand {
FILE: desktop/src/interfaces/receipt-file-upload-command.interface.ts
type ReceiptFileUploadCommand (line 1) | interface ReceiptFileUploadCommand {
FILE: desktop/src/interfaces/receipt-table-column-config.interface.ts
type ReceiptTableColumnConfig (line 1) | interface ReceiptTableColumnConfig {
type ReceiptTableColumns (line 7) | interface ReceiptTableColumns {
constant DEFAULT_RECEIPT_TABLE_COLUMNS (line 11) | const DEFAULT_RECEIPT_TABLE_COLUMNS: ReceiptTableColumnConfig[] = [
FILE: desktop/src/interfaces/receipt-table-interface.ts
type ReceiptTableInterface (line 5) | interface ReceiptTableInterface {
FILE: desktop/src/interfaces/snackbar.interface.ts
type SnackbarServiceInterface (line 3) | interface SnackbarServiceInterface {
FILE: desktop/src/layout/add-receipt-icon/add-receipt-icon.component.ts
class AddReceiptIconComponent (line 10) | class AddReceiptIconComponent {}
FILE: desktop/src/layout/dashboard-icon/dashboard-icon.component.ts
class DashboardIconComponent (line 10) | class DashboardIconComponent {}
FILE: desktop/src/layout/header/header.component.ts
class HeaderComponent (line 16) | class HeaderComponent {
method constructor (line 52) | constructor(
method listenForLoggedInUser (line 61) | private listenForLoggedInUser(): void {
method toggleSidebar (line 81) | public toggleSidebar(): void {
FILE: desktop/src/layout/layout.module.ts
class LayoutModule (line 64) | class LayoutModule {}
FILE: desktop/src/layout/receipt-list-icon/receipt-list-icon.component.ts
class ReceiptListIconComponent (line 10) | class ReceiptListIconComponent {}
FILE: desktop/src/layout/sidebar/sidebar.component.ts
class SidebarComponent (line 22) | class SidebarComponent {
method constructor (line 23) | constructor(
method groupClicked (line 47) | public groupClicked(groupId: number): void {
method toggleAddButtonExpanded (line 54) | public toggleAddButtonExpanded(): void {
method logout (line 58) | public logout(): void {
method openImportDialog (line 69) | public openImportDialog(): void {
method openAboutDialog (line 73) | public openAboutDialog(): void {
FILE: desktop/src/notifications/notification/notification.component.ts
class NotificationComponent (line 12) | class NotificationComponent implements OnInit {
method constructor (line 21) | constructor(
method ngOnInit (line 26) | public ngOnInit(): void {
method parseBody (line 30) | private parseBody(): void {
method deleteNotification (line 37) | public deleteNotification(): void {
FILE: desktop/src/notifications/notifications-list/notifications-list.component.ts
class NotificationsListComponent (line 11) | class NotificationsListComponent implements OnInit {
method constructor (line 16) | constructor(private notificationsService: NotificationsService) {}
method ngOnInit (line 18) | public ngOnInit(): void {
method getNotifications (line 22) | private getNotifications(): void {
method deleteAllNotifications (line 35) | public deleteAllNotifications(): void {
method notificationDeleted (line 48) | public notificationDeleted(id: number): void {
method emitCount (line 53) | private emitCount(): void {
FILE: desktop/src/notifications/notifications.module.ts
class NotificationsModule (line 23) | class NotificationsModule {}
FILE: desktop/src/open-api/api.module.ts
class ApiModule (line 12) | class ApiModule {
method forRoot (line 13) | public static forRoot(configurationFactory: () => Configuration): Modu...
method constructor (line 20) | constructor( @Optional() @SkipSelf() parentModule: ApiModule,
FILE: desktop/src/open-api/api/api.ts
constant APIS (line 47) | const APIS = [ApiKeyService, AuthService, CategoryService, CommentServic...
FILE: desktop/src/open-api/api/apiKey.service.ts
class ApiKeyService (line 39) | class ApiKeyService {
method constructor (line 46) | constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_...
method addToHttpParams (line 66) | private addToHttpParams(httpParams: HttpParams, value: any, key?: stri...
method addToHttpParamsRecursive (line 75) | private addToHttpParamsRecursive(httpParams: HttpParams, value?: any, ...
method createApiKey (line 111) | public createApiKey(upsertApiKeyCommand: UpsertApiKeyCommand, observe:...
method deleteApiKey (line 199) | public deleteApiKey(id: string, observe: any = 'body', reportProgress:...
method getPagedApiKeys (line 277) | public getPagedApiKeys(pagedApiKeyRequestCommand: PagedApiKeyRequestCo...
method updateApiKey (line 366) | public updateApiKey(id: string, upsertApiKeyCommand: UpsertApiKeyComma...
FILE: desktop/src/open-api/api/auth.service.ts
class AuthService (line 41) | class AuthService {
method constructor (line 48) | constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_...
method addToHttpParams (line 68) | private addToHttpParams(httpParams: HttpParams, value: any, key?: stri...
method addToHttpParamsRecursive (line 77) | private addToHttpParamsRecursive(httpParams: HttpParams, value?: any, ...
method getNewRefreshToken (line 113) | public getNewRefreshToken(logoutCommand?: LogoutCommand, observe: any ...
method login (line 186) | public login(loginCommand: LoginCommand, tokensInBody?: boolean, obser...
method logout (line 268) | public logout(logoutCommand?: LogoutCommand, observe: any = 'body', re...
method signUp (line 340) | public signUp(signUpCommand: SignUpCommand, observe: any = 'body', rep...
FILE: desktop/src/open-api/api/category.service.ts
class CategoryService (line 37) | class CategoryService {
method constructor (line 44) | constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_...
method addToHttpParams (line 64) | private addToHttpParams(httpParams: HttpParams, value: any, key?: stri...
method addToHttpParamsRecursive (line 73) | private addToHttpParamsRecursive(httpParams: HttpParams, value?: any, ...
method createCategory (line 109) | public createCategory(category: Category, observe: any = 'body', repor...
method deleteCategory (line 197) | public deleteCategory(categoryId: number, observe: any = 'body', repor...
method getAllCategories (line 274) | public getAllCategories(observe: any = 'body', reportProgress: boolean...
method getCategoryCountByName (line 349) | public getCategoryCountByName(categoryName: string, observe: any = 'bo...
method getPagedCategories (line 428) | public getPagedCategories(pagedRequestCommand: PagedRequestCommand, ob...
method updateCategory (line 517) | public updateCategory(categoryId: number, category: Category, observe:...
FILE: desktop/src/open-api/api/comment.service.ts
class CommentService (line 35) | class CommentService {
method constructor (line 42) | constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_...
method addToHttpParams (line 62) | private addToHttpParams(httpParams: HttpParams, value: any, key?: stri...
method addToHttpParamsRecursive (line 71) | private addToHttpParamsRecursive(httpParams: HttpParams, value?: any, ...
method addComment (line 107) | public addComment(upsertCommentCommand: UpsertCommentCommand, observe:...
method deleteComment (line 195) | public deleteComment(commentId: number, observe: any = 'body', reportP...
FILE: desktop/src/open-api/api/customField.service.ts
class CustomFieldService (line 39) | class CustomFieldService {
method constructor (line 46) | constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_...
method addToHttpParams (line 66) | private addToHttpParams(httpParams: HttpParams, value: any, key?: stri...
method addToHttpParamsRecursive (line 75) | private addToHttpParamsRecursive(httpParams: HttpParams, value?: any, ...
method createCustomField (line 111) | public createCustomField(upsertCustomFieldCommand: UpsertCustomFieldCo...
method deleteCustomField (line 199) | public deleteCustomField(customFieldId: number, observe: any = 'body',...
method getCustomFieldById (line 277) | public getCustomFieldById(customFieldId: number, observe: any = 'body'...
method getPagedCustomFields (line 355) | public getPagedCustomFields(pagedRequestCommand: PagedRequestCommand, ...
FILE: desktop/src/open-api/api/dashboard.service.ts
class DashboardService (line 35) | class DashboardService {
method constructor (line 42) | constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_...
method addToHttpParams (line 62) | private addToHttpParams(httpParams: HttpParams, value: any, key?: stri...
method addToHttpParamsRecursive (line 71) | private addToHttpParamsRecursive(httpParams: HttpParams, value?: any, ...
method createDashboard (line 107) | public createDashboard(upsertDashboardCommand: UpsertDashboardCommand,...
method deleteDashboard (line 195) | public deleteDashboard(dashboardId: number, observe: any = 'body', rep...
method getDashboardsForUserByGroupId (line 273) | public getDashboardsForUserByGroupId(groupId: string, observe: any = '...
method updateDashboard (line 352) | public updateDashboard(dashboardId: number, upsertDashboardCommand: Up...
FILE: desktop/src/open-api/api/export.service.ts
class ExportService (line 35) | class ExportService {
method constructor (line 42) | constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_...
method addToHttpParams (line 62) | private addToHttpParams(httpParams: HttpParams, value: any, key?: stri...
method addToHttpParamsRecursive (line 71) | private addToHttpParamsRecursive(httpParams: HttpParams, value?: any, ...
method exportReceiptsById (line 108) | public exportReceiptsById(format: ExportFormat, receiptIds?: Array<num...
method exportReceiptsForGroup (line 191) | public exportReceiptsForGroup(format: ExportFormat, groupId: number, r...
FILE: desktop/src/open-api/api/featureConfig.service.ts
class FeatureConfigService (line 33) | class FeatureConfigService {
method constructor (line 40) | constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_...
method addToHttpParams (line 60) | private addToHttpParams(httpParams: HttpParams, value: any, key?: stri...
method addToHttpParamsRecursive (line 69) | private addToHttpParamsRecursive(httpParams: HttpParams, value?: any, ...
method getFeatureConfig (line 104) | public getFeatureConfig(observe: any = 'body', reportProgress: boolean...
FILE: desktop/src/open-api/api/groups.service.ts
class GroupsService (line 47) | class GroupsService {
method constructor (line 54) | constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_...
method addToHttpParams (line 74) | private addToHttpParams(httpParams: HttpParams, value: any, key?: stri...
method addToHttpParamsRecursive (line 83) | private addToHttpParamsRecursive(httpParams: HttpParams, value?: any, ...
method createGroup (line 119) | public createGroup(upsertGroupCommand: UpsertGroupCommand, observe: an...
method deleteGroup (line 207) | public deleteGroup(groupId: number, observe: any = 'body', reportProgr...
method getGroupById (line 285) | public getGroupById(groupId: number, observe: any = 'body', reportProg...
method getGroupsForuser (line 362) | public getGroupsForuser(observe: any = 'body', reportProgress: boolean...
method getOcrTextForGroup (line 437) | public getOcrTextForGroup(groupId: number, observe: any = 'body', repo...
method getPagedGroups (line 515) | public getPagedGroups(pagedGroupRequestCommand: PagedGroupRequestComma...
method pollGroupEmail (line 603) | public pollGroupEmail(groupId: number, observe: any = 'body', reportPr...
method updateGroup (line 682) | public updateGroup(groupId: number, group: Group, observe: any = 'body...
method updateGroupReceiptSettings (line 774) | public updateGroupReceiptSettings(groupId: number, updateGroupReceiptS...
method updateGroupSettings (line 866) | public updateGroupSettings(groupId: number, updateGroupSettingsCommand...
FILE: desktop/src/open-api/api/import.service.ts
class ImportService (line 31) | class ImportService {
method constructor (line 38) | constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_...
method canConsumeForm (line 60) | private canConsumeForm(consumes: string[]): boolean {
method addToHttpParams (line 71) | private addToHttpParams(httpParams: HttpParams, value: any, key?: stri...
method addToHttpParamsRecursive (line 80) | private addToHttpParamsRecursive(httpParams: HttpParams, value?: any, ...
method importConfigJson (line 116) | public importConfigJson(file: Blob, observe: any = 'body', reportProgr...
FILE: desktop/src/open-api/api/notifications.service.ts
class NotificationsService (line 33) | class NotificationsService {
method constructor (line 40) | constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_...
method addToHttpParams (line 60) | private addToHttpParams(httpParams: HttpParams, value: any, key?: stri...
method addToHttpParamsRecursive (line 69) | private addToHttpParamsRecursive(httpParams: HttpParams, value?: any, ...
method deleteAllNotificationsForUser (line 104) | public deleteAllNotificationsForUser(observe: any = 'body', reportProg...
method deleteNotificationById (line 179) | public deleteNotificationById(notificationId: number, observe: any = '...
method getNotificationCount (line 256) | public getNotificationCount(observe: any = 'body', reportProgress: boo...
method getNotificationsForuser (line 330) | public getNotificationsForuser(observe: any = 'body', reportProgress: ...
FILE: desktop/src/open-api/api/prompt.service.ts
class PromptService (line 39) | class PromptService {
method constructor (line 46) | constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_...
method addToHttpParams (line 66) | private addToHttpParams(httpParams: HttpParams, value: any, key?: stri...
method addToHttpParamsRecursive (line 75) | private addToHttpParamsRecursive(httpParams: HttpParams, value?: any, ...
method createDefaultPrompt (line 110) | public createDefaultPrompt(observe: any = 'body', reportProgress: bool...
method createPrompt (line 185) | public createPrompt(upsertPromptCommand: UpsertPromptCommand, observe:...
method deletePromptById (line 273) | public deletePromptById(id: number, observe: any = 'body', reportProgr...
method getPagedPrompts (line 351) | public getPagedPrompts(pagedRequestCommand: PagedRequestCommand, obser...
method getPromptById (line 439) | public getPromptById(id: number, observe: any = 'body', reportProgress...
method updatePromptById (line 518) | public updatePromptById(id: number, upsertPromptCommand: UpsertPromptC...
FILE: desktop/src/open-api/api/receipt.service.ts
class ReceiptService (line 43) | class ReceiptService {
method constructor (line 50) | constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_...
method canConsumeForm (line 72) | private canConsumeForm(consumes: string[]): boolean {
method addToHttpParams (line 83) | private addToHttpParams(httpParams: HttpParams, value: any, key?: stri...
method addToHttpParamsRecursive (line 92) | private addToHttpParamsRecursive(httpParams: HttpParams, value?: any, ...
method bulkReceiptStatusUpdate (line 128) | public bulkReceiptStatusUpdate(bulkStatusUpdateCommand: BulkStatusUpda...
method createReceipt (line 216) | public createReceipt(upsertReceiptCommand: UpsertReceiptCommand, obser...
method deleteReceiptById (line 304) | public deleteReceiptById(receiptId: number, observe: any = 'body', rep...
method duplicateReceipt (line 382) | public duplicateReceipt(receiptId: number, observe: any = 'body', repo...
method getReceiptById (line 460) | public getReceiptById(receiptId: number, observe: any = 'body', report...
method getReceiptsForGroup (line 539) | public getReceiptsForGroup(groupId: number, receiptPagedRequestCommand...
method hasAccessToReceipt (line 631) | public hasAccessToReceipt(receiptId: number, groupRole?: string, obser...
method quickScanReceipt (line 723) | public quickScanReceipt(files: Array<Blob>, groupIds: Array<number>, p...
method updateReceipt (line 867) | public updateReceipt(receiptId: number, upsertReceiptCommand: UpsertRe...
FILE: desktop/src/open-api/api/receiptImage.service.ts
class ReceiptImageService (line 37) | class ReceiptImageService {
method constructor (line 44) | constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_...
method canConsumeForm (line 66) | private canConsumeForm(consumes: string[]): boolean {
method addToHttpParams (line 77) | private addToHttpParams(httpParams: HttpParams, value: any, key?: stri...
method addToHttpParamsRecursive (line 86) | private addToHttpParamsRecursive(httpParams: HttpParams, value?: any, ...
method convertToJpg (line 122) | public convertToJpg(file: Blob, observe: any = 'body', reportProgress:...
method deleteReceiptImageById (line 223) | public deleteReceiptImageById(receiptImageId: number, observe: any = '...
method downloadReceiptImageById (line 301) | public downloadReceiptImageById(receiptImageId: number, observe: any =...
method getReceiptImageById (line 369) | public getReceiptImageById(receiptImageId: number, observe: any = 'bod...
method magicFillReceipt (line 448) | public magicFillReceipt(receiptImageId?: number, file?: Blob, observe:...
method uploadReceiptImage (line 555) | public uploadReceiptImage(file: Blob, receiptId: number, encodedImage?...
FILE: desktop/src/open-api/api/receiptProcessingSettings.service.ts
class ReceiptProcessingSettingsService (line 43) | class ReceiptProcessingSettingsService {
method constructor (line 50) | constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_...
method addToHttpParams (line 70) | private addToHttpParams(httpParams: HttpParams, value: any, key?: stri...
method addToHttpParamsRecursive (line 79) | private addToHttpParamsRecursive(httpParams: HttpParams, value?: any, ...
method checkReceiptProcessingSettingsConnectivity (line 114) | public checkReceiptProcessingSettingsConnectivity(checkReceiptProcessi...
method createReceiptProcessingSettings (line 202) | public createReceiptProcessingSettings(upsertReceiptProcessingSettings...
method deleteReceiptProcessingSettingsById (line 290) | public deleteReceiptProcessingSettingsById(id: number, observe: any = ...
method getPagedProcessingSettings (line 368) | public getPagedProcessingSettings(pagedRequestCommand: PagedRequestCom...
method getReceiptProcessingSettingsById (line 456) | public getReceiptProcessingSettingsById(id: number, observe: any = 'bo...
method updateReceiptProcessingSettingsById (line 536) | public updateReceiptProcessingSettingsById(id: number, updateKey: bool...
FILE: desktop/src/open-api/api/search.service.ts
class SearchService (line 33) | class SearchService {
method constructor (line 40) | constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_...
method addToHttpParams (line 60) | private addToHttpParams(httpParams: HttpParams, value: any, key?: stri...
method addToHttpParamsRecursive (line 69) | private addToHttpParamsRecursive(httpParams: HttpParams, value?: any, ...
method receiptSearch (line 105) | public receiptSearch(searchTerm: string, observe: any = 'body', report...
FILE: desktop/src/open-api/api/systemEmail.service.ts
class SystemEmailService (line 43) | class SystemEmailService {
method constructor (line 50) | constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_...
method addToHttpParams (line 70) | private addToHttpParams(httpParams: HttpParams, value: any, key?: stri...
method addToHttpParamsRecursive (line 79) | private addToHttpParamsRecursive(httpParams: HttpParams, value?: any, ...
method checkSystemEmailConnectivity (line 115) | public checkSystemEmailConnectivity(checkEmailConnectivityCommand: Che...
method createSystemEmail (line 203) | public createSystemEmail(upsertSystemEmailCommand: UpsertSystemEmailCo...
method deleteSystemEmailById (line 291) | public deleteSystemEmailById(id: number, observe: any = 'body', report...
method getPagedSystemEmails (line 369) | public getPagedSystemEmails(pagedRequestCommand: PagedRequestCommand, ...
method getSystemEmailById (line 457) | public getSystemEmailById(id: number, observe: any = 'body', reportPro...
method updateSystemEmailById (line 537) | public updateSystemEmailById(id: number, updatePassword: boolean, upse...
FILE: desktop/src/open-api/api/systemSettings.service.ts
class SystemSettingsService (line 35) | class SystemSettingsService {
method constructor (line 42) | constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_...
method addToHttpParams (line 62) | private addToHttpParams(httpParams: HttpParams, value: any, key?: stri...
method addToHttpParamsRecursive (line 71) | private addToHttpParamsRecursive(httpParams: HttpParams, value?: any, ...
method getSystemSettings (line 106) | public getSystemSettings(observe: any = 'body', reportProgress: boolea...
method restartTaskServer (line 180) | public restartTaskServer(observe: any = 'body', reportProgress: boolea...
method updateSystemSettings (line 255) | public updateSystemSettings(upsertSystemSettingsCommand: UpsertSystemS...
FILE: desktop/src/open-api/api/systemTask.service.ts
class SystemTaskService (line 37) | class SystemTaskService {
method constructor (line 44) | constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_...
method addToHttpParams (line 64) | private addToHttpParams(httpParams: HttpParams, value: any, key?: stri...
method addToHttpParamsRecursive (line 73) | private addToHttpParamsRecursive(httpParams: HttpParams, value?: any, ...
method getPagedActivities (line 109) | public getPagedActivities(pagedActivityRequestCommand: PagedActivityRe...
method getPagedSystemTasks (line 197) | public getPagedSystemTasks(getSystemTaskCommand: GetSystemTaskCommand,...
method rerunActivity (line 285) | public rerunActivity(id: number, observe: any = 'body', reportProgress...
FILE: desktop/src/open-api/api/tag.service.ts
class TagService (line 39) | class TagService {
method constructor (line 46) | constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_...
method addToHttpParams (line 66) | private addToHttpParams(httpParams: HttpParams, value: any, key?: stri...
method addToHttpParamsRecursive (line 75) | private addToHttpParamsRecursive(httpParams: HttpParams, value?: any, ...
method createTag (line 111) | public createTag(upsertTagCommand: UpsertTagCommand, observe: any = 'b...
method deleteTag (line 199) | public deleteTag(tagId: number, observe: any = 'body', reportProgress:...
method getAllTags (line 276) | public getAllTags(observe: any = 'body', reportProgress: boolean = fal...
method getPagedTags (line 351) | public getPagedTags(pagedRequestCommand: PagedRequestCommand, observe:...
method getTagCountByName (line 439) | public getTagCountByName(tagName: string, observe: any = 'body', repor...
method updateTag (line 519) | public updateTag(tagId: number, upsertTagCommand: UpsertTagCommand, ob...
FILE: desktop/src/open-api/api/user.service.ts
class UserService (line 47) | class UserService {
method constructor (line 54) | constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_...
method addToHttpParams (line 74) | private addToHttpParams(httpParams: HttpParams, value: any, key?: stri...
method addToHttpParamsRecursive (line 83) | private addToHttpParamsRecursive(httpParams: HttpParams, value?: any, ...
method bulkDeleteUsers (line 119) | public bulkDeleteUsers(bulkUserDeleteCommand: BulkUserDeleteCommand, o...
method convertDummyUserById (line 208) | public convertDummyUserById(userId: number, resetPasswordCommand: Rese...
method createUser (line 299) | public createUser(user: User, observe: any = 'body', reportProgress: b...
method deleteAccount (line 387) | public deleteAccount(deleteAccountCommand: DeleteAccountCommand, obser...
method deleteUserById (line 475) | public deleteUserById(userId: number, observe: any = 'body', reportPro...
method getAmountOwedForUser (line 554) | public getAmountOwedForUser(groupId?: number, receiptIds?: Array<numbe...
method getAppData (line 641) | public getAppData(observe: any = 'body', reportProgress: boolean = fal...
method getUserClaims (line 715) | public getUserClaims(observe: any = 'body', reportProgress: boolean = ...
method getUsernameCount (line 790) | public getUsernameCount(username: string, observe: any = 'body', repor...
method getUsers (line 867) | public getUsers(observe: any = 'body', reportProgress: boolean = false...
method resetPasswordById (line 943) | public resetPasswordById(userId: number, resetPasswordCommand: ResetPa...
method updateUserById (line 1035) | public updateUserById(userId: number, user: User, observe: any = 'body...
method updateUserProfile (line 1126) | public updateUserProfile(updateProfileCommand: UpdateProfileCommand, o...
FILE: desktop/src/open-api/api/userPreferences.service.ts
class UserPreferencesService (line 33) | class UserPreferencesService {
method constructor (line 40) | constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_...
method addToHttpParams (line 60) | private addToHttpParams(httpParams: HttpParams, value: any, key?: stri...
method addToHttpParamsRecursive (line 69) | private addToHttpParamsRecursive(httpParams: HttpParams, value?: any, ...
method getUserPreferences (line 104) | public getUserPreferences(observe: any = 'body', reportProgress: boole...
method updateUserPreferences (line 179) | public updateUserPreferences(userPreferences: UserPreferences, observe...
FILE: desktop/src/open-api/api/widget.service.ts
class WidgetService (line 35) | class WidgetService {
method constructor (line 42) | constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_...
method addToHttpParams (line 62) | private addToHttpParams(httpParams: HttpParams, value: any, key?: stri...
method addToHttpParamsRecursive (line 71) | private addToHttpParamsRecursive(httpParams: HttpParams, value?: any, ...
method getPieChartData (line 108) | public getPieChartData(groupId: number, pieChartDataCommand: PieChartD...
FILE: desktop/src/open-api/configuration.ts
type ConfigurationParameters (line 4) | interface ConfigurationParameters {
class Configuration (line 37) | class Configuration {
method constructor (line 69) | constructor(configurationParameters: ConfigurationParameters = {}) {
method selectHeaderContentType (line 118) | public selectHeaderContentType (contentTypes: string[]): string | unde...
method selectHeaderAccept (line 137) | public selectHeaderAccept(accepts: string[]): string | undefined {
method isJsonMime (line 159) | public isJsonMime(mime: string): boolean {
method lookupCredential (line 164) | public lookupCredential(key: string): string | undefined {
method defaultEncodeParam (line 171) | private defaultEncodeParam(param: Param): string {
FILE: desktop/src/open-api/encoder.ts
class CustomHttpParameterCodec (line 7) | class CustomHttpParameterCodec implements HttpParameterCodec {
method encodeKey (line 8) | encodeKey(k: string): string {
method encodeValue (line 11) | encodeValue(v: string): string {
method decodeKey (line 14) | decodeKey(k: string): string {
method decodeValue (line 17) | decodeValue(v: string): string {
FILE: desktop/src/open-api/model/about.ts
type About (line 12) | interface About {
FILE: desktop/src/open-api/model/activity.ts
type Activity (line 14) | interface Activity {
FILE: desktop/src/open-api/model/aiType.ts
type AiType (line 12) | type AiType = 'OPEN_AI_CUSTOM' | 'OPEN_AI' | 'GEMINI' | 'OLLAMA';
FILE: desktop/src/open-api/model/apiKeyFilter.ts
type ApiKeyFilter (line 13) | interface ApiKeyFilter {
FILE: desktop/src/open-api/model/apiKeyResult.ts
type ApiKeyResult (line 12) | interface ApiKeyResult {
FILE: desktop/src/open-api/model/apiKeyScope.ts
type ApiKeyScope (line 15) | type ApiKeyScope = 'r' | 'w' | 'rw';
FILE: desktop/src/open-api/model/apiKeyView.ts
type ApiKeyView (line 12) | interface ApiKeyView {
FILE: desktop/src/open-api/model/appData.ts
type AppData (line 23) | interface AppData {
FILE: desktop/src/open-api/model/associatedApiKeys.ts
type AssociatedApiKeys (line 12) | type AssociatedApiKeys = 'MINE' | 'ALL';
FILE: desktop/src/open-api/model/associatedEntityType.ts
type AssociatedEntityType (line 12) | type AssociatedEntityType = 'NOOP_ENTITY_TYPE' | 'RECEIPT' | 'SYSTEM_EMA...
FILE: desktop/src/open-api/model/associatedGroup.ts
type AssociatedGroup (line 12) | type AssociatedGroup = 'MINE' | 'ALL';
FILE: desktop/src/open-api/model/asynqQueueConfiguration.ts
type AsynqQueueConfiguration (line 13) | interface AsynqQueueConfiguration {
FILE: desktop/src/open-api/model/baseModel.ts
type BaseModel (line 12) | interface BaseModel {
FILE: desktop/src/open-api/model/bulkStatusUpdateCommand.ts
type BulkStatusUpdateCommand (line 12) | interface BulkStatusUpdateCommand {
FILE: desktop/src/open-api/model/bulkUserDeleteCommand.ts
type BulkUserDeleteCommand (line 12) | interface BulkUserDeleteCommand {
FILE: desktop/src/open-api/model/category.ts
type Category (line 15) | interface Category {
FILE: desktop/src/open-api/model/categoryView.ts
type CategoryView (line 15) | interface CategoryView {
FILE: desktop/src/open-api/model/chartGrouping.ts
type ChartGrouping (line 12) | type ChartGrouping = 'CATEGORIES' | 'TAGS' | 'PAIDBY';
FILE: desktop/src/open-api/model/checkEmailConnectivityCommand.ts
type CheckEmailConnectivityCommand (line 12) | interface CheckEmailConnectivityCommand {
FILE: desktop/src/open-api/model/checkEmailConnectivityCommandAllOf.ts
type CheckEmailConnectivityCommandAllOf (line 14) | interface CheckEmailConnectivityCommandAllOf {
FILE: desktop/src/open-api/model/checkReceiptProcessingSettingsConnectivityCommand.ts
type CheckReceiptProcessingSettingsConnectivityCommand (line 14) | interface CheckReceiptProcessingSettingsConnectivityCommand {
FILE: desktop/src/open-api/model/claims.ts
type Claims (line 13) | interface Claims {
FILE: desktop/src/open-api/model/comment.ts
type Comment (line 15) | interface Comment {
FILE: desktop/src/open-api/model/configImportCommand.ts
type ConfigImportCommand (line 14) | interface ConfigImportCommand {
FILE: desktop/src/open-api/model/currencySeparator.ts
type CurrencySeparator (line 12) | type CurrencySeparator = ',' | '.';
FILE: desktop/src/open-api/model/currencySymbolPosition.ts
type CurrencySymbolPosition (line 12) | type CurrencySymbolPosition = 'START' | 'END';
FILE: desktop/src/open-api/model/customField.ts
type CustomField (line 14) | interface CustomField {
FILE: desktop/src/open-api/model/customFieldOption.ts
type CustomFieldOption (line 12) | interface CustomFieldOption {
FILE: desktop/src/open-api/model/customFieldType.ts
type CustomFieldType (line 12) | type CustomFieldType = 'TEXT' | 'DATE' | 'SELECT' | 'CURRENCY' | 'BOOLEAN';
FILE: desktop/src/open-api/model/customFieldValue.ts
type CustomFieldValue (line 12) | interface CustomFieldValue {
FILE: desktop/src/open-api/model/dashboard.ts
type Dashboard (line 16) | interface Dashboard {
FILE: desktop/src/open-api/model/deleteAccountCommand.ts
type DeleteAccountCommand (line 15) | interface DeleteAccountCommand {
FILE: desktop/src/open-api/model/encodedImage.ts
type EncodedImage (line 12) | interface EncodedImage {
FILE: desktop/src/open-api/model/exportFormat.ts
type ExportFormat (line 12) | type ExportFormat = 'CSV';
FILE: desktop/src/open-api/model/featureConfig.ts
type FeatureConfig (line 12) | interface FeatureConfig {
FILE: desktop/src/open-api/model/fileData.ts
type FileData (line 15) | interface FileData {
FILE: desktop/src/open-api/model/fileDataView.ts
type FileDataView (line 12) | interface FileDataView {
FILE: desktop/src/open-api/model/fileDataViewAllOf.ts
type FileDataViewAllOf (line 14) | interface FileDataViewAllOf {
FILE: desktop/src/open-api/model/filterOperation.ts
type FilterOperation (line 12) | type FilterOperation = 'CONTAINS' | 'EQUALS' | 'GREATER_THAN' | 'LESS_TH...
FILE: desktop/src/open-api/model/getNewRefreshToken200Response.ts
type GetNewRefreshToken200Response (line 15) | interface GetNewRefreshToken200Response {
FILE: desktop/src/open-api/model/getSystemTaskCommand.ts
type GetSystemTaskCommand (line 14) | interface GetSystemTaskCommand {
FILE: desktop/src/open-api/model/group.ts
type Group (line 19) | interface Group {
FILE: desktop/src/open-api/model/groupFilter.ts
type GroupFilter (line 13) | interface GroupFilter {
FILE: desktop/src/open-api/model/groupMember.ts
type GroupMember (line 16) | interface GroupMember {
FILE: desktop/src/open-api/model/groupReceiptSettings.ts
type GroupReceiptSettings (line 12) | interface GroupReceiptSettings {
FILE: desktop/src/open-api/model/groupRole.ts
type GroupRole (line 12) | type GroupRole = 'OWNER' | 'VIEWER' | 'EDITOR';
FILE: desktop/src/open-api/model/groupSettings.ts
type GroupSettings (line 17) | interface GroupSettings {
FILE: desktop/src/open-api/model/groupSettingsWhiteListEmail.ts
type GroupSettingsWhiteListEmail (line 12) | interface GroupSettingsWhiteListEmail {
FILE: desktop/src/open-api/model/groupStatus.ts
type GroupStatus (line 12) | type GroupStatus = 'ACTIVE' | 'ARCHIVED';
FILE: desktop/src/open-api/model/icon.ts
type Icon (line 12) | interface Icon {
FILE: desktop/src/open-api/model/importType.ts
type ImportType (line 12) | type ImportType = 'IMPORT_CONFIG';
FILE: desktop/src/open-api/model/internalErrorResponse.ts
type InternalErrorResponse (line 12) | interface InternalErrorResponse {
FILE: desktop/src/open-api/model/item.ts
type Item (line 18) | interface Item {
FILE: desktop/src/open-api/model/itemStatus.ts
type ItemStatus (line 12) | type ItemStatus = 'OPEN' | 'RESOLVED' | 'DRAFT';
FILE: desktop/src/open-api/model/loginCommand.ts
type LoginCommand (line 12) | interface LoginCommand {
FILE: desktop/src/open-api/model/logoutCommand.ts
type LogoutCommand (line 12) | interface LogoutCommand {
FILE: desktop/src/open-api/model/magicFillCommand.ts
type MagicFillCommand (line 12) | interface MagicFillCommand {
FILE: desktop/src/open-api/model/notification.ts
type Notification (line 15) | interface Notification {
FILE: desktop/src/open-api/model/ocrEngine.ts
type OcrEngine (line 12) | type OcrEngine = 'TESSERACT' | 'EASY_OCR';
FILE: desktop/src/open-api/model/pagedActivityRequestCommand.ts
type PagedActivityRequestCommand (line 13) | interface PagedActivityRequestCommand {
FILE: desktop/src/open-api/model/pagedApiKeyRequestCommand.ts
type PagedApiKeyRequestCommand (line 14) | interface PagedApiKeyRequestCommand {
FILE: desktop/src/open-api/model/pagedData.ts
type PagedData (line 13) | interface PagedData {
FILE: desktop/src/open-api/model/pagedDataDataInner.ts
type PagedDataDataInner (line 36) | interface PagedDataDataInner {
FILE: desktop/src/open-api/model/pagedGroupRequestCommand.ts
type PagedGroupRequestCommand (line 14) | interface PagedGroupRequestCommand {
FILE: desktop/src/open-api/model/pagedGroupRequestCommandAllOf.ts
type PagedGroupRequestCommandAllOf (line 15) | interface PagedGroupRequestCommandAllOf {
FILE: desktop/src/open-api/model/pagedRequestCommand.ts
type PagedRequestCommand (line 13) | interface PagedRequestCommand {
FILE: desktop/src/open-api/model/pagedRequestField.ts
type PagedRequestField (line 16) | interface PagedRequestField {
FILE: desktop/src/open-api/model/pagedRequestFieldValue.ts
type PagedRequestFieldValue (line 22) | type PagedRequestFieldValue = Array<number> | Array<string> | number | s...
FILE: desktop/src/open-api/model/pieChartData.ts
type PieChartData (line 13) | interface PieChartData {
FILE: desktop/src/open-api/model/pieChartDataCommand.ts
type PieChartDataCommand (line 14) | interface PieChartDataCommand {
FILE: desktop/src/open-api/model/pieChartDataPoint.ts
type PieChartDataPoint (line 12) | interface PieChartDataPoint {
FILE: desktop/src/open-api/model/prompt.ts
type Prompt (line 12) | interface Prompt {
FILE: desktop/src/open-api/model/promptAllOf.ts
type PromptAllOf (line 14) | interface PromptAllOf {
FILE: desktop/src/open-api/model/queueName.ts
type QueueName (line 12) | type QueueName = 'quick_scan' | 'email_polling' | 'email_receipt_process...
FILE: desktop/src/open-api/model/receipt.ts
type Receipt (line 22) | interface Receipt {
FILE: desktop/src/open-api/model/receiptPagedRequestCommand.ts
type ReceiptPagedRequestCommand (line 14) | interface ReceiptPagedRequestCommand {
FILE: desktop/src/open-api/model/receiptPagedRequestFilter.ts
type ReceiptPagedRequestFilter (line 12) | interface ReceiptPagedRequestFilter {
FILE: desktop/src/open-api/model/receiptProcessingSettings.ts
type ReceiptProcessingSettings (line 15) | interface ReceiptProcessingSettings {
FILE: desktop/src/open-api/model/receiptProcessingSettingsAllOf.ts
type ReceiptProcessingSettingsAllOf (line 17) | interface ReceiptProcessingSettingsAllOf {
FILE: desktop/src/open-api/model/receiptStatus.ts
type ReceiptStatus (line 15) | type ReceiptStatus = 'OPEN' | 'NEEDS_ATTENTION' | 'RESOLVED' | 'DRAFT' |...
FILE: desktop/src/open-api/model/resetPasswordCommand.ts
type ResetPasswordCommand (line 15) | interface ResetPasswordCommand {
FILE: desktop/src/open-api/model/searchResult.ts
type SearchResult (line 13) | interface SearchResult {
FILE: desktop/src/open-api/model/signUpCommand.ts
type SignUpCommand (line 13) | interface SignUpCommand {
FILE: desktop/src/open-api/model/sortDirection.ts
type SortDirection (line 12) | type SortDirection = 'asc' | 'desc' | '';
FILE: desktop/src/open-api/model/subjectLineRegex.ts
type SubjectLineRegex (line 12) | interface SubjectLineRegex {
FILE: desktop/src/open-api/model/systemEmail.ts
type SystemEmail (line 12) | interface SystemEmail {
FILE: desktop/src/open-api/model/systemEmailAllOf.ts
type SystemEmailAllOf (line 14) | interface SystemEmailAllOf {
FILE: desktop/src/open-api/model/systemSettings.ts
type SystemSettings (line 15) | interface SystemSettings {
FILE: desktop/src/open-api/model/systemSettingsAllOf.ts
type SystemSettingsAllOf (line 14) | interface SystemSettingsAllOf {
FILE: desktop/src/open-api/model/systemTask.ts
type SystemTask (line 15) | interface SystemTask {
FILE: desktop/src/open-api/model/systemTaskAllOf.ts
type SystemTaskAllOf (line 18) | interface SystemTaskAllOf {
FILE: desktop/src/open-api/model/systemTaskStatus.ts
type SystemTaskStatus (line 12) | type SystemTaskStatus = 'SUCCEEDED' | 'FAILED';
FILE: desktop/src/open-api/model/systemTaskType.ts
type SystemTaskType (line 12) | type SystemTaskType = 'OCR_PROCESSING' | 'CHAT_COMPLETION' | 'MAGIC_FILL...
FILE: desktop/src/open-api/model/tag.ts
type Tag (line 15) | interface Tag {
FILE: desktop/src/open-api/model/tagView.ts
type TagView (line 15) | interface TagView {
FILE: desktop/src/open-api/model/taskQueueConfiguration.ts
type TaskQueueConfiguration (line 13) | interface TaskQueueConfiguration {
FILE: desktop/src/open-api/model/tokenPair.ts
type TokenPair (line 12) | interface TokenPair {
FILE: desktop/src/open-api/model/updateGroupReceiptSettingsCommand.ts
type UpdateGroupReceiptSettingsCommand (line 12) | interface UpdateGroupReceiptSettingsCommand {
FILE: desktop/src/open-api/model/updateGroupSettingsCommand.ts
type UpdateGroupSettingsCommand (line 15) | interface UpdateGroupSettingsCommand {
FILE: desktop/src/open-api/model/updateProfileCommand.ts
type UpdateProfileCommand (line 15) | interface UpdateProfileCommand {
FILE: desktop/src/open-api/model/upsertApiKeyCommand.ts
type UpsertApiKeyCommand (line 13) | interface UpsertApiKeyCommand {
FILE: desktop/src/open-api/model/upsertAsynqQueueConfiguration.ts
type UpsertAsynqQueueConfiguration (line 13) | interface UpsertAsynqQueueConfiguration {
FILE: desktop/src/open-api/model/upsertCategoryCommand.ts
type UpsertCategoryCommand (line 12) | interface UpsertCategoryCommand {
FILE: desktop/src/open-api/model/upsertCommentCommand.ts
type UpsertCommentCommand (line 12) | interface UpsertCommentCommand {
FILE: desktop/src/open-api/model/upsertCustomFieldCommand.ts
type UpsertCustomFieldCommand (line 14) | interface UpsertCustomFieldCommand {
FILE: desktop/src/open-api/model/upsertCustomFieldOptionCommand.ts
type UpsertCustomFieldOptionCommand (line 12) | interface UpsertCustomFieldOptionCommand {
FILE: desktop/src/open-api/model/upsertCustomFieldValueCommand.ts
type UpsertCustomFieldValueCommand (line 12) | interface UpsertCustomFieldValueCommand {
FILE: desktop/src/open-api/model/upsertDashboardCommand.ts
type UpsertDashboardCommand (line 13) | interface UpsertDashboardCommand {
FILE: desktop/src/open-api/model/upsertGroupCommand.ts
type UpsertGroupCommand (line 14) | interface UpsertGroupCommand {
FILE: desktop/src/open-api/model/upsertGroupMemberCommand.ts
type UpsertGroupMemberCommand (line 13) | interface UpsertGroupMemberCommand {
FILE: desktop/src/open-api/model/upsertItemCommand.ts
type UpsertItemCommand (line 15) | interface UpsertItemCommand {
FILE: desktop/src/open-api/model/upsertPromptCommand.ts
type UpsertPromptCommand (line 12) | interface UpsertPromptCommand {
FILE: desktop/src/open-api/model/upsertReceiptCommand.ts
type UpsertReceiptCommand (line 18) | interface UpsertReceiptCommand {
FILE: desktop/src/open-api/model/upsertReceiptProcessingSettingsCommand.ts
type UpsertReceiptProcessingSettingsCommand (line 14) | interface UpsertReceiptProcessingSettingsCommand {
FILE: desktop/src/open-api/model/upsertSystemEmailCommand.ts
type UpsertSystemEmailCommand (line 12) | interface UpsertSystemEmailCommand {
FILE: desktop/src/open-api/model/upsertSystemSettingsCommand.ts
type UpsertSystemSettingsCommand (line 15) | interface UpsertSystemSettingsCommand {
FILE: desktop/src/open-api/model/upsertTagCommand.ts
type UpsertTagCommand (line 15) | interface UpsertTagCommand {
FILE: desktop/src/open-api/model/upsertTaskQueueConfiguration.ts
type UpsertTaskQueueConfiguration (line 13) | interface UpsertTaskQueueConfiguration {
FILE: desktop/src/open-api/model/upsertWidgetCommand.ts
type UpsertWidgetCommand (line 13) | interface UpsertWidgetCommand {
FILE: desktop/src/open-api/model/user.ts
type User (line 16) | interface User {
FILE: desktop/src/open-api/model/userPreferences.ts
type UserPreferences (line 14) | interface UserPreferences {
FILE: desktop/src/open-api/model/userPreferencesAllOf.ts
type UserPreferencesAllOf (line 15) | interface UserPreferencesAllOf {
FILE: desktop/src/open-api/model/userRole.ts
type UserRole (line 12) | type UserRole = 'ADMIN' | 'USER';
FILE: desktop/src/open-api/model/userShortcut.ts
type UserShortcut (line 12) | interface UserShortcut {
FILE: desktop/src/open-api/model/userView.ts
type UserView (line 16) | interface UserView {
FILE: desktop/src/open-api/model/widget.ts
type Widget (line 16) | interface Widget {
FILE: desktop/src/open-api/model/widgetType.ts
type WidgetType (line 12) | type WidgetType = 'GROUP_SUMMARY' | 'FILTERED_RECEIPTS' | 'GROUP_ACTIVIT...
FILE: desktop/src/open-api/param.ts
type StandardParamStyle (line 4) | type StandardParamStyle =
type ParamStyle (line 17) | type ParamStyle = StandardParamStyle | string;
type ParamLocation (line 22) | type ParamLocation = 'query' | 'header' | 'path' | 'cookie';
type StandardDataType (line 27) | type StandardDataType =
type DataType (line 39) | type DataType = StandardDataType | string;
type StandardDataFormat (line 44) | type StandardDataFormat =
type DataFormat (line 56) | type DataFormat = StandardDataFormat | string;
type Param (line 61) | interface Param {
FILE: desktop/src/open-api/variables.ts
constant BASE_PATH (line 3) | const BASE_PATH = new InjectionToken<string>('basePath');
constant COLLECTION_FORMATS (line 4) | const COLLECTION_FORMATS = {
FILE: desktop/src/pipes/custom-currency.pipe.ts
class CustomCurrencyPipe (line 11) | class CustomCurrencyPipe implements PipeTransform {
method constructor (line 12) | constructor(private store: Store, private currencyPipe: CurrencyPipe) {}
method transform (line 14) | public transform(
FILE: desktop/src/pipes/custom-field-type.pipe.ts
class CustomFieldTypePipe (line 9) | class CustomFieldTypePipe implements PipeTransform {
method transform (line 11) | public transform(type: CustomFieldType): string {
FILE: desktop/src/pipes/duration.pipe.ts
class DurationPipe (line 9) | class DurationPipe implements PipeTransform {
method transform (line 10) | public transform(date: string | Date | null | undefined): string {
method pluralize (line 58) | private pluralize(count: number, word: string): string {
FILE: desktop/src/pipes/form-array-last.pipe.ts
class FormArrayLastPipe (line 8) | class FormArrayLastPipe implements PipeTransform {
method transform (line 9) | public transform(array: FormArray): any {
FILE: desktop/src/pipes/form-get.pipe.ts
class FormGetPipe (line 8) | class FormGetPipe implements PipeTransform {
method transform (line 9) | transform(form: FormGroup, path: string): FormControl {
FILE: desktop/src/pipes/group-role.pipe.ts
class GroupRolePipe (line 9) | class GroupRolePipe implements PipeTransform {
method constructor (line 10) | constructor(private groupUtil: GroupUtil) {}
method transform (line 12) | public transform(
FILE: desktop/src/pipes/group.pipe.ts
class GroupPipe (line 10) | class GroupPipe implements PipeTransform {
method constructor (line 11) | constructor(private store: Store) {}
method transform (line 13) | public transform(groupId: string): Group | undefined {
FILE: desktop/src/pipes/image.pipe.ts
class ImagePipe (line 8) | class ImagePipe implements PipeTransform {
method transform (line 9) | public transform(image: FileData): string {
FILE: desktop/src/pipes/input-readonly.pipe.ts
class InputReadonlyPipe (line 8) | class InputReadonlyPipe implements PipeTransform {
method transform (line 9) | public transform(mode: FormMode): boolean {
FILE: desktop/src/pipes/map-get.pipe.ts
class MapGetPipe (line 7) | class MapGetPipe implements PipeTransform {
method transform (line 8) | public transform(value: Map<any, any>, key: any): any | undefined {
FILE: desktop/src/pipes/map-key.pipe.ts
class MapKeyPipe (line 7) | class MapKeyPipe implements PipeTransform {
method transform (line 8) | public transform(value: Map<any, any>): any[] {
FILE: desktop/src/pipes/name.pipe.ts
class NamePipe (line 7) | class NamePipe implements PipeTransform {
method transform (line 8) | public transform(value: any[]): string {
FILE: desktop/src/pipes/pipes.module.ts
class PipesModule (line 53) | class PipesModule {}
FILE: desktop/src/pipes/status.pipe.ts
class StatusPipe (line 9) | class StatusPipe implements PipeTransform {
method transform (line 10) | public transform(status: string): string {
FILE: desktop/src/pipes/user.pipe.ts
class UserPipe (line 10) | class UserPipe implements PipeTransform {
method constructor (line 11) | constructor(private store: Store) {}
method transform (line 15) | public transform(userId?: string): User | undefined {
FILE: desktop/src/prompt/prompt-form/prompt-form.component.ts
class PromptFormComponent (line 15) | class PromptFormComponent extends BaseFormComponent implements OnInit {
method constructor (line 20) | constructor(
method ngOnInit (line 31) | public ngOnInit() {
method initForm (line 37) | private initForm(): void {
method templateVariableValidator (line 45) | private templateVariableValidator(): ValidatorFn {
method submit (line 63) | public submit(): void {
method createPrompt (line 71) | private createPrompt(): void {
method updatePrompt (line 84) | private updatePrompt(): void {
FILE: desktop/src/prompt/prompt-routing.module.ts
class PromptRoutingModule (line 10) | class PromptRoutingModule { }
FILE: desktop/src/prompt/prompt-table/prompt-table.component.ts
class PromptTableComponent (line 22) | class PromptTableComponent implements OnInit, AfterViewInit {
method constructor (line 52) | constructor(
method ngOnInit (line 62) | public ngOnInit(): void {
method ngAfterViewInit (line 68) | public ngAfterViewInit(): void {
method initTable (line 72) | private initTable(): void {
method setColumns (line 76) | private setColumns(): void {
method getTableData (line 123) | private getTableData(): void {
method setPromptsWithRelatedData (line 138) | private setPromptsWithRelatedData(prompts: Prompt[]): void {
method sorted (line 150) | public sorted(sort: Sort): void {
method pageChanged (line 157) | public pageChanged(pageEvent: PageEvent): void {
method deletePrompt (line 166) | public deletePrompt(prompt: Prompt): void {
method callDeleteApi (line 186) | private callDeleteApi(id: number, index: number): void {
method duplicatePrompt (line 202) | public duplicatePrompt(id: number): void {
method createDefaultPrompt (line 225) | public createDefaultPrompt(): void {
method disabledDeleteButtonClicked (line 237) | public disabledDeleteButtonClicked(prompt: Prompt): void {
method setDefaultPromptExists (line 245) | private setDefaultPromptExists(): void {
FILE: desktop/src/prompt/prompt.module.ts
class PromptModule (line 33) | class PromptModule {}
FILE: desktop/src/radio-group/models/radio-button-data.ts
type RadioButtonData (line 1) | interface RadioButtonData {
FILE: desktop/src/radio-group/radio-group.module.ts
class RadioGroupModule (line 12) | class RadioGroupModule {}
FILE: desktop/src/radio-group/radio-group/radio-group.component.ts
class RadioGroupComponent (line 11) | class RadioGroupComponent {
FILE: desktop/src/receipt-processing-settings/constants/pretty-json.ts
constant DEFAULT_PRETTY_JSON_OPTIONS (line 3) | const DEFAULT_PRETTY_JSON_OPTIONS: FormatOptions = {
FILE: desktop/src/receipt-processing-settings/pipes/ai-type.pipe.ts
class AiTypePipe (line 9) | class AiTypePipe implements PipeTransform {
method transform (line 10) | public transform(value: AiType): string {
FILE: desktop/src/receipt-processing-settings/pipes/ocr-engine.pipe.ts
class OcrEnginePipe (line 9) | class OcrEnginePipe implements PipeTransform {
method transform (line 10) | public transform(value: OcrEngine): string {
FILE: desktop/src/receipt-processing-settings/pipes/url-label.pipe.ts
class UrlLabelPipe (line 7) | class UrlLabelPipe implements PipeTransform {
method transform (line 8) | public transform(aiType: AiType): string {
FILE: desktop/src/receipt-processing-settings/receipt-processing-settings-child-system-task-accordion/receipt-processing-settings-child-system-task-accordion.component.ts
class ReceiptProcessingSettingsChildSystemTaskAccordionComponent (line 12) | class ReceiptProcessingSettingsChildSystemTaskAccordionComponent impleme...
method constructor (line 33) | constructor(private activatedRoute: ActivatedRoute) {}
method ngOnInit (line 35) | public ngOnInit(): void {
method ngAfterViewInit (line 39) | public ngAfterViewInit(): void {
method setAccordionPanels (line 43) | private setAccordionPanels(): void {
FILE: desktop/src/receipt-processing-settings/receipt-processing-settings-form/receipt-processing-settings-form.component.ts
class ReceiptProcessingSettingsFormComponent (line 40) | class ReceiptProcessingSettingsFormComponent extends BaseFormComponent i...
method constructor (line 61) | constructor(
method ngOnInit (line 73) | public ngOnInit(): void {
method initForm (line 81) | private initForm(): void {
method listenForIsVisionModelChange (line 107) | private listenForIsVisionModelChange(): void {
method listenForTypeChange (line 121) | private listenForTypeChange(): void {
method updateOpenAiGeminiForm (line 143) | private updateOpenAiGeminiForm(): void {
method updateOpenAiCustomForm (line 159) | private updateOpenAiCustomForm(): void {
method updateOllamaForm (line 168) | private updateOllamaForm(): void {
method promptDisplayWith (line 177) | public promptDisplayWith(promptId: number): string {
method submit (line 187) | public submit(): void {
method createSettings (line 195) | private createSettings(): void {
method updateSettings (line 207) | private updateSettings(): void {
method showConfirmationDialog (line 215) | private showConfirmationDialog(): void {
method callUpdateApi (line 232) | private callUpdateApi(updateKey: boolean): void {
method checkConnectivity (line 247) | public checkConnectivity(): void {
method callCheckConnectivityApi (line 285) | private callCheckConnectivityApi(command: CheckReceiptProcessingSettin...
FILE: desktop/src/receipt-processing-settings/receipt-processing-settings-table/receipt-processing-settings-table.component.ts
class ReceiptProcessingSettingsTableComponent (line 34) | class ReceiptProcessingSettingsTableComponent extends BaseTableComponent...
method constructor (line 53) | constructor(
method ngOnInit (line 64) | public ngOnInit(): void {
method ngAfterViewInit (line 69) | public ngAfterViewInit(): void {
method initTable (line 73) | private initTable(): void {
method setColumns (line 77) | private setColumns(): void {
method deleteReceiptProcessingSettings (line 134) | public deleteReceiptProcessingSettings(receiptProcessingSettings: Rece...
method callDeleteApi (line 153) | private callDeleteApi(receiptProcessingSettings: ReceiptProcessingSett...
method checkConnectivity (line 165) | public checkConnectivity(id: number): void {
method disabledDeleteButtonClicked (line 184) | public disabledDeleteButtonClicked(settings: ReceiptProcessingSettings...
FILE: desktop/src/receipt-processing-settings/receipt-processing-settings-table/receipt-processing-settings-table.service.ts
class ReceiptProcessingSettingsTableService (line 13) | class ReceiptProcessingSettingsTableService extends BaseTableService {
method constructor (line 18) | constructor(
method setPage (line 28) | public setPage(page: number): void {
method setPageSize (line 32) | public setPageSize(pageSize: number): void {
method setOrderBy (line 36) | public setOrderBy(orderBy: Sort): void {
method setSortDirection (line 40) | public setSortDirection(sortDirection: SortDirection): void {
method getPagedRequestCommand (line 44) | public getPagedRequestCommand(): PagedRequestCommand {
method getPagedData (line 48) | public getPagedData(): Observable<PagedData> {
FILE: desktop/src/receipt-processing-settings/receipt-processing-settings.module.ts
class ReceiptProcessingSettingsModule (line 47) | class ReceiptProcessingSettingsModule {
FILE: desktop/src/receipts/bulk-resolve-dialog/bulk-status-update-dialog.component.ts
class BulkStatusUpdateComponent (line 13) | class BulkStatusUpdateComponent implements OnInit {
method constructor (line 18) | constructor(
method ngOnInit (line 23) | public ngOnInit(): void {
method initForm (line 27) | private initForm(): void {
method cancelButtonClicked (line 34) | public cancelButtonClicked(): void {
method submitButtonClicked (line 38) | public submitButtonClicked(): void {
FILE: desktop/src/receipts/column-configuration-dialog/column-configuration-dialog.component.ts
type ColumnConfigItem (line 6) | interface ColumnConfigItem extends ReceiptTableColumnConfig {
class ColumnConfigurationDialogComponent (line 16) | class ColumnConfigurationDialogComponent implements OnInit {
method constructor (line 31) | constructor(
method ngOnInit (line 36) | ngOnInit(): void {
method initializeColumns (line 40) | private initializeColumns(): void {
method toggleColumnVisibility (line 51) | public toggleColumnVisibility(column: ColumnConfigItem): void {
method drop (line 55) | public drop(event: CdkDragDrop<ColumnConfigItem[]>): void {
method resetToDefaults (line 63) | public resetToDefaults(): void {
method saveConfiguration (line 70) | public saveConfiguration(): void {
method cancel (line 75) | public cancel(): void {
method visibleColumnsCount (line 79) | public get visibleColumnsCount(): number {
method canToggleOff (line 83) | public canToggleOff(column: ColumnConfigItem): boolean {
FILE: desktop/src/receipts/custom-field/custom-field.component.ts
class CustomFieldComponent (line 11) | class CustomFieldComponent {
FILE: desktop/src/receipts/item-add-form/item-add-form.component.ts
class ItemAddFormComponent (line 28) | class ItemAddFormComponent implements OnInit, OnDestroy {
method constructor (line 58) | constructor(private keyboardShortcutService: KeyboardShortcutService) {}
method ngOnInit (line 60) | public ngOnInit(): void {
method ngOnDestroy (line 70) | public ngOnDestroy(): void {
method handleKeyboardShortcut (line 76) | public handleKeyboardShortcut(event: KeyboardEvent): void {
method initializeForm (line 86) | private initializeForm(): void {
method setupKeyboardShortcuts (line 95) | private setupKeyboardShortcuts(): void {
method handleShortcutAction (line 111) | private handleShortcutAction(action: string): void {
method onSubmitAndContinue (line 129) | public onSubmitAndContinue(): void {
method onSubmitAndFinish (line 147) | public onSubmitAndFinish(): void {
method onCancel (line 156) | public onCancel(): void {
method onNameEnter (line 161) | public onNameEnter(event: Event): void {
method onAmountEnter (line 166) | public onAmountEnter(event: Event): void {
method onCategoryEnter (line 180) | public onCategoryEnter(event: Event): void {
method onTagEnter (line 191) | public onTagEnter(event: Event): void {
method focusNameField (line 196) | private focusNameField(): void {
method focusAmountField (line 204) | private focusAmountField(): void {
method focusCategoryField (line 212) | private focusCategoryField(): void {
method focusTagField (line 222) | private focusTagField(): void {
FILE: desktop/src/receipts/item-list/item-list.component.ts
type ItemData (line 30) | interface ItemData {
class ItemListComponent (line 42) | class ItemListComponent implements OnInit, OnChanges, OnDestroy {
method receiptItems (line 86) | public get receiptItems(): FormArray {
method constructor (line 90) | constructor(
method ngOnInit (line 96) | public ngOnInit(): void {
method ngOnChanges (line 103) | public ngOnChanges(changes: SimpleChanges): void {
method handleKeyboardShortcut (line 113) | public handleKeyboardShortcut(event: KeyboardEvent): void {
method setupKeyboardShortcuts (line 123) | private setupKeyboardShortcuts(): void {
method handleShortcutAction (line 132) | private handleShortcutAction(action: string): void {
method setItems (line 142) | public setItems(): void {
method startAddMode (line 163) | public startAddMode(): void {
method initAddMode (line 173) | public initAddMode(): void {
method onItemSubmitAndContinue (line 179) | public onItemSubmitAndContinue(item: Item): void {
method onItemSubmitAndFinish (line 184) | public onItemSubmitAndFinish(item: Item): void {
method onItemCancelled (line 189) | public onItemCancelled(): void {
method removeItem (line 193) | public removeItem(itemData: ItemData): void {
method splitItem (line 197) | public splitItem(itemData: ItemData): void {
method addInlineItem (line 226) | public addInlineItem(event?: MouseEvent): void {
method addInlineItemOnBlur (line 240) | public addInlineItemOnBlur(index: number): void {
method checkLastInlineItem (line 251) | public checkLastInlineItem(): void {
method getTotalAmount (line 267) | public getTotalAmount(): number {
method ngOnDestroy (line 281) | ngOnDestroy(): void {
FILE: desktop/src/receipts/pipes/custom-field.pipe.ts
class CustomFieldPipe (line 8) | class CustomFieldPipe implements PipeTransform {
method transform (line 10) | public transform(customFieldId: number, customFields: CustomField[]): ...
FILE: desktop/src/receipts/quick-actions-dialog/quick-actions-dialog.component.ts
type QuickActions (line 8) | enum QuickActions {
class QuickActionsDialogComponent (line 20) | class QuickActionsDialogComponent implements OnInit {
method usersFormArray (line 49) | private get usersFormArray(): FormArray {
method constructor (line 53) | constructor(
method ngOnInit (line 59) | public ngOnInit(): void {
method initForm (line 65) | private initForm(): void {
method listenForUserChanges (line 72) | private listenForUserChanges(): void {
method listenForQuickActionChanges (line 133) | private listenForQuickActionChanges(): void {
method clearPercentageErrors (line 142) | private clearPercentageErrors(): void {
method addSplits (line 155) | public addSplits(): void {
method addEvenSplitItems (line 190) | private addEvenSplitItems(): Item[] {
method splitEvenlyWithOptionalParts (line 206) | private splitEvenlyWithOptionalParts(): Item[] {
method buildSplitItem (line 241) | private buildSplitItem(u: User, name: string, amount: number): Item {
method validatePercentages (line 252) | private validatePercentages(): boolean {
method splitByPercentage (line 292) | private splitByPercentage(): Item[] {
method setPercentage (line 316) | public setPercentage(userId: string, percentage: number): void {
method closeDialog (line 332) | public closeDialog(): void {
FILE: desktop/src/receipts/quick-scan-dialog/quick-scan-dialog.component.ts
class QuickScanDialogComponent (line 19) | class QuickScanDialogComponent implements OnInit {
method constructor (line 28) | constructor(
method paidByUserIds (line 36) | public get paidByUserIds(): FormArray {
method statuses (line 40) | public get statuses(): FormArray {
method groupIds (line 44) | public get groupIds(): FormArray {
method ngOnInit (line 48) | public ngOnInit(): void {
method initForm (line 52) | private initForm(): void {
method fileLoaded (line 60) | public fileLoaded(fileData: ReceiptFileUploadCommand): void {
method openImageUploadComponent (line 73) | public openImageUploadComponent(): void {
method removeImage (line 77) | public removeImage(index: number): void {
method submitButtonClicked (line 84) | public submitButtonClicked(): void {
method cancelButtonClicked (line 111) | public cancelButtonClicked(): void {
method navigateImages (line 115) | public navigateImages(delta: number): void {
FILE: desktop/src/receipts/receipt-comments/receipt-comments.component.ts
class ReceiptCommentsComponent (line 18) | class ReceiptCommentsComponent implements OnInit {
method constructor (line 33) | constructor(
method ngOnInit (line 40) | public ngOnInit(): void {
method initForm (line 45) | private initForm(): void {
method buildCommentFormGroup (line 51) | private buildCommentFormGroup(comment?: Comment): FormGroup {
method addComment (line 62) | public addComment(): void {
method deleteComment (line 91) | public deleteComment(index: number): void {
FILE: desktop/src/receipts/receipt-form/receipt-form.component.ts
class ReceiptFormComponent (line 56) | class ReceiptFormComponent implements OnInit {
method syncAmountWithItems (line 139) | public get syncAmountWithItems(): boolean {
method customFieldsFormArray (line 143) | public get customFieldsFormArray(): FormArray {
method receiptItemsFormArray (line 147) | public get receiptItemsFormArray(): FormArray {
method constructor (line 151) | constructor(
method handleKeyboardEvent (line 166) | public handleKeyboardEvent(event: KeyboardEvent): void {
method ngOnInit (line 183) | public ngOnInit(): void {
method setQueueData (line 214) | private setQueueData(): void {
method toggleAmountSync (line 227) | public toggleAmountSync(sync: boolean): void {
method clearItemValidationErrors (line 238) | private clearItemValidationErrors(): void {
method revalidateItems (line 250) | private revalidateItems(): void {
method updateAmountFromItems (line 257) | private updateAmountFromItems(): void {
method calculateItemsTotal (line 262) | private calculateItemsTotal(): number {
method setupAmountSyncListener (line 273) | private setupAmountSyncListener(): void {
method setShowLargeImagePreview (line 285) | private setShowLargeImagePreview(): void {
method setHeaderText (line 289) | private setHeaderText(): void {
method setCancelLink (line 314) | private setCancelLink(): void {
method initForm (line 321) | private initForm(): void {
method listenForSyncWithItemsChanges (line 372) | private listenForSyncWithItemsChanges(): void {
method buildCustomOptionFormGroup (line 377) | private buildCustomOptionFormGroup(value: CustomFieldValue): FormGroup {
method listenForGroupChanges (line 389) | private listenForGroupChanges(): void {
method getImageFiles (line 418) | private getImageFiles(): void {
method openQuickActionsModal (line 441) | public openQuickActionsModal(): void {
method removeImage (line 457) | public removeImage(): void {
method magicFill (line 480) | public magicFill(): void {
method patchMagicValues (line 506) | private patchMagicValues(magicReceipt: Receipt): void {
method patchMagicValue (line 561) | private patchMagicValue(key: string, magicReceipt: Receipt): void {
method handleDateMagicFill (line 567) | private handleDateMagicFill(value: string): Date {
method handleCategoryAndTagMagicFill (line 571) | private handleCategoryAndTagMagicFill(
method formatMagicFilledDate (line 585) | private formatMagicFilledDate(date: string): Date {
method uploadImageButtonClicked (line 593) | public uploadImageButtonClicked(): void {
method updateComments (line 597) | public updateComments(commentsArray: FormArray): void {
method duplicateReceipt (line 602) | public duplicateReceipt(): void {
method imageFileLoaded (line 618) | public imageFileLoaded(command: ReceiptFileUploadCommand): void {
method closeSuccessDuplicateSnackbar (line 644) | public closeSuccessDuplicateSnackbar(): void {
method toggleShowImages (line 648) | public toggleShowImages(): void {
method zoomImageIn (line 652) | public zoomImageIn(): void {
method zoomImageOut (line 656) | public zoomImageOut(): void {
method toggleImagePreviewSize (line 660) | public toggleImagePreviewSize(): void {
method expandImage (line 664) | public expandImage(): void {
method downloadImage (line 672) | public downloadImage(): void {
method initItemListAddMode (line 684) | public initItemListAddMode(): void {
method isAnyInputFocused (line 690) | private isAnyInputFocused(): boolean {
method initShareListAddMode (line 698) | public initShareListAddMode(): void {
method onItemAdded (line 704) | public onItemAdded(item: Item): void {
method onItemRemoved (line 710) | public onItemRemoved(data: { item: Item; arrayIndex: number; isLinkedI...
method onQuickActionItemsAdded (line 724) | public onQuickActionItemsAdded(data: { items: Item[], itemIndex?: numb...
method onItemSplit (line 740) | public onItemSplit(data: { items: Item[], itemIndex: number }): void {
method addLinkedItems (line 746) | private addLinkedItems(items: Item[], itemIndex: number): void {
method refreshComponentsAndSync (line 764) | private refreshComponentsAndSync(): void {
method onAllItemsResolved (line 774) | public onAllItemsResolved(userId: string): void {
method queueNext (line 779) | public queueNext(): void {
method queuePrevious (line 785) | public queuePrevious(): void {
method customFieldChanged (line 791) | public customFieldChanged(item: StatefulMenuItem): void {
method updateCustomFields (line 820) | private updateCustomFields(): void {
method submit (line 828) | public submit(): void {
method createReceipt (line 845) | private createReceipt(): void {
method updateReceipt (line 877) | private updateReceipt(): void {
FILE: desktop/src/receipts/receipts-routing.module.ts
class ReceiptsRoutingModule (line 83) | class ReceiptsRoutingModule {
FILE: desktop/src/receipts/receipts-table/receipts-table.component.ts
class ReceiptsTableComponent (line 52) | class ReceiptsTableComponent implements OnInit, AfterViewInit {
method constructor (line 53) | constructor(
method ngOnInit (line 131) | public ngOnInit(): void {
method setGroup (line 146) | private setGroup(): void {
method getInitialData (line 150) | private getInitialData(): void {
method setCanEdit (line 164) | private setCanEdit(): void {
method setHeaderText (line 168) | private setHeaderText(): void {
method ngAfterViewInit (line 181) | public ngAfterViewInit(): void {
method setSelectedReceiptIdsObservable (line 185) | private setSelectedReceiptIdsObservable(): void {
method setColumns (line 195) | private setColumns(): void {
method sort (line 291) | public sort(sortState: Sort): void {
method filterButtonClicked (line 312) | public filterButtonClicked(): void {
method resetFilterButtonClicked (line 346) | public resetFilterButtonClicked(): void {
method configureColumnsButtonClicked (line 351) | public configureColumnsButtonClicked(): void {
method getFilteredReceipts (line 373) | public getFilteredReceipts(): void {
method deleteReceipt (line 386) | public deleteReceipt(row: Receipt): void {
method duplicateReceipt (line 416) | public duplicateReceipt(id: string): void {
method updatePageData (line 428) | public updatePageData(pageEvent: PageEvent): void {
method showStatusUpdateDialog (line 436) | public showStatusUpdateDialog(): void {
method pollEmail (line 492) | public pollEmail(): void {
method exportSelectedReceipts (line 506) | public exportSelectedReceipts(): void {
FILE: desktop/src/receipts/receipts.module.ts
class ReceiptsModule (line 108) | class ReceiptsModule {}
FILE: desktop/src/receipts/share-list/share-list.component.spec.ts
function createFormWithItems (line 71) | function createFormWithItems(items: Item[]): FormGroup {
function wireParentOnItemAdded (line 677) | function wireParentOnItemAdded(): jest.Mock {
FILE: desktop/src/receipts/share-list/share-list.component.ts
type ItemData (line 24) | interface ItemData {
class ShareListComponent (line 39) | class ShareListComponent implements OnInit, OnChanges {
method receiptItems (line 88) | public get receiptItems(): FormArray {
method constructor (line 92) | constructor(
method ngOnInit (line 97) | public ngOnInit(): void {
method ngOnChanges (line 103) | public ngOnChanges(changes: SimpleChanges): void {
method setUserItemMap (line 110) | public setUserItemMap(): void {
method initAddMode (line 164) | public initAddMode(): void {
method exitAddMode (line 174) | public exitAddMode(): void {
method submitNewItemFormGroup (line 179) | public submitNewItemFormGroup(): void {
method removeItem (line 187) | public removeItem(itemData: ItemData): void {
method addInlineItem (line 196) | public addInlineItem(userId: string, event?: MouseEvent): void {
method addInlineItemOnBlur (line 216) | public addInlineItemOnBlur(userId: string, index: number): void {
method checkLastInlineItem (line 236) | public checkLastInlineItem(userId: string): void {
method resolveAllItemsClicked (line 257) | public resolveAllItemsClicked(event: MouseEvent, userId: string): void {
method allUserItemsResolved (line 269) | public allUserItemsResolved(userId: string): boolean {
method getItemsForUser (line 276) | private getItemsForUser(userId: string): AbstractControl[] {
method getFormControlPath (line 282) | public getFormControlPath(itemData: ItemData, fieldName: string): stri...
FILE: desktop/src/receipts/upload-image/upload-image.component.ts
class UploadImageComponent (line 13) | class UploadImageComponent {
method constructor (line 30) | constructor(private receiptImageService: ReceiptImageService) {}
method clickInput (line 32) | public clickInput(): void {
method onFileChange (line 36) | public async onFileChange(event: any): Promise<void> {
FILE: desktop/src/receipts/user-total-with-percentage.pipe.ts
class UserTotalWithPercentagePipe (line 10) | class UserTotalWithPercentagePipe implements PipeTransform {
method transform (line 11) | public transform(
FILE: desktop/src/receipts/utils/form.utils.ts
function buildItemForm (line 4) | function buildItemForm(item?: Item, receiptId?: string, isShare: boolean...
function itemTotalValidator (line 35) | function itemTotalValidator(isShare: boolean, syncAmountWithItems: boole...
FILE: desktop/src/searchbar/pipes/search-result.pipe.ts
class SearchResultPipe (line 11) | class SearchResultPipe implements PipeTransform {
method constructor (line 12) | constructor(private datePipe: DatePipe, private store: Store) {}
method transform (line 14) | public transform(searchResult: SearchResult): string {
FILE: desktop/src/searchbar/searchbar.module.ts
class SearchbarModule (line 24) | class SearchbarModule {}
FILE: desktop/src/searchbar/searchbar/searchbar.component.ts
class SearchbarComponent (line 16) | class SearchbarComponent {
method constructor (line 25) | constructor(private searchService: SearchService, private router: Rout...
method ngOnInit (line 27) | public ngOnInit(): void {
method navigateToResult (line 43) | public navigateToResult(result: SearchResult) {
FILE: desktop/src/select/pipes/option-display.pipe.ts
class OptionDisplayPipe (line 7) | class OptionDisplayPipe implements PipeTransform {
method transform (line 9) | public transform(index: number, option: any, optionDisplayKey: string,...
FILE: desktop/src/select/pipes/readonly-value.pipe.ts
class ReadonlyValuePipe (line 8) | class ReadonlyValuePipe implements PipeTransform {
method constructor (line 9) | constructor(private optionDisplayPipe: OptionDisplayPipe) {}
method transform (line 11) | public transform(option: any, options: any[], optionDisplayKey: string...
FILE: desktop/src/select/select.module.ts
class SelectModule (line 16) | class SelectModule {}
FILE: desktop/src/select/select/select.component.ts
class SelectComponent (line 10) | class SelectComponent extends BaseInputComponent implements OnInit {
method constructor (line 21) | constructor() {
method ngOnInit (line 25) | public override ngOnInit(): void {
FILE: desktop/src/services/app-init.service.ts
class AppInitService (line 12) | class AppInitService {
method constructor (line 13) | constructor(
method initAppData (line 20) | public initAppData(): Promise<boolean> {
method getAppData (line 51) | public getAppData(): Observable<any[]> {
function initAppData (line 57) | function initAppData(appInitService: AppInitService) {
FILE: desktop/src/services/claims.service.ts
class ClaimsService (line 10) | class ClaimsService {
method constructor (line 11) | constructor(private store: Store, private userService: UserService) {}
method getAndSetClaimsForLoggedInUser (line 13) | public getAndSetClaimsForLoggedInUser(): Observable<void> {
FILE: desktop/src/services/environment.service.ts
class EnvironmentService (line 7) | class EnvironmentService {
method constructor (line 8) | constructor() {}
method isProduction (line 10) | public isProduction(): boolean {
FILE: desktop/src/services/group-member-user.service.ts
class GroupMemberUserService (line 9) | class GroupMemberUserService {
method constructor (line 10) | constructor(private store: Store) {}
method getUsersInGroup (line 12) | public getUsersInGroup(groupId: string): User[] {
FILE: desktop/src/services/injection-tokens/table-service.ts
constant TABLE_SERVICE_INJECTION_TOKEN (line 3) | const TABLE_SERVICE_INJECTION_TOKEN = new InjectionToken("TableService");
FILE: desktop/src/services/keyboard-shortcut.service.ts
type KeyboardShortcut (line 5) | interface KeyboardShortcut {
type KeyboardShortcutEvent (line 15) | interface KeyboardShortcutEvent {
class KeyboardShortcutService (line 23) | class KeyboardShortcutService {
method constructor (line 32) | constructor() {
method initializeDefaultShortcuts (line 36) | private initializeDefaultShortcuts(): void {
method registerShortcut (line 43) | public registerShortcut(shortcut: KeyboardShortcut): void {
method unregisterShortcut (line 48) | public unregisterShortcut(shortcut: KeyboardShortcut): void {
method handleKeyboardEvent (line 53) | public handleKeyboardEvent(event: KeyboardEvent): boolean {
method getShortcuts (line 75) | public getShortcuts(): KeyboardShortcut[] {
method getShortcutsByAction (line 79) | public getShortcutsByAction(action: string): KeyboardShortcut[] {
method getShortcutKey (line 83) | private getShortcutKey(shortcut: KeyboardShortcut): string {
method getEventKey (line 93) | private getEventKey(event: KeyboardEvent): string {
method shouldShowHint (line 103) | private shouldShowHint(shortcut: KeyboardShortcut): boolean {
method triggerHint (line 108) | private triggerHint(): void {
method clearHintTimeout (line 116) | public clearHintTimeout(): void {
FILE: desktop/src/services/receipt-export.service.ts
class ReceiptExportService (line 9) | class ReceiptExportService {
method constructor (line 11) | constructor(
method exportReceiptsFromFilter (line 15) | public exportReceiptsFromFilter(groupId: string, filter: ReceiptPagedR...
method exportReceiptsById (line 30) | public exportReceiptsById(receiptIds: number[]): void {
FILE: desktop/src/services/receipt-filter.service.ts
class ReceiptFilterService (line 12) | class ReceiptFilterService {
method constructor (line 13) | constructor(private store: Store, private httpClient: HttpClient) {}
method getPagedReceiptsForGroups (line 15) | public getPagedReceiptsForGroups(
method buildPagedRequestCommand (line 37) | public buildPagedRequestCommand(
FILE: desktop/src/services/receipt-processing-settings-task-table.service.ts
class ReceiptProcessingSettingsTaskTableService (line 11) | class ReceiptProcessingSettingsTaskTableService extends BaseTableService {
method constructor (line 15) | constructor(private store: Store) {
method getPagedRequestCommand (line 22) | public getPagedRequestCommand(): PagedRequestCommand {
method setPage (line 26) | public setPage(page: number): void {
method setPageSize (line 30) | public setPageSize(pageSize: number): void {
method setOrderBy (line 34) | public setOrderBy(orderBy: Sort): void {
method setSortDirection (line 38) | public setSortDirection(sortDirection: SortDirection): void {
method getPagedData (line 42) | public getPagedData(): Observable<any> {
FILE: desktop/src/services/receipt-queue.service.ts
type QueueMode (line 4) | enum QueueMode {
class ReceiptQueueService (line 12) | class ReceiptQueueService {
method constructor (line 13) | constructor(
method initQueueAndNavigate (line 18) | public initQueueAndNavigate(receiptIds: string[], mode: QueueMode, ind...
method queueNext (line 32) | public queueNext(currentIndex: number, receiptIds: string[], mode: Que...
method queuePrevious (line 36) | public queuePrevious(currentIndex: number, receiptIds: string[], mode:...
FILE: desktop/src/services/snackbar.service.ts
class SnackbarService (line 9) | class SnackbarService implements SnackbarServiceInterface {
method constructor (line 10) | constructor(private snackbar: MatSnackBar) {}
method info (line 12) | public info(message: string): void {
method error (line 20) | public error(message: string): void {
method success (line 27) | public success(
method successFromTemplate (line 38) | public successFromTemplate(
FILE: desktop/src/services/system-email-task-table.service.ts
class SystemEmailTaskTableService (line 11) | class SystemEmailTaskTableService extends BaseTableService {
method constructor (line 15) | constructor(private store: Store) {
method getPagedRequestCommand (line 22) | public getPagedRequestCommand(): PagedRequestCommand {
method setPage (line 26) | public setPage(page: number): void {
method setPageSize (line 30) | public setPageSize(pageSize: number): void {
method setOrderBy (line 34) | public setOrderBy(orderBy: Sort): void {
method setSortDirection (line 38) | public setSortDirection(sortDirection: SortDirection): void {
method getPagedData (line 42) | public getPagedData(): Observable<any> {
FILE: desktop/src/services/system-task-table.service.ts
class SystemTaskTableService (line 11) | class SystemTaskTableService extends BaseTableService {
method constructor (line 15) | constructor(private store: Store) {
method getPagedRequestCommand (line 22) | public getPagedRequestCommand(): PagedRequestCommand {
method setPage (line 26) | public setPage(page: number): void {
method setPageSize (line 30) | public setPageSize(pageSize: number): void {
method setOrderBy (line 34) | public setOrderBy(orderBy: Sort): void {
method setSortDirection (line 38) | public setSortDirection(sortDirection: SortDirection): void {
method getPagedData (line 42) | public getPagedData(): Observable<any> {
FILE: desktop/src/services/token-refresh.service.ts
class TokenRefreshService (line 11) | class TokenRefreshService {
method constructor (line 14) | constructor(
method refreshToken (line 20) | public refreshToken(): Observable<Claims> {
FILE: desktop/src/settings/api-key-form-dialog/api-key-form-dialog.component.ts
class ApiKeyFormDialogComponent (line 14) | class ApiKeyFormDialogComponent implements OnInit {
method constructor (line 26) | constructor(
method ngOnInit (line 33) | public ngOnInit(): void {
method initForm (line 37) | private initForm(): void {
method submitButtonClicked (line 45) | public submitButtonClicked(): void {
method cancelButtonClicked (line 75) | public cancelButtonClicked(): void {
method copyToClipboard (line 79) | public copyToClipboard(): void {
method closeDialog (line 89) | public closeDialog(): void {
FILE: desktop/src/settings/api-key-table-filter/api-key-table-filter.component.ts
class ApiKeyTableFilterComponent (line 16) | class ApiKeyTableFilterComponent extends BaseFormComponent implements On...
method constructor (line 17) | constructor(
method ngOnInit (line 27) | public ngOnInit(): void {
method initForm (line 31) | private initForm(): void {
method submit (line 39) | public submit(): void {
method cancel (line 44) | cancel(): void {
FILE: desktop/src/settings/api-key-table/api-key-table.component.ts
class ApiKeyTableComponent (line 34) | class ApiKeyTableComponent extends BaseTableComponent<ApiKeyView> implem...
method constructor (line 56) | constructor(
method ngOnInit (line 66) | public ngOnInit(): void {
method ngAfterViewInit (line 72) | public ngAfterViewInit(): void {
method listenForFilterChanges (line 76) | private listenForFilterChanges(): void {
method initTable (line 93) | private initTable(): void {
method setColumns (line 97) | private setColumns(): void {
method isOwner (line 146) | public isOwner(apiKey: ApiKeyView): boolean {
method openFilterDialog (line 150) | public openFilterDialog(): void {
method openCreateApiKeyDialog (line 154) | public openCreateApiKeyDialog(): void {
method openEditDialog (line 166) | public openEditDialog(apiKeyView: ApiKeyView): void {
method deleteApiKey (line 179) | public deleteApiKey(apiKeyView: ApiKeyView): void {
FILE: desktop/src/settings/api-key-table/api-key-table.service.ts
class ApiKeyTableService (line 13) | class ApiKeyTableService extends BaseTableService {
method constructor (line 18) | constructor(
method setPage (line 28) | public setPage(page: number): void {
method setPageSize (line 32) | public setPageSize(pageSize: number): void {
method setOrderBy (line 36) | public setOrderBy(orderBy: Sort): void {
method setSortDirection (line 40) | public setSortDirection(sortDirection: SortDirection): void {
method getPagedRequestCommand (line 44) | public getPagedRequestCommand(): PagedRequestCommand {
method getPagedData (line 48) | public getPagedData(): Observable<PagedData> {
FILE: desktop/src/settings/api-keys/api-keys.component.ts
class ApiKeysComponent (line 12) | class ApiKeysComponent implements OnInit {
method constructor (line 16) | constructor(
method ngOnInit (line 20) | public ngOnInit(): void {
FILE: desktop/src/settings/delete-account-dialog/delete-account-dialog.component.ts
class DeleteAccountDialogComponent (line 11) | class DeleteAccountDialogComponent {
method constructor (line 14) | constructor(
method submitButtonClicked (line 23) | public submitButtonClicked(): void {
method cancelButtonClicked (line 29) | public cancelButtonClicked(): void {
FILE: desktop/src/settings/settings-routing.module.ts
class SettingsRoutingModule (line 88) | class SettingsRoutingModule {}
FILE: desktop/src/settings/settings.module.ts
class SettingsModule (line 65) | class SettingsModule {}
FILE: desktop/src/settings/settings/settings.component.ts
class SettingsComponent (line 12) | class SettingsComponent implements OnInit {
method ngOnInit (line 15) | public ngOnInit(): void {
method initTabs (line 19) | private initTabs(): void {
FILE: desktop/src/settings/user-preferences/user-preferences.component.ts
class UserPreferencesComponent (line 19) | class UserPreferencesComponent extends BaseFormComponent implements OnIn...
method constructor (line 26) | constructor(
method userShortcuts (line 37) | public get userShortcuts(): FormArray {
method ngOnInit (line 41) | public ngOnInit(): void {
method initForm (line 46) | private initForm(): void {
method buildUserShortcut (line 67) | private buildUserShortcut(index: number, userShortcut?: UserShortcut):...
method addNewShortcut (line 76) | public addNewShortcut(): void {
method shortcutDoneClicked (line 91) | public shortcutDoneClicked(): void {
method shortcutCancelClicked (line 114) | public shortcutCancelClicked(): void {
method submit (line 133) | public submit(): void {
FILE: desktop/src/settings/user-profile/user-profile.component.ts
class UserProfileComponent (line 21) | class UserProfileComponent implements OnInit {
method constructor (line 33) | constructor(
method ngOnInit (line 46) | public ngOnInit(): void {
method initForm (line 52) | private initForm(): void {
method submit (line 67) | public submit(): void {
method deleteAccount (line 97) | public deleteAccount(): void {
FILE: desktop/src/settings/user-shortcut/user-shortcut.component.ts
class UserShortcutComponent (line 14) | class UserShortcutComponent {
method userShortcuts (line 33) | public get userShortcuts(): FormArray {
method removeShortcut (line 37) | public removeShortcut(index: number): void {
method emitShortcutDoneClicked (line 45) | public emitShortcutDoneClicked(): void {
method emitShortcutCancelClicked (line 50) | public emitShortcutCancelClicked(): void {
FILE: desktop/src/shared-ui/accordion/accordion-panel.interface.ts
type AccordionPanel (line 3) | interface AccordionPanel {
FILE: desktop/src/shared-ui/accordion/accordion.component.ts
class AccordionComponent (line 10) | class AccordionComponent {
FILE: desktop/src/shared-ui/add-button/add-button.component.ts
class AddButtonComponent (line 10) | class AddButtonComponent extends FormButtonComponent {}
FILE: desktop/src/shared-ui/audit-detail-section/audit-detail-section.component.ts
class AuditDetailSectionComponent (line 10) | class AuditDetailSectionComponent {
FILE: desktop/src/shared-ui/back-button/back-button.component.ts
class BackButtonComponent (line 10) | class BackButtonComponent extends FormButtonComponent {}
FILE: desktop/src/shared-ui/base-table/base-table.component.ts
class BaseTableComponent (line 16) | class BaseTableComponent<T> {
method constructor (line 25) | constructor(public baseTableService: BaseTableService) {}
method setInitialSortedColumn (line 27) | public setInitialSortedColumn(state: PagedTableInterface, columns: Tab...
method getTableData (line 36) | public getTableData(): void {
method sorted (line 49) | public sorted(sort: Sort): void {
method pageChanged (line 56) | public pageChanged(pageEvent: PageEvent): void {
FILE: desktop/src/shared-ui/cancel-button/cancel-button.component.ts
class CancelButtonComponent (line 10) | class CancelButtonComponent {
FILE: desktop/src/shared-ui/card/card.component.ts
class CardComponent (line 10) | class CardComponent {
FILE: desktop/src/shared-ui/confirmation-dialog/confirmation-dialog.component.ts
class ConfirmationDialogComponent (line 10) | class ConfirmationDialogComponent {
method constructor (line 11) | constructor(private dialogRef: MatDialogRef<ConfirmationDialogComponen...
method submitButtonClicked (line 17) | public submitButtonClicked(): void {
method cancelButtonClicked (line 21) | public cancelButtonClicked(): void {
FILE: desktop/src/shared-ui/copy-button/copy-button.component.ts
class CopyButtonComponent (line 21) | class CopyButtonComponent implements OnDestroy {
method constructor (line 44) | constructor() {
method ngOnDestroy (line 48) | public ngOnDestroy(): void {
method copy (line 52) | public async copy(): Promise<void> {
method clearResetTimer (line 73) | private clearResetTimer(): void {
FILE: desktop/src/shared-ui/delete-button/delete-button.component.ts
class DeleteButtonComponent (line 10) | class DeleteButtonComponent extends FormButtonComponent {
method constructor (line 11) | constructor() {
FILE: desktop/src/shared-ui/description-viewer-dialog/description-viewer-dialog.component.ts
type DescriptionViewerDialogData (line 4) | interface DescriptionViewerDialogData {
class DescriptionViewerDialogComponent (line 15) | class DescriptionViewerDialogComponent {
method constructor (line 16) | constructor(
method close (line 21) | public close(): void {
FILE: desktop/src/shared-ui/dialog-footer/dialog-footer.component.ts
class DialogFooterComponent (line 11) | class DialogFooterComponent {
method constructor (line 21) | constructor(private store: Store) {}
FILE: desktop/src/shared-ui/dialog/dialog.component.ts
class DialogComponent (line 9) | class DialogComponent {
FILE: desktop/src/shared-ui/edit-button/edit-button.component.ts
class EditButtonComponent (line 10) | class EditButtonComponent extends FormButtonComponent {}
FILE: desktop/src/shared-ui/editable-list/editable-list.component.ts
class EditableListComponent (line 9) | class EditableListComponent {
method handleEditButtonClicked (line 28) | public handleEditButtonClicked(index: number): void {
method getCurrentRowOpen (line 33) | public getCurrentRowOpen(): number | undefined {
method handleDeleteButtonClicked (line 37) | public handleDeleteButtonClicked(index: number): void {
method openLastRow (line 42) | public openLastRow(index?: number): void {
method closeRow (line 46) | public closeRow(): void {
FILE: desktop/src/shared-ui/form-button-bar/form-button-bar.component.ts
class FormButtonBarComponent (line 10) | class FormButtonBarComponent {
method isActive (line 19) | get isActive(): boolean {
FILE: desktop/src/shared-ui/form-button/form-button.component.ts
class FormButtonComponent (line 10) | class FormButtonComponent {
FILE: desktop/src/shared-ui/form-header/form-header.component.ts
class FormHeaderComponent (line 10) | class FormHeaderComponent {
method constructor (line 19) | constructor(private location: Location) {}
method navigateBack (line 21) | public navigateBack(): void {
FILE: desktop/src/shared-ui/form-list/form-list.component.ts
class FormListComponent (line 14) | class FormListComponent {
method onAddButtonClicked (line 39) | public onAddButtonClicked(): void {
method onDoneButtonClicked (line 44) | public onDoneButtonClicked(index: number): void {
method onItemCancelButtonClicked (line 48) | public onItemCancelButtonClicked(index: number): void {
method resetEditingIndex (line 53) | public resetEditingIndex(): void {
method onItemEditButtonClicked (line 57) | public onItemEditButtonClicked(index: number): void {
method onItemDeleteButtonClicked (line 61) | public onItemDeleteButtonClicked(index: number): void {
FILE: desktop/src/shared-ui/form-section/form-section.component.ts
class FormSectionComponent (line 9) | class FormSectionComponent implements OnInit {
method ngOnInit (line 22) | public ngOnInit(): void {
method toggleCollapsed (line 26) | public toggleCollapsed(): void {
FILE: desktop/src/shared-ui/form/form.component.ts
class FormComponent (line 11) | class FormComponent {
FILE: desktop/src/shared-ui/group-autocomplete/group-autocomplete.component.ts
class GroupAutocompleteComponent (line 13) | class GroupAutocompleteComponent {
method constructor (line 20) | constructor(private store: Store) {}
method groupDisplayWith (line 22) | public groupDisplayWith(id: number): string {
FILE: desktop/src/shared-ui/help-icon/help-icon.component.ts
class HelpIconComponent (line 9) | class HelpIconComponent {
FILE: desktop/src/shared-ui/icon-autocomplete/icon-autocomplete.component.ts
class IconAutocompleteComponent (line 13) | class IconAutocompleteComponent {
method constructor (line 20) | constructor(private store: Store) {}
method displayWith (line 22) | public displayWith(value: string): string {
FILE: desktop/src/shared-ui/image-viewer/image-viewer.component.ts
class ImageViewerComponent (line 9) | class ImageViewerComponent implements OnChanges, OnDestroy {
method onWheel (line 11) | public onWheel(event: WheelEvent) {
method ngOnChanges (line 27) | public ngOnChanges(changes: SimpleChanges): void {
method ngOnDestroy (line 33) | public ngOnDestroy(): void {
method setImageFileUrl (line 37) | private setImageFileUrl(file: File): void {
FILE: desktop/src/shared-ui/pie-chart/pie-chart.component.ts
class PieChartUiComponent (line 14) | class PieChartUiComponent {
FILE: desktop/src/shared-ui/pretty-json/pretty-json.component.ts
class PrettyJsonComponent (line 9) | class PrettyJsonComponent {
FILE: desktop/src/shared-ui/queue-start-menu/queue-start-menu.component.ts
class QueueStartMenuComponent (line 14) | class QueueStartMenuComponent implements OnInit {
method constructor (line 31) | constructor(
method ngOnInit (line 37) | public ngOnInit(): void {
method setCanEdit (line 41) | private setCanEdit(): void {
method getReceiptIds (line 46) | private getReceiptIds(): string[] {
method initQueue (line 56) | public initQueue(mode: QueueMode): void {
FILE: desktop/src/shared-ui/quick-scan-button/quick-scan-button.component.ts
class QuickScanButtonComponent (line 13) | class QuickScanButtonComponent {
method constructor (line 16) | constructor(private matDialog: MatDialog) {}
method showQuickScanDialog (line 18) | public showQuickScanDialog(): void {
FILE: desktop/src/shared-ui/receipt-filter/operations.pipe.ts
class OperationsPipe (line 15) | class OperationsPipe implements PipeTransform {
method transform (line 25) | public transform(type: string, display: boolean): string[] {
method getDisplayValue (line 49) | private getDisplayValue(option: FilterOperation | null, display: boole...
FILE: desktop/src/shared-ui/receipt-filter/receipt-filter.component.spec.ts
class NoopComponent (line 22) | @UntilDestroy()
FILE: desktop/src/shared-ui/receipt-filter/receipt-filter.component.ts
class ReceiptFilterComponent (line 19) | class ReceiptFilterComponent implements OnInit {
method constructor (line 52) | constructor(
method ngOnInit (line 59) | public ngOnInit(): void {
method resetFilter (line 78) | public resetFilter(): void {
method submitButtonClicked (line 101) | public submitButtonClicked(): void {
method cancelButtonClicked (line 119) | public cancelButtonClicked(): void {
method setupAutoOperationSelection (line 123) | private setupAutoOperationSelection(): void {
method hasFieldValue (line 162) | private hasFieldValue(value: any, type: string): boolean {
FILE: desktop/src/shared-ui/shared-ui.module.ts
class SharedUiModule (line 180) | class SharedUiModule {}
FILE: desktop/src/shared-ui/status-chip/status-chip.component.ts
class StatusChipComponent (line 10) | class StatusChipComponent {
FILE: desktop/src/shared-ui/status-icon/status-icon.component.ts
class StatusIconComponent (line 10) | class StatusIconComponent {
FILE: desktop/src/shared-ui/status-select/status-select.component.ts
class StatusSelectComponent (line 11) | class StatusSelectComponent implements OnChanges {
method ngOnChanges (line 22) | public ngOnChanges(changes: SimpleChanges): void {
FILE: desktop/src/shared-ui/submit-button/submit-button.component.ts
class SubmitButtonComponent (line 19) | class SubmitButtonComponent extends FormButtonComponent {
method constructor (line 34) | constructor(private store: Store) {
FILE: desktop/src/shared-ui/summary-card/summary-card.component.ts
class SummaryCardComponent (line 12) | class SummaryCardComponent {
method constructor (line 13) | constructor(private userService: UserService) {
method buildOweMap (line 30) | private buildOweMap(groupId: string | number, receiptIds: number[]): v...
FILE: desktop/src/shared-ui/table-header/table-header.component.ts
class TableHeaderComponent (line 9) | class TableHeaderComponent {
FILE: desktop/src/shared-ui/tabs/tab-config.interface.ts
type TabConfig (line 1) | interface TabConfig {
FILE: desktop/src/shared-ui/tabs/tabs.component.ts
class TabsComponent (line 12) | class TabsComponent implements OnInit, OnChanges {
method constructor (line 17) | constructor(private router: Router, private activatedRoute: ActivatedR...
method ngOnChanges (line 19) | public ngOnChanges(changes: SimpleChanges): void {
method ngOnInit (line 25) | public ngOnInit(): void {
method setActiveTab (line 29) | private setActiveTab(): void {
method listenToRouteChanges (line 36) | private listenToRouteChanges(): void {
FILE: desktop/src/shared-ui/task-table/pretty-json.pipe.ts
class PrettyJsonPipe (line 10) | class PrettyJsonPipe implements PipeTransform {
method constructor (line 11) | constructor(private sanitizer: DomSanitizer) {}
method transform (line 14) | public transform(resultDescription?: string, verticalJson = true): Saf...
method getCleanedJsonString (line 34) | private getCleanedJsonString(resultDescription: string): string {
FILE: desktop/src/shared-ui/task-table/system-task-type.pipe.ts
class SystemTaskTypePipe (line 8) | class SystemTaskTypePipe implements PipeTransform {
method transform (line 10) | public transform(value: SystemTaskType): string {
FILE: desktop/src/shared-ui/task-table/task-table.component.ts
class TaskTableComponent (line 20) | class TaskTableComponent implements OnInit, AfterViewInit {
method constructor (line 53) | constructor(
method openDescriptionDialog (line 59) | public openDescriptionDialog(element: SystemTask): void {
method ngOnInit (line 70) | public ngOnInit(): void {
method getTableData (line 74) | public getTableData(): void {
method ngAfterViewInit (line 96) | public ngAfterViewInit(): void {
method initTable (line 100) | private initTable(): void {
method setColumns (line 104) | private setColumns(): void {
method sorted (line 150) | public sorted(sort: Sort): void {
method pageChanged (line 157) | public pageChanged(event: PageEvent): void {
FILE: desktop/src/slide-toggle/slide-toggle.module.ts
class SlideToggleModule (line 12) | class SlideToggleModule {}
FILE: desktop/src/slide-toggle/slide-toggle/slide-toggle.component.ts
class SlideToggleComponent (line 9) | class SlideToggleComponent {
FILE: desktop/src/standalone/components/date-block/date-block.component.ts
class DateBlockComponent (line 11) | class DateBlockComponent {
FILE: desktop/src/standalone/components/export-button/export-button.component.ts
class ExportButtonComponent (line 14) | class ExportButtonComponent {
method constructor (line 19) | constructor(private receiptExportService: ReceiptExportService) {}
method exportReceipts (line 21) | public exportReceipts(): void {
method exportReceiptsByFilter (line 27) | private exportReceiptsByFilter(): void {
FILE: desktop/src/standalone/components/filtered-stateful-menu/filtered-stateful-menu.component.ts
class FilteredStatefulMenuComponent (line 22) | class FilteredStatefulMenuComponent extends BaseButtonComponent {
method onItemSelected (line 44) | public onItemSelected(item: StatefulMenuItem, event: MouseEvent) {
method resetFilter (line 54) | public resetFilter(): void {
method filterItems (line 58) | public filterItems(items: StatefulMenuItem[], filterString: string): S...
FILE: desktop/src/standalone/components/filtered-stateful-menu/stateful-menu-item.ts
type StatefulMenuItem (line 1) | interface StatefulMenuItem {
FILE: desktop/src/store/about-state.interface.ts
type AboutStateInterface (line 3) | interface AboutStateInterface {
FILE: desktop/src/store/about.state.actions.ts
class SetAbout (line 3) | class SetAbout {
method constructor (line 6) | constructor(public about: About) {}
FILE: desktop/src/store/about.state.ts
class AboutState (line 18) | class AboutState {
method about (line 20) | static about(state: AboutStateInterface): About {
method setAuthState (line 26) | setAuthState(
FILE: desktop/src/store/api-key-table.state.actions.ts
class SetPage (line 4) | class SetPage {
method constructor (line 7) | constructor(public page: number) {}
class SetPageSize (line 10) | class SetPageSize {
method constructor (line 13) | constructor(public pageSize: number) {}
class SetOrderBy (line 16) | class SetOrderBy {
method constructor (line 19) | constructor(public orderBy: string) {}
class SetSortDirection (line 22) | class SetSortDirection {
method constructor (line 25) | constructor(public sortDirection: SortDirection) {}
class SetFilter (line 28) | class SetFilter {
method constructor (line 31) | constructor(public filter: ApiKeyFilter) {}
FILE: desktop/src/store/api-key-table.state.ts
class ApiKeyTableState (line 20) | class ApiKeyTableState extends PagedTableState {
method filter (line 23) | static filter(state: PagedApiKeyRequestCommand): ApiKeyFilter {
method setPage (line 29) | setPage({ patchState }: StateContext<PagedApiKeyRequestCommand>, paylo...
method setPageSize (line 36) | setPageSize(
method setOrderBy (line 46) | setOrderBy(
method setSortDirection (line 56) | setSortDirection(
method setFilter (line 66) | setFilter(
FILE: desktop/src/store/auth-state.interface.ts
type AuthStateInterface (line 4) | interface AuthStateInterface {
FILE: desktop/src/store/auth.state.actions.ts
class SetAuthState (line 4) | class SetAuthState {
method constructor (line 7) | constructor(public userClaims: Claims) {}
class SetUserPreferences (line 10) | class SetUserPreferences {
method constructor (line 13) | constructor(public userPreferences: UserPreferences) {}
class SetIcons (line 16) | class SetIcons {
method constructor (line 19) | constructor(public icons: Icon[]) {}
class Logout (line 22) | class Logout {
FILE: desktop/src/store/auth.state.ts
class AuthState (line 14) | class AuthState {
method userPreferences (line 17) | static userPreferences(
method icons (line 24) | static icons(state: AuthStateInterface): Icon[] {
method userRole (line 29) | static userRole(state: AuthStateInterface): string {
method isLoggedIn (line 34) | static isLoggedIn(state: AuthStateInterface): boolean {
method userId (line 39) | static userId(state: AuthStateInterface): string {
method isTokenExpired (line 44) | static isTokenExpired(state: AuthStateInterface): boolean {
method loggedInUser (line 53) | static loggedInUser(state: AuthStateInterface): User {
method hasRole (line 62) | static hasRole(role: string) {
method setAuthState (line 69) | setAuthState(
method logout (line 86) | logout({ getState, patchState }: StateContext<AuthStateInterface>) {
method setUserPreferences (line 99) | setUserPreferences(
method setIcons (line 109) | setIcons(
FILE: desktop/src/store/category-table.state.actions.ts
class SetPage (line 3) | class SetPage {
method constructor (line 6) | constructor(public page: number) {}
class SetPageSize (line 9) | class SetPageSize {
method constructor (line 12) | constructor(public pageSize: number) {}
class SetOrderBy (line 15) | class SetOrderBy {
method constructor (line 18) | constructor(public orderBy: string) {}
class SetSortDirection (line 21) | class SetSortDirection {
method constructor (line 24) | constructor(public sortDirection: SortDirection) {}
FILE: desktop/src/store/category-table.state.ts
class CategoryTableState (line 17) | class CategoryTableState extends PagedTableState {
method setPage (line 19) | setPage({ patchState }: StateContext<PagedTableInterface>, payload: Se...
method setPageSize (line 26) | setPageSize(
method setOrderBy (line 36) | setOrderBy(
method setSortDirection (line 46) | setSortDirection(
FILE: desktop/src/store/custom-field-table.state.actions.ts
class SetPage (line 3) | class SetPage {
method constructor (line 6) | constructor(public page: number) {}
class SetPageSize (line 9) | class SetPageSize {
method constructor (line 12) | constructor(public pageSize: number) {}
class SetOrderBy (line 15) | class SetOrderBy {
method constructor (line 18) | constructor(public orderBy: string) {}
class SetSortDirection (line 21) | class SetSortDirection {
method constructor (line 24) | constructor(public sortDirection: SortDirection) {}
FILE: desktop/src/store/custom-field-table.state.ts
class CustomFieldTableState (line 17) | class CustomFieldTableState extends PagedTableState {
method setPage (line 19) | setPage({ patchState }: StateContext<PagedTableInterface>, payload: Se...
method setPageSize (line 26) | setPageSize(
method setOrderBy (line 36) | setOrderBy(
method setSortDirection (line 46) | setSortDirection(
FILE: desktop/src/store/dashboard.state.actions.ts
class SetDashboardsForGroup (line 3) | class SetDashboardsForGroup {
method constructor (line 6) | constructor(public groupId: string) {}
class AddDashboardToGroup (line 9) | class AddDashboardToGroup {
method constructor (line 12) | constructor(public groupId: string, public dashboard: Dashboard) {}
class UpdateDashBoardForGroup (line 15) | class UpdateDashBoardForGroup {
method constructor (line 18) | constructor(
class DeleteDashboardFromGroup (line 25) | class DeleteDashboardFromGroup {
method constructor (line 28) | constructor(public groupId: string, public dashboardId: number) {}
FILE: desktop/src/store/dashboard.state.ts
class DashboardState (line 15) | class DashboardState {
method constructor (line 16) | constructor(private dashboardService: DashboardService) {}
method dashboards (line 19) | static dashboards(state: DashboardStateInterface): {
method getDashboardsByGroupId (line 25) | static getDashboardsByGroupId(groupId: string) {
method setReceiptFilterData (line 35) | async setReceiptFilterData(
method addDashboardToGroup (line 53) | addDashboardToGroup(
method updateDashBoardForGroup (line 66) | updateDashBoardForGroup(
method deleteDashboardFromGroup (line 84) | deleteDashboardFromGroup(
FILE: desktop/src/store/feature-config.state.actions.ts
class SetFeatureConfig (line 3) | class SetFeatureConfig {
method constructor (line 6) | constructor(public config: FeatureConfig) {}
FILE: desktop/src/store/feature-config.state.ts
class FeatureConfigState (line 11) | class FeatureConfigState {
method enableLocalSignUp (line 13) | static enableLocalSignUp(state: FeatureConfig): boolean {
method aiPoweredReceipts (line 18) | static aiPoweredReceipts(state: FeatureConfig): boolean {
method featureConfig (line 23) | static featureConfig(state: FeatureConfig): FeatureConfig {
method hasFeature (line 27) | static hasFeature(feature: string) {
method setFeatureConfig (line 34) | setFeatureConfig(
FILE: desktop/src/store/group-table.state.actions.ts
class SetPage (line 4) | class SetPage {
method constructor (line 7) | constructor(public page: number) {}
class SetPageSize (line 10) | class SetPageSize {
method constructor (line 13) | constructor(public pageSize: number) {}
class SetOrderBy (line 16) | class SetOrderBy {
method constructor (line 19) | constructor(public orderBy: string) {}
class SetSortDirection (line 22) | class SetSortDirection {
method constructor (line 25) | constructor(public sortDirection: SortDirection) {}
class SetFilter (line 28) | class SetFilter {
method constructor (line 31) | constructor(public filter: GroupFilter) {}
FILE: desktop/src/store/group-table.state.ts
class GroupTableState (line 20) | class GroupTableState extends PagedTableState {
method filter (line 23) | static filter(state: PagedGroupRequestCommand): GroupFilter {
method setPage (line 29) | setPage({ patchState }: StateContext<PagedGroupRequestCommand>, payloa...
method setPageSize (line 36) | setPageSize(
method setOrderBy (line 46) | setOrderBy(
method setSortDirection (line 56) | setSortDirection(
method setFilter (line 66) | setFilter(
FILE: desktop/src/store/group.state.actions.ts
class AddGroup (line 3) | class AddGroup {
method constructor (line 5) | constructor(public group: Group) {}
class RemoveGroup (line 8) | class RemoveGroup {
method constructor (line 10) | constructor(public groupId: string) {}
class SetGroups (line 13) | class SetGroups {
method constructor (line 15) | constructor(public groups: Group[]) {}
class UpdateGroup (line 18) | class UpdateGroup {
method constructor (line 20) | constructor(public group: Group) {}
class SetSelectedDashboardId (line 23) | class SetSelectedDashboardId {
method constructor (line 25) | constructor(public dashboardId?: string) {}
class SetSelectedGroupId (line 28) | class SetSelectedGroupId {
method constructor (line 30) | constructor(public groupId?: string) {}
FILE: desktop/src/store/group.state.ts
type GroupStateInterface (line 20) | interface GroupStateInterface {
class GroupState (line 35) | class GroupState {
method groups (line 37) | static groups(state: GroupStateInterface): Group[] {
method allGroupMembers (line 42) | static allGroupMembers(state: GroupStateInterface): GroupMember[] {
method groupsWithoutAll (line 47) | static groupsWithoutAll(state: GroupStateInterface): Group[] {
method groupsWithoutSelectedGroup (line 52) | static groupsWithoutSelectedGroup(state: GroupStateInterface): Group[] {
method selectedDashboardId (line 59) | static selectedDashboardId(state: GroupStateInterface): string {
method selectedGroupId (line 64) | static selectedGroupId(state: GroupStateInterface): string {
method receiptListLink (line 69) | static receiptListLink(state: GroupStateInterface): string {
method dashboardLink (line 74) | static dashboardLink(state: GroupStateInterface): string {
method settingsLinkBase (line 79) | static settingsLinkBase(state: GroupStateInterface): string {
method getGroupById (line 83) | static getGroupById(groupId: string) {
method addGroup (line 90) | addGroup(
method removeGroup (line 103) | removeGroup(
method setGroups (line 126) | setGroups(
method updateGroup (line 136) | updateGroup(
method setSelectedDashboardId (line 154) | setSelectedDashboardId(
method setSelectedGroupId (line 164) | setSelectedGroupId(
FILE: desktop/src/store/layout.state.actions.ts
class ToggleIsSidebarOpen (line 1) | class ToggleIsSidebarOpen {
method constructor (line 3) | constructor() {}
class ToggleShowProgressBar (line 6) | class ToggleShowProgressBar {
method constructor (line 8) | constructor() {}
class HideProgressBar (line 11) | class HideProgressBar {
method constructor (line 13) | constructor() {}
class ShowProgressBar (line 16) | class ShowProgressBar {
method constructor (line 18) | constructor() {}
FILE: desktop/src/store/layout.state.ts
type LayoutStateInterface (line 10) | interface LayoutStateInterface {
class LayoutState (line 23) | class LayoutState {
method isSidebarOpen (line 25) | static isSidebarOpen(state: LayoutStateInterface): boolean {
method showProgressBar (line 30) | static showProgressBar(state: LayoutStateInterface): boolean {
method setIsSidebarOpen (line 35) | setIsSidebarOpen({
method toggleShowProgressBar (line 45) | toggleShowProgressBar({
method hideProgressBar (line 55) | hideProgressBar({ patchState }: StateContext<LayoutStateInterface>) {
method showProgressBar (line 62) | showProgressBar({ patchState }: StateContext<LayoutStateInterface>) {
FILE: desktop/src/store/paged-table.state.actions.ts
class SetPage (line 3) | class SetPage {
method constructor (line 6) | constructor(public page: number) {}
class SetPageSize (line 9) | class SetPageSize {
method constructor (line 12) | constructor(public pageSize: number) {}
class SetOrderBy (line 15) | class SetOrderBy {
method constructor (line 18) | constructor(public orderBy: string) {}
class SetSortDirection (line 21) | class SetSortDirection {
method constructor (line 24) | constructor(public sortDirection: SortDirection) {}
FILE: desktop/src/store/paged-table.state.ts
class PagedTableState (line 4) | class PagedTableState {
method state (line 5) | static get state() {
method page (line 11) | static get page() {
method pageSize (line 17) | static get pageSize() {
FILE: desktop/src/store/prompt-table.state.actions.ts
class SetPage (line 3) | class SetPage {
method constructor (line 6) | constructor(public page: number) {}
class SetPageSize (line 9) | class SetPageSize {
method constructor (line 12) | constructor(public pageSize: number) {}
class SetOrderBy (line 15) | class SetOrderBy {
method constructor (line 18) | constructor(public orderBy: string) {}
class SetSortDirection (line 21) | class SetSortDirection {
method constructor (line 24) | constructor(public sortDirection: SortDirection) {}
FILE: desktop/src/store/prompt-table.state.ts
class PromptTableState (line 18) | class PromptTableState extends PagedTableState {
method setPage (line 20) | setPage({ patchState }: StateContext<PagedTableInterface>, payload: Se...
method setPageSize (line 27) | setPageSize(
method setOrderBy (line 37) | setOrderBy(
method setSortDirection (line 47) | setSortDirection(
FILE: desktop/src/store/receipt-processing-settings-table.state.actions.ts
class SetPage (line 3) | class SetPage {
method constructor (line 6) | constructor(public page: number) {}
class SetPageSize (line 9) | class SetPageSize {
method constructor (line 12) | constructor(public pageSize: number) {}
class SetOrderBy (line 15) | class SetOrderBy {
method constructor (line 18) | constructor(public orderBy: string) {}
class SetSortDirection (line 21) | class SetSortDirection {
method constructor (line 24) | constructor(public sortDirection: SortDirection) {}
FILE: desktop/src/store/receipt-processing-settings-table.state.ts
class ReceiptProcessingSettingsTableState (line 18) | class ReceiptProcessingSettingsTableState extends PagedTableState {
method setPage (line 20) | setPage({ patchState }: StateContext<PagedTableInterface>, payload: Se...
method setPageSize (line 27) | setPageSize(
method setOrderBy (line 37) | setOrderBy(
method setSortDirection (line 47) | setSortDirection(
FILE: desktop/src/store/receipt-processing-settings-task-table.state.actions.ts
class SetPage (line 3) | class SetPage {
method constructor (line 6) | constructor(public page: number) {}
class SetPageSize (line 9) | class SetPageSize {
method constructor (line 12) | constructor(public pageSize: number) {}
class SetOrderBy (line 15) | class SetOrderBy {
method constructor (line 18) | constructor(public orderBy: string) {}
class SetSortDirection (line 21) | class SetSortDirection {
method constructor (line 24) | constructor(public sortDirection: SortDirection) {}
FILE: desktop/src/store/receipt-processing-settings-task-table.state.ts
class ReceiptProcessingSettingsTaskTableState (line 19) | class ReceiptProcessingSettingsTaskTableState extends PagedTableState {
method setPage (line 21) | setPage({ patchState }: StateContext<PagedTableInterface>, payload: Se...
method setPageSize (line 28) | setPageSize(
method setOrderBy (line 38) | setOrderBy(
method setSortDirection (line 48) | setSortDirection(
FILE: desktop/src/store/receipt-table.actions.ts
class SetPage (line 5) | class SetPage {
method constructor (line 8) | constructor(public page: number) {}
class SetPageSize (line 11) | class SetPageSize {
method constructor (line 14) | constructor(public pageSize: number) {}
class SetReceiptFilterData (line 17) | class SetReceiptFilterData {
method constructor (line 20) | constructor(public data: ReceiptTableInterface) {}
class SetReceiptFilter (line 23) | class SetReceiptFilter {
method constructor (line 26) | constructor(public data: ReceiptPagedRequestFilter) {}
class ResetReceiptFilter (line 29) | class ResetReceiptFilter {
method constructor (line 32) | constructor() {}
class SetColumnConfig (line 35) | class SetColumnConfig {
method constructor (line 38) | constructor(public columnConfig: ReceiptTableColumnConfig[]) {}
FILE: desktop/src/store/receipt-table.state.ts
class ReceiptTableState (line 60) | class ReceiptTableState {
method page (line 62) | static page(state: ReceiptTableInterface): number {
method pageSize (line 67) | static pageSize(state: ReceiptTableInterface): number {
method filterData (line 72) | static filterData(state: ReceiptTableInterface): ReceiptTableInterface {
method numFiltersApplied (line 77) | static numFiltersApplied(state: ReceiptTableInterface): number {
method columnConfig (line 95) | static columnConfig(state: ReceiptTableInterface): ReceiptTableColumnC...
method setPage (line 100) | setPage(
method setPageSize (line 110) | setPageSize(
method setReceiptFilterData (line 120) | setReceiptFilterData(
method setReceiptFilter (line 128) | setReceiptFilter(
method resetFilter (line 138) | resetFilter({ patchState }: StateContext<ReceiptTableInterface>) {
method setColumnConfig (line 145) | setColumnConfig(
FILE: desktop/src/store/store.module.ts
class StoreModule (line 82) | class StoreModule {}
FILE: desktop/src/store/system-email-table.state.actions.ts
class SetPage (line 3) | class SetPage {
method constructor (line 6) | constructor(public page: number) {}
class SetPageSize (line 9) | class SetPageSize {
method constructor (line 12) | constructor(public pageSize: number) {}
class SetOrderBy (line 15) | class SetOrderBy {
method constructor (line 18) | constructor(public orderBy: string) {}
class SetSortDirection (line 21) | class SetSortDirection {
method constructor (line 24) | constructor(public sortDirection: SortDirection) {}
FILE: desktop/src/store/system-email-table.state.ts
class SystemEmailTableState (line 18) | class SystemEmailTableState extends PagedTableState {
method setPage (line 20) | setPage({ patchState }: StateContext<PagedTableInterface>, payload: Se...
method setPageSize (line 27) | setPageSize(
method setOrderBy (line 37) | setOrderBy(
method setSortDirection (line 47) | setSortDirection(
FILE: desktop/src/store/system-email-task-table.state.actions.ts
class SetPage (line 3) | class SetPage {
method constructor (line 6) | constructor(public page: number) {}
class SetPageSize (line 9) | class SetPageSize {
method constructor (line 12) | constructor(public pageSize: number) {}
class SetOrderBy (line 15) | class SetOrderBy {
method constructor (line 18) | constructor(public orderBy: string) {}
class SetSortDirection (line 21) | class SetSortDirection {
method constructor (line 24) | constructor(public sortDirection: SortDirection) {}
FILE: desktop/src/store/system-email-task-table.state.ts
class SystemEmailTaskTableState (line 19) | class SystemEmailTaskTableState extends PagedTableState {
method setPage (line 21) | setPage({ patchState }: StateContext<PagedTableInterface>, payload: Se...
method setPageSize (line 28) | setPageSize(
method setOrderBy (line 38) | setOrderBy(
method setSortDirection (line 48) | setSortDirection(
FILE: desktop/src/store/system-settings.state.actions.ts
class SetCurrencyDisplay (line 3) | class SetCurrencyDisplay {
method constructor (line 6) | constructor(public currencyDisplay: string) {}
class SetCurrencyData (line 9) | class SetCurrencyData {
method constructor (line 12) | constructor(
FILE: desktop/src/store/system-settings.state.ts
type SystemSettingsStateInterface (line 6) | interface SystemSettingsStateInterface {
class SystemSettingsState (line 25) | class SystemSettingsState {
method currencyDisplay (line 27) | static currencyDisplay(state: SystemSettingsStateInterface): string {
method currencyDecimalSeparator (line 32) | static currencyDecimalSeparator(state: SystemSettingsStateInterface): ...
method currencyThousandthsSeparator (line 37) | static currencyThousandthsSeparator(state: SystemSettingsStateInterfac...
method currencySymbolPosition (line 42) | static currencySymbolPosition(state: SystemSettingsStateInterface): Cu...
method currencyHideDecimalPlaces (line 47) | static currencyHideDecimalPlaces(state: SystemSettingsStateInterface):...
method state (line 52) | static state(state: SystemSettingsStateInterface): SystemSettingsState...
method setCurrencyDisplay (line 57) | setCurrencyDisplay(
method setCurrencyData (line 67) | setCurrencyData(
FILE: desktop/src/store/system-task-table.state.actions.ts
class SetPage (line 3) | class SetPage {
method constructor (line 6) | constructor(public page: number) {}
class SetPageSize (line 9) | class SetPageSize {
method constructor (line 12) | constructor(public pageSize: number) {}
class SetOrderBy (line 15) | class SetOrderBy {
method constructor (line 18) | constructor(public orderBy: string) {}
class SetSortDirection (line 21) | class SetSortDirection {
method constructor (line 24) | constructor(public sortDirection: SortDirection) {}
FILE: desktop/src/store/system-task-table.state.ts
class SystemTaskTableState (line 19) | class SystemTaskTableState extends PagedTableState {
method setPage (line 21) | setPage({ patchState }: StateContext<PagedTableInterface>, payload: Se...
method setPageSize (line 28) | setPageSize(
method setOrderBy (line 38) | setOrderBy(
method setSortDirection (line 48) | setSortDirection(
FILE: desktop/src/store/tag-table.state.actions.ts
class SetPage (line 3) | class SetPage {
method constructor (line 6) | constructor(public page: number) {}
class SetPageSize (line 9) | class SetPageSize {
method constructor (line 12) | constructor(public pageSize: number) {}
class SetOrderBy (line 15) | class SetOrderBy {
method constructor (line 18) | constructor(public orderBy: string) {}
class SetSortDirection (line 21) | class SetSortDirection {
method constructor (line 24) | constructor(public sortDirection: SortDirection) {}
FILE: desktop/src/store/tag-table.state.ts
class TagTableState (line 17) | class TagTableState extends PagedTableState {
method setPage (line 19) | setPage({ patchState }: StateContext<PagedTableInterface>, payload: Se...
method setPageSize (line 26) | setPageSize(
method setOrderBy (line 36) | setOrderBy(
method setSortDirection (line 46) | setSortDirection(
FILE: desktop/src/store/user.state.actions.ts
class SetUsers (line 3) | class SetUsers {
method constructor (line 5) | constructor(public users: User[]) {}
class UpdateUser (line 8) | class UpdateUser {
method constructor (line 10) | constructor(public userId: string, public user: User) {}
class AddUser (line 12) | class AddUser {
method constructor (line 14) | constructor(public user: User) {}
class RemoveUser (line 17) | class RemoveUser {
method constructor (line 19) | constructor(public userId: string) {}
class RemoveUsers (line 22) | class RemoveUsers {
method constructor (line 24) | constructor(public userIds: string[]) {}
FILE: desktop/src/store/user.state.ts
type UserStateInterface (line 6) | interface UserStateInterface {
class UserState (line 17) | class UserState {
method users (line 19) | static users(state: UserStateInterface): User[] {
method getUserById (line 23) | static getUserById(userId: string) {
method findUserById (line 33) | static findUserById(userId: string) {
method findUserIndexById (line 39) | static findUserIndexById(userId: string, users: User[]): number {
method setUsers (line 44) | setUsers(
method updateUser (line 54) | updateUser(
method addUser (line 69) | addUser(
method removeUser (line 81) | removeUser(
method removeUsers (line 92) | removeUsers(
FILE: desktop/src/system-settings/pipes/task-queue-form-control.pipe.ts
class TaskQueueFormControlPipe (line 8) | class TaskQueueFormControlPipe implements PipeTransform {
method transform (line 9) | public transform(form: FormGroup, queueName: string, formKey: string):...
FILE: desktop/src/system-settings/system-email-child-system-task/system-email-child-system-task.component.ts
class SystemEmailChildSystemTaskComponent (line 11) | class SystemEmailChildSystemTaskComponent implements AfterViewInit {
method ngAfterViewInit (line 20) | public ngAfterViewInit(): void {
method initAccordionPanels (line 24) | private initAccordionPanels(): void {
FILE: desktop/src/system-settings/system-email-form/system-email-form.component.ts
class SystemEmailFormComponent (line 32) | class SystemEmailFormComponent implements OnInit {
method constructor (line 47) | constructor(
method ngOnInit (line 57) | public ngOnInit() {
method initForm (line 64) | private initForm(): void {
method submit (line 74) | public submit(): void {
method createSystemEmail (line 82) | private createSystemEmail(): void {
method updateSystemEmail (line 94) | private updateSystemEmail(): void {
method callUpdateEndpoint (line 114) | private callUpdateEndpoint(updatePassword: boolean): void {
method checkEmailConnectivity (line 126) | public checkEmailConnectivity(): void {
method checkConnectivitySettingsWithExistingSettings (line 157) | private checkConnectivitySettingsWithExistingSettings(): void {
method checkConnectivitySettings (line 163) | private checkConnectivitySettings(command: CheckEmailConnectivityComma...
FILE: desktop/src/system-settings/system-email-table/system-email-table.component.ts
class SystemEmailTableComponent (line 22) | class SystemEmailTableComponent implements OnInit, AfterViewInit {
method constructor (line 47) | constructor(
method ngOnInit (line 56) | public ngOnInit(): void {
method ngAfterViewInit (line 61) | public ngAfterViewInit(): void {
method initTable (line 65) | private initTable(): void {
method setColumns (line 69) | private setColumns(): void {
method getTableData (line 117) | private getTableData(): void {
method setRelatedSystemEmailMap (line 131) | private setRelatedSystemEmailMap(systemEmails: SystemEmail[]): void {
method sorted (line 141) | public sorted(sort: Sort): void {
method pageChanged (line 148) | public pageChanged(pageEvent: PageEvent): void {
method deleteButtonClicked (line 157) | public deleteButtonClicked(systemEmail: SystemEmail): void {
method callDeleteApi (line 177) | private callDeleteApi(id: number, index: number): void {
method checkEmailConnectivity (line 192) | public checkEmailConnectivity(id: number): void {
method disabledDeleteButtonClicked (line 208) | public disabledDeleteButtonClicked(email: SystemEmail): void {
FILE: desktop/src/system-settings/system-settings-form/system-settings-form.component.ts
type QueueData (line 25) | interface QueueData extends FormOption {
class SystemSettingsFormComponent (line 38) | class SystemSettingsFormComponent extends BaseFormComponent implements O...
method constructor (line 96) | constructor(
method ngOnInit (line 109) | public ngOnInit(): void {
method ngAfterViewInit (line 117) | public ngAfterViewInit(): void {
method initForm (line 127) | private initForm(): void {
method buildAsynqQueueConfigurations (line 157) | private buildAsynqQueueConfigurations(): FormGroup[] {
method listenForReceiptProcessingSettingsChanges (line 166) | private listenForReceiptProcessingSettingsChanges(): void {
method listenForHideDecimalPlacesChanges (line 182) | private listenForHideDecimalPlacesChanges(): void {
method displayWith (line 198) | public displayWith(id: number): string {
method doesTaskServerRequiresRestart (line 202) | private doesTaskServerRequiresRestart(): boolean {
method submit (line 217) | public submit(): void {
method restartTaskServer (line 250) | public restartTaskServer(): void {
FILE: desktop/src/system-settings/system-settings-routing.module.ts
class SystemSettingsRoutingModule (line 221) | class SystemSettingsRoutingModule {
FILE: desktop/src/system-settings/system-settings.module.ts
class SystemSettingsModule (line 56) | class SystemSettingsModule {
FILE: desktop/src/system-settings/system-settings/system-settings.component.ts
class SystemSettingsComponent (line 10) | class SystemSettingsComponent implements OnInit {
method ngOnInit (line 13) | public ngOnInit(): void {
method initTabs (line 17) | private initTabs(): void {
FILE: desktop/src/system-settings/system-task-table/system-task-table.component.ts
class SystemTaskTableComponent (line 20) | class SystemTaskTableComponent implements OnInit {
method constructor (line 28) | constructor(private activatedRoute: ActivatedRoute) {}
method ngOnInit (line 30) | public ngOnInit(): void {
method refresh (line 35) | public refresh(): void {
FILE: desktop/src/table/table-column.interface.ts
type TableColumn (line 4) | interface TableColumn {
FILE: desktop/src/table/table.module.ts
class TableModule (line 25) | class TableModule {}
FILE: desktop/src/table/table/row-expandable.pipe.ts
class RowExpandablePipe (line 7) | class RowExpandablePipe implements PipeTransform {
method transform (line 8) | public transform(row: any, isExpandableFunc: (row: any) => boolean): b...
FILE: desktop/src/table/table/table.component.ts
class TableComponent (line 23) | class TableComponent implements OnChanges {
method constructor (line 49) | constructor(private _liveAnnouncer: LiveAnnouncer) {}
method ngOnChanges (line 51) | public ngOnChanges(changes: SimpleChanges): void {
method setRowIndexes (line 77) | private setRowIndexes(): void {
method isAllSelected (line 86) | public isAllSelected() {
method toggleAllRows (line 92) | public toggleAllRows() {
method announceSortChange (line 102) | announceSortChange(sortState: Sort) {
method pageChanged (line 116) | public pageChanged(pageEvent: PageEvent): void {
method expanderClicked (line 121) | public expanderClicked(event: MouseEvent, row: any): void {
FILE: desktop/src/tag-autocomplete/tag-autocomplete.component.ts
class TagAutocompleteComponent (line 17) | class TagAutocompleteComponent {
FILE: desktop/src/tags/tag-form/tag-form.component.ts
class TagFormComponent (line 16) | class TagFormComponent implements OnInit {
method constructor (line 23) | constructor(
method ngOnInit (line 31) | public ngOnInit(): void {
method initForm (line 35) | private initForm(): void {
method submit (line 45) | public submit(): void {
method closeDialog (line 75) | public closeDialog(): void {
FILE: desktop/src/tags/tag-table/tag-table.component.ts
class TagTableComponent (line 24) | class TagTableComponent implements OnInit, AfterViewInit {
method constructor (line 37) | constructor(
method ngOnInit (line 54) | public ngOnInit(): void {
method ngAfterViewInit (line 58) | public ngAfterViewInit(): void {
method initTableData (line 62) | private initTableData(): void {
method getTags (line 66) | private getTags(): void {
method updatePageData (line 83) | public updatePageData(pageEvent: PageEvent) {
method sorted (line 92) | public sorted(sortState: Sort): void {
method initTable (line 99) | private initTable(): void {
method setColumns (line 103) | private setColumns(): void {
method openEditDialog (line 148) | public openEditDialog(tagView: PagedDataDataInner): void {
method openAddDialog (line 170) | public openAddDialog(): void {
method openDeleteConfirmationDialog (line 191) | public openDeleteConfirmationDialog(tagView: PagedDataDataInner) {
FILE: desktop/src/tags/tags-routing.module.ts
class TagsRoutingModule (line 21) | class TagsRoutingModule {}
FILE: desktop/src/tags/tags.module.ts
class TagsModule (line 22) | class TagsModule {}
FILE: desktop/src/textarea/textarea.module.ts
class TextareaModule (line 26) | class TextareaModule {}
FILE: desktop/src/textarea/textarea/textarea.component.ts
class TextareaComponent (line 12) | class TextareaComponent
method onOptionSelected (line 29) | public onOptionSelected(): void {
method onSelectionChange (line 38) | public onSelectionChange(): void {
method filterOptions (line 50) | private filterOptions(currentWord: string): void {
method getTriggerWordFromIndex (line 60) | private getTriggerWordFromIndex(index: number): { word: string | null,...
method getOptionValue (line 70) | public getOptionValue(option: string): string {
FILE: desktop/src/user-autocomplete/user-autocomplete.module.ts
class UserAutocompleteModule (line 13) | class UserAutocompleteModule {}
FILE: desktop/src/user-autocomplete/user-autocomplete/user-autocomplete.component.ts
class UserAutocompleteComponent (line 16) | class UserAutocompleteComponent {
method constructor (line 17) | constructor(
method displayWith (line 69) | public displayWith(id?: number): string {
FILE: desktop/src/user/dummy-user-conversion-dialog/dummy-user-conversion-dialog.component.ts
class DummyUserConversionDialogComponent (line 16) | class DummyUserConversionDialogComponent implements OnInit {
method constructor (line 21) | constructor(
method ngOnInit (line 29) | public ngOnInit(): void {
method initForm (line 33) | private initForm(): void {
method submitButtonClicked (line 39) | public submitButtonClicked(): void {
method cancelButtonClicked (line 62) | public cancelButtonClicked(): void {
FILE: desktop/src/user/reset-password/reset-password.component.ts
class ResetPasswordComponent (line 14) | class ResetPasswordComponent implements OnInit {
method constructor (line 19) | constructor(
method ngOnInit (line 26) | public ngOnInit(): void {
method initForm (line 30) | private initForm(): void {
method submit (line 36) | public submit(): void {
method closeModal (line 51) | public closeModal(): void {
FILE: desktop/src/user/user-form/user-form.component.ts
class UserFormComponent (line 22) | class UserFormComponent implements OnInit {
method constructor (line 28) | constructor(
method ngOnInit (line 42) | public ngOnInit(): void {
method listenToIsDummyChanges (line 49) | private listenToIsDummyChanges(): void {
method initForm (line 70) | private initForm(): void {
method submit (line 92) | public submit(): void {
method closeModal (line 141) | public closeModal(): void {
FILE: desktop/src/user/user-list/user-list.component.ts
class UserListComponent (line 27) | class UserListComponent implements AfterViewInit {
method constructor (line 52) | constructor(
method ngAfterViewInit (line 59) | public ngAfterViewInit(): void {
method initTable (line 64) | private initTable(): void {
method setColumns (line 69) | private setColumns(): void {
method setDataSource (line 121) | private setDataSource(): void {
method setupSelectionListener (line 137) | private setupSelectionListener(): void {
method updateSelectionState (line 145) | private updateSelectionState(): void {
method openUserFormDialog (line 149) | public openUserFormDialog(user?: User): void {
method openResetPasswordDialog (line 164) | public openResetPasswordDialog(user: User): void {
method openDummyUserConversionDialog (line 173) | public openDummyUserConversionDialog(user: User): void {
method deleteUser (line 182) | public deleteUser(index: number) {
method bulkDeleteUsers (line 216) | public bulkDeleteUsers(): void {
FILE: desktop/src/user/user-routing.module.ts
class UserRoutingModule (line 16) | class UserRoutingModule {}
FILE: desktop/src/user/user.module.ts
class UserModule (line 41) | class UserModule {}
FILE: desktop/src/utils/app-data.utill.ts
function setAppData (line 17) | function setAppData(store: Store, appData: AppData): Observable<any[]> {
FILE: desktop/src/utils/file.ts
function downloadFile (line 1) | function downloadFile(blob: Blob, filename: string): void {
FILE: desktop/src/utils/form.utils.ts
function applyApiErrors (line 6) | function applyApiErrors(form: FormGroup, errors: any): void {
function setEntityHeaderText (line 20) | function setEntityHeaderText(
function applyFormCommand (line 52) | function applyFormCommand(form: FormGroup, formCommand: FormCommand) {
FILE: desktop/src/utils/group.utils.ts
class GroupUtil (line 10) | class GroupUtil {
method constructor (line 11) | constructor(private store: Store, private router: Router) {}
method hasGroupAccess (line 14) | public hasGroupAccess(
FILE: desktop/src/utils/paramterterized-data-parser.ts
class ParameterizedDataParser (line 8) | class ParameterizedDataParser {
method constructor (line 9) | constructor(private store: Store) {}
method parse (line 13) | public parse(body: string): string {
method resolveParameterisedData (line 23) | private resolveParameterisedData(data: string): string {
method trimUnnecessaryCharacters (line 29) | private trimUnnecessaryCharacters(data: string): string {
method resolveData (line 40) | private resolveData(parts: string[]): string {
FILE: desktop/src/utils/receipt-filter.ts
function buildReceiptFilterForm (line 6) | function buildReceiptFilterForm(filter: any, thisContext: any): FormGroup {
function listenForBetweenOperation (line 72) | function listenForBetweenOperation(form: FormGroup, key: string, thisCon...
function updateValidatorsOnOperationChange (line 90) | function updateValidatorsOnOperationChange(
function betweenValidator (line 117) | function betweenValidator(control: AbstractControl): { [key: string]: an...
function buildFieldFormGroup (line 131) | function buildFieldFormGroup(
FILE: desktop/src/utils/sort-by-displayname.ts
class SortByDisplayName (line 9) | class SortByDisplayName {
method constructor (line 10) | constructor(private store: Store) {}
method sort (line 12) | public sort(data: any[], sortState: Sort, userIdKey: string): any[] {
FILE: desktop/src/utils/status.utils.ts
function formatStatus (line 1) | function formatStatus(status: string): string {
FILE: desktop/src/validators/duplicate-validator.ts
type DuplicateValidatorType (line 6) | type DuplicateValidatorType = "category" | "tag";
class DuplicateValidator (line 9) | class DuplicateValidator {
method constructor (line 10) | constructor(
method isUnique (line 15) | isUnique(
method getObservable (line 37) | private getObservable(
FILE: desktop/src/validators/user-validators.ts
class UserValidators (line 8) | class UserValidators {
method constructor (line 9) | constructor(private userService: UserService) {}
method uniqueUsername (line 11) | uniqueUsername(threshold: number, originalValue: string): AsyncValidat...
FILE: mobile/android/app/src/main/assets/public/1315.889df76956ff23ca.js
method constructor (line 1) | constructor(i){(0,d.r)(this,i),this.offset=void 0,this.offsetXs=void 0,t...
method onResize (line 1) | onResize(){(0,d.i)(this)}
method getColumns (line 1) | getColumns(i){let n;for(const a of h){const t=x(a),u=this[i+a.charAt(0)....
method calculateSize (line 1) | calculateSize(){const i=this.getColumns("size");if(!i||""===i)return;con...
method calculatePosition (line 1) | calculatePosition(i,n){const a=this.getColumns(i);if(a)return{[n]:e?`cal...
method calculateOffset (line 1) | calculateOffset(i){return this.calculatePosition("offset",i?"margin-righ...
method calculatePull (line 1) | calculatePull(i){return this.calculatePosition("pull",i?"left":"right")}
method calculatePush (line 1) | calculatePush(i){return this.calculatePosition("push",i?"right":"left")}
method render (line 1) | render(){const i="rtl"===document.dir,n=(0,o.b)(this);return(0,d.h)(d.H,...
method constructor (line 1) | constructor(i){(0,d.r)(this,i),this.fixed=!1}
method render (line 1) | render(){const i=(0,o.b)(this);return(0,d.h)(d.H,{class:{[i]:!0,"grid-fi...
method constructor (line 1) | constructor(i){(0,d.r)(this,i)}
method render (line 1) | render(){return(0,d.h)(d.H,{class:(0,o.b)(this)},(0,d.h)("slot",null))}
FILE: mobile/android/app/src/main/assets/public/1372.adec2e4e15de229e.js
method constructor (line 1) | constructor(o){(0,e.r)(this,o),this.ionFocus=(0,e.d)(this,"ionFocus",7),...
method disabledChanged (line 1) | disabledChanged(){const{disabled:o}=this;this.formButtonEl&&(this.formBu...
method renderHiddenButton (line 1) | renderHiddenButton(){const o=this.formEl=this.findForm();if(o){const{for...
method componentWillLoad (line 1) | componentWillLoad(){this.inToolbar=!!this.el.closest("ion-buttons"),this...
method hasIconOnly (line 1) | get hasIconOnly(){return!!this.el.querySelector('[slot="icon-only"]')}
method rippleType (line 1) | get rippleType(){return(void 0===this.fill||"clear"===this.fill)&&this.h...
method findForm (line 1) | findForm(){const{form:o}=this;if(o instanceof HTMLFormElement)return o;i...
method submitForm (line 1) | submitForm(o){this.formEl&&this.formButtonEl&&(o.preventDefault(),this.f...
method render (line 1) | render(){const o=(0,x.b)(this),{buttonType:t,type:n,disabled:i,rel:r,tar...
method el (line 1) | get el(){return(0,e.f)(this)}
method watchers (line 1) | static get watchers(){return{disabled:["disabledChanged"]}}
method constructor (line 1) | constructor(o){(0,e.r)(this,o),this.iconName=null,this.inheritedAttribut...
method componentWillLoad (line 1) | componentWillLoad(){this.inheritedAttributes=((o,t=[])=>{const n={};retu...
method connectedCallback (line 1) | connectedCallback(){this.waitUntilVisible(this.el,"50px",()=>{this.isVis...
method componentDidLoad (line 1) | componentDidLoad(){this.didLoadIcon||this.loadIcon()}
method disconnectedCallback (line 1) | disconnectedCallback(){this.io&&(this.io.disconnect(),this.io=void 0)}
method waitUntilVisible (line 1) | waitUntilVisible(o,t,n){if(this.lazy&&typeof window<"u"&&window.Intersec...
method loadIcon (line 1) | loadIcon(){if(this.isVisible){const o=(o=>{let t=h(o.src);return t||(t=l...
method render (line 1) | render(){const{flipRtl:o,iconName:t,inheritedAttributes:n,el:i}=this,r=t...
method assetsDirs (line 1) | static get assetsDirs(){return["svg"]}
method el (line 1) | get el(){return(0,e.f)(this)}
method watchers (line 1) | static get watchers(){return{name:["loadIcon"],src:["loadIcon"],icon:["l...
FILE: mobile/android/app/src/main/assets/public/1745.3c8be738e4ed3473.js
method constructor (line 1) | constructor(t){(0,i.r)(this,t),this.ionImgWillLoad=(0,i.d)(this,"ionImgW...
method srcChanged (line 1) | srcChanged(){this.addIO()}
method componentWillLoad (line 1) | componentWillLoad(){this.inheritedAttributes=(0,n.k)(this.el,["draggable...
method componentDidLoad (line 1) | componentDidLoad(){this.addIO()}
method addIO (line 1) | addIO(){void 0!==this.src&&(typeof window<"u"&&"IntersectionObserver"in ...
method load (line 1) | load(){this.loadError=this.onError,this.loadSrc=this.src,this.ionImgWill...
method removeIO (line 1) | removeIO(){this.io&&(this.io.disconnect(),this.io=void 0)}
method render (line 1) | render(){const{loadSrc:t,alt:a,onLoad:c,loadError:l,inheritedAttributes:...
method el (line 1) | get el(){return(0,i.f)(this)}
method watchers (line 1) | static get watchers(){return{src:["srcChanged"]}}
FILE: mobile/android/app/src/main/assets/public/185.e77de020be41917f.js
method constructor (line 1) | constructor(t){(0,l.r)(this,t),this.didPresent=(0,l.d)(this,"ionPopoverD...
method onTriggerChange (line 1) | onTriggerChange(){this.configureTriggerInteraction()}
method onIsOpenChange (line 1) | onIsOpenChange(t,e){!0===t&&!1===e?this.present():!1===t&&!0===e&&this.d...
method connectedCallback (line 1) | connectedCallback(){const{configureTriggerInteraction:t,el:e}=this;(0,I....
method disconnectedCallback (line 1) | disconnectedCallback(){const{destroyTriggerInteraction:t}=this;t&&t()}
method componentWillLoad (line 1) | componentWillLoad(){const{el:t}=this,e=(0,I.k)(t);this.parentPopover=t.c...
method componentDidLoad (line 1) | componentDidLoad(){const{parentPopover:t,isOpen:e}=this;!0===e&&(0,k.r)(...
method presentFromTrigger (line 1) | presentFromTrigger(t,e=!1){var o=this;return(0,S.Z)(function*(){o.focusD...
method getDelegate (line 1) | getDelegate(t=!1){if(this.workingDelegate&&!t)return{delegate:this.worki...
method present (line 1) | present(t){var e=this;return(0,S.Z)(function*(){const o=yield e.lockCont...
method dismiss (line 1) | dismiss(t,e,o=!0){var r=this;return(0,S.Z)(function*(){const i=yield r.l...
method getParentPopover (line 1) | getParentPopover(){var t=this;return(0,S.Z)(function*(){return t.parentP...
method onDidDismiss (line 1) | onDidDismiss(){return(0,I.h)(this.el,"ionPopoverDidDismiss")}
method onWillDismiss (line 1) | onWillDismiss(){return(0,I.h)(this.el,"ionPopoverWillDismiss")}
method render (line 1) | render(){const t=(0,f.b)(this),{onLifecycle:e,parentPopover:o,dismissOnS...
method el (line 1) | get el(){return(0,l.f)(this)}
method watchers (line 1) | static get watchers(){return{trigger:["onTriggerChange"],triggerAction:[...
FILE: mobile/android/app/src/main/assets/public/2841.0bc48a5b325bfb25.js
method constructor (line 1) | constructor(e){(0,n.r)(this,e),this.loaded=!1,this.active=!1,this.delega...
method componentWillLoad (line 1) | componentWillLoad(){var e=this;return(0,s.Z)(function*(){e.active&&(yiel...
method setActive (line 1) | setActive(){var e=this;return(0,s.Z)(function*(){yield e.prepareLazyLoad...
method changeActive (line 1) | changeActive(e){e&&this.prepareLazyLoaded()}
method prepareLazyLoaded (line 1) | prepareLazyLoaded(){if(!this.loaded&&null!=this.component){this.loaded=!...
method render (line 1) | render(){const{tab:e,active:t,component:i}=this;return(0,n.h)(n.H,{role:...
method el (line 1) | get el(){return(0,n.f)(this)}
method watchers (line 1) | static get watchers(){return{active:["changeActive"]}}
method constructor (line 1) | constructor(e){(0,n.r)(this,e),this.ionNavWillLoad=(0,n.d)(this,"ionNavW...
method componentWillLoad (line 1) | componentWillLoad(){var e=this;return(0,s.Z)(function*(){if(e.useRouter|...
method componentWillRender (line 1) | componentWillRender(){const e=this.el.querySelector("ion-tab-bar");e&&(e...
method select (line 1) | select(e){var t=this;return(0,s.Z)(function*(){const i=o(t.tabs,e);retur...
method getTab (line 1) | getTab(e){var t=this;return(0,s.Z)(function*(){return o(t.tabs,e)})()}
method getSelected (line 1) | getSelected(){return Promise.resolve(this.selectedTab?this.selectedTab.t...
method setRouteId (line 1) | setRouteId(e){var t=this;return(0,s.Z)(function*(){const i=o(t.tabs,e);r...
method getRouteId (line 1) | getRouteId(){var e=this;return(0,s.Z)(function*(){var t;const i=null===(...
method setActive (line 1) | setActive(e){return this.transitioning?Promise.reject("transitioning alr...
method tabSwitch (line 1) | tabSwitch(){const e=this.selectedTab,t=this.leavingTab;this.leavingTab=v...
method notifyRouter (line 1) | notifyRouter(){if(this.useRouter){const e=document.querySelector("ion-ro...
method shouldSwitch (line 1) | shouldSwitch(e){return void 0!==e&&e!==this.selectedTab&&!this.transitio...
method tabs (line 1) | get tabs(){return Array.from(this.el.querySelectorAll("ion-tab"))}
method render (line 1) | render(){return(0,n.h)(n.H,{onIonTabButtonClick:this.onTabClicked},(0,n....
method el (line 1) | get el(){return(0,n.f)(this)}
FILE: mobile/android/app/src/main/assets/public/2975.e586449a75f61839.js
method constructor (line 1) | constructor(t){(0,l.r)(this,t)}
method onClick (line 1) | onClick(t){const e=this.el.closest("ion-reorder-group");t.preventDefault...
method render (line 1) | render(){const t=(0,E.b)(this);return(0,l.h)(l.H,{class:t},(0,l.h)("slot...
method el (line 1) | get el(){return(0,l.f)(this)}
method constructor (line 1) | constructor(t){(0,l.r)(this,t),this.ionItemReorder=(0,l.d)(this,"ionItem...
method disabledChanged (line 1) | disabledChanged(){this.gesture&&this.gesture.enable(!this.disabled)}
method connectedCallback (line 1) | connectedCallback(){var t=this;return(0,T.Z)(function*(){const e=(0,g.f)...
method disconnectedCallback (line 1) | disconnectedCallback(){this.onEnd(),this.gesture&&(this.gesture.destroy(...
method complete (line 1) | complete(t){return Promise.resolve(this.completeReorder(t))}
method canStart (line 1) | canStart(t){if(this.selectedItemEl||0!==this.state)return!1;const s=t.ev...
method onStart (line 1) | onStart(t){t.event.preventDefault();const e=this.selectedItemEl=t.data,s...
method onMove (line 1) | onMove(t){const e=this.selectedItemEl;if(!e)return;const s=this.autoscro...
method onEnd (line 1) | onEnd(){const t=this.selectedItemEl;if(this.state=2,!t)return void(this....
method completeReorder (line 1) | completeReorder(t){const e=this.selectedItemEl;if(e&&2===this.state){con...
method itemIndexForTop (line 1) | itemIndexForTop(t){const e=this.cachedHeights;for(let s=0;s<e.length;s++...
method reorderMove (line 1) | reorderMove(t,e){const s=this.selectedItemHeight,r=this.el.children;for(...
method autoscroll (line 1) | autoscroll(t){if(!this.scrollEl)return 0;let e=0;return t<this.scrollElT...
method render (line 1) | render(){const t=(0,E.b)(this);return(0,l.h)(l.H,{class:{[t]:!0,"reorder...
method el (line 1) | get el(){return(0,l.f)(this)}
method watchers (line 1) | static get watchers(){return{disabled:["disabledChanged"]}}
FILE: mobile/android/app/src/main/assets/public/3150.5ae5046a8a6f3f3c.js
method constructor (line 1) | constructor(o){(0,t.r)(this,o),this.inheritedAriaAttributes={},this.colo...
method componentWillLoad (line 1) | componentWillLoad(){this.inheritedAriaAttributes=(0,g.k)(this.el,["aria-...
method isClickable (line 1) | isClickable(){return void 0!==this.href||this.button}
method renderCard (line 1) | renderCard(o){const f=this.isClickable();if(!f)return[(0,t.h)("slot",nul...
method render (line 1) | render(){const o=(0,s.b)(this);return(0,t.h)(t.H,{class:(0,a.c)(this.col...
method el (line 1) | get el(){return(0,t.f)(this)}
method constructor (line 1) | constructor(o){(0,t.r)(this,o)}
method render (line 1) | render(){const o=(0,s.b)(this);return(0,t.h)(t.H,{class:{[o]:!0,[`card-c...
method constructor (line 1) | constructor(o){(0,t.r)(this,o),this.color=void 0,this.translucent=!1}
method render (line 1) | render(){const o=(0,s.b)(this);return(0,t.h)(t.H,{class:(0,a.c)(this.col...
method constructor (line 1) | constructor(o){(0,t.r)(this,o),this.color=void 0}
method render (line 1) | render(){const o=(0,s.b)(this);return(0,t.h)(t.H,{role:"heading","aria-l...
method constructor (line 1) | constructor(o){(0,t.r)(this,o),this.color=void 0}
method render (line 1) | render(){const o=(0,s.b)(this);return(0,t.h)(t.H,{role:"heading","aria-l...
FILE: mobile/android/app/src/main/assets/public/3483.42f8d84de3c6de1b.js
method constructor (line 1) | constructor(i){(0,t.r)(this,i),this.didPresent=(0,t.d)(this,"ionLoadingD...
method onIsOpenChange (line 1) | onIsOpenChange(i,o){!0===i&&!1===o?this.present():!1===i&&!0===o&&this.d...
method triggerChanged (line 1) | triggerChanged(){const{trigger:i,el:o,triggerController:e}=this;i&&e.add...
method connectedCallback (line 1) | connectedCallback(){(0,l.j)(this.el),this.triggerChanged()}
method componentWillLoad (line 1) | componentWillLoad(){if(void 0===this.spinner){const i=(0,s.b)(this);this...
method componentDidLoad (line 1) | componentDidLoad(){!0===this.isOpen&&(0,b.r)(()=>this.present()),this.tr...
method disconnectedCallback (line 1) | disconnectedCallback(){this.triggerController.removeClickListener()}
method present (line 1) | present(){var i=this;return(0,m.Z)(function*(){const o=yield i.lockContr...
method dismiss (line 1) | dismiss(i,o){var e=this;return(0,m.Z)(function*(){const r=yield e.lockCo...
method onDidDismiss (line 1) | onDidDismiss(){return(0,l.h)(this.el,"ionLoadingDidDismiss")}
method onWillDismiss (line 1) | onWillDismiss(){return(0,l.h)(this.el,"ionLoadingWillDismiss")}
method renderLoadingMessage (line 1) | renderLoadingMessage(i){const{customHTMLEnabled:o,message:e}=this;return...
method render (line 1) | render(){const{message:i,spinner:o,htmlAttributes:e,overlayIndex:r}=this...
method el (line 1) | get el(){return(0,t.f)(this)}
method watchers (line 1) | static get watchers(){return{isOpen:["onIsOpenChange"],trigger:["trigger...
FILE: mobile/android/app/src/main/assets/public/3544.e4a87e0193f7d36c.js
method constructor (line 1) | constructor(i){(0,r.r)(this,i)}
method render (line 1) | render(){return(0,r.h)(r.H,{class:(0,e.b)(this)},(0,r.h)("slot",null))}
method constructor (line 1) | constructor(i){(0,r.r)(this,i),this.color=void 0}
method render (line 1) | render(){const i=(0,e.b)(this);return(0,r.h)(r.H,{class:(0,c.c)(this.col...
method constructor (line 1) | constructor(i){(0,r.r)(this,i)}
method render (line 1) | render(){return(0,r.h)(r.H,{class:(0,e.b)(this)},(0,r.h)("slot",null))}
FILE: mobile/android/app/src/main/assets/public/3672.b43100ea07272033.js
method constructor (line 1) | constructor(t){(0,r.r)(this,t),this.ionChange=(0,r.d)(this,"ionChange",7...
method colorChanged (line 1) | colorChanged(t,e){(void 0===e&&void 0!==t||void 0!==e&&void 0===t)&&this...
method swipeGestureChanged (line 1) | swipeGestureChanged(){this.gestureChanged()}
method valueChanged (line 1) | valueChanged(t){this.ionSelect.emit({value:t}),this.scrollActiveButtonIn...
method disabledChanged (line 1) | disabledChanged(){this.gestureChanged();const t=this.getButtons();for(co...
method gestureChanged (line 1) | gestureChanged(){this.gesture&&this.gesture.enable(!this.scrollable&&!th...
method connectedCallback (line 1) | connectedCallback(){this.emitStyle()}
method componentWillLoad (line 1) | componentWillLoad(){this.emitStyle()}
method componentDidLoad (line 1) | componentDidLoad(){var t=this;return(0,w.Z)(function*(){t.setCheckedClas...
method onStart (line 1) | onStart(t){this.valueBeforeGesture=this.value,this.activate(t)}
method onMove (line 1) | onMove(t){this.setNextIndex(t)}
method onEnd (line 1) | onEnd(t){this.setActivated(!1),this.setNextIndex(t,!0),t.event.stopImmed...
method emitValueChange (line 1) | emitValueChange(){const{value:t}=this;this.ionChange.emit({value:t})}
method getButtons (line 1) | getButtons(){return Array.from(this.el.querySelectorAll("ion-segment-but...
method checked (line 1) | get checked(){return this.getButtons().find(t=>t.value===this.value)}
method setActivated (line 1) | setActivated(t){this.getButtons().forEach(n=>{t?n.classList.add("segment...
method activate (line 1) | activate(t){const e=t.event.target,o=this.getButtons().find(i=>i.value==...
method getIndicator (line 1) | getIndicator(t){return(t.shadowRoot||t).querySelector(".segment-button-i...
method checkButton (line 1) | checkButton(t,e){const n=this.getIndicator(t),o=this.getIndicator(e);if(...
method setCheckedClasses (line 1) | setCheckedClasses(){const t=this.getButtons(),n=t.findIndex(o=>o.value==...
method scrollActiveButtonIntoView (line 1) | scrollActiveButtonIntoView(t=!0){const{scrollable:e,value:n,el:o}=this;i...
method setNextIndex (line 1) | setNextIndex(t,e=!1){const n=(0,y.i)(this.el),o=this.activated,i=this.ge...
method emitStyle (line 1) | emitStyle(){this.ionStyle.emit({segment:!0})}
method onKeyDown (line 1) | onKeyDown(t){const e=(0,y.i)(this.el);let o,n=this.selectOnFocus;switch(...
method render (line 1) | render(){const t=(0,C.b)(this);return(0,r.h)(r.H,{role:"tablist",onClick...
method el (line 1) | get el(){return(0,r.f)(this)}
method watchers (line 1) | static get watchers(){return{color:["colorChanged"],swipeGesture:["swipe...
method constructor (line 1) | constructor(t){(0,r.r)(this,t),this.segmentEl=null,this.inheritedAttribu...
method valueChanged (line 1) | valueChanged(){this.updateState()}
method connectedCallback (line 1) | connectedCallback(){const t=this.segmentEl=this.el.closest("ion-segment"...
method disconnectedCallback (line 1) | disconnectedCallback(){const t=this.segmentEl;t&&((0,b.b)(t,"ionSelect",...
method componentWillLoad (line 1) | componentWillLoad(){this.inheritedAttributes=Object.assign({},(0,b.k)(th...
method hasLabel (line 1) | get hasLabel(){return!!this.el.querySelector("ion-label")}
method hasIcon (line 1) | get hasIcon(){return!!this.el.querySelector("ion-icon")}
method setFocus (line 1) | setFocus(){var t=this;return(0,w.Z)(function*(){const{nativeEl:e}=t;void...
method render (line 1) | render(){const{checked:t,type:e,disabled:n,hasIcon:o,hasLabel:i,layout:l...
method el (line 1) | get el(){return(0,r.f)(this)}
method watchers (line 1) | static get watchers(){return{value:["valueChanged"]}}
FILE: mobile/android/app/src/main/assets/public/3734.77fa8da2119d4aac.js
method constructor (line 1) | constructor(t){(0,a.r)(this,t),this.ionChange=(0,a.d)(this,"ionChange",7...
method debounceChanged (line 1) | debounceChanged(){const{ionInput:t,debounce:e,originalIonInput:i}=this;t...
method disabledChanged (line 1) | disabledChanged(){this.emitStyle()}
method valueChanged (line 1) | valueChanged(){const t=this.nativeInput,e=this.getValue();t&&t.value!==e...
method connectedCallback (line 1) | connectedCallback(){const{el:t}=this;this.legacyFormController=(0,u.c)(t...
method disconnectedCallback (line 1) | disconnectedCallback(){document.dispatchEvent(new CustomEvent("ionInputD...
method componentWillLoad (line 1) | componentWillLoad(){this.inheritedAttributes=Object.assign(Object.assign...
method componentDidLoad (line 1) | componentDidLoad(){this.originalIonInput=this.ionInput,this.runAutoGrow()}
method componentDidRender (line 1) | componentDidRender(){var t;null===(t=this.notchController)||void 0===t||...
method setFocus (line 1) | setFocus(){var t=this;return(0,h.Z)(function*(){t.nativeInput&&t.nativeI...
method getInputElement (line 1) | getInputElement(){var t=this;return(0,h.Z)(function*(){return t.nativeIn...
method emitStyle (line 1) | emitStyle(){this.legacyFormController.hasLegacyControl()&&this.ionStyle....
method emitValueChange (line 1) | emitValueChange(t){const{value:e}=this,i=null==e?e:e.toString();this.foc...
method emitInputChange (line 1) | emitInputChange(t){const{value:e}=this;this.ionInput.emit({value:e,event...
method runAutoGrow (line 1) | runAutoGrow(){this.nativeInput&&this.autoGrow&&(0,a.w)(()=>{var t;this.t...
method checkClearOnEdit (line 1) | checkClearOnEdit(t){if(!this.clearOnEdit)return;const i=["Tab","Shift","...
method focusChange (line 1) | focusChange(){this.emitStyle()}
method hasValue (line 1) | hasValue(){return""!==this.getValue()}
method getValue (line 1) | getValue(){return this.value||""}
method renderLegacyTextarea (line 1) | renderLegacyTextarea(){this.hasLoggedDeprecationWarning||((0,w.p)('ion-t...
method renderLabel (line 1) | renderLabel(){const{label:t}=this;return(0,a.h)("div",{class:{"label-tex...
method labelSlot (line 1) | get labelSlot(){return this.el.querySelector('[slot="label"]')}
method hasLabel (line 1) | get hasLabel(){return void 0!==this.label||null!==this.labelSlot}
method renderLabelContainer (line 1) | renderLabelContainer(){return"md"===(0,o.b)(this)&&"outline"===this.fill...
method renderHintText (line 1) | renderHintText(){const{helperText:t,errorText:e}=this;return[(0,a.h)("di...
method renderCounter (line 1) | renderCounter(){const{counter:t,maxlength:e,counterFormatter:i,value:s}=...
method renderBottomContent (line 1) | renderBottomContent(){const{counter:t,helperText:e,errorText:i,maxlength...
method renderTextarea (line 1) | renderTextarea(){const{inputId:t,disabled:e,fill:i,shape:s,labelPlacemen...
method render (line 1) | render(){const{legacyFormController:t}=this;return t.hasLegacyControl()?...
method el (line 1) | get el(){return(0,a.f)(this)}
method watchers (line 1) | static get watchers(){return{debounce:["debounceChanged"],disabled:["dis...
FILE: mobile/android/app/src/main/assets/public/3998.719b8513be715b74.js
method constructor (line 1) | constructor(a){var e=this;(0,n.r)(this,a),this.ionInput=(0,n.d)(this,"io...
method debounceChanged (line 1) | debounceChanged(){const{ionInput:a,debounce:e,originalIonInput:r}=this;t...
method valueChanged (line 1) | valueChanged(){const a=this.nativeInput,e=this.getValue();a&&a.value!==e...
method showCancelButtonChanged (line 1) | showCancelButtonChanged(){requestAnimationFrame(()=>{this.positionElemen...
method connectedCallback (line 1) | connectedCallback(){this.emitStyle()}
method componentDidLoad (line 1) | componentDidLoad(){this.originalIonInput=this.ionInput,this.positionElem...
method emitStyle (line 1) | emitStyle(){this.ionStyle.emit({searchbar:!0})}
method setFocus (line 1) | setFocus(){var a=this;return(0,d.Z)(function*(){a.nativeInput&&a.nativeI...
method getInputElement (line 1) | getInputElement(){var a=this;return(0,d.Z)(function*(){return a.nativeIn...
method emitValueChange (line 1) | emitValueChange(a){const{value:e}=this,r=null==e?e:e.toString();this.foc...
method emitInputChange (line 1) | emitInputChange(a){const{value:e}=this;this.ionInput.emit({value:e,event...
method positionElements (line 1) | positionElements(){const a=this.getValue(),e=this.shouldAlignLeft,r=(0,u...
method positionPlaceholder (line 1) | positionPlaceholder(){const a=this.nativeInput;if(!a)return;const e=(0,v...
method positionCancelButton (line 1) | positionCancelButton(){const a=(0,v.i)(this.el),e=(this.el.shadowRoot||t...
method getValue (line 1) | getValue(){return this.value||""}
method hasValue (line 1) | hasValue(){return""!==this.getValue()}
method shouldShowCancelButton (line 1) | shouldShowCancelButton(){return!("never"===this.showCancelButton||"focus...
method shouldShowClearButton (line 1) | shouldShowClearButton(){return!("never"===this.showClearButton||"focus"=...
method render (line 1) | render(){const{cancelButtonText:a}=this,e=this.animated&&u.c.getBoolean(...
method el (line 1) | get el(){return(0,n.f)(this)}
method watchers (line 1) | static get watchers(){return{debounce:["debounceChanged"],value:["valueC...
FILE: mobile/android/app/src/main/assets/public/4087.31a09dafb629fd16.js
method constructor (line 1) | constructor(t){(0,o.r)(this,t),this.horizontal=void 0,this.vertical=void...
method activatedChanged (line 1) | activatedChanged(){const t=this.activated,a=this.getFab();a&&(a.activate...
method componentDidLoad (line 1) | componentDidLoad(){this.activated&&this.activatedChanged()}
method close (line 1) | close(){var t=this;return(0,p.Z)(function*(){t.activated=!1})()}
method getFab (line 1) | getFab(){return this.el.querySelector("ion-fab-button")}
method toggle (line 1) | toggle(){var t=this;return(0,p.Z)(function*(){t.el.querySelector("ion-fa...
method render (line 1) | render(){const{horizontal:t,vertical:a,edge:s}=this,c=(0,d.b)(this);retu...
method el (line 1) | get el(){return(0,o.f)(this)}
method watchers (line 1) | static get watchers(){return{activated:["activatedChanged"]}}
method constructor (line 1) | constructor(t){(0,o.r)(this,t),this.ionFocus=(0,o.d)(this,"ionFocus",7),...
method connectedCallback (line 1) | connectedCallback(){this.fab=this.el.closest("ion-fab")}
method componentWillLoad (line 1) | componentWillLoad(){this.inheritedAttributes=(0,g.i)(this.el)}
method render (line 1) | render(){const{el:t,disabled:a,color:s,href:c,activated:x,show:E,translu...
method el (line 1) | get el(){return(0,o.f)(this)}
method constructor (line 1) | constructor(t){(0,o.r)(this,t),this.activated=!1,this.side="bottom"}
method activatedChanged (line 1) | activatedChanged(t){const a=Array.from(this.el.querySelectorAll("ion-fab...
method render (line 1) | render(){const t=(0,d.b)(this);return(0,o.h)(o.H,{class:{[t]:!0,"fab-lis...
method el (line 1) | get el(){return(0,o.f)(this)}
method watchers (line 1) | static get watchers(){return{activated:["activatedChanged"]}}
FILE: mobile/android/app/src/main/assets/public/4090.5e1ea55e09eb2f12.js
method constructor (line 1) | constructor(o){(0,t.r)(this,o),this.ionTabBarChanged=(0,t.d)(this,"ionTa...
method selectedTabChanged (line 1) | selectedTabChanged(){void 0!==this.selectedTab&&this.ionTabBarChanged.em...
method componentWillLoad (line 1) | componentWillLoad(){this.selectedTabChanged()}
method connectedCallback (line 1) | connectedCallback(){var o=this;return(0,u.Z)(function*(){o.keyboardCtrl=...
method disconnectedCallback (line 1) | disconnectedCallback(){this.keyboardCtrl&&this.keyboardCtrl.destroy()}
method componentDidLoad (line 1) | componentDidLoad(){this.ionTabBarLoaded.emit()}
method render (line 1) | render(){const{color:o,translucent:e,keyboardVisible:s}=this,l=(0,d.b)(t...
method el (line 1) | get el(){return(0,t.f)(this)}
method watchers (line 1) | static get watchers(){return{selectedTab:["selectedTabChanged"]}}
method constructor (line 1) | constructor(o){(0,t.r)(this,o),this.ionTabButtonClick=(0,t.d)(this,"ionT...
method onTabBarChanged (line 1) | onTabBarChanged(o){const e=o.target,s=this.el.p
Copy disabled (too large)
Download .json
Condensed preview — 2148 files, each showing path, character count, and a content snippet. Download the .json file for the full structured content (12,800K chars).
[
{
"path": ".github/workflows/ci.yml",
"chars": 6709,
"preview": "---\nname: CI - Build and Test\n\non:\n push:\n branches: [main]\n paths:\n - 'api/**'\n - 'desktop/**'\n -"
},
{
"path": ".github/workflows/e2e.yml",
"chars": 1531,
"preview": "---\nname: E2E - Playwright\n\non:\n push:\n branches: [main]\n paths:\n - 'api/**'\n - 'desktop/**'\n - 'd"
},
{
"path": ".github/workflows/release.yml",
"chars": 5460,
"preview": "---\nname: Release - Build and Test\n\non:\n release:\n types: [published]\n\njobs:\n test-api:\n runs-on: ubuntu-latest\n"
},
{
"path": ".gitignore",
"chars": 8,
"preview": ".claude\n"
},
{
"path": ".idea/app.iml",
"chars": 336,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<module type=\"JAVA_MODULE\" version=\"4\">\n <component name=\"NewModuleRootManager\" "
},
{
"path": ".idea/forwardedPorts.xml",
"chars": 353,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n <component name=\"PortForwardingSettings\">\n <ports>\n "
},
{
"path": ".idea/git_toolbox_prj.xml",
"chars": 480,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n <component name=\"GitToolBoxProjectSettings\">\n <option "
},
{
"path": ".idea/modules.xml",
"chars": 258,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n <component name=\"ProjectModuleManager\">\n <modules>\n "
},
{
"path": ".idea/receipt-wrangler-api.iml",
"chars": 110,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<module version=\"4\">\n <component name=\"Go\" enabled=\"true\" />\n</module>"
},
{
"path": ".idea/vcs.xml",
"chars": 167,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n <component name=\"VcsDirectoryMappings\">\n <mapping dire"
},
{
"path": ".idea/workspace.xml",
"chars": 15075,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n <component name=\"AutoImportSettings\">\n <option name=\"a"
},
{
"path": "CLAUDE.md",
"chars": 12683,
"preview": "# CLAUDE.md\n\nThis file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.\n\n## "
},
{
"path": "README.md",
"chars": 292,
"preview": "# Welcome to Receipt Wrangler\n\nThis repository contains the Receipt Wrangler API, Desktop app and Mobile app.\nPreviously"
},
{
"path": "desktop/.dockerignore",
"chars": 38,
"preview": "node_modules\n.git\n.gitignore\n.angular\n"
},
{
"path": "desktop/.editorconfig",
"chars": 274,
"preview": "# Editor configuration, see https://editorconfig.org\nroot = true\n\n[*]\ncharset = utf-8\nindent_style = space\nindent_size ="
},
{
"path": "desktop/.gitignore",
"chars": 662,
"preview": "# See http://help.github.com/ignore-files/ for more about ignoring files.\n\n# Compiled output\n/dist\n/tmp\n/out-tsc\n/bazel-"
},
{
"path": "desktop/.vscode/extensions.json",
"chars": 130,
"preview": "{\n // For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846\n \"recommendations\": [\"angular.ng-tem"
},
{
"path": "desktop/.vscode/launch.json",
"chars": 474,
"preview": "{\n // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387\n \"version\": \"0.2.0\",\n \"configuratio"
},
{
"path": "desktop/.vscode/tasks.json",
"chars": 938,
"preview": "{\n // For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558\n \"version\": \"2.0.0\",\n \"tasks\": [\n "
},
{
"path": "desktop/CLAUDE.md",
"chars": 17258,
"preview": "# CLAUDE.md\n\nThis file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.\n\n## "
},
{
"path": "desktop/Dockerfile",
"chars": 348,
"preview": "# Build app\nFROM node:lts-alpine3.17 as node\nWORKDIR .\nRUN mkdir desktop\nWORKDIR desktop\nCOPY . .\nRUN npm i -g @angular/"
},
{
"path": "desktop/LICENSE",
"chars": 34523,
"preview": " GNU AFFERO GENERAL PUBLIC LICENSE\n Version 3, 19 November 2007\n\n Copyright (C)"
},
{
"path": "desktop/README.md",
"chars": 1324,
"preview": "[](https://"
},
{
"path": "desktop/angular.json",
"chars": 3423,
"preview": "{\n \"$schema\": \"./node_modules/@angular/cli/lib/config/schema.json\",\n \"version\": 1,\n \"newProjectRoot\": \"projects\",\n \""
},
{
"path": "desktop/docker/nginx.conf",
"chars": 163,
"preview": "server {\n listen 80;\n\n root /usr/share/nginx/html;\n index index.html;\n\n server_name _;\n\n location / {\n "
},
{
"path": "desktop/docker-update.sh",
"chars": 196,
"preview": "#!/bin/bash\n\nif [ -z \"$1\" ]; then\n echo \"Please provide a tag\"\n exit 1\nfi\n\ndocker build . --no-cache -t noah231515/rec"
},
{
"path": "desktop/e2e/auth.setup.ts",
"chars": 955,
"preview": "import { test as setup } from '@playwright/test';\nimport { mkdirSync } from 'node:fs';\nimport { dirname } from 'node:pat"
},
{
"path": "desktop/e2e/auth.spec.ts",
"chars": 714,
"preview": "import { expect, test } from '@playwright/test';\nimport { loginViaUi } from './helpers/auth';\n\n// These tests exercise t"
},
{
"path": "desktop/e2e/helpers/auth.ts",
"chars": 2184,
"preview": "import { expect, type Page } from '@playwright/test';\nimport { Buffer } from 'node:buffer';\n\nexport type Role = 'admin' "
},
{
"path": "desktop/e2e/receipts.spec.ts",
"chars": 15822,
"preview": "import { expect, test, type Page } from '@playwright/test';\nimport { stubTokenRefresh } from './helpers/auth';\n\nfunction"
},
{
"path": "desktop/jest.config.js",
"chars": 1423,
"preview": "module.exports = {\n preset: 'jest-preset-angular',\n setupFilesAfterEnv: ['<rootDir>/setup-jest.ts'],\n testPathIgnoreP"
},
{
"path": "desktop/openapitools.json",
"chars": 154,
"preview": "{\n \"$schema\": \"./node_modules/@openapitools/openapi-generator-cli/config.schema.json\",\n \"spaces\": 2,\n \"generator-cli\""
},
{
"path": "desktop/package.json",
"chars": 2058,
"preview": "{\n \"name\": \"receipt-wrangler\",\n \"version\": \"1.3.0\",\n \"scripts\": {\n \"ng\": \"ng\",\n \"start\": \"ng serve --proxy-conf"
},
{
"path": "desktop/playwright.config.ts",
"chars": 1356,
"preview": "import { defineConfig, devices } from '@playwright/test';\n\nconst baseURL = process.env.E2E_BASE_URL ?? 'http://localhost"
},
{
"path": "desktop/proxy.conf.json",
"chars": 79,
"preview": "{\n \"/api\": {\n \"target\": \"http://localhost:8081\",\n \"secure\": false\n }\n}\n"
},
{
"path": "desktop/push-version.sh",
"chars": 140,
"preview": "#!/bin/bash\n\nif [ -z \"$1\" ]; then\n echo \"Please provide a version\"\n exit 0\nelse\n echo $1\n sh tag-version.sh $1\n sh "
},
{
"path": "desktop/setup-jest.ts",
"chars": 435,
"preview": "import { setupZonelessTestEnv } from 'jest-preset-angular/setup-env/zoneless';\n\nsetupZonelessTestEnv();\n\n// jsdom does n"
},
{
"path": "desktop/src/about/about/about.component.html",
"chars": 769,
"preview": "<app-dialog\n headerText=\"About\"\n>\n <div class=\"mb-3\">\n <app-form-section\n headerText=\"Project\"\n >\n <di"
},
{
"path": "desktop/src/about/about/about.component.scss",
"chars": 0,
"preview": ""
},
{
"path": "desktop/src/about/about/about.component.spec.ts",
"chars": 992,
"preview": "import { provideHttpClientTesting } from \"@angular/common/http/testing\";\nimport { ComponentFixture, TestBed } from \"@ang"
},
{
"path": "desktop/src/about/about/about.component.ts",
"chars": 965,
"preview": "import { CommonModule } from \"@angular/common\";\nimport { Component, inject } from \"@angular/core\";\nimport { Store } from"
},
{
"path": "desktop/src/alert/alert.component.html",
"chars": 478,
"preview": "<div\n class=\"d-flex flex-column alert-container p-3\"\n [ngClass]=\"{\n 'warning-background': type() === 'warning',\n }\"\n"
},
{
"path": "desktop/src/alert/alert.component.scss",
"chars": 137,
"preview": ".warning-background {\n background-color: #FFF9C4;\n}\n\n.warning-header {\n color: #FF8F00;\n}\n\n.alert-container {\n border"
},
{
"path": "desktop/src/alert/alert.component.spec.ts",
"chars": 589,
"preview": "import { ComponentFixture, TestBed } from '@angular/core/testing';\n\nimport { AlertComponent } from './alert.component';\n"
},
{
"path": "desktop/src/alert/alert.component.ts",
"chars": 501,
"preview": "import { CommonModule } from \"@angular/common\";\nimport { Component, input } from \"@angular/core\";\nimport { MatIconModule"
},
{
"path": "desktop/src/animations/fade.animation.ts",
"chars": 881,
"preview": "import { animate, state, style, transition, trigger, } from \"@angular/animations\";\n\nexport const fadeInOut = [\n trigger"
},
{
"path": "desktop/src/animations/index.ts",
"chars": 34,
"preview": "export * from './fade.animation';\n"
},
{
"path": "desktop/src/app/app-routing.module.ts",
"chars": 2625,
"preview": "import { NgModule } from \"@angular/core\";\nimport { RouterModule, Routes } from \"@angular/router\";\nimport { AuthGuard } f"
},
{
"path": "desktop/src/app/app.component.html",
"chars": 80,
"preview": "<div class=\"d-flex h-100 flex-column\">\n <router-outlet></router-outlet>\n</div>\n"
},
{
"path": "desktop/src/app/app.component.scss",
"chars": 59,
"preview": ":host {\n display: block;\n width: 100%;\n height: 100%;\n}\n"
},
{
"path": "desktop/src/app/app.component.spec.ts",
"chars": 1055,
"preview": "import { provideHttpClientTesting } from \"@angular/common/http/testing\";\nimport { provideZonelessChangeDetection } from "
},
{
"path": "desktop/src/app/app.component.ts",
"chars": 1194,
"preview": "import { Component, OnInit } from \"@angular/core\";\nimport { RouterOutlet } from \"@angular/router\";\nimport { UntilDestroy"
},
{
"path": "desktop/src/app/app.config.ts",
"chars": 4370,
"preview": "import { ApplicationConfig, provideAppInitializer, provideZonelessChangeDetection, inject } from \"@angular/core\";\nimport"
},
{
"path": "desktop/src/assets/.gitkeep",
"chars": 0,
"preview": ""
},
{
"path": "desktop/src/auth/auth-routing.module.ts",
"chars": 595,
"preview": "import { NgModule } from '@angular/core';\nimport { RouterModule, Routes } from '@angular/router';\nimport { FeatureGuard "
},
{
"path": "desktop/src/auth/auth.module.ts",
"chars": 881,
"preview": "import { CommonModule, NgOptimizedImage } from \"@angular/common\";\nimport { NgModule } from \"@angular/core\";\nimport { Rea"
},
{
"path": "desktop/src/auth/index.ts",
"chars": 159,
"preview": "export * from './sign-up/auth-form.component';\nexport * from './auth-routing.module';\nexport * from './auth.module';\nexp"
},
{
"path": "desktop/src/auth/sign-up/auth-form.component.html",
"chars": 2300,
"preview": "@if (isLoading) {\n <div class=\"loading-container\" @fadeInOut>\n <img src=\"assets/branding/loading.gif\" class=\"loading"
},
{
"path": "desktop/src/auth/sign-up/auth-form.component.scss",
"chars": 6464,
"preview": "@use \"../../variables.scss\" as variables;\n\napp-auth-form {\n min-height: 100vh;\n background: linear-gradient(135deg, #f"
},
{
"path": "desktop/src/auth/sign-up/auth-form.component.spec.ts",
"chars": 2245,
"preview": "import { provideHttpClientTesting } from '@angular/common/http/testing';\nimport { ComponentFixture, TestBed } from '@ang"
},
{
"path": "desktop/src/auth/sign-up/auth-form.component.ts",
"chars": 4119,
"preview": "import { Component, OnInit, ViewEncapsulation } from \"@angular/core\";\nimport { FormBuilder, FormControl, FormGroup, Vali"
},
{
"path": "desktop/src/auth/sign-up/auth-form.util.ts",
"chars": 1322,
"preview": "import { Injectable } from \"@angular/core\";\nimport { FormGroup } from \"@angular/forms\";\nimport { Store } from \"@ngxs/sto"
},
{
"path": "desktop/src/autocomplete/autocomlete/autocomlete.component.html",
"chars": 2789,
"preview": "<mat-form-field class=\"w-100\" appearance=\"fill\" [hintLabel]=\"hint ?? ''\">\n <mat-label>{{ label }}</mat-label>\n <ng-con"
},
{
"path": "desktop/src/autocomplete/autocomlete/autocomlete.component.scss",
"chars": 0,
"preview": ""
},
{
"path": "desktop/src/autocomplete/autocomlete/autocomlete.component.spec.ts",
"chars": 6744,
"preview": "import { CUSTOM_ELEMENTS_SCHEMA } from \"@angular/core\";\nimport { ComponentFixture, TestBed } from \"@angular/core/testing"
},
{
"path": "desktop/src/autocomplete/autocomlete/autocomlete.component.ts",
"chars": 5594,
"preview": "import { Component, effect, ElementRef, Input, OnInit, signal, TemplateRef, input, viewChild } from \"@angular/core\";\nimp"
},
{
"path": "desktop/src/autocomplete/autocomlete/option-display.pipe.spec.ts",
"chars": 1164,
"preview": "import { TestBed } from '@angular/core/testing';\nimport { OptionDisplayPipe } from './option-display.pipe';\n\ndescribe('O"
},
{
"path": "desktop/src/autocomplete/autocomlete/option-display.pipe.ts",
"chars": 660,
"preview": "import { Pipe, PipeTransform } from \"@angular/core\";\n\n@Pipe({\n name: \"optionDisplay\",\n standalone: false\n})\nexport"
},
{
"path": "desktop/src/autocomplete/autocomplete.module.ts",
"chars": 887,
"preview": "import { CommonModule } from \"@angular/common\";\nimport { NgModule } from \"@angular/core\";\nimport { ReactiveFormsModule }"
},
{
"path": "desktop/src/avatar/avatar/avatar.component.html",
"chars": 315,
"preview": "<div\n [matTooltip]=\"user()?.displayName ?? group()?.name ?? ''\"\n [style.background-color]=\"user()?.defaultAvatarColor "
},
{
"path": "desktop/src/avatar/avatar/avatar.component.scss",
"chars": 160,
"preview": "@use \"../../variables\" as variables;\n\n.avatar {\n width: 50px;\n height: 50px;\n color: white;\n border-radius: 50px;\n "
},
{
"path": "desktop/src/avatar/avatar/avatar.component.spec.ts",
"chars": 690,
"preview": "import { ComponentFixture, TestBed } from '@angular/core/testing';\n\nimport { AvatarComponent } from './avatar.component'"
},
{
"path": "desktop/src/avatar/avatar/avatar.component.ts",
"chars": 366,
"preview": "import { Component, input } from \"@angular/core\";\nimport { Group, User } from \"../../open-api\";\n\n@Component({\n select"
},
{
"path": "desktop/src/avatar/avatar.module.ts",
"chars": 368,
"preview": "import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { AvatarComponent } fro"
},
{
"path": "desktop/src/avatar/index.ts",
"chars": 33,
"preview": "export * from './avatar.module';\n"
},
{
"path": "desktop/src/base-input/base-input/base-input.component.html",
"chars": 25,
"preview": "<p>base-input works!</p>\n"
},
{
"path": "desktop/src/base-input/base-input/base-input.component.scss",
"chars": 0,
"preview": ""
},
{
"path": "desktop/src/base-input/base-input/base-input.component.spec.ts",
"chars": 621,
"preview": "import { ComponentFixture, TestBed } from '@angular/core/testing';\n\nimport { BaseInputComponent } from './base-input.com"
},
{
"path": "desktop/src/base-input/base-input/base-input.component.ts",
"chars": 2251,
"preview": "import { Component, Input, OnInit, input, output } from \"@angular/core\";\nimport { FormControl } from \"@angular/forms\";\ni"
},
{
"path": "desktop/src/base-input/base-input/input-error-message.ts",
"chars": 75,
"preview": "export interface InputErrorMessage {\n error: string;\n message: string;\n}\n"
},
{
"path": "desktop/src/base-input/base-input.interface.ts",
"chars": 258,
"preview": "import { FormControl } from '@angular/forms';\n\nexport interface BaseInputInterface {\n inputFormControl: FormControl;\n "
},
{
"path": "desktop/src/base-input/base-input.module.ts",
"chars": 308,
"preview": "import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BaseInputComponent } "
},
{
"path": "desktop/src/base-input/index.ts",
"chars": 128,
"preview": "export * from './base-input/base-input.component';\nexport * from './base-input.interface';\nexport * from './base-input.m"
},
{
"path": "desktop/src/button/base-button/base-button.component.html",
"chars": 26,
"preview": "<p>base-button works!</p>\n"
},
{
"path": "desktop/src/button/base-button/base-button.component.scss",
"chars": 0,
"preview": ""
},
{
"path": "desktop/src/button/base-button/base-button.component.spec.ts",
"chars": 626,
"preview": "import { ComponentFixture, TestBed } from '@angular/core/testing';\n\nimport { BaseButtonComponent } from './base-button.c"
},
{
"path": "desktop/src/button/base-button/base-button.component.ts",
"chars": 1123,
"preview": "import { Component, Input, input, output } from \"@angular/core\";\nimport { ThemePalette } from \"@angular/material/core\";\n"
},
{
"path": "desktop/src/button/button/button.component.html",
"chars": 1813,
"preview": "<ng-container [ngSwitch]=\"matButtonType()\">\n <button\n mat-button\n *ngSwitchCase=\"'basic'\"\n [class]=\"buttonClas"
},
{
"path": "desktop/src/button/button/button.component.scss",
"chars": 925,
"preview": "@use \"../../variables.scss\" as variables;\n\napp-button {\n width: fit-content;\n\n .mat-badge-content {\n color: white;\n"
},
{
"path": "desktop/src/button/button/button.component.spec.ts",
"chars": 966,
"preview": "import { ComponentFixture, TestBed } from '@angular/core/testing';\n\nimport { ButtonComponent } from './button.component'"
},
{
"path": "desktop/src/button/button/button.component.ts",
"chars": 471,
"preview": "import { Component, ViewEncapsulation, } from \"@angular/core\";\nimport { BaseButtonComponent } from \"../base-button/base-"
},
{
"path": "desktop/src/button/button.module.ts",
"chars": 777,
"preview": "import { CommonModule } from \"@angular/common\";\nimport { NgModule } from \"@angular/core\";\nimport { MatBadgeModule } from"
},
{
"path": "desktop/src/button/index.ts",
"chars": 76,
"preview": "export * from './button/button.component';\nexport * from './button.module';\n"
},
{
"path": "desktop/src/carousel/carousel/carousel.component.html",
"chars": 1800,
"preview": "<carousel\n [interval]=\"0\"\n [isAnimated]=\"true\"\n [activeSlide]=\"currentlyShownImageIndex\"\n (activeSlideChange)=\"updat"
},
{
"path": "desktop/src/carousel/carousel/carousel.component.scss",
"chars": 194,
"preview": ".carousel-control-prev {\n top: 10% !important;\n}\n\n.remove-button {\n position: absolute !important;\n}\n\n.ngx-ic-cropper "
},
{
"path": "desktop/src/carousel/carousel/carousel.component.spec.ts",
"chars": 1123,
"preview": "import { CommonModule } from \"@angular/common\";\nimport { ComponentFixture, TestBed } from \"@angular/core/testing\";\nimpor"
},
{
"path": "desktop/src/carousel/carousel/carousel.component.ts",
"chars": 1837,
"preview": "import { Component, OnChanges, SimpleChanges, ViewEncapsulation, input, output } from \"@angular/core\";\nimport { UntilDes"
},
{
"path": "desktop/src/carousel/carousel.module.ts",
"chars": 868,
"preview": "import { DragDropModule } from \"@angular/cdk/drag-drop\";\nimport { CommonModule } from \"@angular/common\";\nimport { NgModu"
},
{
"path": "desktop/src/categories/categories-routing.module.ts",
"chars": 477,
"preview": "import { NgModule } from \"@angular/core\";\nimport { RouterModule, Routes } from \"@angular/router\";\n\nimport { CategoryTabl"
},
{
"path": "desktop/src/categories/categories.module.ts",
"chars": 1016,
"preview": "import { CommonModule } from \"@angular/common\";\nimport { NgModule } from \"@angular/core\";\nimport { ReactiveFormsModule }"
},
{
"path": "desktop/src/categories/category-form/category-form.component.html",
"chars": 496,
"preview": "<app-dialog [headerText]=\"headerText\">\n <form [formGroup]=\"form\">\n <div class=\"d-flex flex-column\">\n <app-input"
},
{
"path": "desktop/src/categories/category-form/category-form.component.scss",
"chars": 0,
"preview": ""
},
{
"path": "desktop/src/categories/category-form/category-form.component.spec.ts",
"chars": 3445,
"preview": "import { provideHttpClientTesting } from \"@angular/common/http/testing\";\nimport { CUSTOM_ELEMENTS_SCHEMA } from \"@angula"
},
{
"path": "desktop/src/categories/category-form/category-form.component.ts",
"chars": 2364,
"preview": "import { Component, Input, OnInit } from \"@angular/core\";\nimport { FormBuilder, FormGroup, Validators } from \"@angular/f"
},
{
"path": "desktop/src/categories/category-table/category-table.component.html",
"chars": 1128,
"preview": "<app-table-header [headerText]=\"headerText\">\n <app-add-button tooltip=\"Add category\" (clicked)=\"openAddDialog()\">\n </a"
},
{
"path": "desktop/src/categories/category-table/category-table.component.scss",
"chars": 0,
"preview": ""
},
{
"path": "desktop/src/categories/category-table/category-table.component.spec.ts",
"chars": 8055,
"preview": "import { provideHttpClientTesting } from \"@angular/common/http/testing\";\nimport { CUSTOM_ELEMENTS_SCHEMA } from \"@angula"
},
{
"path": "desktop/src/categories/category-table/category-table.component.ts",
"chars": 6390,
"preview": "import { AfterViewInit, Component, OnInit, signal, TemplateRef, viewChild } from \"@angular/core\";\nimport { MatDialog } f"
},
{
"path": "desktop/src/category-autocomplete/category-autocomplete.component.html",
"chars": 446,
"preview": "<app-autocomlete\n class=\"w-100\"\n label=\"Categories\"\n optionFilterKey=\"name\"\n creatableValueKey=\"name\"\n [inputFormCo"
},
{
"path": "desktop/src/category-autocomplete/category-autocomplete.component.scss",
"chars": 1,
"preview": "\n"
},
{
"path": "desktop/src/category-autocomplete/category-autocomplete.component.spec.ts",
"chars": 913,
"preview": "import { ComponentFixture, TestBed } from \"@angular/core/testing\";\nimport { FormControl } from \"@angular/forms\";\nimport "
},
{
"path": "desktop/src/category-autocomplete/category-autocomplete.component.ts",
"chars": 722,
"preview": "import { Component, input } from \"@angular/core\";\nimport { FormControl } from \"@angular/forms\";\nimport { AutocompleteMod"
},
{
"path": "desktop/src/checkbox/checkbox/checkbox.component.html",
"chars": 278,
"preview": "<div class=\"d-flex align-items-center\">\n <mat-checkbox\n [ngClass]=\"{\n 'pe-none': readonly,\n }\"\n [formCont"
},
{
"path": "desktop/src/checkbox/checkbox/checkbox.component.scss",
"chars": 0,
"preview": ""
},
{
"path": "desktop/src/checkbox/checkbox/checkbox.component.spec.ts",
"chars": 671,
"preview": "import { ComponentFixture, TestBed } from '@angular/core/testing';\n\nimport { CheckboxComponent } from './checkbox.compon"
},
{
"path": "desktop/src/checkbox/checkbox/checkbox.component.ts",
"chars": 846,
"preview": "import { Component, Input } from \"@angular/core\";\nimport { FormControl } from \"@angular/forms\";\nimport { BaseInputInterf"
},
{
"path": "desktop/src/checkbox/checkbox.module.ts",
"chars": 719,
"preview": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { ReactiveFormsModule }"
},
{
"path": "desktop/src/color-picker/color-picker/color-picker.component.html",
"chars": 454,
"preview": "<mat-form-field class=\"w-100\">\n <mat-label>{{ label }}</mat-label>\n <div class=\"d-flex align-items-center\">\n <input"
},
{
"path": "desktop/src/color-picker/color-picker/color-picker.component.scss",
"chars": 0,
"preview": ""
},
{
"path": "desktop/src/color-picker/color-picker/color-picker.component.spec.ts",
"chars": 2000,
"preview": "import { ComponentFixture, TestBed } from '@angular/core/testing';\n\nimport { ColorPickerComponent } from './color-picker"
},
{
"path": "desktop/src/color-picker/color-picker/color-picker.component.ts",
"chars": 959,
"preview": "import { Component, Input } from \"@angular/core\";\nimport { FormControl } from \"@angular/forms\";\nimport { BaseInputInterf"
},
{
"path": "desktop/src/color-picker/color-picker.module.ts",
"chars": 837,
"preview": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { MatButtonModule } fro"
},
{
"path": "desktop/src/constants/components.constant.ts",
"chars": 65,
"preview": "export const DEFAULT_HOST_CLASS = {\n class: 'content-width',\n};\n"
},
{
"path": "desktop/src/constants/dialog.constant.ts",
"chars": 141,
"preview": "import { MatDialogConfig } from '@angular/material/dialog';\n\nexport const DEFAULT_DIALOG_CONFIG: MatDialogConfig<any> = "
},
{
"path": "desktop/src/constants/filter-operations-options.constant.ts",
"chars": 829,
"preview": "import { FilterOperation } from \"../open-api\";\n\nexport const listOperationOptions = Object.values(FilterOperation).filte"
},
{
"path": "desktop/src/constants/index.ts",
"chars": 254,
"preview": "export * from './components.constant';\nexport * from './dialog.constant';\nexport * from './filter-operations-options.con"
},
{
"path": "desktop/src/constants/keyboard-shortcuts.constant.ts",
"chars": 1521,
"preview": "import { KeyboardShortcut } from '../services/keyboard-shortcut.service';\n\n/**\n * Keyboard shortcuts for item management"
},
{
"path": "desktop/src/constants/receipt-status-options.ts",
"chars": 888,
"preview": "import { FormOption } from \"src/interfaces/form-option.interface\";\nimport { formatStatus } from \"src/utils\";\nimport { Gr"
},
{
"path": "desktop/src/constants/snackbar.constant.ts",
"chars": 265,
"preview": "import { MatSnackBarConfig } from '@angular/material/snack-bar';\n\nexport const DEFAULT_SNACKBAR_ACTION: string = 'Ok';\n\n"
},
{
"path": "desktop/src/custom-fields/custom-field-form/custom-field-form.component.html",
"chars": 2001,
"preview": "<app-dialog [headerText]=\"headerText\">\n <form [formGroup]=\"form\">\n <div class=\"d-flex flex-column\">\n <app-form-"
},
{
"path": "desktop/src/custom-fields/custom-field-form/custom-field-form.component.scss",
"chars": 0,
"preview": ""
},
{
"path": "desktop/src/custom-fields/custom-field-form/custom-field-form.component.spec.ts",
"chars": 7510,
"preview": "import { provideHttpClient, withInterceptorsFromDi } from \"@angular/common/http\";\nimport { provideHttpClientTesting } fr"
},
{
"path": "desktop/src/custom-fields/custom-field-form/custom-field-form.component.ts",
"chars": 3502,
"preview": "import { Component, Input, OnInit } from \"@angular/core\";\nimport { FormArray, FormBuilder, FormGroup, Validators } from "
},
{
"path": "desktop/src/custom-fields/custom-field-table/custom-field-table.component.html",
"chars": 1142,
"preview": "<app-table-header headerText=\"Custom Fields\">\n <app-add-button (clicked)=\"openCustomFieldDialog()\" tooltip=\"Add custom "
},
{
"path": "desktop/src/custom-fields/custom-field-table/custom-field-table.component.scss",
"chars": 0,
"preview": ""
},
{
"path": "desktop/src/custom-fields/custom-field-table/custom-field-table.component.spec.ts",
"chars": 1495,
"preview": "import { AsyncPipe } from \"@angular/common\";\nimport { provideHttpClient } from \"@angular/common/http\";\nimport { provideH"
},
{
"path": "desktop/src/custom-fields/custom-field-table/custom-field-table.component.ts",
"chars": 6255,
"preview": "import { AfterViewInit, Component, OnInit, signal, TemplateRef, viewChild } from \"@angular/core\";\nimport { MatDialog } f"
},
{
"path": "desktop/src/custom-fields/custom-fields-routing.module.ts",
"chars": 514,
"preview": "import { NgModule } from \"@angular/core\";\nimport { RouterModule, Routes } from \"@angular/router\";\nimport { CustomFieldTa"
},
{
"path": "desktop/src/custom-fields/custom-fields.module.ts",
"chars": 1143,
"preview": "import { CommonModule } from \"@angular/common\";\nimport { NgModule } from \"@angular/core\";\nimport { ReactiveFormsModule }"
},
{
"path": "desktop/src/dashboard/activity/activity.component.html",
"chars": 1660,
"preview": "<app-card cardStyle=\"dashboard-card\">\n <ng-container header>\n <h3> {{ widget().name }}</h3>\n </ng-container>\n <div"
},
{
"path": "desktop/src/dashboard/activity/activity.component.scss",
"chars": 297,
"preview": "@use \"../../variables.scss\" as variables;\n@use \"sass:map\";\n\napp-activity {\n .succeeded {\n color: map.get(variables.$"
},
{
"path": "desktop/src/dashboard/activity/activity.component.spec.ts",
"chars": 1337,
"preview": "import { ScrollingModule } from \"@angular/cdk/scrolling\";\nimport { provideHttpClientTesting } from \"@angular/common/http"
},
{
"path": "desktop/src/dashboard/activity/activity.component.ts",
"chars": 2762,
"preview": "import { Component, OnInit, ViewEncapsulation, computed, input, signal } from \"@angular/core\";\nimport { Store } from \"@n"
},
{
"path": "desktop/src/dashboard/constants/chart-grouping-options.ts",
"chars": 393,
"preview": "import { FormOption } from \"../../interfaces/form-option.interface\";\nimport { ChartGrouping } from \"../../open-api/index"
},
{
"path": "desktop/src/dashboard/constants/widget-options.ts",
"chars": 488,
"preview": "import { FormOption } from \"../../interfaces/form-option.interface\";\nimport { WidgetType } from \"../../open-api/index\";\n"
},
{
"path": "desktop/src/dashboard/dashboard/dashboard.component.html",
"chars": 1224,
"preview": "<div class=\"container-fluid\">\n <div class=\"row g-3\">\n <div class=\"d-block widget col-12 col-md-6 col-lg-4 col-xxl-3\""
},
{
"path": "desktop/src/dashboard/dashboard/dashboard.component.scss",
"chars": 224,
"preview": ".widget {\n min-width: 50%;\n display: flex;\n flex-direction: column;\n}\n\n.widget app-card {\n height: 100%;\n display: "
},
{
"path": "desktop/src/dashboard/dashboard/dashboard.component.spec.ts",
"chars": 3084,
"preview": "import { CommonModule } from \"@angular/common\";\nimport { provideHttpClientTesting } from \"@angular/common/http/testing\";"
},
{
"path": "desktop/src/dashboard/dashboard/dashboard.component.ts",
"chars": 2081,
"preview": "import { Component, OnInit, signal } from \"@angular/core\";\nimport { ActivatedRoute } from \"@angular/router\";\nimport { Un"
},
{
"path": "desktop/src/dashboard/dashboard-form/dashboard-form.component.html",
"chars": 3937,
"preview": "<app-dialog [headerText]=\"headerText\">\n <form [formGroup]=\"form\" (ngSubmit)=\"submit()\">\n <div class=\"d-flex flex-col"
},
{
"path": "desktop/src/dashboard/dashboard-form/dashboard-form.component.scss",
"chars": 78,
"preview": "app-dashboard-form {\n .form-section-header {\n margin: 0 !important;\n }\n}\n"
},
{
"path": "desktop/src/dashboard/dashboard-form/dashboard-form.component.spec.ts",
"chars": 2992,
"preview": "import { provideHttpClientTesting } from \"@angular/common/http/testing\";\nimport { CUSTOM_ELEMENTS_SCHEMA } from \"@angula"
},
{
"path": "desktop/src/dashboard/dashboard-form/dashboard-form.component.ts",
"chars": 8482,
"preview": "import { Component, OnInit, ViewEncapsulation, viewChildren, viewChild } from \"@angular/core\";\nimport { FormArray, FormB"
},
{
"path": "desktop/src/dashboard/dashboard-list/dashboard-list.component.html",
"chars": 1953,
"preview": "<cdk-virtual-scroll-viewport\n [itemSize]=\"67\"\n role=\"list\"\n class=\"default-size scroll-container\"\n>\n <mat-list>\n "
},
{
"path": "desktop/src/dashboard/dashboard-list/dashboard-list.component.scss",
"chars": 224,
"preview": "app-dashboard-list {\n .default-size {\n overflow-y: scroll;\n max-height: 25vh !important;\n }\n\n .scroll-container"
},
{
"path": "desktop/src/dashboard/dashboard-list/dashboard-list.component.spec.ts",
"chars": 2799,
"preview": "import { ScrollingModule } from \"@angular/cdk/scrolling\";\nimport { ComponentFixture, TestBed } from \"@angular/core/testi"
},
{
"path": "desktop/src/dashboard/dashboard-list/dashboard-list.component.ts",
"chars": 1655,
"preview": "import { CdkVirtualScrollViewport } from \"@angular/cdk/scrolling\";\nimport { AfterViewInit, Component, Input, TemplateRef"
},
{
"path": "desktop/src/dashboard/dashboard-routing.module.ts",
"chars": 1058,
"preview": "import { NgModule } from \"@angular/core\";\nimport { RouterModule, Routes } from \"@angular/router\";\nimport { GroupGuard } "
},
{
"path": "desktop/src/dashboard/dashboard.module.ts",
"chars": 2411,
"preview": "import { ScrollingModule } from \"@angular/cdk/scrolling\";\nimport { CommonModule } from \"@angular/common\";\nimport { NgMod"
},
{
"path": "desktop/src/dashboard/filtered-receipts/filtered-receipts.component.html",
"chars": 1916,
"preview": "<app-card cardStyle=\"dashboard-card\">\n <ng-container header>\n <div class=\"d-flex justify-content-between align-items"
},
{
"path": "desktop/src/dashboard/filtered-receipts/filtered-receipts.component.scss",
"chars": 877,
"preview": "app-filtered-receipts {\n .amount-info {\n font-weight: 600;\n margin-right: 8px;\n }\n\n .paid-by-info {\n color: "
},
{
"path": "desktop/src/dashboard/filtered-receipts/filtered-receipts.component.spec.ts",
"chars": 3562,
"preview": "import { ScrollingModule } from \"@angular/cdk/scrolling\";\nimport { provideHttpClientTesting } from \"@angular/common/http"
},
{
"path": "desktop/src/dashboard/filtered-receipts/filtered-receipts.component.ts",
"chars": 1935,
"preview": "import { Component, OnInit, input, signal } from \"@angular/core\";\nimport { UntilDestroy } from \"@ngneat/until-destroy\";\n"
},
{
"path": "desktop/src/dashboard/group-dashboards/group-dashboards.component.html",
"chars": 1076,
"preview": "<div class=\"d-flex align-items-center\">\n <h1>{{ (selectedGroupId() ?? \"\" | group)?.name }} Dashboards</h1>\n <app-add-b"
},
{
"path": "desktop/src/dashboard/group-dashboards/group-dashboards.component.scss",
"chars": 0,
"preview": ""
},
{
"path": "desktop/src/dashboard/group-dashboards/group-dashboards.component.spec.ts",
"chars": 4507,
"preview": "import { provideHttpClient, withInterceptorsFromDi } from \"@angular/common/http\";\nimport { provideHttpClientTesting } fr"
},
{
"path": "desktop/src/dashboard/group-dashboards/group-dashboards.component.ts",
"chars": 6208,
"preview": "import { Component, OnInit, signal } from \"@angular/core\";\nimport { MatDialog } from \"@angular/material/dialog\";\nimport "
},
{
"path": "desktop/src/dashboard/guards/dashboard.guard.spec.ts",
"chars": 481,
"preview": "import { TestBed } from '@angular/core/testing';\nimport { CanActivateFn } from '@angular/router';\n\nimport { dashboardGua"
},
{
"path": "desktop/src/dashboard/guards/dashboard.guard.ts",
"chars": 997,
"preview": "import { inject } from \"@angular/core\";\nimport { CanActivateFn, Router } from \"@angular/router\";\nimport { Store } from \""
},
{
"path": "desktop/src/dashboard/pie-chart/pie-chart.component.html",
"chars": 619,
"preview": "<app-card cardStyle=\"dashboard-card\">\n <ng-container header>\n <div class=\"d-flex justify-content-between align-items"
},
{
"path": "desktop/src/dashboard/pie-chart/pie-chart.component.scss",
"chars": 64,
"preview": ".pie-chart-container {\n height: 300px;\n position: relative;\n}\n"
},
{
"path": "desktop/src/dashboard/pie-chart/pie-chart.component.spec.ts",
"chars": 18285,
"preview": "import { CurrencyPipe } from \"@angular/common\";\nimport { provideHttpClient, withInterceptorsFromDi } from \"@angular/comm"
},
{
"path": "desktop/src/dashboard/pie-chart/pie-chart.component.ts",
"chars": 5030,
"preview": "import { CommonModule, CurrencyPipe } from \"@angular/common\";\nimport { Component, OnInit, OnChanges, SimpleChanges, inpu"
},
{
"path": "desktop/src/dashboard/resolvers/dashboard.resolver.spec.ts",
"chars": 1404,
"preview": "import { provideHttpClientTesting } from \"@angular/common/http/testing\";\nimport { TestBed } from \"@angular/core/testing\""
},
{
"path": "desktop/src/dashboard/resolvers/dashboard.resolver.ts",
"chars": 572,
"preview": "import { inject } from \"@angular/core\";\nimport { ResolveFn } from \"@angular/router\";\nimport { Store } from \"@ngxs/store\""
},
{
"path": "desktop/src/dashboard/widget-type.pipe.spec.ts",
"chars": 204,
"preview": "import { WidgetTypePipe } from './widget-type.pipe';\n\ndescribe('WidgetTypePipe', () => {\n it('create an instance', () ="
},
{
"path": "desktop/src/dashboard/widget-type.pipe.ts",
"chars": 572,
"preview": "import { Pipe, PipeTransform } from \"@angular/core\";\nimport { WidgetType } from \"../open-api/index\";\n\n@Pipe({\n name: "
},
{
"path": "desktop/src/datepicker/datepicker/datepicker.component.html",
"chars": 474,
"preview": "<mat-form-field class=\"w-100\" appearance=\"fill\">\n <mat-label>{{ label }}</mat-label>\n <input\n matInput\n [readonl"
},
{
"path": "desktop/src/datepicker/datepicker/datepicker.component.scss",
"chars": 0,
"preview": ""
},
{
"path": "desktop/src/datepicker/datepicker/datepicker.component.spec.ts",
"chars": 1271,
"preview": "import { CommonModule } from '@angular/common';\nimport { ComponentFixture, TestBed } from '@angular/core/testing';\nimpor"
},
{
"path": "desktop/src/datepicker/datepicker/datepicker.component.ts",
"chars": 328,
"preview": "import { Component } from \"@angular/core\";\nimport { BaseInputComponent } from \"../../base-input\";\n\n@Component({\n sele"
},
{
"path": "desktop/src/datepicker/datepicker.module.ts",
"chars": 749,
"preview": "import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DatepickerComponent }"
},
{
"path": "desktop/src/directives/development.directive.spec.ts",
"chars": 1511,
"preview": "import { TestBed } from '@angular/core/testing';\nimport { DevelopmentDirective } from './development.directive';\nimport "
},
{
"path": "desktop/src/directives/development.directive.ts",
"chars": 710,
"preview": "import { Directive, TemplateRef, ViewContainerRef, } from \"@angular/core\";\nimport { EnvironmentService } from \"src/servi"
},
{
"path": "desktop/src/directives/directives.module.ts",
"chars": 477,
"preview": "import { CommonModule } from \"@angular/common\";\nimport { NgModule } from \"@angular/core\";\nimport { DevelopmentDirective "
},
{
"path": "desktop/src/directives/feature.directive.spec.ts",
"chars": 1240,
"preview": "import { TemplateRef, ViewContainerRef } from '@angular/core';\nimport { TestBed } from '@angular/core/testing';\nimport {"
},
{
"path": "desktop/src/directives/feature.directive.ts",
"chars": 892,
"preview": "import { Directive, Input, TemplateRef, ViewContainerRef } from '@angular/core';\nimport { Store } from '@ngxs/store';\nim"
},
{
"path": "desktop/src/directives/index.ts",
"chars": 108,
"preview": "export * from './feature.directive';\nexport * from './role.directive';\nexport * from './directives.module';\n"
},
{
"path": "desktop/src/directives/role.directive.spec.ts",
"chars": 222,
"preview": "import { RoleDirective } from './role.directive';\n\ndescribe('RoleDirective', () => {\n it('should create an instance', ("
},
{
"path": "desktop/src/directives/role.directive.ts",
"chars": 748,
"preview": "import { Directive, Input, TemplateRef, ViewContainerRef } from '@angular/core';\nimport { Store } from '@ngxs/store';\nim"
},
{
"path": "desktop/src/enums/form-mode.enum.ts",
"chars": 74,
"preview": "export enum FormMode {\n view = 'view',\n edit = 'edit',\n add = 'add',\n}\n"
},
{
"path": "desktop/src/environments/environment.development.ts",
"chars": 49,
"preview": "export const environment = {\n isProd: false,\n};\n"
},
{
"path": "desktop/src/environments/environment.ts",
"chars": 48,
"preview": "export const environment = {\n isProd: true,\n};\n"
},
{
"path": "desktop/src/form/base-form/base-form.component.html",
"chars": 24,
"preview": "<p>base-form works!</p>\n"
},
{
"path": "desktop/src/form/base-form/base-form.component.scss",
"chars": 0,
"preview": ""
},
{
"path": "desktop/src/form/base-form/base-form.component.spec.ts",
"chars": 574,
"preview": "import { ComponentFixture, TestBed } from '@angular/core/testing';\n\nimport { BaseFormComponent } from './base-form.compo"
},
{
"path": "desktop/src/form/base-form/base-form.component.ts",
"chars": 1117,
"preview": "import { Component, output } from \"@angular/core\";\nimport { FormGroup } from \"@angular/forms\";\nimport { ActivatedRoute }"
},
{
"path": "desktop/src/form/base-form/index.ts",
"chars": 39,
"preview": "export * from './base-form.component';\n"
},
{
"path": "desktop/src/form/form.module.ts",
"chars": 324,
"preview": "import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BaseFormComponent } f"
},
{
"path": "desktop/src/form/index.ts",
"chars": 90,
"preview": "export * from './interfaces';\nexport * from './base-form';\nexport * from './form.module';\n"
}
]
// ... and 1948 more files (download for full content)
About this extraction
This page contains the full source code of the Receipt-Wrangler/receipt-wrangler-api GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 2148 files (61.6 MB), approximately 3.2M tokens, and a symbol index with 20027 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.