@ketvietlab/ketsuite 0.1.2 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/README.md +15 -1
- package/dist/cli.d.ts +3 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +59 -0
- package/dist/cli.js.map +1 -0
- package/dist/deployment.d.ts +5 -0
- package/dist/deployment.d.ts.map +1 -0
- package/dist/deployment.js +155 -0
- package/dist/deployment.js.map +1 -0
- package/dist/development.d.ts +8 -0
- package/dist/development.d.ts.map +1 -0
- package/dist/development.js +40 -0
- package/dist/development.js.map +1 -0
- package/dist/index.d.ts +84 -6
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +72 -6
- package/dist/index.js.map +1 -1
- package/dist/modules/account/analytics.d.ts +32 -0
- package/dist/modules/account/analytics.d.ts.map +1 -0
- package/dist/modules/account/analytics.js +457 -0
- package/dist/modules/account/analytics.js.map +1 -0
- package/dist/modules/account/assets-costing.d.ts +4 -0
- package/dist/modules/account/assets-costing.d.ts.map +1 -0
- package/dist/modules/account/assets-costing.js +1134 -0
- package/dist/modules/account/assets-costing.js.map +1 -0
- package/dist/modules/account/audit.d.ts +3 -0
- package/dist/modules/account/audit.d.ts.map +1 -0
- package/dist/modules/account/audit.js +14 -0
- package/dist/modules/account/audit.js.map +1 -0
- package/dist/modules/account/books.d.ts +4 -0
- package/dist/modules/account/books.d.ts.map +1 -0
- package/dist/modules/account/books.js +150 -0
- package/dist/modules/account/books.js.map +1 -0
- package/dist/modules/account/cash-receivables.d.ts +3 -0
- package/dist/modules/account/cash-receivables.d.ts.map +1 -0
- package/dist/modules/account/cash-receivables.js +1087 -0
- package/dist/modules/account/cash-receivables.js.map +1 -0
- package/dist/modules/account/close.d.ts +4 -0
- package/dist/modules/account/close.d.ts.map +1 -0
- package/dist/modules/account/close.js +343 -0
- package/dist/modules/account/close.js.map +1 -0
- package/dist/modules/account/date.d.ts +21 -0
- package/dist/modules/account/date.d.ts.map +1 -0
- package/dist/modules/account/date.js +70 -0
- package/dist/modules/account/date.js.map +1 -0
- package/dist/modules/account/functions.d.ts +131 -3
- package/dist/modules/account/functions.d.ts.map +1 -1
- package/dist/modules/account/functions.js +2570 -389
- package/dist/modules/account/functions.js.map +1 -1
- package/dist/modules/account/index.d.ts +1 -2
- package/dist/modules/account/index.d.ts.map +1 -1
- package/dist/modules/account/index.js +403 -8
- package/dist/modules/account/index.js.map +1 -1
- package/dist/modules/account/models.d.ts.map +1 -1
- package/dist/modules/account/models.js +748 -0
- package/dist/modules/account/models.js.map +1 -1
- package/dist/modules/account/money.d.ts +60 -0
- package/dist/modules/account/money.d.ts.map +1 -0
- package/dist/modules/account/money.js +237 -0
- package/dist/modules/account/money.js.map +1 -0
- package/dist/modules/account/open-items.d.ts +3 -0
- package/dist/modules/account/open-items.d.ts.map +1 -0
- package/dist/modules/account/open-items.js +390 -0
- package/dist/modules/account/open-items.js.map +1 -0
- package/dist/modules/account/opening.d.ts +3 -0
- package/dist/modules/account/opening.d.ts.map +1 -0
- package/dist/modules/account/opening.js +323 -0
- package/dist/modules/account/opening.js.map +1 -0
- package/dist/modules/account/period.d.ts +21 -0
- package/dist/modules/account/period.d.ts.map +1 -0
- package/dist/modules/account/period.js +155 -0
- package/dist/modules/account/period.js.map +1 -0
- package/dist/modules/account/relations.d.ts.map +1 -1
- package/dist/modules/account/relations.js +46 -0
- package/dist/modules/account/relations.js.map +1 -1
- package/dist/modules/account/reports.d.ts +4 -0
- package/dist/modules/account/reports.d.ts.map +1 -0
- package/dist/modules/account/reports.js +125 -0
- package/dist/modules/account/reports.js.map +1 -0
- package/dist/modules/account/setup.d.ts +3 -1
- package/dist/modules/account/setup.d.ts.map +1 -1
- package/dist/modules/account/setup.js +45 -160
- package/dist/modules/account/setup.js.map +1 -1
- package/dist/modules/account_activity_backend/index.d.ts.map +1 -1
- package/dist/modules/account_activity_backend/index.js +0 -1
- package/dist/modules/account_activity_backend/index.js.map +1 -1
- package/dist/modules/account_backend/index.js +3339 -494
- package/dist/modules/account_backend/index.js.map +1 -1
- package/dist/modules/account_backend/overview.d.ts +92 -0
- package/dist/modules/account_backend/overview.d.ts.map +1 -0
- package/dist/modules/account_backend/overview.js +257 -0
- package/dist/modules/account_backend/overview.js.map +1 -0
- package/dist/modules/account_backend/relation-control.d.ts +48 -0
- package/dist/modules/account_backend/relation-control.d.ts.map +1 -0
- package/dist/modules/account_backend/relation-control.js +67 -0
- package/dist/modules/account_backend/relation-control.js.map +1 -0
- package/dist/modules/account_backend/screens/account-defaults.d.ts +28 -0
- package/dist/modules/account_backend/screens/account-defaults.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/account-defaults.js +60 -0
- package/dist/modules/account_backend/screens/account-defaults.js.map +1 -0
- package/dist/modules/account_backend/screens/account-form.d.ts +16 -0
- package/dist/modules/account_backend/screens/account-form.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/account-form.js +53 -0
- package/dist/modules/account_backend/screens/account-form.js.map +1 -0
- package/dist/modules/account_backend/screens/accounting-books.d.ts +15 -0
- package/dist/modules/account_backend/screens/accounting-books.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/accounting-books.js +86 -0
- package/dist/modules/account_backend/screens/accounting-books.js.map +1 -0
- package/dist/modules/account_backend/screens/accounts-list.d.ts +50 -0
- package/dist/modules/account_backend/screens/accounts-list.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/accounts-list.js +66 -0
- package/dist/modules/account_backend/screens/accounts-list.js.map +1 -0
- package/dist/modules/account_backend/screens/customer-invoice-form.d.ts +13 -0
- package/dist/modules/account_backend/screens/customer-invoice-form.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/customer-invoice-form.js +20 -0
- package/dist/modules/account_backend/screens/customer-invoice-form.js.map +1 -0
- package/dist/modules/account_backend/screens/customer-invoices-list.d.ts +62 -0
- package/dist/modules/account_backend/screens/customer-invoices-list.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/customer-invoices-list.js +82 -0
- package/dist/modules/account_backend/screens/customer-invoices-list.js.map +1 -0
- package/dist/modules/account_backend/screens/general-ledger.d.ts +24 -0
- package/dist/modules/account_backend/screens/general-ledger.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/general-ledger.js +73 -0
- package/dist/modules/account_backend/screens/general-ledger.js.map +1 -0
- package/dist/modules/account_backend/screens/index.d.ts +27 -0
- package/dist/modules/account_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/index.js +27 -0
- package/dist/modules/account_backend/screens/index.js.map +1 -0
- package/dist/modules/account_backend/screens/journal-entries-list.d.ts +48 -0
- package/dist/modules/account_backend/screens/journal-entries-list.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/journal-entries-list.js +58 -0
- package/dist/modules/account_backend/screens/journal-entries-list.js.map +1 -0
- package/dist/modules/account_backend/screens/journal-entry-create.d.ts +14 -0
- package/dist/modules/account_backend/screens/journal-entry-create.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/journal-entry-create.js +41 -0
- package/dist/modules/account_backend/screens/journal-entry-create.js.map +1 -0
- package/dist/modules/account_backend/screens/journal-form.d.ts +15 -0
- package/dist/modules/account_backend/screens/journal-form.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/journal-form.js +53 -0
- package/dist/modules/account_backend/screens/journal-form.js.map +1 -0
- package/dist/modules/account_backend/screens/journals-list.d.ts +51 -0
- package/dist/modules/account_backend/screens/journals-list.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/journals-list.js +70 -0
- package/dist/modules/account_backend/screens/journals-list.js.map +1 -0
- package/dist/modules/account_backend/screens/move-detail.d.ts +26 -0
- package/dist/modules/account_backend/screens/move-detail.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/move-detail.js +130 -0
- package/dist/modules/account_backend/screens/move-detail.js.map +1 -0
- package/dist/modules/account_backend/screens/opening-balances.d.ts +28 -0
- package/dist/modules/account_backend/screens/opening-balances.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/opening-balances.js +96 -0
- package/dist/modules/account_backend/screens/opening-balances.js.map +1 -0
- package/dist/modules/account_backend/screens/overview.d.ts +62 -0
- package/dist/modules/account_backend/screens/overview.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/overview.js +215 -0
- package/dist/modules/account_backend/screens/overview.js.map +1 -0
- package/dist/modules/account_backend/screens/partner-statement.d.ts +26 -0
- package/dist/modules/account_backend/screens/partner-statement.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/partner-statement.js +82 -0
- package/dist/modules/account_backend/screens/partner-statement.js.map +1 -0
- package/dist/modules/account_backend/screens/payment-form.d.ts +14 -0
- package/dist/modules/account_backend/screens/payment-form.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/payment-form.js +21 -0
- package/dist/modules/account_backend/screens/payment-form.js.map +1 -0
- package/dist/modules/account_backend/screens/payment-term-form.d.ts +25 -0
- package/dist/modules/account_backend/screens/payment-term-form.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/payment-term-form.js +96 -0
- package/dist/modules/account_backend/screens/payment-term-form.js.map +1 -0
- package/dist/modules/account_backend/screens/payment-terms-list.d.ts +23 -0
- package/dist/modules/account_backend/screens/payment-terms-list.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/payment-terms-list.js +104 -0
- package/dist/modules/account_backend/screens/payment-terms-list.js.map +1 -0
- package/dist/modules/account_backend/screens/payments-list.d.ts +62 -0
- package/dist/modules/account_backend/screens/payments-list.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/payments-list.js +71 -0
- package/dist/modules/account_backend/screens/payments-list.js.map +1 -0
- package/dist/modules/account_backend/screens/period-closes.d.ts +21 -0
- package/dist/modules/account_backend/screens/period-closes.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/period-closes.js +123 -0
- package/dist/modules/account_backend/screens/period-closes.js.map +1 -0
- package/dist/modules/account_backend/screens/shared.d.ts +16 -0
- package/dist/modules/account_backend/screens/shared.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/shared.js +15 -0
- package/dist/modules/account_backend/screens/shared.js.map +1 -0
- package/dist/modules/account_backend/screens/tax-form.d.ts +14 -0
- package/dist/modules/account_backend/screens/tax-form.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/tax-form.js +25 -0
- package/dist/modules/account_backend/screens/tax-form.js.map +1 -0
- package/dist/modules/account_backend/screens/taxes-list.d.ts +55 -0
- package/dist/modules/account_backend/screens/taxes-list.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/taxes-list.js +83 -0
- package/dist/modules/account_backend/screens/taxes-list.js.map +1 -0
- package/dist/modules/account_backend/screens/trial-balance.d.ts +19 -0
- package/dist/modules/account_backend/screens/trial-balance.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/trial-balance.js +75 -0
- package/dist/modules/account_backend/screens/trial-balance.js.map +1 -0
- package/dist/modules/account_backend/screens/vendor-bill-form.d.ts +13 -0
- package/dist/modules/account_backend/screens/vendor-bill-form.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/vendor-bill-form.js +20 -0
- package/dist/modules/account_backend/screens/vendor-bill-form.js.map +1 -0
- package/dist/modules/account_backend/screens/vendor-bills-list.d.ts +62 -0
- package/dist/modules/account_backend/screens/vendor-bills-list.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/vendor-bills-list.js +84 -0
- package/dist/modules/account_backend/screens/vendor-bills-list.js.map +1 -0
- package/dist/modules/account_mail_backend/index.d.ts.map +1 -1
- package/dist/modules/account_mail_backend/index.js +0 -1
- package/dist/modules/account_mail_backend/index.js.map +1 -1
- package/dist/modules/account_partner/index.js +0 -2
- package/dist/modules/account_partner/index.js.map +1 -1
- package/dist/modules/account_partner_backend/index.d.ts +1 -1
- package/dist/modules/account_partner_backend/index.d.ts.map +1 -1
- package/dist/modules/account_partner_backend/index.js +2 -3
- package/dist/modules/account_partner_backend/index.js.map +1 -1
- package/dist/modules/account_partner_backend/routes.d.ts.map +1 -1
- package/dist/modules/account_partner_backend/routes.js +19 -25
- package/dist/modules/account_partner_backend/routes.js.map +1 -1
- package/dist/modules/account_partner_backend/screens/accounting-terms.d.ts +20 -0
- package/dist/modules/account_partner_backend/screens/accounting-terms.d.ts.map +1 -0
- package/dist/modules/account_partner_backend/screens/accounting-terms.js +63 -0
- package/dist/modules/account_partner_backend/screens/accounting-terms.js.map +1 -0
- package/dist/modules/account_partner_backend/screens/index.d.ts +2 -0
- package/dist/modules/account_partner_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/account_partner_backend/screens/index.js +2 -0
- package/dist/modules/account_partner_backend/screens/index.js.map +1 -0
- package/dist/modules/account_staff_channel/channel-routes.d.ts +2 -0
- package/dist/modules/account_staff_channel/channel-routes.d.ts.map +1 -0
- package/dist/modules/account_staff_channel/channel-routes.js +776 -0
- package/dist/modules/account_staff_channel/channel-routes.js.map +1 -0
- package/dist/modules/account_staff_channel/functions.d.ts.map +1 -0
- package/dist/modules/account_staff_channel/functions.js +143 -0
- package/dist/modules/account_staff_channel/functions.js.map +1 -0
- package/dist/modules/account_staff_channel/index.d.ts +5 -0
- package/dist/modules/account_staff_channel/index.d.ts.map +1 -0
- package/dist/modules/account_staff_channel/index.js +42 -0
- package/dist/modules/account_staff_channel/index.js.map +1 -0
- package/dist/modules/account_staff_channel/models.d.ts.map +1 -0
- package/dist/modules/account_staff_channel/models.js +30 -0
- package/dist/modules/account_staff_channel/models.js.map +1 -0
- package/dist/modules/activity/index.d.ts.map +1 -1
- package/dist/modules/activity/index.js +0 -1
- package/dist/modules/activity/index.js.map +1 -1
- package/dist/modules/activity_backend/index.d.ts +1 -1
- package/dist/modules/activity_backend/index.d.ts.map +1 -1
- package/dist/modules/activity_backend/index.js +3 -12
- package/dist/modules/activity_backend/index.js.map +1 -1
- package/dist/modules/activity_backend/routes.d.ts.map +1 -1
- package/dist/modules/activity_backend/routes.js +36 -22
- package/dist/modules/activity_backend/routes.js.map +1 -1
- package/dist/modules/activity_backend/screens/activities-list.d.ts +15 -0
- package/dist/modules/activity_backend/screens/activities-list.d.ts.map +1 -0
- package/dist/modules/activity_backend/screens/activities-list.js +40 -0
- package/dist/modules/activity_backend/screens/activities-list.js.map +1 -0
- package/dist/modules/activity_backend/screens/index.d.ts +2 -0
- package/dist/modules/activity_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/activity_backend/screens/index.js +2 -0
- package/dist/modules/activity_backend/screens/index.js.map +1 -0
- package/dist/modules/address/data/VN/NOTICE.md +1 -1
- package/dist/modules/address/index.d.ts.map +1 -1
- package/dist/modules/address/index.js +0 -1
- package/dist/modules/address/index.js.map +1 -1
- package/dist/modules/address_backend/index.d.ts +1 -1
- package/dist/modules/address_backend/index.d.ts.map +1 -1
- package/dist/modules/address_backend/index.js +1 -3
- package/dist/modules/address_backend/index.js.map +1 -1
- package/dist/modules/address_backend/routes.d.ts.map +1 -1
- package/dist/modules/address_backend/routes.js +20 -27
- package/dist/modules/address_backend/routes.js.map +1 -1
- package/dist/modules/address_backend/screens/catalogs-list.d.ts +14 -0
- package/dist/modules/address_backend/screens/catalogs-list.d.ts.map +1 -0
- package/dist/modules/address_backend/screens/catalogs-list.js +38 -0
- package/dist/modules/address_backend/screens/catalogs-list.js.map +1 -0
- package/dist/modules/address_backend/screens/country-browser.d.ts +12 -0
- package/dist/modules/address_backend/screens/country-browser.d.ts.map +1 -0
- package/dist/modules/address_backend/screens/country-browser.js +74 -0
- package/dist/modules/address_backend/screens/country-browser.js.map +1 -0
- package/dist/modules/address_backend/screens/index.d.ts +4 -0
- package/dist/modules/address_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/address_backend/screens/index.js +3 -0
- package/dist/modules/address_backend/screens/index.js.map +1 -0
- package/dist/modules/address_backend/screens/types.d.ts +20 -0
- package/dist/modules/address_backend/screens/types.d.ts.map +1 -0
- package/dist/modules/address_backend/screens/types.js.map +1 -0
- package/dist/modules/attendance/channel-routes.d.ts +2 -0
- package/dist/modules/attendance/channel-routes.d.ts.map +1 -0
- package/dist/modules/attendance/channel-routes.js +223 -0
- package/dist/modules/attendance/channel-routes.js.map +1 -0
- package/dist/modules/attendance/functions.d.ts.map +1 -1
- package/dist/modules/attendance/functions.js +171 -22
- package/dist/modules/attendance/functions.js.map +1 -1
- package/dist/modules/attendance/index.d.ts.map +1 -1
- package/dist/modules/attendance/index.js +4 -2
- package/dist/modules/attendance/index.js.map +1 -1
- package/dist/modules/attendance/messages.d.ts +6 -0
- package/dist/modules/attendance/messages.d.ts.map +1 -1
- package/dist/modules/attendance/messages.js +6 -0
- package/dist/modules/attendance/messages.js.map +1 -1
- package/dist/modules/attendance/models.d.ts.map +1 -1
- package/dist/modules/attendance/models.js +1 -0
- package/dist/modules/attendance/models.js.map +1 -1
- package/dist/modules/attendance_backend/index.d.ts +3 -1
- package/dist/modules/attendance_backend/index.d.ts.map +1 -1
- package/dist/modules/attendance_backend/index.js +65 -4
- package/dist/modules/attendance_backend/index.js.map +1 -1
- package/dist/modules/attendance_backend/routes.d.ts.map +1 -1
- package/dist/modules/attendance_backend/routes.js +240 -53
- package/dist/modules/attendance_backend/routes.js.map +1 -1
- package/dist/modules/attendance_backend/screens/credentials.d.ts +32 -0
- package/dist/modules/attendance_backend/screens/credentials.d.ts.map +1 -0
- package/dist/modules/attendance_backend/screens/credentials.js +84 -0
- package/dist/modules/attendance_backend/screens/credentials.js.map +1 -0
- package/dist/modules/attendance_backend/screens/index.d.ts +4 -0
- package/dist/modules/attendance_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/attendance_backend/screens/index.js +4 -0
- package/dist/modules/attendance_backend/screens/index.js.map +1 -0
- package/dist/modules/attendance_backend/screens/my-work.d.ts +35 -0
- package/dist/modules/attendance_backend/screens/my-work.d.ts.map +1 -0
- package/dist/modules/attendance_backend/screens/my-work.js +189 -0
- package/dist/modules/attendance_backend/screens/my-work.js.map +1 -0
- package/dist/modules/attendance_backend/screens/period.d.ts +22 -0
- package/dist/modules/attendance_backend/screens/period.d.ts.map +1 -0
- package/dist/modules/attendance_backend/screens/period.js +85 -0
- package/dist/modules/attendance_backend/screens/period.js.map +1 -0
- package/dist/modules/attendance_backend/screens.d.ts +0 -4
- package/dist/modules/attendance_backend/screens.d.ts.map +1 -1
- package/dist/modules/attendance_backend/screens.js +1 -209
- package/dist/modules/attendance_backend/screens.js.map +1 -1
- package/dist/modules/backend/catalogue.d.ts.map +1 -1
- package/dist/modules/backend/catalogue.js +53 -115
- package/dist/modules/backend/catalogue.js.map +1 -1
- package/dist/modules/backend/chart.d.ts +42 -0
- package/dist/modules/backend/chart.d.ts.map +1 -0
- package/dist/modules/backend/chart.js +39 -0
- package/dist/modules/backend/chart.js.map +1 -0
- package/dist/modules/backend/design/HANDOFF.md +118 -38
- package/dist/modules/backend/design/auth.css +463 -0
- package/dist/modules/backend/design/brand/logo-dark.png +0 -0
- package/dist/modules/backend/design/brand/logo-light.png +0 -0
- package/dist/modules/backend/design/charts.css +229 -0
- package/dist/modules/backend/design/client/chart.d.mts +31 -0
- package/dist/modules/backend/design/client/chart.d.mts.map +1 -0
- package/dist/modules/backend/design/client/chart.mjs +23 -0
- package/dist/modules/backend/design/client/chart.mjs.map +7 -0
- package/dist/modules/backend/design/client/relation-select.d.mts +6 -1
- package/dist/modules/backend/design/client/relation-select.d.mts.map +1 -1
- package/dist/modules/backend/design/client/relation-select.mjs +2 -7
- package/dist/modules/backend/design/client/relation-select.mjs.map +7 -1
- package/dist/modules/backend/design/client/table-selection.d.mts +7 -0
- package/dist/modules/backend/design/client/table-selection.d.mts.map +1 -0
- package/dist/modules/backend/design/client/table-selection.mjs +2 -0
- package/dist/modules/backend/design/client/table-selection.mjs.map +7 -0
- package/dist/modules/backend/design/content.css +809 -0
- package/dist/modules/backend/design/controls.css +451 -0
- package/dist/modules/backend/design/design-system.css +2 -0
- package/dist/modules/backend/design/forms.css +1156 -0
- package/dist/modules/backend/design/foundation.css +423 -0
- package/dist/modules/backend/design/lists.css +1462 -0
- package/dist/modules/backend/design/record.css +526 -0
- package/dist/modules/backend/design/responsive.css +326 -0
- package/dist/modules/backend/design/tokens.css +317 -92
- package/dist/modules/backend/forms.d.ts +38 -1
- package/dist/modules/backend/forms.d.ts.map +1 -1
- package/dist/modules/backend/forms.js +29 -0
- package/dist/modules/backend/forms.js.map +1 -1
- package/dist/modules/backend/index.d.ts +14 -6
- package/dist/modules/backend/index.d.ts.map +1 -1
- package/dist/modules/backend/index.js +33 -16
- package/dist/modules/backend/index.js.map +1 -1
- package/dist/modules/backend/islands.d.ts.map +1 -1
- package/dist/modules/backend/islands.js +22 -4
- package/dist/modules/backend/islands.js.map +1 -1
- package/dist/modules/backend/joints.d.ts +1 -1
- package/dist/modules/backend/joints.d.ts.map +1 -1
- package/dist/modules/backend/joints.js +14 -6
- package/dist/modules/backend/joints.js.map +1 -1
- package/dist/modules/backend/list-search.d.ts +33 -0
- package/dist/modules/backend/list-search.d.ts.map +1 -0
- package/dist/modules/backend/list-search.js +232 -0
- package/dist/modules/backend/list-search.js.map +1 -0
- package/dist/modules/backend/menus.d.ts.map +1 -1
- package/dist/modules/backend/menus.js +3 -12
- package/dist/modules/backend/menus.js.map +1 -1
- package/dist/modules/backend/messages.d.ts +1 -1
- package/dist/modules/backend/messages.d.ts.map +1 -1
- package/dist/modules/backend/messages.js +86 -35
- package/dist/modules/backend/messages.js.map +1 -1
- package/dist/modules/backend/paging.d.ts +1 -1
- package/dist/modules/backend/paging.d.ts.map +1 -1
- package/dist/modules/backend/paging.js +1 -1
- package/dist/modules/backend/paging.js.map +1 -1
- package/dist/modules/backend/relation-select.d.ts +2 -57
- package/dist/modules/backend/relation-select.d.ts.map +1 -1
- package/dist/modules/backend/relation-select.js +2 -0
- package/dist/modules/backend/relation-select.js.map +1 -1
- package/dist/modules/backend/routes.d.ts +1 -8
- package/dist/modules/backend/routes.d.ts.map +1 -1
- package/dist/modules/backend/routes.js +36 -111
- package/dist/modules/backend/routes.js.map +1 -1
- package/dist/modules/backend/screen.d.ts +130 -0
- package/dist/modules/backend/screen.d.ts.map +1 -0
- package/dist/modules/backend/screen.js +205 -0
- package/dist/modules/backend/screen.js.map +1 -0
- package/dist/modules/backend/screens.d.ts +11 -14
- package/dist/modules/backend/screens.d.ts.map +1 -1
- package/dist/modules/backend/screens.js +13 -70
- package/dist/modules/backend/screens.js.map +1 -1
- package/dist/modules/business_report_staff_channel/channel-routes.d.ts +2 -0
- package/dist/modules/business_report_staff_channel/channel-routes.d.ts.map +1 -0
- package/dist/modules/business_report_staff_channel/channel-routes.js +438 -0
- package/dist/modules/business_report_staff_channel/channel-routes.js.map +1 -0
- package/dist/modules/business_report_staff_channel/index.d.ts +5 -0
- package/dist/modules/business_report_staff_channel/index.d.ts.map +1 -0
- package/dist/modules/business_report_staff_channel/index.js +18 -0
- package/dist/modules/business_report_staff_channel/index.js.map +1 -0
- package/dist/modules/calendar/index.d.ts.map +1 -1
- package/dist/modules/calendar/index.js +0 -1
- package/dist/modules/calendar/index.js.map +1 -1
- package/dist/modules/calendar/recurrence.d.ts.map +1 -1
- package/dist/modules/calendar/recurrence.js +3 -11
- package/dist/modules/calendar/recurrence.js.map +1 -1
- package/dist/modules/calendar_activity/index.d.ts.map +1 -1
- package/dist/modules/calendar_activity/index.js +0 -2
- package/dist/modules/calendar_activity/index.js.map +1 -1
- package/dist/modules/calendar_backend/index.d.ts +1 -1
- package/dist/modules/calendar_backend/index.d.ts.map +1 -1
- package/dist/modules/calendar_backend/index.js +1 -3
- package/dist/modules/calendar_backend/index.js.map +1 -1
- package/dist/modules/calendar_backend/routes.d.ts.map +1 -1
- package/dist/modules/calendar_backend/routes.js +10 -22
- package/dist/modules/calendar_backend/routes.js.map +1 -1
- package/dist/modules/calendar_backend/screens/calendar.d.ts +5 -0
- package/dist/modules/calendar_backend/screens/calendar.d.ts.map +1 -0
- package/dist/modules/calendar_backend/screens/calendar.js +10 -0
- package/dist/modules/calendar_backend/screens/calendar.js.map +1 -0
- package/dist/modules/calendar_backend/screens/index.d.ts +2 -0
- package/dist/modules/calendar_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/calendar_backend/screens/index.js +2 -0
- package/dist/modules/calendar_backend/screens/index.js.map +1 -0
- package/dist/modules/calendar_mail_transport/index.d.ts.map +1 -1
- package/dist/modules/calendar_mail_transport/index.js +0 -2
- package/dist/modules/calendar_mail_transport/index.js.map +1 -1
- package/dist/modules/channel_api/core.d.ts +283 -0
- package/dist/modules/channel_api/core.d.ts.map +1 -0
- package/dist/modules/channel_api/core.js +615 -0
- package/dist/modules/channel_api/core.js.map +1 -0
- package/dist/modules/channel_api/customer.d.ts +21 -0
- package/dist/modules/channel_api/customer.d.ts.map +1 -0
- package/dist/modules/channel_api/customer.js +368 -0
- package/dist/modules/channel_api/customer.js.map +1 -0
- package/dist/modules/channel_api/index.d.ts +6 -0
- package/dist/modules/channel_api/index.d.ts.map +1 -0
- package/dist/modules/channel_api/index.js +66 -0
- package/dist/modules/channel_api/index.js.map +1 -0
- package/dist/modules/channel_api/openapi.d.ts +17 -0
- package/dist/modules/channel_api/openapi.d.ts.map +1 -0
- package/dist/modules/channel_api/openapi.js +105 -0
- package/dist/modules/channel_api/openapi.js.map +1 -0
- package/dist/modules/channel_api/staff.d.ts +7 -0
- package/dist/modules/channel_api/staff.d.ts.map +1 -0
- package/dist/modules/channel_api/staff.js +209 -0
- package/dist/modules/channel_api/staff.js.map +1 -0
- package/dist/modules/company/functions.d.ts.map +1 -1
- package/dist/modules/company/functions.js +93 -12
- package/dist/modules/company/functions.js.map +1 -1
- package/dist/modules/company/index.js +3 -3
- package/dist/modules/company/index.js.map +1 -1
- package/dist/modules/company/messages.d.ts +8 -0
- package/dist/modules/company/messages.d.ts.map +1 -1
- package/dist/modules/company/messages.js +8 -0
- package/dist/modules/company/messages.js.map +1 -1
- package/dist/modules/company/models.d.ts +2 -2
- package/dist/modules/company/models.d.ts.map +1 -1
- package/dist/modules/company/models.js +12 -2
- package/dist/modules/company/models.js.map +1 -1
- package/dist/modules/company_backend/index.d.ts +2 -1
- package/dist/modules/company_backend/index.d.ts.map +1 -1
- package/dist/modules/company_backend/index.js +25 -4
- package/dist/modules/company_backend/index.js.map +1 -1
- package/dist/modules/company_backend/routes.d.ts.map +1 -1
- package/dist/modules/company_backend/routes.js +314 -96
- package/dist/modules/company_backend/routes.js.map +1 -1
- package/dist/modules/company_backend/screens/branch-form.d.ts +18 -0
- package/dist/modules/company_backend/screens/branch-form.d.ts.map +1 -0
- package/dist/modules/company_backend/screens/branch-form.js +63 -0
- package/dist/modules/company_backend/screens/branch-form.js.map +1 -0
- package/dist/modules/company_backend/screens/companies-list.d.ts +18 -0
- package/dist/modules/company_backend/screens/companies-list.d.ts.map +1 -0
- package/dist/modules/company_backend/screens/companies-list.js +49 -0
- package/dist/modules/company_backend/screens/companies-list.js.map +1 -0
- package/dist/modules/company_backend/screens/company-form.d.ts +25 -0
- package/dist/modules/company_backend/screens/company-form.d.ts.map +1 -0
- package/dist/modules/company_backend/screens/company-form.js +159 -0
- package/dist/modules/company_backend/screens/company-form.js.map +1 -0
- package/dist/modules/company_backend/screens/context.d.ts +30 -0
- package/dist/modules/company_backend/screens/context.d.ts.map +1 -0
- package/dist/modules/company_backend/screens/context.js +48 -0
- package/dist/modules/company_backend/screens/context.js.map +1 -0
- package/dist/modules/company_backend/screens/hierarchy.d.ts +16 -0
- package/dist/modules/company_backend/screens/hierarchy.d.ts.map +1 -0
- package/dist/modules/company_backend/screens/hierarchy.js +41 -0
- package/dist/modules/company_backend/screens/hierarchy.js.map +1 -0
- package/dist/modules/company_backend/screens/index.d.ts +7 -0
- package/dist/modules/company_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/company_backend/screens/index.js +6 -0
- package/dist/modules/company_backend/screens/index.js.map +1 -0
- package/dist/modules/company_backend/screens/types.d.ts +22 -0
- package/dist/modules/company_backend/screens/types.d.ts.map +1 -0
- package/dist/modules/company_backend/screens/types.js +2 -0
- package/dist/modules/company_backend/screens/types.js.map +1 -0
- package/dist/modules/crm/functions.d.ts +1 -1
- package/dist/modules/crm/functions.d.ts.map +1 -1
- package/dist/modules/crm/functions.js +534 -75
- package/dist/modules/crm/functions.js.map +1 -1
- package/dist/modules/crm/index.d.ts +2 -1
- package/dist/modules/crm/index.d.ts.map +1 -1
- package/dist/modules/crm/index.js +3 -4
- package/dist/modules/crm/index.js.map +1 -1
- package/dist/modules/crm/jobs.d.ts +10 -0
- package/dist/modules/crm/jobs.d.ts.map +1 -1
- package/dist/modules/crm/jobs.js +50 -1
- package/dist/modules/crm/jobs.js.map +1 -1
- package/dist/modules/crm/messages.d.ts +14 -1
- package/dist/modules/crm/messages.d.ts.map +1 -1
- package/dist/modules/crm/messages.js +26 -0
- package/dist/modules/crm/messages.js.map +1 -1
- package/dist/modules/crm/models.d.ts.map +1 -1
- package/dist/modules/crm/models.js +25 -0
- package/dist/modules/crm/models.js.map +1 -1
- package/dist/modules/crm/operations.d.ts +110 -1
- package/dist/modules/crm/operations.d.ts.map +1 -1
- package/dist/modules/crm/operations.js +612 -84
- package/dist/modules/crm/operations.js.map +1 -1
- package/dist/modules/crm_backend/client/crm-kanban-view.d.mts.map +1 -1
- package/dist/modules/crm_backend/client/crm-kanban-view.mjs +132 -32
- package/dist/modules/crm_backend/client/crm-kanban-view.mjs.map +1 -1
- package/dist/modules/crm_backend/client/crm.css +398 -63
- package/dist/modules/crm_backend/index.d.ts.map +1 -1
- package/dist/modules/crm_backend/index.js +12 -4
- package/dist/modules/crm_backend/index.js.map +1 -1
- package/dist/modules/crm_backend/messages.d.ts +212 -0
- package/dist/modules/crm_backend/messages.d.ts.map +1 -1
- package/dist/modules/crm_backend/messages.js +212 -0
- package/dist/modules/crm_backend/messages.js.map +1 -1
- package/dist/modules/crm_backend/relation-control.d.ts +51 -0
- package/dist/modules/crm_backend/relation-control.d.ts.map +1 -0
- package/dist/modules/crm_backend/relation-control.js +107 -0
- package/dist/modules/crm_backend/relation-control.js.map +1 -0
- package/dist/modules/crm_backend/routes.d.ts.map +1 -1
- package/dist/modules/crm_backend/routes.js +1068 -260
- package/dist/modules/crm_backend/routes.js.map +1 -1
- package/dist/modules/crm_backend/screens/activity-planner.d.ts +22 -0
- package/dist/modules/crm_backend/screens/activity-planner.d.ts.map +1 -0
- package/dist/modules/crm_backend/screens/activity-planner.js +159 -0
- package/dist/modules/crm_backend/screens/activity-planner.js.map +1 -0
- package/dist/modules/crm_backend/screens/case-create.d.ts +15 -0
- package/dist/modules/crm_backend/screens/case-create.d.ts.map +1 -0
- package/dist/modules/crm_backend/screens/case-create.js +19 -0
- package/dist/modules/crm_backend/screens/case-create.js.map +1 -0
- package/dist/modules/crm_backend/screens/case-detail.d.ts +46 -0
- package/dist/modules/crm_backend/screens/case-detail.d.ts.map +1 -0
- package/dist/modules/crm_backend/screens/case-detail.js +506 -0
- package/dist/modules/crm_backend/screens/case-detail.js.map +1 -0
- package/dist/modules/crm_backend/screens/cases-list.d.ts +16 -0
- package/dist/modules/crm_backend/screens/cases-list.d.ts.map +1 -0
- package/dist/modules/crm_backend/screens/cases-list.js +86 -0
- package/dist/modules/crm_backend/screens/cases-list.js.map +1 -0
- package/dist/modules/crm_backend/screens/configuration.d.ts +28 -0
- package/dist/modules/crm_backend/screens/configuration.d.ts.map +1 -0
- package/dist/modules/crm_backend/screens/configuration.js +115 -0
- package/dist/modules/crm_backend/screens/configuration.js.map +1 -0
- package/dist/modules/crm_backend/screens/index.d.ts +14 -0
- package/dist/modules/crm_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/crm_backend/screens/index.js +8 -0
- package/dist/modules/crm_backend/screens/index.js.map +1 -0
- package/dist/modules/crm_backend/screens/leaderboard.d.ts +12 -0
- package/dist/modules/crm_backend/screens/leaderboard.d.ts.map +1 -0
- package/dist/modules/crm_backend/screens/leaderboard.js +89 -0
- package/dist/modules/crm_backend/screens/leaderboard.js.map +1 -0
- package/dist/modules/crm_backend/screens/pipeline.d.ts +21 -0
- package/dist/modules/crm_backend/screens/pipeline.d.ts.map +1 -0
- package/dist/modules/crm_backend/screens/pipeline.js +22 -0
- package/dist/modules/crm_backend/screens/pipeline.js.map +1 -0
- package/dist/modules/crm_sale/index.d.ts.map +1 -1
- package/dist/modules/crm_sale/index.js +3 -4
- package/dist/modules/crm_sale/index.js.map +1 -1
- package/dist/modules/crm_sale/messages.d.ts +3 -1
- package/dist/modules/crm_sale/messages.d.ts.map +1 -1
- package/dist/modules/crm_sale/messages.js +4 -0
- package/dist/modules/crm_sale/messages.js.map +1 -1
- package/dist/modules/crm_sale/sale-functions.d.ts +8 -1
- package/dist/modules/crm_sale/sale-functions.d.ts.map +1 -1
- package/dist/modules/crm_sale/sale-functions.js +184 -55
- package/dist/modules/crm_sale/sale-functions.js.map +1 -1
- package/dist/modules/crm_staff_channel/channel-routes.d.ts +2 -0
- package/dist/modules/crm_staff_channel/channel-routes.d.ts.map +1 -0
- package/dist/modules/crm_staff_channel/channel-routes.js +777 -0
- package/dist/modules/crm_staff_channel/channel-routes.js.map +1 -0
- package/dist/modules/crm_staff_channel/index.d.ts +5 -0
- package/dist/modules/crm_staff_channel/index.d.ts.map +1 -0
- package/dist/modules/crm_staff_channel/index.js +30 -0
- package/dist/modules/crm_staff_channel/index.js.map +1 -0
- package/dist/modules/crm_website/functions.d.ts.map +1 -1
- package/dist/modules/crm_website/functions.js +89 -10
- package/dist/modules/crm_website/functions.js.map +1 -1
- package/dist/modules/crm_website/index.js +1 -2
- package/dist/modules/crm_website/index.js.map +1 -1
- package/dist/modules/crm_website/messages.d.ts +4 -1
- package/dist/modules/crm_website/messages.d.ts.map +1 -1
- package/dist/modules/crm_website/messages.js +6 -0
- package/dist/modules/crm_website/messages.js.map +1 -1
- package/dist/modules/crm_website/models.d.ts.map +1 -1
- package/dist/modules/crm_website/models.js +18 -0
- package/dist/modules/crm_website/models.js.map +1 -1
- package/dist/modules/crm_website/routes.d.ts.map +1 -1
- package/dist/modules/crm_website/routes.js +44 -12
- package/dist/modules/crm_website/routes.js.map +1 -1
- package/dist/modules/crm_website/screens.d.ts +7 -1
- package/dist/modules/crm_website/screens.d.ts.map +1 -1
- package/dist/modules/crm_website/screens.js +13 -8
- package/dist/modules/crm_website/screens.js.map +1 -1
- package/dist/modules/flow/functions.d.ts +3 -0
- package/dist/modules/flow/functions.d.ts.map +1 -0
- package/dist/modules/flow/functions.js +1876 -0
- package/dist/modules/flow/functions.js.map +1 -0
- package/dist/modules/flow/index.d.ts +12 -0
- package/dist/modules/flow/index.d.ts.map +1 -0
- package/dist/modules/flow/index.js +30 -0
- package/dist/modules/flow/index.js.map +1 -0
- package/dist/modules/flow/jobs.d.ts +3 -0
- package/dist/modules/flow/jobs.d.ts.map +1 -0
- package/dist/modules/flow/jobs.js +136 -0
- package/dist/modules/flow/jobs.js.map +1 -0
- package/dist/modules/flow/membership.d.ts +72 -0
- package/dist/modules/flow/membership.d.ts.map +1 -0
- package/dist/modules/flow/membership.js +182 -0
- package/dist/modules/flow/membership.js.map +1 -0
- package/dist/modules/flow/messages.d.ts +79 -0
- package/dist/modules/flow/messages.d.ts.map +1 -0
- package/dist/modules/flow/messages.js +152 -0
- package/dist/modules/flow/messages.js.map +1 -0
- package/dist/modules/flow/models.d.ts +3 -0
- package/dist/modules/flow/models.d.ts.map +1 -0
- package/dist/modules/flow/models.js +453 -0
- package/dist/modules/flow/models.js.map +1 -0
- package/dist/modules/flow/operations.d.ts +414 -0
- package/dist/modules/flow/operations.d.ts.map +1 -0
- package/dist/modules/flow/operations.js +1671 -0
- package/dist/modules/flow/operations.js.map +1 -0
- package/dist/modules/flow/pages.d.ts +146 -0
- package/dist/modules/flow/pages.d.ts.map +1 -0
- package/dist/modules/flow/pages.js +394 -0
- package/dist/modules/flow/pages.js.map +1 -0
- package/dist/modules/flow/projects.d.ts +41 -0
- package/dist/modules/flow/projects.d.ts.map +1 -0
- package/dist/modules/flow/projects.js +74 -0
- package/dist/modules/flow/projects.js.map +1 -0
- package/dist/modules/flow/search.d.ts +57 -0
- package/dist/modules/flow/search.d.ts.map +1 -0
- package/dist/modules/flow/search.js +110 -0
- package/dist/modules/flow/search.js.map +1 -0
- package/dist/modules/flow/types.d.ts +17 -0
- package/dist/modules/flow/types.d.ts.map +1 -0
- package/dist/modules/flow/types.js +13 -0
- package/dist/modules/flow/types.js.map +1 -0
- package/dist/modules/flow_backend/functions.d.ts +3 -0
- package/dist/modules/flow_backend/functions.d.ts.map +1 -0
- package/dist/modules/flow_backend/functions.js +162 -0
- package/dist/modules/flow_backend/functions.js.map +1 -0
- package/dist/modules/flow_backend/index.d.ts +3 -0
- package/dist/modules/flow_backend/index.d.ts.map +1 -0
- package/dist/modules/flow_backend/index.js +96 -0
- package/dist/modules/flow_backend/index.js.map +1 -0
- package/dist/modules/flow_backend/islands.d.ts +3 -0
- package/dist/modules/flow_backend/islands.d.ts.map +1 -0
- package/dist/modules/flow_backend/islands.js +31 -0
- package/dist/modules/flow_backend/islands.js.map +1 -0
- package/dist/modules/flow_backend/messages.d.ts +248 -0
- package/dist/modules/flow_backend/messages.d.ts.map +1 -0
- package/dist/modules/flow_backend/messages.js +470 -0
- package/dist/modules/flow_backend/messages.js.map +1 -0
- package/dist/modules/flow_backend/relation-control.d.ts +53 -0
- package/dist/modules/flow_backend/relation-control.d.ts.map +1 -0
- package/dist/modules/flow_backend/relation-control.js +106 -0
- package/dist/modules/flow_backend/relation-control.js.map +1 -0
- package/dist/modules/flow_backend/routes.d.ts +3 -0
- package/dist/modules/flow_backend/routes.d.ts.map +1 -0
- package/dist/modules/flow_backend/routes.js +2519 -0
- package/dist/modules/flow_backend/routes.js.map +1 -0
- package/dist/modules/flow_backend/screens/all-epics.d.ts +19 -0
- package/dist/modules/flow_backend/screens/all-epics.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/all-epics.js +59 -0
- package/dist/modules/flow_backend/screens/all-epics.js.map +1 -0
- package/dist/modules/flow_backend/screens/all-pages.d.ts +19 -0
- package/dist/modules/flow_backend/screens/all-pages.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/all-pages.js +65 -0
- package/dist/modules/flow_backend/screens/all-pages.js.map +1 -0
- package/dist/modules/flow_backend/screens/board.d.ts +5 -0
- package/dist/modules/flow_backend/screens/board.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/board.js +7 -0
- package/dist/modules/flow_backend/screens/board.js.map +1 -0
- package/dist/modules/flow_backend/screens/epic-detail.d.ts +22 -0
- package/dist/modules/flow_backend/screens/epic-detail.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/epic-detail.js +41 -0
- package/dist/modules/flow_backend/screens/epic-detail.js.map +1 -0
- package/dist/modules/flow_backend/screens/gantt.d.ts +21 -0
- package/dist/modules/flow_backend/screens/gantt.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/gantt.js +42 -0
- package/dist/modules/flow_backend/screens/gantt.js.map +1 -0
- package/dist/modules/flow_backend/screens/index.d.ts +29 -0
- package/dist/modules/flow_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/index.js +23 -0
- package/dist/modules/flow_backend/screens/index.js.map +1 -0
- package/dist/modules/flow_backend/screens/issue-detail.d.ts +38 -0
- package/dist/modules/flow_backend/screens/issue-detail.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/issue-detail.js +336 -0
- package/dist/modules/flow_backend/screens/issue-detail.js.map +1 -0
- package/dist/modules/flow_backend/screens/issues.d.ts +34 -0
- package/dist/modules/flow_backend/screens/issues.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/issues.js +118 -0
- package/dist/modules/flow_backend/screens/issues.js.map +1 -0
- package/dist/modules/flow_backend/screens/map.d.ts +13 -0
- package/dist/modules/flow_backend/screens/map.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/map.js +16 -0
- package/dist/modules/flow_backend/screens/map.js.map +1 -0
- package/dist/modules/flow_backend/screens/my-work.d.ts +42 -0
- package/dist/modules/flow_backend/screens/my-work.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/my-work.js +157 -0
- package/dist/modules/flow_backend/screens/my-work.js.map +1 -0
- package/dist/modules/flow_backend/screens/nav.d.ts +3 -0
- package/dist/modules/flow_backend/screens/nav.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/nav.js +79 -0
- package/dist/modules/flow_backend/screens/nav.js.map +1 -0
- package/dist/modules/flow_backend/screens/page-detail.d.ts +31 -0
- package/dist/modules/flow_backend/screens/page-detail.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/page-detail.js +113 -0
- package/dist/modules/flow_backend/screens/page-detail.js.map +1 -0
- package/dist/modules/flow_backend/screens/project-create.d.ts +26 -0
- package/dist/modules/flow_backend/screens/project-create.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/project-create.js +56 -0
- package/dist/modules/flow_backend/screens/project-create.js.map +1 -0
- package/dist/modules/flow_backend/screens/project-epics.d.ts +33 -0
- package/dist/modules/flow_backend/screens/project-epics.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/project-epics.js +90 -0
- package/dist/modules/flow_backend/screens/project-epics.js.map +1 -0
- package/dist/modules/flow_backend/screens/project-pages.d.ts +34 -0
- package/dist/modules/flow_backend/screens/project-pages.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/project-pages.js +66 -0
- package/dist/modules/flow_backend/screens/project-pages.js.map +1 -0
- package/dist/modules/flow_backend/screens/project-settings.d.ts +69 -0
- package/dist/modules/flow_backend/screens/project-settings.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/project-settings.js +248 -0
- package/dist/modules/flow_backend/screens/project-settings.js.map +1 -0
- package/dist/modules/flow_backend/screens/projects-list.d.ts +30 -0
- package/dist/modules/flow_backend/screens/projects-list.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/projects-list.js +121 -0
- package/dist/modules/flow_backend/screens/projects-list.js.map +1 -0
- package/dist/modules/flow_backend/screens/shared.d.ts +28 -0
- package/dist/modules/flow_backend/screens/shared.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/shared.js +46 -0
- package/dist/modules/flow_backend/screens/shared.js.map +1 -0
- package/dist/modules/flow_backend/screens/sprints.d.ts +33 -0
- package/dist/modules/flow_backend/screens/sprints.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/sprints.js +159 -0
- package/dist/modules/flow_backend/screens/sprints.js.map +1 -0
- package/dist/modules/flow_staff_channel/channel-routes.d.ts +2 -0
- package/dist/modules/flow_staff_channel/channel-routes.d.ts.map +1 -0
- package/dist/modules/flow_staff_channel/channel-routes.js +425 -0
- package/dist/modules/flow_staff_channel/channel-routes.js.map +1 -0
- package/dist/modules/flow_staff_channel/index.d.ts +5 -0
- package/dist/modules/flow_staff_channel/index.d.ts.map +1 -0
- package/dist/modules/flow_staff_channel/index.js +30 -0
- package/dist/modules/flow_staff_channel/index.js.map +1 -0
- package/dist/modules/hospitality_billing/functions.d.ts +18 -0
- package/dist/modules/hospitality_billing/functions.d.ts.map +1 -0
- package/dist/modules/hospitality_billing/functions.js +426 -0
- package/dist/modules/hospitality_billing/functions.js.map +1 -0
- package/dist/modules/hospitality_billing/index.d.ts +3 -0
- package/dist/modules/hospitality_billing/index.d.ts.map +1 -0
- package/dist/modules/hospitality_billing/index.js +25 -0
- package/dist/modules/hospitality_billing/index.js.map +1 -0
- package/dist/modules/hospitality_billing/jobs.d.ts +17 -0
- package/dist/modules/hospitality_billing/jobs.d.ts.map +1 -0
- package/dist/modules/hospitality_billing/jobs.js +83 -0
- package/dist/modules/hospitality_billing/jobs.js.map +1 -0
- package/dist/modules/hospitality_billing/menus.d.ts +9 -0
- package/dist/modules/hospitality_billing/menus.d.ts.map +1 -0
- package/dist/modules/hospitality_billing/menus.js +25 -0
- package/dist/modules/hospitality_billing/menus.js.map +1 -0
- package/dist/modules/hospitality_billing/messages.d.ts +3 -0
- package/dist/modules/hospitality_billing/messages.d.ts.map +1 -0
- package/dist/modules/hospitality_billing/messages.js +163 -0
- package/dist/modules/hospitality_billing/messages.js.map +1 -0
- package/dist/modules/hospitality_billing/models.d.ts +3 -0
- package/dist/modules/hospitality_billing/models.d.ts.map +1 -0
- package/dist/modules/hospitality_billing/models.js +65 -0
- package/dist/modules/hospitality_billing/models.js.map +1 -0
- package/dist/modules/hospitality_billing/routes.d.ts +3 -0
- package/dist/modules/hospitality_billing/routes.d.ts.map +1 -0
- package/dist/modules/hospitality_billing/routes.js +189 -0
- package/dist/modules/hospitality_billing/routes.js.map +1 -0
- package/dist/modules/hospitality_billing/screens/billing.d.ts +3 -0
- package/dist/modules/hospitality_billing/screens/billing.d.ts.map +1 -0
- package/dist/modules/hospitality_billing/screens/billing.js +20 -0
- package/dist/modules/hospitality_billing/screens/billing.js.map +1 -0
- package/dist/modules/hospitality_billing/screens/charge-rules.d.ts +12 -0
- package/dist/modules/hospitality_billing/screens/charge-rules.d.ts.map +1 -0
- package/dist/modules/hospitality_billing/screens/charge-rules.js +86 -0
- package/dist/modules/hospitality_billing/screens/charge-rules.js.map +1 -0
- package/dist/modules/hospitality_billing/screens/index.d.ts +4 -0
- package/dist/modules/hospitality_billing/screens/index.d.ts.map +1 -0
- package/dist/modules/hospitality_billing/screens/index.js +4 -0
- package/dist/modules/hospitality_billing/screens/index.js.map +1 -0
- package/dist/modules/hospitality_billing/screens/page-frame.d.ts +14 -0
- package/dist/modules/hospitality_billing/screens/page-frame.d.ts.map +1 -0
- package/dist/modules/hospitality_billing/screens/page-frame.js +6 -0
- package/dist/modules/hospitality_billing/screens/page-frame.js.map +1 -0
- package/dist/modules/hospitality_billing/screens/shared.d.ts +64 -0
- package/dist/modules/hospitality_billing/screens/shared.d.ts.map +1 -0
- package/dist/modules/hospitality_billing/screens/shared.js +117 -0
- package/dist/modules/hospitality_billing/screens/shared.js.map +1 -0
- package/dist/modules/hospitality_core/calendar.d.ts.map +1 -1
- package/dist/modules/hospitality_core/calendar.js +2 -1
- package/dist/modules/hospitality_core/calendar.js.map +1 -1
- package/dist/modules/hospitality_core/functions.d.ts.map +1 -1
- package/dist/modules/hospitality_core/functions.js +114 -14
- package/dist/modules/hospitality_core/functions.js.map +1 -1
- package/dist/modules/hospitality_core/index.d.ts +2 -2
- package/dist/modules/hospitality_core/index.d.ts.map +1 -1
- package/dist/modules/hospitality_core/index.js +3 -2
- package/dist/modules/hospitality_core/index.js.map +1 -1
- package/dist/modules/hospitality_core/inventory.d.ts +53 -4
- package/dist/modules/hospitality_core/inventory.d.ts.map +1 -1
- package/dist/modules/hospitality_core/inventory.js +121 -14
- package/dist/modules/hospitality_core/inventory.js.map +1 -1
- package/dist/modules/hospitality_core/menus.d.ts.map +1 -1
- package/dist/modules/hospitality_core/menus.js +31 -0
- package/dist/modules/hospitality_core/menus.js.map +1 -1
- package/dist/modules/hospitality_core/messages.d.ts.map +1 -1
- package/dist/modules/hospitality_core/messages.js +427 -183
- package/dist/modules/hospitality_core/messages.js.map +1 -1
- package/dist/modules/hospitality_core/models.d.ts +1 -1
- package/dist/modules/hospitality_core/models.d.ts.map +1 -1
- package/dist/modules/hospitality_core/models.js +47 -2
- package/dist/modules/hospitality_core/models.js.map +1 -1
- package/dist/modules/hospitality_core/night-audit.d.ts +1 -0
- package/dist/modules/hospitality_core/night-audit.d.ts.map +1 -1
- package/dist/modules/hospitality_core/night-audit.js +46 -1
- package/dist/modules/hospitality_core/night-audit.js.map +1 -1
- package/dist/modules/hospitality_core/online-booking.d.ts +5 -0
- package/dist/modules/hospitality_core/online-booking.d.ts.map +1 -0
- package/dist/modules/hospitality_core/online-booking.js +775 -0
- package/dist/modules/hospitality_core/online-booking.js.map +1 -0
- package/dist/modules/hospitality_core/operations.d.ts +21 -1
- package/dist/modules/hospitality_core/operations.d.ts.map +1 -1
- package/dist/modules/hospitality_core/operations.js +549 -74
- package/dist/modules/hospitality_core/operations.js.map +1 -1
- package/dist/modules/hospitality_core/routes.d.ts.map +1 -1
- package/dist/modules/hospitality_core/routes.js +526 -107
- package/dist/modules/hospitality_core/routes.js.map +1 -1
- package/dist/modules/hospitality_core/screens/amenities.d.ts +10 -0
- package/dist/modules/hospitality_core/screens/amenities.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/amenities.js +65 -0
- package/dist/modules/hospitality_core/screens/amenities.js.map +1 -0
- package/dist/modules/hospitality_core/screens/building-detail.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/building-detail.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/building-detail.js +69 -0
- package/dist/modules/hospitality_core/screens/building-detail.js.map +1 -0
- package/dist/modules/hospitality_core/screens/check-out-prep.d.ts +46 -0
- package/dist/modules/hospitality_core/screens/check-out-prep.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/check-out-prep.js +133 -0
- package/dist/modules/hospitality_core/screens/check-out-prep.js.map +1 -0
- package/dist/modules/hospitality_core/screens/cleaning-task-detail.d.ts +7 -0
- package/dist/modules/hospitality_core/screens/cleaning-task-detail.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/cleaning-task-detail.js +109 -0
- package/dist/modules/hospitality_core/screens/cleaning-task-detail.js.map +1 -0
- package/dist/modules/hospitality_core/screens/cleaning-tasks.d.ts +20 -0
- package/dist/modules/hospitality_core/screens/cleaning-tasks.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/cleaning-tasks.js +139 -0
- package/dist/modules/hospitality_core/screens/cleaning-tasks.js.map +1 -0
- package/dist/modules/hospitality_core/screens/content.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/content.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/content.js +114 -0
- package/dist/modules/hospitality_core/screens/content.js.map +1 -0
- package/dist/modules/hospitality_core/screens/floor-detail.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/floor-detail.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/floor-detail.js +74 -0
- package/dist/modules/hospitality_core/screens/floor-detail.js.map +1 -0
- package/dist/modules/hospitality_core/screens/folio-detail.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/folio-detail.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/folio-detail.js +140 -0
- package/dist/modules/hospitality_core/screens/folio-detail.js.map +1 -0
- package/dist/modules/hospitality_core/screens/folios.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/folios.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/folios.js +7 -0
- package/dist/modules/hospitality_core/screens/folios.js.map +1 -0
- package/dist/modules/hospitality_core/screens/front-desk.d.ts +35 -0
- package/dist/modules/hospitality_core/screens/front-desk.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/front-desk.js +195 -0
- package/dist/modules/hospitality_core/screens/front-desk.js.map +1 -0
- package/dist/modules/hospitality_core/screens/housekeeping-room-detail.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/housekeeping-room-detail.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/housekeeping-room-detail.js +121 -0
- package/dist/modules/hospitality_core/screens/housekeeping-room-detail.js.map +1 -0
- package/dist/modules/hospitality_core/screens/housekeeping-rooms.d.ts +9 -0
- package/dist/modules/hospitality_core/screens/housekeeping-rooms.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/housekeeping-rooms.js +54 -0
- package/dist/modules/hospitality_core/screens/housekeeping-rooms.js.map +1 -0
- package/dist/modules/hospitality_core/screens/index.d.ts +35 -0
- package/dist/modules/hospitality_core/screens/index.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/index.js +34 -0
- package/dist/modules/hospitality_core/screens/index.js.map +1 -0
- package/dist/modules/hospitality_core/screens/inventory.d.ts +8 -0
- package/dist/modules/hospitality_core/screens/inventory.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/inventory.js +122 -0
- package/dist/modules/hospitality_core/screens/inventory.js.map +1 -0
- package/dist/modules/hospitality_core/screens/new-property.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/new-property.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/new-property.js +8 -0
- package/dist/modules/hospitality_core/screens/new-property.js.map +1 -0
- package/dist/modules/hospitality_core/screens/new-room-type.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/new-room-type.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/new-room-type.js +8 -0
- package/dist/modules/hospitality_core/screens/new-room-type.js.map +1 -0
- package/dist/modules/hospitality_core/screens/new-room.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/new-room.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/new-room.js +8 -0
- package/dist/modules/hospitality_core/screens/new-room.js.map +1 -0
- package/dist/modules/hospitality_core/screens/night-audit.d.ts +10 -0
- package/dist/modules/hospitality_core/screens/night-audit.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/night-audit.js +67 -0
- package/dist/modules/hospitality_core/screens/night-audit.js.map +1 -0
- package/dist/modules/hospitality_core/screens/page-frame.d.ts +15 -0
- package/dist/modules/hospitality_core/screens/page-frame.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/page-frame.js +10 -0
- package/dist/modules/hospitality_core/screens/page-frame.js.map +1 -0
- package/dist/modules/hospitality_core/screens/policies.d.ts +10 -0
- package/dist/modules/hospitality_core/screens/policies.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/policies.js +72 -0
- package/dist/modules/hospitality_core/screens/policies.js.map +1 -0
- package/dist/modules/hospitality_core/screens/properties.d.ts +7 -0
- package/dist/modules/hospitality_core/screens/properties.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/properties.js +45 -0
- package/dist/modules/hospitality_core/screens/properties.js.map +1 -0
- package/dist/modules/hospitality_core/screens/property-detail.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/property-detail.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/property-detail.js +92 -0
- package/dist/modules/hospitality_core/screens/property-detail.js.map +1 -0
- package/dist/modules/hospitality_core/screens/rate-plans.d.ts +10 -0
- package/dist/modules/hospitality_core/screens/rate-plans.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/rate-plans.js +123 -0
- package/dist/modules/hospitality_core/screens/rate-plans.js.map +1 -0
- package/dist/modules/hospitality_core/screens/reservation-detail.d.ts +11 -0
- package/dist/modules/hospitality_core/screens/reservation-detail.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/reservation-detail.js +244 -0
- package/dist/modules/hospitality_core/screens/reservation-detail.js.map +1 -0
- package/dist/modules/hospitality_core/screens/reservations.d.ts +17 -0
- package/dist/modules/hospitality_core/screens/reservations.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/reservations.js +166 -0
- package/dist/modules/hospitality_core/screens/reservations.js.map +1 -0
- package/dist/modules/hospitality_core/screens/room-detail.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/room-detail.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/room-detail.js +75 -0
- package/dist/modules/hospitality_core/screens/room-detail.js.map +1 -0
- package/dist/modules/hospitality_core/screens/room-type-detail.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/room-type-detail.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/room-type-detail.js +91 -0
- package/dist/modules/hospitality_core/screens/room-type-detail.js.map +1 -0
- package/dist/modules/hospitality_core/screens/room-types.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/room-types.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/room-types.js +61 -0
- package/dist/modules/hospitality_core/screens/room-types.js.map +1 -0
- package/dist/modules/hospitality_core/screens/rooms.d.ts +10 -0
- package/dist/modules/hospitality_core/screens/rooms.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/rooms.js +150 -0
- package/dist/modules/hospitality_core/screens/rooms.js.map +1 -0
- package/dist/modules/hospitality_core/screens/services.d.ts +18 -0
- package/dist/modules/hospitality_core/screens/services.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/services.js +196 -0
- package/dist/modules/hospitality_core/screens/services.js.map +1 -0
- package/dist/modules/hospitality_core/screens/shared.d.ts +789 -0
- package/dist/modules/hospitality_core/screens/shared.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/shared.js +1607 -0
- package/dist/modules/hospitality_core/screens/shared.js.map +1 -0
- package/dist/modules/hospitality_core/screens/stay-detail.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/stay-detail.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/stay-detail.js +233 -0
- package/dist/modules/hospitality_core/screens/stay-detail.js.map +1 -0
- package/dist/modules/hospitality_core/screens/stay-notices.d.ts +9 -0
- package/dist/modules/hospitality_core/screens/stay-notices.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/stay-notices.js +87 -0
- package/dist/modules/hospitality_core/screens/stay-notices.js.map +1 -0
- package/dist/modules/hospitality_core/screens/stays.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/stays.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/stays.js +7 -0
- package/dist/modules/hospitality_core/screens/stays.js.map +1 -0
- package/dist/modules/hospitality_core/screens/tape-chart.d.ts +7 -0
- package/dist/modules/hospitality_core/screens/tape-chart.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/tape-chart.js +99 -0
- package/dist/modules/hospitality_core/screens/tape-chart.js.map +1 -0
- package/dist/modules/hospitality_core/services.d.ts +48 -0
- package/dist/modules/hospitality_core/services.d.ts.map +1 -1
- package/dist/modules/hospitality_core/services.js +203 -30
- package/dist/modules/hospitality_core/services.js.map +1 -1
- package/dist/modules/hospitality_core/stay-notices.js +2 -2
- package/dist/modules/hospitality_core/stay-notices.js.map +1 -1
- package/dist/modules/hospitality_core/types.d.ts +26 -5
- package/dist/modules/hospitality_core/types.d.ts.map +1 -1
- package/dist/modules/hospitality_core/types.js +47 -5
- package/dist/modules/hospitality_core/types.js.map +1 -1
- package/dist/modules/hospitality_staff_channel/channel-routes.d.ts +2 -0
- package/dist/modules/hospitality_staff_channel/channel-routes.d.ts.map +1 -0
- package/dist/modules/hospitality_staff_channel/channel-routes.js +1216 -0
- package/dist/modules/hospitality_staff_channel/channel-routes.js.map +1 -0
- package/dist/modules/hospitality_staff_channel/index.d.ts +5 -0
- package/dist/modules/hospitality_staff_channel/index.d.ts.map +1 -0
- package/dist/modules/hospitality_staff_channel/index.js +34 -0
- package/dist/modules/hospitality_staff_channel/index.js.map +1 -0
- package/dist/modules/hr/functions.d.ts.map +1 -1
- package/dist/modules/hr/functions.js +108 -44
- package/dist/modules/hr/functions.js.map +1 -1
- package/dist/modules/hr/index.d.ts.map +1 -1
- package/dist/modules/hr/index.js +0 -1
- package/dist/modules/hr/index.js.map +1 -1
- package/dist/modules/hr_backend/index.d.ts +2 -1
- package/dist/modules/hr_backend/index.d.ts.map +1 -1
- package/dist/modules/hr_backend/index.js +39 -7
- package/dist/modules/hr_backend/index.js.map +1 -1
- package/dist/modules/hr_backend/routes.d.ts.map +1 -1
- package/dist/modules/hr_backend/routes.js +279 -42
- package/dist/modules/hr_backend/routes.js.map +1 -1
- package/dist/modules/hr_backend/screens/employee-form.d.ts +28 -0
- package/dist/modules/hr_backend/screens/employee-form.d.ts.map +1 -0
- package/dist/modules/hr_backend/screens/employee-form.js +110 -0
- package/dist/modules/hr_backend/screens/employee-form.js.map +1 -0
- package/dist/modules/hr_backend/screens/employees-list.d.ts +22 -0
- package/dist/modules/hr_backend/screens/employees-list.d.ts.map +1 -0
- package/dist/modules/hr_backend/screens/employees-list.js +53 -0
- package/dist/modules/hr_backend/screens/employees-list.js.map +1 -0
- package/dist/modules/hr_backend/screens/index.d.ts +5 -0
- package/dist/modules/hr_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/hr_backend/screens/index.js +5 -0
- package/dist/modules/hr_backend/screens/index.js.map +1 -0
- package/dist/modules/hr_backend/screens/leaves-list.d.ts +22 -0
- package/dist/modules/hr_backend/screens/leaves-list.d.ts.map +1 -0
- package/dist/modules/hr_backend/screens/leaves-list.js +78 -0
- package/dist/modules/hr_backend/screens/leaves-list.js.map +1 -0
- package/dist/modules/hr_backend/screens/roster.d.ts +19 -0
- package/dist/modules/hr_backend/screens/roster.d.ts.map +1 -0
- package/dist/modules/hr_backend/screens/roster.js +83 -0
- package/dist/modules/hr_backend/screens/roster.js.map +1 -0
- package/dist/modules/inventory_staff_channel/channel-routes.d.ts +2 -0
- package/dist/modules/inventory_staff_channel/channel-routes.d.ts.map +1 -0
- package/dist/modules/inventory_staff_channel/channel-routes.js +713 -0
- package/dist/modules/inventory_staff_channel/channel-routes.js.map +1 -0
- package/dist/modules/inventory_staff_channel/index.d.ts +5 -0
- package/dist/modules/inventory_staff_channel/index.d.ts.map +1 -0
- package/dist/modules/inventory_staff_channel/index.js +38 -0
- package/dist/modules/inventory_staff_channel/index.js.map +1 -0
- package/dist/modules/livedoc/documents.d.ts +48 -0
- package/dist/modules/livedoc/documents.d.ts.map +1 -0
- package/dist/modules/livedoc/documents.js +99 -0
- package/dist/modules/livedoc/documents.js.map +1 -0
- package/dist/modules/livedoc/functions.d.ts +3 -0
- package/dist/modules/livedoc/functions.d.ts.map +1 -0
- package/dist/modules/livedoc/functions.js +47 -0
- package/dist/modules/livedoc/functions.js.map +1 -0
- package/dist/modules/livedoc/index.d.ts +22 -0
- package/dist/modules/livedoc/index.d.ts.map +1 -0
- package/dist/modules/livedoc/index.js +37 -0
- package/dist/modules/livedoc/index.js.map +1 -0
- package/dist/modules/livedoc/islands.d.ts +3 -0
- package/dist/modules/livedoc/islands.d.ts.map +1 -0
- package/dist/modules/livedoc/islands.js +22 -0
- package/dist/modules/livedoc/islands.js.map +1 -0
- package/dist/modules/livedoc/routes.d.ts +11 -0
- package/dist/modules/livedoc/routes.d.ts.map +1 -0
- package/dist/modules/livedoc/routes.js +232 -0
- package/dist/modules/livedoc/routes.js.map +1 -0
- package/dist/modules/livedoc/sync.d.ts +124 -0
- package/dist/modules/livedoc/sync.d.ts.map +1 -0
- package/dist/modules/livedoc/sync.js +218 -0
- package/dist/modules/livedoc/sync.js.map +1 -0
- package/dist/modules/loyalty/admin-functions.d.ts.map +1 -1
- package/dist/modules/loyalty/admin-functions.js +42 -6
- package/dist/modules/loyalty/admin-functions.js.map +1 -1
- package/dist/modules/loyalty/engine.d.ts +1 -0
- package/dist/modules/loyalty/engine.d.ts.map +1 -1
- package/dist/modules/loyalty/engine.js +88 -28
- package/dist/modules/loyalty/engine.js.map +1 -1
- package/dist/modules/loyalty/index.d.ts.map +1 -1
- package/dist/modules/loyalty/index.js +10 -2
- package/dist/modules/loyalty/index.js.map +1 -1
- package/dist/modules/loyalty/ledger.d.ts.map +1 -1
- package/dist/modules/loyalty/ledger.js +11 -0
- package/dist/modules/loyalty/ledger.js.map +1 -1
- package/dist/modules/loyalty/membership-functions.d.ts.map +1 -1
- package/dist/modules/loyalty/membership-functions.js +23 -7
- package/dist/modules/loyalty/membership-functions.js.map +1 -1
- package/dist/modules/loyalty/messages.d.ts +8 -0
- package/dist/modules/loyalty/messages.d.ts.map +1 -1
- package/dist/modules/loyalty/messages.js +8 -0
- package/dist/modules/loyalty/messages.js.map +1 -1
- package/dist/modules/loyalty/models.d.ts.map +1 -1
- package/dist/modules/loyalty/models.js +20 -0
- package/dist/modules/loyalty/models.js.map +1 -1
- package/dist/modules/loyalty/order-functions.d.ts +16 -1
- package/dist/modules/loyalty/order-functions.d.ts.map +1 -1
- package/dist/modules/loyalty/order-functions.js +513 -291
- package/dist/modules/loyalty/order-functions.js.map +1 -1
- package/dist/modules/loyalty/stats.d.ts +17 -0
- package/dist/modules/loyalty/stats.d.ts.map +1 -0
- package/dist/modules/loyalty/stats.js +178 -0
- package/dist/modules/loyalty/stats.js.map +1 -0
- package/dist/modules/loyalty/stored-value.d.ts +42 -0
- package/dist/modules/loyalty/stored-value.d.ts.map +1 -0
- package/dist/modules/loyalty/stored-value.js +368 -0
- package/dist/modules/loyalty/stored-value.js.map +1 -0
- package/dist/modules/loyalty/types.d.ts +6 -4
- package/dist/modules/loyalty/types.d.ts.map +1 -1
- package/dist/modules/loyalty/types.js +1 -1
- package/dist/modules/loyalty/types.js.map +1 -1
- package/dist/modules/loyalty_backend/index.js +443 -172
- package/dist/modules/loyalty_backend/index.js.map +1 -1
- package/dist/modules/loyalty_backend/messages.d.ts +58 -1
- package/dist/modules/loyalty_backend/messages.d.ts.map +1 -1
- package/dist/modules/loyalty_backend/messages.js +114 -0
- package/dist/modules/loyalty_backend/messages.js.map +1 -1
- package/dist/modules/loyalty_backend/screens/index.d.ts +90 -0
- package/dist/modules/loyalty_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/loyalty_backend/screens/index.js +912 -0
- package/dist/modules/loyalty_backend/screens/index.js.map +1 -0
- package/dist/modules/loyalty_backend/screens/page-frame.d.ts +14 -0
- package/dist/modules/loyalty_backend/screens/page-frame.d.ts.map +1 -0
- package/dist/modules/loyalty_backend/screens/page-frame.js +13 -0
- package/dist/modules/loyalty_backend/screens/page-frame.js.map +1 -0
- package/dist/modules/loyalty_pos/channel.d.ts +2 -0
- package/dist/modules/loyalty_pos/channel.d.ts.map +1 -0
- package/dist/modules/loyalty_pos/channel.js +270 -0
- package/dist/modules/loyalty_pos/channel.js.map +1 -0
- package/dist/modules/loyalty_pos/functions.d.ts +11 -17
- package/dist/modules/loyalty_pos/functions.d.ts.map +1 -1
- package/dist/modules/loyalty_pos/functions.js +454 -94
- package/dist/modules/loyalty_pos/functions.js.map +1 -1
- package/dist/modules/loyalty_pos/index.js +6 -16
- package/dist/modules/loyalty_pos/index.js.map +1 -1
- package/dist/modules/loyalty_pos/jobs.d.ts +3 -0
- package/dist/modules/loyalty_pos/jobs.d.ts.map +1 -0
- package/dist/modules/loyalty_pos/jobs.js +30 -0
- package/dist/modules/loyalty_pos/jobs.js.map +1 -0
- package/dist/modules/loyalty_sale/functions.d.ts +2 -2
- package/dist/modules/loyalty_sale/functions.d.ts.map +1 -1
- package/dist/modules/loyalty_sale/functions.js +53 -34
- package/dist/modules/loyalty_sale/functions.js.map +1 -1
- package/dist/modules/loyalty_sale/index.js +0 -2
- package/dist/modules/loyalty_sale/index.js.map +1 -1
- package/dist/modules/mail/functions.d.ts.map +1 -1
- package/dist/modules/mail/functions.js +48 -6
- package/dist/modules/mail/functions.js.map +1 -1
- package/dist/modules/mail/index.d.ts.map +1 -1
- package/dist/modules/mail/index.js +0 -1
- package/dist/modules/mail/index.js.map +1 -1
- package/dist/modules/mail/operations.d.ts +19 -0
- package/dist/modules/mail/operations.d.ts.map +1 -1
- package/dist/modules/mail/operations.js +69 -0
- package/dist/modules/mail/operations.js.map +1 -1
- package/dist/modules/mail_backend/index.d.ts +1 -1
- package/dist/modules/mail_backend/index.d.ts.map +1 -1
- package/dist/modules/mail_backend/index.js +5 -14
- package/dist/modules/mail_backend/index.js.map +1 -1
- package/dist/modules/mail_backend/islands.js +2 -2
- package/dist/modules/mail_backend/islands.js.map +1 -1
- package/dist/modules/mail_backend/routes.d.ts.map +1 -1
- package/dist/modules/mail_backend/routes.js +25 -20
- package/dist/modules/mail_backend/routes.js.map +1 -1
- package/dist/modules/mail_backend/screens/inbox-list.d.ts +9 -0
- package/dist/modules/mail_backend/screens/inbox-list.d.ts.map +1 -0
- package/dist/modules/mail_backend/screens/inbox-list.js +13 -0
- package/dist/modules/mail_backend/screens/inbox-list.js.map +1 -0
- package/dist/modules/mail_backend/screens/index.d.ts +3 -0
- package/dist/modules/mail_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/mail_backend/screens/index.js +2 -0
- package/dist/modules/mail_backend/screens/index.js.map +1 -0
- package/dist/modules/mail_inbound/index.d.ts.map +1 -1
- package/dist/modules/mail_inbound/index.js +0 -1
- package/dist/modules/mail_inbound/index.js.map +1 -1
- package/dist/modules/mail_inbound_backend/index.d.ts +1 -1
- package/dist/modules/mail_inbound_backend/index.d.ts.map +1 -1
- package/dist/modules/mail_inbound_backend/index.js +3 -12
- package/dist/modules/mail_inbound_backend/index.js.map +1 -1
- package/dist/modules/mail_inbound_backend/routes.d.ts.map +1 -1
- package/dist/modules/mail_inbound_backend/routes.js +6 -21
- package/dist/modules/mail_inbound_backend/routes.js.map +1 -1
- package/dist/modules/mail_inbound_backend/screens/inbound-list.d.ts +8 -0
- package/dist/modules/mail_inbound_backend/screens/inbound-list.d.ts.map +1 -0
- package/dist/modules/mail_inbound_backend/screens/inbound-list.js +20 -0
- package/dist/modules/mail_inbound_backend/screens/inbound-list.js.map +1 -0
- package/dist/modules/mail_inbound_backend/screens/index.d.ts +3 -0
- package/dist/modules/mail_inbound_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/mail_inbound_backend/screens/index.js +2 -0
- package/dist/modules/mail_inbound_backend/screens/index.js.map +1 -0
- package/dist/modules/mail_staff_channel/channel-routes.d.ts +2 -0
- package/dist/modules/mail_staff_channel/channel-routes.d.ts.map +1 -0
- package/dist/modules/mail_staff_channel/channel-routes.js +183 -0
- package/dist/modules/mail_staff_channel/channel-routes.js.map +1 -0
- package/dist/modules/mail_staff_channel/index.d.ts +5 -0
- package/dist/modules/mail_staff_channel/index.d.ts.map +1 -0
- package/dist/modules/mail_staff_channel/index.js +28 -0
- package/dist/modules/mail_staff_channel/index.js.map +1 -0
- package/dist/modules/mail_transport/index.d.ts.map +1 -1
- package/dist/modules/mail_transport/index.js +0 -1
- package/dist/modules/mail_transport/index.js.map +1 -1
- package/dist/modules/mail_transport_backend/index.d.ts +1 -1
- package/dist/modules/mail_transport_backend/index.d.ts.map +1 -1
- package/dist/modules/mail_transport_backend/index.js +3 -12
- package/dist/modules/mail_transport_backend/index.js.map +1 -1
- package/dist/modules/mail_transport_backend/routes.d.ts.map +1 -1
- package/dist/modules/mail_transport_backend/routes.js +23 -22
- package/dist/modules/mail_transport_backend/routes.js.map +1 -1
- package/dist/modules/mail_transport_backend/screens/index.d.ts +3 -0
- package/dist/modules/mail_transport_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/mail_transport_backend/screens/index.js +2 -0
- package/dist/modules/mail_transport_backend/screens/index.js.map +1 -0
- package/dist/modules/mail_transport_backend/screens/outbox-list.d.ts +9 -0
- package/dist/modules/mail_transport_backend/screens/outbox-list.d.ts.map +1 -0
- package/dist/modules/mail_transport_backend/screens/outbox-list.js +29 -0
- package/dist/modules/mail_transport_backend/screens/outbox-list.js.map +1 -0
- package/dist/modules/manufacturing/functions.d.ts +3 -0
- package/dist/modules/manufacturing/functions.d.ts.map +1 -0
- package/dist/modules/manufacturing/functions.js +912 -0
- package/dist/modules/manufacturing/functions.js.map +1 -0
- package/dist/modules/manufacturing/index.d.ts +6 -0
- package/dist/modules/manufacturing/index.d.ts.map +1 -0
- package/dist/modules/manufacturing/index.js +42 -0
- package/dist/modules/manufacturing/index.js.map +1 -0
- package/dist/modules/manufacturing/models.d.ts +8 -0
- package/dist/modules/manufacturing/models.d.ts.map +1 -0
- package/dist/modules/manufacturing/models.js +145 -0
- package/dist/modules/manufacturing/models.js.map +1 -0
- package/dist/modules/manufacturing/relations.d.ts.map +1 -0
- package/dist/modules/manufacturing/relations.js +37 -0
- package/dist/modules/manufacturing/relations.js.map +1 -0
- package/dist/modules/manufacturing/types.d.ts +7 -0
- package/dist/modules/manufacturing/types.d.ts.map +1 -0
- package/dist/modules/manufacturing/types.js +11 -0
- package/dist/modules/manufacturing/types.js.map +1 -0
- package/dist/modules/manufacturing_backend/index.d.ts +5 -0
- package/dist/modules/manufacturing_backend/index.d.ts.map +1 -0
- package/dist/modules/manufacturing_backend/index.js +146 -0
- package/dist/modules/manufacturing_backend/index.js.map +1 -0
- package/dist/modules/manufacturing_backend/routes.d.ts +3 -0
- package/dist/modules/manufacturing_backend/routes.d.ts.map +1 -0
- package/dist/modules/manufacturing_backend/routes.js +477 -0
- package/dist/modules/manufacturing_backend/routes.js.map +1 -0
- package/dist/modules/manufacturing_backend/screens/bom-create.d.ts +15 -0
- package/dist/modules/manufacturing_backend/screens/bom-create.d.ts.map +1 -0
- package/dist/modules/manufacturing_backend/screens/bom-create.js +39 -0
- package/dist/modules/manufacturing_backend/screens/bom-create.js.map +1 -0
- package/dist/modules/manufacturing_backend/screens/boms-list.d.ts +18 -0
- package/dist/modules/manufacturing_backend/screens/boms-list.d.ts.map +1 -0
- package/dist/modules/manufacturing_backend/screens/boms-list.js +36 -0
- package/dist/modules/manufacturing_backend/screens/boms-list.js.map +1 -0
- package/dist/modules/manufacturing_backend/screens/index.d.ts +8 -0
- package/dist/modules/manufacturing_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/manufacturing_backend/screens/index.js +8 -0
- package/dist/modules/manufacturing_backend/screens/index.js.map +1 -0
- package/dist/modules/manufacturing_backend/screens/order-create.d.ts +13 -0
- package/dist/modules/manufacturing_backend/screens/order-create.d.ts.map +1 -0
- package/dist/modules/manufacturing_backend/screens/order-create.js +20 -0
- package/dist/modules/manufacturing_backend/screens/order-create.js.map +1 -0
- package/dist/modules/manufacturing_backend/screens/order-execution.d.ts +7 -0
- package/dist/modules/manufacturing_backend/screens/order-execution.d.ts.map +1 -0
- package/dist/modules/manufacturing_backend/screens/order-execution.js +129 -0
- package/dist/modules/manufacturing_backend/screens/order-execution.js.map +1 -0
- package/dist/modules/manufacturing_backend/screens/orders-list.d.ts +21 -0
- package/dist/modules/manufacturing_backend/screens/orders-list.d.ts.map +1 -0
- package/dist/modules/manufacturing_backend/screens/orders-list.js +49 -0
- package/dist/modules/manufacturing_backend/screens/orders-list.js.map +1 -0
- package/dist/modules/manufacturing_backend/screens/work-center-form.d.ts +24 -0
- package/dist/modules/manufacturing_backend/screens/work-center-form.d.ts.map +1 -0
- package/dist/modules/manufacturing_backend/screens/work-center-form.js +80 -0
- package/dist/modules/manufacturing_backend/screens/work-center-form.js.map +1 -0
- package/dist/modules/manufacturing_backend/screens/work-centers-list.d.ts +23 -0
- package/dist/modules/manufacturing_backend/screens/work-centers-list.d.ts.map +1 -0
- package/dist/modules/manufacturing_backend/screens/work-centers-list.js +61 -0
- package/dist/modules/manufacturing_backend/screens/work-centers-list.js.map +1 -0
- package/dist/modules/oauth/index.d.ts.map +1 -1
- package/dist/modules/oauth/index.js +0 -1
- package/dist/modules/oauth/index.js.map +1 -1
- package/dist/modules/oauth/models.d.ts.map +1 -1
- package/dist/modules/oauth/models.js +2 -1
- package/dist/modules/oauth/models.js.map +1 -1
- package/dist/modules/oauth_backend/index.d.ts +1 -1
- package/dist/modules/oauth_backend/index.d.ts.map +1 -1
- package/dist/modules/oauth_backend/index.js +3 -5
- package/dist/modules/oauth_backend/index.js.map +1 -1
- package/dist/modules/oauth_backend/messages.d.ts +4 -0
- package/dist/modules/oauth_backend/messages.d.ts.map +1 -1
- package/dist/modules/oauth_backend/messages.js +4 -0
- package/dist/modules/oauth_backend/messages.js.map +1 -1
- package/dist/modules/oauth_backend/routes.d.ts.map +1 -1
- package/dist/modules/oauth_backend/routes.js +28 -30
- package/dist/modules/oauth_backend/routes.js.map +1 -1
- package/dist/modules/oauth_backend/screens/index.d.ts +66 -0
- package/dist/modules/oauth_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/oauth_backend/screens/index.js +306 -0
- package/dist/modules/oauth_backend/screens/index.js.map +1 -0
- package/dist/modules/partner/functions.d.ts.map +1 -1
- package/dist/modules/partner/functions.js +74 -6
- package/dist/modules/partner/functions.js.map +1 -1
- package/dist/modules/partner/index.d.ts.map +1 -1
- package/dist/modules/partner/index.js +0 -1
- package/dist/modules/partner/index.js.map +1 -1
- package/dist/modules/partner/models.d.ts +4 -4
- package/dist/modules/partner/models.d.ts.map +1 -1
- package/dist/modules/partner/models.js +9 -7
- package/dist/modules/partner/models.js.map +1 -1
- package/dist/modules/partner/types.d.ts +2 -2
- package/dist/modules/partner/types.js +2 -2
- package/dist/modules/partner_backend/client/address-view.mjs +5 -5
- package/dist/modules/partner_backend/client/address-view.mjs.map +1 -1
- package/dist/modules/partner_backend/client/address.css +22 -10
- package/dist/modules/partner_backend/client/partner.css +116 -0
- package/dist/modules/partner_backend/index.d.ts +1 -1
- package/dist/modules/partner_backend/index.d.ts.map +1 -1
- package/dist/modules/partner_backend/index.js +34 -4
- package/dist/modules/partner_backend/index.js.map +1 -1
- package/dist/modules/partner_backend/menus.js +2 -2
- package/dist/modules/partner_backend/menus.js.map +1 -1
- package/dist/modules/partner_backend/routes.d.ts +3 -1
- package/dist/modules/partner_backend/routes.d.ts.map +1 -1
- package/dist/modules/partner_backend/routes.js +236 -91
- package/dist/modules/partner_backend/routes.js.map +1 -1
- package/dist/modules/partner_backend/screens/form.d.ts +21 -0
- package/dist/modules/partner_backend/screens/form.d.ts.map +1 -0
- package/dist/modules/partner_backend/screens/form.js +101 -0
- package/dist/modules/partner_backend/screens/form.js.map +1 -0
- package/dist/modules/partner_backend/screens/index.d.ts +5 -0
- package/dist/modules/partner_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/partner_backend/screens/index.js +4 -0
- package/dist/modules/partner_backend/screens/index.js.map +1 -0
- package/dist/modules/partner_backend/screens/list.d.ts +6 -0
- package/dist/modules/partner_backend/screens/list.d.ts.map +1 -0
- package/dist/modules/partner_backend/screens/list.js +94 -0
- package/dist/modules/partner_backend/screens/list.js.map +1 -0
- package/dist/modules/partner_backend/screens/new.d.ts +5 -0
- package/dist/modules/partner_backend/screens/new.d.ts.map +1 -0
- package/dist/modules/partner_backend/screens/new.js +58 -0
- package/dist/modules/partner_backend/screens/new.js.map +1 -0
- package/dist/modules/partner_backend/screens/types.d.ts +44 -0
- package/dist/modules/partner_backend/screens/types.d.ts.map +1 -0
- package/dist/modules/partner_backend/screens/types.js +2 -0
- package/dist/modules/partner_backend/screens/types.js.map +1 -0
- package/dist/modules/partner_mail_backend/index.d.ts +5 -0
- package/dist/modules/partner_mail_backend/index.d.ts.map +1 -0
- package/dist/modules/partner_mail_backend/index.js +29 -0
- package/dist/modules/partner_mail_backend/index.js.map +1 -0
- package/dist/modules/pos/functions.d.ts +18 -2
- package/dist/modules/pos/functions.d.ts.map +1 -1
- package/dist/modules/pos/functions.js +3279 -345
- package/dist/modules/pos/functions.js.map +1 -1
- package/dist/modules/pos/index.d.ts +2 -1
- package/dist/modules/pos/index.d.ts.map +1 -1
- package/dist/modules/pos/index.js +5 -5
- package/dist/modules/pos/index.js.map +1 -1
- package/dist/modules/pos/models.d.ts.map +1 -1
- package/dist/modules/pos/models.js +189 -1
- package/dist/modules/pos/models.js.map +1 -1
- package/dist/modules/pos/relations.d.ts.map +1 -1
- package/dist/modules/pos/relations.js +11 -0
- package/dist/modules/pos/relations.js.map +1 -1
- package/dist/modules/pos_backend/index.js +182 -154
- package/dist/modules/pos_backend/index.js.map +1 -1
- package/dist/modules/pos_backend/screens.d.ts +1 -0
- package/dist/modules/pos_backend/screens.d.ts.map +1 -1
- package/dist/modules/pos_backend/screens.js +28 -38
- package/dist/modules/pos_backend/screens.js.map +1 -1
- package/dist/modules/pos_channel/catalog.d.ts +27 -0
- package/dist/modules/pos_channel/catalog.d.ts.map +1 -0
- package/dist/modules/pos_channel/catalog.js +310 -0
- package/dist/modules/pos_channel/catalog.js.map +1 -0
- package/dist/modules/pos_channel/index.d.ts +7 -0
- package/dist/modules/pos_channel/index.d.ts.map +1 -0
- package/dist/modules/pos_channel/index.js +61 -0
- package/dist/modules/pos_channel/index.js.map +1 -0
- package/dist/modules/pos_channel/offline.d.ts +66 -0
- package/dist/modules/pos_channel/offline.d.ts.map +1 -0
- package/dist/modules/pos_channel/offline.js +16 -0
- package/dist/modules/pos_channel/offline.js.map +1 -0
- package/dist/modules/pos_channel/operations.d.ts +422 -0
- package/dist/modules/pos_channel/operations.d.ts.map +1 -0
- package/dist/modules/pos_channel/operations.js +1781 -0
- package/dist/modules/pos_channel/operations.js.map +1 -0
- package/dist/modules/pos_channel/sync.d.ts +6 -0
- package/dist/modules/pos_channel/sync.d.ts.map +1 -0
- package/dist/modules/pos_channel/sync.js +1161 -0
- package/dist/modules/pos_channel/sync.js.map +1 -0
- package/dist/modules/pricing/index.d.ts.map +1 -1
- package/dist/modules/pricing/index.js +3 -4
- package/dist/modules/pricing/index.js.map +1 -1
- package/dist/modules/pricing_backend/index.js +135 -78
- package/dist/modules/pricing_backend/index.js.map +1 -1
- package/dist/modules/pricing_backend/screens/index.d.ts +5 -0
- package/dist/modules/pricing_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/pricing_backend/screens/index.js +4 -0
- package/dist/modules/pricing_backend/screens/index.js.map +1 -0
- package/dist/modules/pricing_backend/screens/pricelist-create.d.ts +10 -0
- package/dist/modules/pricing_backend/screens/pricelist-create.d.ts.map +1 -0
- package/dist/modules/pricing_backend/screens/pricelist-create.js +30 -0
- package/dist/modules/pricing_backend/screens/pricelist-create.js.map +1 -0
- package/dist/modules/pricing_backend/screens/pricelist-detail.d.ts +15 -0
- package/dist/modules/pricing_backend/screens/pricelist-detail.d.ts.map +1 -0
- package/dist/modules/pricing_backend/screens/pricelist-detail.js +164 -0
- package/dist/modules/pricing_backend/screens/pricelist-detail.js.map +1 -0
- package/dist/modules/pricing_backend/screens/pricelists-list.d.ts +11 -0
- package/dist/modules/pricing_backend/screens/pricelists-list.d.ts.map +1 -0
- package/dist/modules/pricing_backend/screens/pricelists-list.js +27 -0
- package/dist/modules/pricing_backend/screens/pricelists-list.js.map +1 -0
- package/dist/modules/pricing_backend/screens/shared.d.ts +21 -0
- package/dist/modules/pricing_backend/screens/shared.d.ts.map +1 -0
- package/dist/modules/pricing_backend/screens/shared.js +3 -0
- package/dist/modules/pricing_backend/screens/shared.js.map +1 -0
- package/dist/modules/product/functions.d.ts.map +1 -1
- package/dist/modules/product/functions.js +679 -50
- package/dist/modules/product/functions.js.map +1 -1
- package/dist/modules/product/index.d.ts +2 -0
- package/dist/modules/product/index.d.ts.map +1 -1
- package/dist/modules/product/index.js +2 -2
- package/dist/modules/product/index.js.map +1 -1
- package/dist/modules/product/models.d.ts +1 -1
- package/dist/modules/product/models.d.ts.map +1 -1
- package/dist/modules/product/models.js +27 -4
- package/dist/modules/product/models.js.map +1 -1
- package/dist/modules/product/relations.d.ts.map +1 -1
- package/dist/modules/product/relations.js +4 -0
- package/dist/modules/product/relations.js.map +1 -1
- package/dist/modules/product/sellable.d.ts +26 -0
- package/dist/modules/product/sellable.d.ts.map +1 -0
- package/dist/modules/product/sellable.js +56 -0
- package/dist/modules/product/sellable.js.map +1 -0
- package/dist/modules/product/types.d.ts +2 -2
- package/dist/modules/product/views.d.ts.map +1 -1
- package/dist/modules/product/views.js +5 -1
- package/dist/modules/product/views.js.map +1 -1
- package/dist/modules/product_activity_backend/index.d.ts.map +1 -1
- package/dist/modules/product_activity_backend/index.js +2 -3
- package/dist/modules/product_activity_backend/index.js.map +1 -1
- package/dist/modules/product_backend/client/media-upload-view.d.mts.map +1 -1
- package/dist/modules/product_backend/client/media-upload-view.mjs +1 -0
- package/dist/modules/product_backend/client/media-upload-view.mjs.map +1 -1
- package/dist/modules/product_backend/client/product.css +964 -0
- package/dist/modules/product_backend/index.d.ts +5 -6
- package/dist/modules/product_backend/index.d.ts.map +1 -1
- package/dist/modules/product_backend/index.js +203 -14
- package/dist/modules/product_backend/index.js.map +1 -1
- package/dist/modules/product_backend/menus.js +2 -2
- package/dist/modules/product_backend/menus.js.map +1 -1
- package/dist/modules/product_backend/relation-control.d.ts +85 -0
- package/dist/modules/product_backend/relation-control.d.ts.map +1 -0
- package/dist/modules/product_backend/relation-control.js +129 -0
- package/dist/modules/product_backend/relation-control.js.map +1 -0
- package/dist/modules/product_backend/routes.d.ts.map +1 -1
- package/dist/modules/product_backend/routes.js +502 -196
- package/dist/modules/product_backend/routes.js.map +1 -1
- package/dist/modules/product_backend/screens/attributes.d.ts +7 -0
- package/dist/modules/product_backend/screens/attributes.d.ts.map +1 -0
- package/dist/modules/product_backend/screens/attributes.js +66 -0
- package/dist/modules/product_backend/screens/attributes.js.map +1 -0
- package/dist/modules/product_backend/screens/create.d.ts +16 -0
- package/dist/modules/product_backend/screens/create.d.ts.map +1 -0
- package/dist/modules/product_backend/screens/create.js +86 -0
- package/dist/modules/product_backend/screens/create.js.map +1 -0
- package/dist/modules/product_backend/screens/detail.d.ts +87 -0
- package/dist/modules/product_backend/screens/detail.d.ts.map +1 -0
- package/dist/modules/product_backend/screens/detail.js +381 -0
- package/dist/modules/product_backend/screens/detail.js.map +1 -0
- package/dist/modules/product_backend/screens/favorite.d.ts +6 -0
- package/dist/modules/product_backend/screens/favorite.d.ts.map +1 -0
- package/dist/modules/product_backend/screens/favorite.js +43 -0
- package/dist/modules/product_backend/screens/favorite.js.map +1 -0
- package/dist/modules/product_backend/screens/index.d.ts +10 -0
- package/dist/modules/product_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/product_backend/screens/index.js +7 -0
- package/dist/modules/product_backend/screens/index.js.map +1 -0
- package/dist/modules/product_backend/screens/list.d.ts +54 -0
- package/dist/modules/product_backend/screens/list.d.ts.map +1 -0
- package/dist/modules/product_backend/screens/list.js +124 -0
- package/dist/modules/product_backend/screens/list.js.map +1 -0
- package/dist/modules/product_backend/screens/variant.d.ts +9 -0
- package/dist/modules/product_backend/screens/variant.d.ts.map +1 -0
- package/dist/modules/product_backend/screens/variant.js +113 -0
- package/dist/modules/product_backend/screens/variant.js.map +1 -0
- package/dist/modules/product_mail_backend/index.d.ts.map +1 -1
- package/dist/modules/product_mail_backend/index.js +2 -3
- package/dist/modules/product_mail_backend/index.js.map +1 -1
- package/dist/modules/product_media/functions.d.ts.map +1 -1
- package/dist/modules/product_media/functions.js +59 -6
- package/dist/modules/product_media/functions.js.map +1 -1
- package/dist/modules/product_media/index.js +0 -1
- package/dist/modules/product_media/index.js.map +1 -1
- package/dist/modules/product_variant_activity_backend/index.d.ts.map +1 -1
- package/dist/modules/product_variant_activity_backend/index.js +2 -3
- package/dist/modules/product_variant_activity_backend/index.js.map +1 -1
- package/dist/modules/product_variant_mail_backend/index.d.ts.map +1 -1
- package/dist/modules/product_variant_mail_backend/index.js +2 -3
- package/dist/modules/product_variant_mail_backend/index.js.map +1 -1
- package/dist/modules/purchase/functions.d.ts.map +1 -1
- package/dist/modules/purchase/functions.js +852 -225
- package/dist/modules/purchase/functions.js.map +1 -1
- package/dist/modules/purchase/index.d.ts.map +1 -1
- package/dist/modules/purchase/index.js +30 -5
- package/dist/modules/purchase/index.js.map +1 -1
- package/dist/modules/purchase/models.d.ts.map +1 -1
- package/dist/modules/purchase/models.js +1 -0
- package/dist/modules/purchase/models.js.map +1 -1
- package/dist/modules/purchase/reports.d.ts +4 -0
- package/dist/modules/purchase/reports.d.ts.map +1 -0
- package/dist/modules/purchase/reports.js +86 -0
- package/dist/modules/purchase/reports.js.map +1 -0
- package/dist/modules/purchase_backend/index.js +513 -112
- package/dist/modules/purchase_backend/index.js.map +1 -1
- package/dist/modules/purchase_backend/screens/index.d.ts +10 -0
- package/dist/modules/purchase_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/purchase_backend/screens/index.js +10 -0
- package/dist/modules/purchase_backend/screens/index.js.map +1 -0
- package/dist/modules/purchase_backend/screens/order-detail.d.ts +31 -0
- package/dist/modules/purchase_backend/screens/order-detail.d.ts.map +1 -0
- package/dist/modules/purchase_backend/screens/order-detail.js +204 -0
- package/dist/modules/purchase_backend/screens/order-detail.js.map +1 -0
- package/dist/modules/purchase_backend/screens/order-list-shared.d.ts +7 -0
- package/dist/modules/purchase_backend/screens/order-list-shared.d.ts.map +1 -0
- package/dist/modules/purchase_backend/screens/order-list-shared.js +58 -0
- package/dist/modules/purchase_backend/screens/order-list-shared.js.map +1 -0
- package/dist/modules/purchase_backend/screens/overview.d.ts +19 -0
- package/dist/modules/purchase_backend/screens/overview.d.ts.map +1 -0
- package/dist/modules/purchase_backend/screens/overview.js +52 -0
- package/dist/modules/purchase_backend/screens/overview.js.map +1 -0
- package/dist/modules/purchase_backend/screens/purchase-orders-list.d.ts +14 -0
- package/dist/modules/purchase_backend/screens/purchase-orders-list.d.ts.map +1 -0
- package/dist/modules/purchase_backend/screens/purchase-orders-list.js +26 -0
- package/dist/modules/purchase_backend/screens/purchase-orders-list.js.map +1 -0
- package/dist/modules/purchase_backend/screens/rfq-create.d.ts +16 -0
- package/dist/modules/purchase_backend/screens/rfq-create.d.ts.map +1 -0
- package/dist/modules/purchase_backend/screens/rfq-create.js +24 -0
- package/dist/modules/purchase_backend/screens/rfq-create.js.map +1 -0
- package/dist/modules/purchase_backend/screens/rfqs-list.d.ts +18 -0
- package/dist/modules/purchase_backend/screens/rfqs-list.d.ts.map +1 -0
- package/dist/modules/purchase_backend/screens/rfqs-list.js +28 -0
- package/dist/modules/purchase_backend/screens/rfqs-list.js.map +1 -0
- package/dist/modules/purchase_backend/screens/shared.d.ts +18 -0
- package/dist/modules/purchase_backend/screens/shared.d.ts.map +1 -0
- package/dist/modules/purchase_backend/screens/shared.js +30 -0
- package/dist/modules/purchase_backend/screens/shared.js.map +1 -0
- package/dist/modules/purchase_backend/screens/vendor-pricelist-create.d.ts +20 -0
- package/dist/modules/purchase_backend/screens/vendor-pricelist-create.d.ts.map +1 -0
- package/dist/modules/purchase_backend/screens/vendor-pricelist-create.js +25 -0
- package/dist/modules/purchase_backend/screens/vendor-pricelist-create.js.map +1 -0
- package/dist/modules/purchase_backend/screens/vendor-pricelists-list.d.ts +33 -0
- package/dist/modules/purchase_backend/screens/vendor-pricelists-list.d.ts.map +1 -0
- package/dist/modules/purchase_backend/screens/vendor-pricelists-list.js +73 -0
- package/dist/modules/purchase_backend/screens/vendor-pricelists-list.js.map +1 -0
- package/dist/modules/purchase_staff_channel/channel-routes.d.ts +2 -0
- package/dist/modules/purchase_staff_channel/channel-routes.d.ts.map +1 -0
- package/dist/modules/purchase_staff_channel/channel-routes.js +119 -0
- package/dist/modules/purchase_staff_channel/channel-routes.js.map +1 -0
- package/dist/modules/purchase_staff_channel/index.d.ts +8 -0
- package/dist/modules/purchase_staff_channel/index.d.ts.map +1 -0
- package/dist/modules/purchase_staff_channel/index.js +45 -0
- package/dist/modules/purchase_staff_channel/index.js.map +1 -0
- package/dist/modules/purchase_staff_channel/order-routes.d.ts +2 -0
- package/dist/modules/purchase_staff_channel/order-routes.d.ts.map +1 -0
- package/dist/modules/purchase_staff_channel/order-routes.js +743 -0
- package/dist/modules/purchase_staff_channel/order-routes.js.map +1 -0
- package/dist/modules/purchase_staff_channel/product-routes.d.ts +2 -0
- package/dist/modules/purchase_staff_channel/product-routes.d.ts.map +1 -0
- package/dist/modules/purchase_staff_channel/product-routes.js +183 -0
- package/dist/modules/purchase_staff_channel/product-routes.js.map +1 -0
- package/dist/modules/purchase_staff_channel/vendor-bill-routes.d.ts +2 -0
- package/dist/modules/purchase_staff_channel/vendor-bill-routes.d.ts.map +1 -0
- package/dist/modules/purchase_staff_channel/vendor-bill-routes.js +189 -0
- package/dist/modules/purchase_staff_channel/vendor-bill-routes.js.map +1 -0
- package/dist/modules/quality/functions.d.ts +3 -0
- package/dist/modules/quality/functions.d.ts.map +1 -0
- package/dist/modules/quality/functions.js +381 -0
- package/dist/modules/quality/functions.js.map +1 -0
- package/dist/modules/quality/index.d.ts +5 -0
- package/dist/modules/quality/index.d.ts.map +1 -0
- package/dist/modules/quality/index.js +19 -0
- package/dist/modules/quality/index.js.map +1 -0
- package/dist/modules/quality/models.d.ts +3 -0
- package/dist/modules/quality/models.d.ts.map +1 -0
- package/dist/modules/quality/models.js +91 -0
- package/dist/modules/quality/models.js.map +1 -0
- package/dist/modules/quality_staff_channel/channel-routes.d.ts +2 -0
- package/dist/modules/quality_staff_channel/channel-routes.d.ts.map +1 -0
- package/dist/modules/quality_staff_channel/channel-routes.js +484 -0
- package/dist/modules/quality_staff_channel/channel-routes.js.map +1 -0
- package/dist/modules/quality_staff_channel/index.d.ts +5 -0
- package/dist/modules/quality_staff_channel/index.d.ts.map +1 -0
- package/dist/modules/quality_staff_channel/index.js +30 -0
- package/dist/modules/quality_staff_channel/index.js.map +1 -0
- package/dist/modules/report/functions.d.ts +3 -0
- package/dist/modules/report/functions.d.ts.map +1 -0
- package/dist/modules/report/functions.js +197 -0
- package/dist/modules/report/functions.js.map +1 -0
- package/dist/modules/report/index.d.ts +3 -0
- package/dist/modules/report/index.d.ts.map +1 -0
- package/dist/modules/report/index.js +21 -0
- package/dist/modules/report/index.js.map +1 -0
- package/dist/modules/report/jobs.d.ts +3 -0
- package/dist/modules/report/jobs.d.ts.map +1 -0
- package/dist/modules/report/jobs.js +18 -0
- package/dist/modules/report/jobs.js.map +1 -0
- package/dist/modules/report/models.d.ts +3 -0
- package/dist/modules/report/models.d.ts.map +1 -0
- package/dist/modules/report/models.js +45 -0
- package/dist/modules/report/models.js.map +1 -0
- package/dist/modules/report/routes.d.ts +19 -0
- package/dist/modules/report/routes.d.ts.map +1 -0
- package/dist/modules/report/routes.js +138 -0
- package/dist/modules/report/routes.js.map +1 -0
- package/dist/modules/report_backend/index.d.ts +3 -0
- package/dist/modules/report_backend/index.d.ts.map +1 -0
- package/dist/modules/report_backend/index.js +67 -0
- package/dist/modules/report_backend/index.js.map +1 -0
- package/dist/modules/report_backend/routes.d.ts +10 -0
- package/dist/modules/report_backend/routes.d.ts.map +1 -0
- package/dist/modules/report_backend/routes.js +87 -0
- package/dist/modules/report_backend/routes.js.map +1 -0
- package/dist/modules/report_backend/screens/index.d.ts +13 -0
- package/dist/modules/report_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/report_backend/screens/index.js +91 -0
- package/dist/modules/report_backend/screens/index.js.map +1 -0
- package/dist/modules/sale/functions.d.ts.map +1 -1
- package/dist/modules/sale/functions.js +806 -238
- package/dist/modules/sale/functions.js.map +1 -1
- package/dist/modules/sale/index.d.ts.map +1 -1
- package/dist/modules/sale/index.js +44 -5
- package/dist/modules/sale/index.js.map +1 -1
- package/dist/modules/sale/models.d.ts.map +1 -1
- package/dist/modules/sale/models.js +47 -1
- package/dist/modules/sale/models.js.map +1 -1
- package/dist/modules/sale/relations.d.ts.map +1 -1
- package/dist/modules/sale/relations.js +6 -0
- package/dist/modules/sale/relations.js.map +1 -1
- package/dist/modules/sale/reports.d.ts +4 -0
- package/dist/modules/sale/reports.d.ts.map +1 -0
- package/dist/modules/sale/reports.js +132 -0
- package/dist/modules/sale/reports.js.map +1 -0
- package/dist/modules/sale/scope.d.ts +31 -0
- package/dist/modules/sale/scope.d.ts.map +1 -0
- package/dist/modules/sale/scope.js +34 -0
- package/dist/modules/sale/scope.js.map +1 -0
- package/dist/modules/sale_activity_backend/index.d.ts.map +1 -1
- package/dist/modules/sale_activity_backend/index.js +0 -1
- package/dist/modules/sale_activity_backend/index.js.map +1 -1
- package/dist/modules/sale_backend/index.js +338 -121
- package/dist/modules/sale_backend/index.js.map +1 -1
- package/dist/modules/sale_backend/screens/index.d.ts +9 -0
- package/dist/modules/sale_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/sale_backend/screens/index.js +9 -0
- package/dist/modules/sale_backend/screens/index.js.map +1 -0
- package/dist/modules/sale_backend/screens/invoicing-policies-list.d.ts +14 -0
- package/dist/modules/sale_backend/screens/invoicing-policies-list.d.ts.map +1 -0
- package/dist/modules/sale_backend/screens/invoicing-policies-list.js +48 -0
- package/dist/modules/sale_backend/screens/invoicing-policies-list.js.map +1 -0
- package/dist/modules/sale_backend/screens/invoicing-policy-create.d.ts +14 -0
- package/dist/modules/sale_backend/screens/invoicing-policy-create.d.ts.map +1 -0
- package/dist/modules/sale_backend/screens/invoicing-policy-create.js +38 -0
- package/dist/modules/sale_backend/screens/invoicing-policy-create.js.map +1 -0
- package/dist/modules/sale_backend/screens/order-detail.d.ts +43 -0
- package/dist/modules/sale_backend/screens/order-detail.d.ts.map +1 -0
- package/dist/modules/sale_backend/screens/order-detail.js +226 -0
- package/dist/modules/sale_backend/screens/order-detail.js.map +1 -0
- package/dist/modules/sale_backend/screens/overview.d.ts +31 -0
- package/dist/modules/sale_backend/screens/overview.d.ts.map +1 -0
- package/dist/modules/sale_backend/screens/overview.js +73 -0
- package/dist/modules/sale_backend/screens/overview.js.map +1 -0
- package/dist/modules/sale_backend/screens/quotation-create.d.ts +13 -0
- package/dist/modules/sale_backend/screens/quotation-create.d.ts.map +1 -0
- package/dist/modules/sale_backend/screens/quotation-create.js +19 -0
- package/dist/modules/sale_backend/screens/quotation-create.js.map +1 -0
- package/dist/modules/sale_backend/screens/quotations-list.d.ts +25 -0
- package/dist/modules/sale_backend/screens/quotations-list.d.ts.map +1 -0
- package/dist/modules/sale_backend/screens/quotations-list.js +96 -0
- package/dist/modules/sale_backend/screens/quotations-list.js.map +1 -0
- package/dist/modules/sale_backend/screens/sales-orders-list.d.ts +25 -0
- package/dist/modules/sale_backend/screens/sales-orders-list.d.ts.map +1 -0
- package/dist/modules/sale_backend/screens/sales-orders-list.js +100 -0
- package/dist/modules/sale_backend/screens/sales-orders-list.js.map +1 -0
- package/dist/modules/sale_backend/screens/shared.d.ts +4 -0
- package/dist/modules/sale_backend/screens/shared.d.ts.map +1 -0
- package/dist/modules/sale_backend/screens/shared.js +4 -0
- package/dist/modules/sale_backend/screens/shared.js.map +1 -0
- package/dist/modules/sale_mail_backend/index.d.ts.map +1 -1
- package/dist/modules/sale_mail_backend/index.js +0 -1
- package/dist/modules/sale_mail_backend/index.js.map +1 -1
- package/dist/modules/sale_staff_channel/channel-routes.d.ts +2 -0
- package/dist/modules/sale_staff_channel/channel-routes.d.ts.map +1 -0
- package/dist/modules/sale_staff_channel/channel-routes.js +285 -0
- package/dist/modules/sale_staff_channel/channel-routes.js.map +1 -0
- package/dist/modules/sale_staff_channel/index.d.ts +7 -0
- package/dist/modules/sale_staff_channel/index.d.ts.map +1 -0
- package/dist/modules/sale_staff_channel/index.js +44 -0
- package/dist/modules/sale_staff_channel/index.js.map +1 -0
- package/dist/modules/sale_staff_channel/order-routes.d.ts +2 -0
- package/dist/modules/sale_staff_channel/order-routes.d.ts.map +1 -0
- package/dist/modules/sale_staff_channel/order-routes.js +647 -0
- package/dist/modules/sale_staff_channel/order-routes.js.map +1 -0
- package/dist/modules/sale_staff_channel/product-routes.d.ts +2 -0
- package/dist/modules/sale_staff_channel/product-routes.d.ts.map +1 -0
- package/dist/modules/sale_staff_channel/product-routes.js +183 -0
- package/dist/modules/sale_staff_channel/product-routes.js.map +1 -0
- package/dist/modules/stock/functions.d.ts.map +1 -1
- package/dist/modules/stock/functions.js +1239 -332
- package/dist/modules/stock/functions.js.map +1 -1
- package/dist/modules/stock/index.d.ts +2 -0
- package/dist/modules/stock/index.d.ts.map +1 -1
- package/dist/modules/stock/index.js +29 -6
- package/dist/modules/stock/index.js.map +1 -1
- package/dist/modules/stock/models.d.ts.map +1 -1
- package/dist/modules/stock/models.js +1 -0
- package/dist/modules/stock/models.js.map +1 -1
- package/dist/modules/stock/reports.d.ts +4 -0
- package/dist/modules/stock/reports.d.ts.map +1 -0
- package/dist/modules/stock/reports.js +100 -0
- package/dist/modules/stock/reports.js.map +1 -0
- package/dist/modules/stock/routing.d.ts +1 -1
- package/dist/modules/stock/routing.d.ts.map +1 -1
- package/dist/modules/stock/routing.js +35 -30
- package/dist/modules/stock/routing.js.map +1 -1
- package/dist/modules/stock/scope.d.ts +23 -0
- package/dist/modules/stock/scope.d.ts.map +1 -0
- package/dist/modules/stock/scope.js +26 -0
- package/dist/modules/stock/scope.js.map +1 -0
- package/dist/modules/stock/units.d.ts +14 -0
- package/dist/modules/stock/units.d.ts.map +1 -0
- package/dist/modules/stock/units.js +50 -0
- package/dist/modules/stock/units.js.map +1 -0
- package/dist/modules/stock_activity_backend/index.d.ts.map +1 -1
- package/dist/modules/stock_activity_backend/index.js +0 -1
- package/dist/modules/stock_activity_backend/index.js.map +1 -1
- package/dist/modules/stock_backend/client/editor-view.d.mts.map +1 -1
- package/dist/modules/stock_backend/client/editor-view.mjs +12 -10
- package/dist/modules/stock_backend/client/editor-view.mjs.map +1 -1
- package/dist/modules/stock_backend/index.js +27 -20
- package/dist/modules/stock_backend/index.js.map +1 -1
- package/dist/modules/stock_backend/routes.d.ts.map +1 -1
- package/dist/modules/stock_backend/routes.js +485 -232
- package/dist/modules/stock_backend/routes.js.map +1 -1
- package/dist/modules/stock_backend/screens/forecast.d.ts +28 -0
- package/dist/modules/stock_backend/screens/forecast.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/forecast.js +108 -0
- package/dist/modules/stock_backend/screens/forecast.js.map +1 -0
- package/dist/modules/stock_backend/screens/index.d.ts +22 -0
- package/dist/modules/stock_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/index.js +22 -0
- package/dist/modules/stock_backend/screens/index.js.map +1 -0
- package/dist/modules/stock_backend/screens/inventory.d.ts +27 -0
- package/dist/modules/stock_backend/screens/inventory.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/inventory.js +128 -0
- package/dist/modules/stock_backend/screens/inventory.js.map +1 -0
- package/dist/modules/stock_backend/screens/location-create.d.ts +15 -0
- package/dist/modules/stock_backend/screens/location-create.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/location-create.js +75 -0
- package/dist/modules/stock_backend/screens/location-create.js.map +1 -0
- package/dist/modules/stock_backend/screens/locations-list.d.ts +21 -0
- package/dist/modules/stock_backend/screens/locations-list.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/locations-list.js +62 -0
- package/dist/modules/stock_backend/screens/locations-list.js.map +1 -0
- package/dist/modules/stock_backend/screens/lot-create.d.ts +14 -0
- package/dist/modules/stock_backend/screens/lot-create.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/lot-create.js +60 -0
- package/dist/modules/stock_backend/screens/lot-create.js.map +1 -0
- package/dist/modules/stock_backend/screens/lot-detail.d.ts +30 -0
- package/dist/modules/stock_backend/screens/lot-detail.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/lot-detail.js +84 -0
- package/dist/modules/stock_backend/screens/lot-detail.js.map +1 -0
- package/dist/modules/stock_backend/screens/lots-list.d.ts +25 -0
- package/dist/modules/stock_backend/screens/lots-list.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/lots-list.js +54 -0
- package/dist/modules/stock_backend/screens/lots-list.js.map +1 -0
- package/dist/modules/stock_backend/screens/picking-type-create.d.ts +15 -0
- package/dist/modules/stock_backend/screens/picking-type-create.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/picking-type-create.js +89 -0
- package/dist/modules/stock_backend/screens/picking-type-create.js.map +1 -0
- package/dist/modules/stock_backend/screens/picking-types-list.d.ts +22 -0
- package/dist/modules/stock_backend/screens/picking-types-list.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/picking-types-list.js +80 -0
- package/dist/modules/stock_backend/screens/picking-types-list.js.map +1 -0
- package/dist/modules/stock_backend/screens/replenishment-create.d.ts +17 -0
- package/dist/modules/stock_backend/screens/replenishment-create.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/replenishment-create.js +74 -0
- package/dist/modules/stock_backend/screens/replenishment-create.js.map +1 -0
- package/dist/modules/stock_backend/screens/replenishment-list.d.ts +29 -0
- package/dist/modules/stock_backend/screens/replenishment-list.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/replenishment-list.js +84 -0
- package/dist/modules/stock_backend/screens/replenishment-list.js.map +1 -0
- package/dist/modules/stock_backend/screens/shared.d.ts +12 -0
- package/dist/modules/stock_backend/screens/shared.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/shared.js +29 -0
- package/dist/modules/stock_backend/screens/shared.js.map +1 -0
- package/dist/modules/stock_backend/screens/stock-route-create.d.ts +13 -0
- package/dist/modules/stock_backend/screens/stock-route-create.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/stock-route-create.js +52 -0
- package/dist/modules/stock_backend/screens/stock-route-create.js.map +1 -0
- package/dist/modules/stock_backend/screens/stock-route-detail.d.ts +30 -0
- package/dist/modules/stock_backend/screens/stock-route-detail.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/stock-route-detail.js +131 -0
- package/dist/modules/stock_backend/screens/stock-route-detail.js.map +1 -0
- package/dist/modules/stock_backend/screens/stock-routes-list.d.ts +22 -0
- package/dist/modules/stock_backend/screens/stock-routes-list.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/stock-routes-list.js +51 -0
- package/dist/modules/stock_backend/screens/stock-routes-list.js.map +1 -0
- package/dist/modules/stock_backend/screens/stock.d.ts +7 -0
- package/dist/modules/stock_backend/screens/stock.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/stock.js +13 -0
- package/dist/modules/stock_backend/screens/stock.js.map +1 -0
- package/dist/modules/stock_backend/screens/transfer-create.d.ts +13 -0
- package/dist/modules/stock_backend/screens/transfer-create.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/transfer-create.js +38 -0
- package/dist/modules/stock_backend/screens/transfer-create.js.map +1 -0
- package/dist/modules/stock_backend/screens/transfer-detail.d.ts +27 -0
- package/dist/modules/stock_backend/screens/transfer-detail.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/transfer-detail.js +91 -0
- package/dist/modules/stock_backend/screens/transfer-detail.js.map +1 -0
- package/dist/modules/stock_backend/screens/transfers-list.d.ts +25 -0
- package/dist/modules/stock_backend/screens/transfers-list.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/transfers-list.js +81 -0
- package/dist/modules/stock_backend/screens/transfers-list.js.map +1 -0
- package/dist/modules/stock_backend/screens/warehouse-create.d.ts +13 -0
- package/dist/modules/stock_backend/screens/warehouse-create.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/warehouse-create.js +79 -0
- package/dist/modules/stock_backend/screens/warehouse-create.js.map +1 -0
- package/dist/modules/stock_backend/screens/warehouses-list.d.ts +21 -0
- package/dist/modules/stock_backend/screens/warehouses-list.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/warehouses-list.js +60 -0
- package/dist/modules/stock_backend/screens/warehouses-list.js.map +1 -0
- package/dist/modules/stock_lot_activity_backend/index.d.ts.map +1 -1
- package/dist/modules/stock_lot_activity_backend/index.js +0 -1
- package/dist/modules/stock_lot_activity_backend/index.js.map +1 -1
- package/dist/modules/stock_lot_mail_backend/index.d.ts.map +1 -1
- package/dist/modules/stock_lot_mail_backend/index.js +0 -1
- package/dist/modules/stock_lot_mail_backend/index.js.map +1 -1
- package/dist/modules/stock_mail_backend/index.d.ts.map +1 -1
- package/dist/modules/stock_mail_backend/index.js +0 -1
- package/dist/modules/stock_mail_backend/index.js.map +1 -1
- package/dist/modules/stock_mail_inbound/index.d.ts.map +1 -1
- package/dist/modules/stock_mail_inbound/index.js +0 -2
- package/dist/modules/stock_mail_inbound/index.js.map +1 -1
- package/dist/modules/stock_staff_channel/channel-routes.d.ts +656 -0
- package/dist/modules/stock_staff_channel/channel-routes.d.ts.map +1 -0
- package/dist/modules/stock_staff_channel/channel-routes.js +445 -0
- package/dist/modules/stock_staff_channel/channel-routes.js.map +1 -0
- package/dist/modules/stock_staff_channel/functions.d.ts +3 -0
- package/dist/modules/stock_staff_channel/functions.d.ts.map +1 -0
- package/dist/modules/stock_staff_channel/functions.js +954 -0
- package/dist/modules/stock_staff_channel/functions.js.map +1 -0
- package/dist/modules/stock_staff_channel/index.d.ts +8 -0
- package/dist/modules/stock_staff_channel/index.d.ts.map +1 -0
- package/dist/modules/stock_staff_channel/index.js +37 -0
- package/dist/modules/stock_staff_channel/index.js.map +1 -0
- package/dist/modules/stock_staff_channel/models.d.ts +4 -0
- package/dist/modules/stock_staff_channel/models.d.ts.map +1 -0
- package/dist/modules/stock_staff_channel/models.js +119 -0
- package/dist/modules/stock_staff_channel/models.js.map +1 -0
- package/dist/modules/stock_staff_channel/operation-routes.d.ts +2 -0
- package/dist/modules/stock_staff_channel/operation-routes.d.ts.map +1 -0
- package/dist/modules/stock_staff_channel/operation-routes.js +1258 -0
- package/dist/modules/stock_staff_channel/operation-routes.js.map +1 -0
- package/dist/modules/storage/functions.d.ts.map +1 -1
- package/dist/modules/storage/functions.js +18 -5
- package/dist/modules/storage/functions.js.map +1 -1
- package/dist/modules/storage/index.js +0 -1
- package/dist/modules/storage/index.js.map +1 -1
- package/dist/modules/storage/jobs.d.ts +21 -1
- package/dist/modules/storage/jobs.d.ts.map +1 -1
- package/dist/modules/storage/jobs.js +142 -2
- package/dist/modules/storage/jobs.js.map +1 -1
- package/dist/modules/storage/models.d.ts.map +1 -1
- package/dist/modules/storage/models.js +2 -0
- package/dist/modules/storage/models.js.map +1 -1
- package/dist/modules/storage/policy.d.ts +5 -0
- package/dist/modules/storage/policy.d.ts.map +1 -0
- package/dist/modules/storage/policy.js +13 -0
- package/dist/modules/storage/policy.js.map +1 -0
- package/dist/modules/storage/routes.d.ts +1 -0
- package/dist/modules/storage/routes.d.ts.map +1 -1
- package/dist/modules/storage/routes.js +19 -15
- package/dist/modules/storage/routes.js.map +1 -1
- package/dist/modules/uom/convert.d.ts +1 -1
- package/dist/modules/uom/convert.js +2 -2
- package/dist/modules/uom/convert.js.map +1 -1
- package/dist/modules/uom/functions.d.ts.map +1 -1
- package/dist/modules/uom/functions.js +39 -4
- package/dist/modules/uom/functions.js.map +1 -1
- package/dist/modules/uom/index.d.ts.map +1 -1
- package/dist/modules/uom/index.js +1 -2
- package/dist/modules/uom/index.js.map +1 -1
- package/dist/modules/uom/messages.js +2 -2
- package/dist/modules/uom/messages.js.map +1 -1
- package/dist/modules/uom/models.d.ts +1 -1
- package/dist/modules/uom/models.d.ts.map +1 -1
- package/dist/modules/uom/models.js +1 -1
- package/dist/modules/uom/models.js.map +1 -1
- package/dist/modules/user/authorization.d.ts +80 -0
- package/dist/modules/user/authorization.d.ts.map +1 -0
- package/dist/modules/user/authorization.js +1039 -0
- package/dist/modules/user/authorization.js.map +1 -0
- package/dist/modules/user/functions.d.ts.map +1 -1
- package/dist/modules/user/functions.js +188 -32
- package/dist/modules/user/functions.js.map +1 -1
- package/dist/modules/user/index.d.ts +4 -1
- package/dist/modules/user/index.d.ts.map +1 -1
- package/dist/modules/user/index.js +2 -3
- package/dist/modules/user/index.js.map +1 -1
- package/dist/modules/user/login.d.ts +1 -27
- package/dist/modules/user/login.d.ts.map +1 -1
- package/dist/modules/user/login.js +5 -45
- package/dist/modules/user/login.js.map +1 -1
- package/dist/modules/user/messages.d.ts +6 -0
- package/dist/modules/user/messages.d.ts.map +1 -1
- package/dist/modules/user/messages.js +6 -0
- package/dist/modules/user/messages.js.map +1 -1
- package/dist/modules/user/models.d.ts +1 -1
- package/dist/modules/user/models.d.ts.map +1 -1
- package/dist/modules/user/models.js +73 -9
- package/dist/modules/user/models.js.map +1 -1
- package/dist/modules/user/relations.d.ts.map +1 -1
- package/dist/modules/user/relations.js +6 -0
- package/dist/modules/user/relations.js.map +1 -1
- package/dist/modules/user/roles.d.ts +11 -1
- package/dist/modules/user/roles.d.ts.map +1 -1
- package/dist/modules/user/roles.js +402 -117
- package/dist/modules/user/roles.js.map +1 -1
- package/dist/modules/user/routes.js +1 -1
- package/dist/modules/user/routes.js.map +1 -1
- package/dist/modules/user_backend/index.d.ts +1 -1
- package/dist/modules/user_backend/index.d.ts.map +1 -1
- package/dist/modules/user_backend/index.js +1 -3
- package/dist/modules/user_backend/index.js.map +1 -1
- package/dist/modules/user_backend/messages.d.ts +64 -0
- package/dist/modules/user_backend/messages.d.ts.map +1 -1
- package/dist/modules/user_backend/messages.js +64 -0
- package/dist/modules/user_backend/messages.js.map +1 -1
- package/dist/modules/user_backend/routes.d.ts.map +1 -1
- package/dist/modules/user_backend/routes.js +379 -69
- package/dist/modules/user_backend/routes.js.map +1 -1
- package/dist/modules/user_backend/screens/index.d.ts +11 -0
- package/dist/modules/user_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/user_backend/screens/index.js +8 -0
- package/dist/modules/user_backend/screens/index.js.map +1 -0
- package/dist/modules/user_backend/screens/presets-form.d.ts +16 -0
- package/dist/modules/user_backend/screens/presets-form.d.ts.map +1 -0
- package/dist/modules/user_backend/screens/presets-form.js +37 -0
- package/dist/modules/user_backend/screens/presets-form.js.map +1 -0
- package/dist/modules/user_backend/screens/profile-form.d.ts +14 -0
- package/dist/modules/user_backend/screens/profile-form.d.ts.map +1 -0
- package/dist/modules/user_backend/screens/profile-form.js +37 -0
- package/dist/modules/user_backend/screens/profile-form.js.map +1 -0
- package/dist/modules/user_backend/screens/role-form.d.ts +21 -0
- package/dist/modules/user_backend/screens/role-form.d.ts.map +1 -0
- package/dist/modules/user_backend/screens/role-form.js +93 -0
- package/dist/modules/user_backend/screens/role-form.js.map +1 -0
- package/dist/modules/user_backend/screens/roles-list.d.ts +15 -0
- package/dist/modules/user_backend/screens/roles-list.d.ts.map +1 -0
- package/dist/modules/user_backend/screens/roles-list.js +48 -0
- package/dist/modules/user_backend/screens/roles-list.js.map +1 -0
- package/dist/modules/user_backend/screens/sessions.d.ts +5 -0
- package/dist/modules/user_backend/screens/sessions.d.ts.map +1 -0
- package/dist/modules/user_backend/screens/sessions.js +35 -0
- package/dist/modules/user_backend/screens/sessions.js.map +1 -0
- package/dist/modules/user_backend/screens/types.d.ts +68 -0
- package/dist/modules/user_backend/screens/types.d.ts.map +1 -0
- package/dist/modules/user_backend/screens/types.js +2 -0
- package/dist/modules/user_backend/screens/types.js.map +1 -0
- package/dist/modules/user_backend/screens/user-form.d.ts +56 -0
- package/dist/modules/user_backend/screens/user-form.d.ts.map +1 -0
- package/dist/modules/user_backend/screens/user-form.js +202 -0
- package/dist/modules/user_backend/screens/user-form.js.map +1 -0
- package/dist/modules/user_backend/screens/users-list.d.ts +17 -0
- package/dist/modules/user_backend/screens/users-list.d.ts.map +1 -0
- package/dist/modules/user_backend/screens/users-list.js +56 -0
- package/dist/modules/user_backend/screens/users-list.js.map +1 -0
- package/dist/modules/website/cms.d.ts +18 -1
- package/dist/modules/website/cms.d.ts.map +1 -1
- package/dist/modules/website/cms.js +655 -43
- package/dist/modules/website/cms.js.map +1 -1
- package/dist/modules/website/customer.d.ts.map +1 -1
- package/dist/modules/website/customer.js +249 -1
- package/dist/modules/website/customer.js.map +1 -1
- package/dist/modules/website/index.d.ts.map +1 -1
- package/dist/modules/website/index.js +38 -4
- package/dist/modules/website/index.js.map +1 -1
- package/dist/modules/website/media-usage.d.ts +38 -0
- package/dist/modules/website/media-usage.d.ts.map +1 -0
- package/dist/modules/website/media-usage.js +87 -0
- package/dist/modules/website/media-usage.js.map +1 -0
- package/dist/modules/website/models.d.ts.map +1 -1
- package/dist/modules/website/models.js +101 -0
- package/dist/modules/website/models.js.map +1 -1
- package/dist/modules/website/paths.d.ts +31 -0
- package/dist/modules/website/paths.d.ts.map +1 -0
- package/dist/modules/website/paths.js +48 -0
- package/dist/modules/website/paths.js.map +1 -0
- package/dist/modules/website/publication.d.ts +3 -0
- package/dist/modules/website/publication.d.ts.map +1 -0
- package/dist/modules/website/publication.js +366 -0
- package/dist/modules/website/publication.js.map +1 -0
- package/dist/modules/website/renderable.d.ts +32 -0
- package/dist/modules/website/renderable.d.ts.map +1 -0
- package/dist/modules/website/renderable.js +59 -0
- package/dist/modules/website/renderable.js.map +1 -0
- package/dist/modules/website/sections.d.ts.map +1 -1
- package/dist/modules/website/sections.js +25 -1
- package/dist/modules/website/sections.js.map +1 -1
- package/dist/modules/website_backend/csv.d.ts +23 -0
- package/dist/modules/website_backend/csv.d.ts.map +1 -0
- package/dist/modules/website_backend/csv.js +31 -0
- package/dist/modules/website_backend/csv.js.map +1 -0
- package/dist/modules/website_backend/index.js +398 -2
- package/dist/modules/website_backend/index.js.map +1 -1
- package/dist/modules/website_backend/menus.d.ts.map +1 -1
- package/dist/modules/website_backend/menus.js +39 -6
- package/dist/modules/website_backend/menus.js.map +1 -1
- package/dist/modules/website_backend/routes.d.ts.map +1 -1
- package/dist/modules/website_backend/routes.js +1079 -138
- package/dist/modules/website_backend/routes.js.map +1 -1
- package/dist/modules/website_backend/screens/index.d.ts +425 -0
- package/dist/modules/website_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/website_backend/screens/index.js +1778 -0
- package/dist/modules/website_backend/screens/index.js.map +1 -0
- package/dist/modules/website_backend/screens/page-frame.d.ts +16 -0
- package/dist/modules/website_backend/screens/page-frame.d.ts.map +1 -0
- package/dist/modules/website_backend/screens/page-frame.js +13 -0
- package/dist/modules/website_backend/screens/page-frame.js.map +1 -0
- package/dist/modules/website_form/audit.d.ts +27 -0
- package/dist/modules/website_form/audit.d.ts.map +1 -0
- package/dist/modules/website_form/audit.js +30 -0
- package/dist/modules/website_form/audit.js.map +1 -0
- package/dist/modules/website_form/functions.d.ts.map +1 -1
- package/dist/modules/website_form/functions.js +416 -12
- package/dist/modules/website_form/functions.js.map +1 -1
- package/dist/modules/website_form/index.js +24 -2
- package/dist/modules/website_form/index.js.map +1 -1
- package/dist/modules/website_form/jobs.d.ts +11 -0
- package/dist/modules/website_form/jobs.d.ts.map +1 -0
- package/dist/modules/website_form/jobs.js +80 -0
- package/dist/modules/website_form/jobs.js.map +1 -0
- package/dist/modules/website_form/models.d.ts.map +1 -1
- package/dist/modules/website_form/models.js +89 -0
- package/dist/modules/website_form/models.js.map +1 -1
- package/dist/modules/website_form/purge.d.ts +22 -0
- package/dist/modules/website_form/purge.d.ts.map +1 -0
- package/dist/modules/website_form/purge.js +59 -0
- package/dist/modules/website_form/purge.js.map +1 -0
- package/dist/modules/website_form/retention.d.ts +70 -0
- package/dist/modules/website_form/retention.d.ts.map +1 -0
- package/dist/modules/website_form/retention.js +145 -0
- package/dist/modules/website_form/retention.js.map +1 -0
- package/dist/modules/website_form/routes.d.ts.map +1 -1
- package/dist/modules/website_form/routes.js +37 -3
- package/dist/modules/website_form/routes.js.map +1 -1
- package/dist/modules/website_form_mail/index.d.ts +36 -0
- package/dist/modules/website_form_mail/index.d.ts.map +1 -0
- package/dist/modules/website_form_mail/index.js +137 -0
- package/dist/modules/website_form_mail/index.js.map +1 -0
- package/dist/modules/website_hospitality/channel-routes.d.ts +2 -0
- package/dist/modules/website_hospitality/channel-routes.d.ts.map +1 -0
- package/dist/modules/website_hospitality/channel-routes.js +355 -0
- package/dist/modules/website_hospitality/channel-routes.js.map +1 -0
- package/dist/modules/website_hospitality/functions.d.ts.map +1 -1
- package/dist/modules/website_hospitality/functions.js +27 -2
- package/dist/modules/website_hospitality/functions.js.map +1 -1
- package/dist/modules/website_hospitality/index.js +4 -3
- package/dist/modules/website_hospitality/index.js.map +1 -1
- package/dist/modules/website_hospitality/models.d.ts.map +1 -1
- package/dist/modules/website_hospitality/models.js +2 -0
- package/dist/modules/website_hospitality/models.js.map +1 -1
- package/dist/modules/website_menu/functions.d.ts.map +1 -1
- package/dist/modules/website_menu/functions.js +235 -9
- package/dist/modules/website_menu/functions.js.map +1 -1
- package/dist/modules/website_menu/index.js +8 -1
- package/dist/modules/website_menu/index.js.map +1 -1
- package/dist/modules/website_retail/channel-routes.d.ts +2 -0
- package/dist/modules/website_retail/channel-routes.d.ts.map +1 -0
- package/dist/modules/website_retail/channel-routes.js +305 -0
- package/dist/modules/website_retail/channel-routes.js.map +1 -0
- package/dist/modules/website_retail/functions.d.ts +14 -1
- package/dist/modules/website_retail/functions.d.ts.map +1 -1
- package/dist/modules/website_retail/functions.js +6 -6
- package/dist/modules/website_retail/functions.js.map +1 -1
- package/dist/modules/website_retail/index.js +24 -3
- package/dist/modules/website_retail/index.js.map +1 -1
- package/dist/modules/website_retail/models.d.ts.map +1 -1
- package/dist/modules/website_retail/models.js +30 -0
- package/dist/modules/website_retail/models.js.map +1 -1
- package/dist/modules/website_retail/online.d.ts +3 -0
- package/dist/modules/website_retail/online.d.ts.map +1 -0
- package/dist/modules/website_retail/online.js +710 -0
- package/dist/modules/website_retail/online.js.map +1 -0
- package/dist/modules/website_search/client/search.d.mts +16 -2
- package/dist/modules/website_search/client/search.d.mts.map +1 -1
- package/dist/modules/website_search/client/search.mjs +112 -6
- package/dist/modules/website_search/client/search.mjs.map +1 -1
- package/dist/modules/website_search/functions.d.ts +3 -0
- package/dist/modules/website_search/functions.d.ts.map +1 -0
- package/dist/modules/website_search/functions.js +129 -0
- package/dist/modules/website_search/functions.js.map +1 -0
- package/dist/modules/website_search/index.js +6 -1
- package/dist/modules/website_search/index.js.map +1 -1
- package/dist/modules/website_search/islands.d.ts +6 -0
- package/dist/modules/website_search/islands.d.ts.map +1 -1
- package/dist/modules/website_search/islands.js +8 -2
- package/dist/modules/website_search/islands.js.map +1 -1
- package/dist/modules/website_search/jobs.d.ts +3 -0
- package/dist/modules/website_search/jobs.d.ts.map +1 -0
- package/dist/modules/website_search/jobs.js +101 -0
- package/dist/modules/website_search/jobs.js.map +1 -0
- package/dist/modules/website_search/models.d.ts +15 -0
- package/dist/modules/website_search/models.d.ts.map +1 -0
- package/dist/modules/website_search/models.js +58 -0
- package/dist/modules/website_search/models.js.map +1 -0
- package/dist/modules/website_search/rebuild.d.ts +33 -0
- package/dist/modules/website_search/rebuild.d.ts.map +1 -0
- package/dist/modules/website_search/rebuild.js +125 -0
- package/dist/modules/website_search/rebuild.js.map +1 -0
- package/dist/modules/website_seo/functions.d.ts +3 -0
- package/dist/modules/website_seo/functions.d.ts.map +1 -0
- package/dist/modules/website_seo/functions.js +164 -0
- package/dist/modules/website_seo/functions.js.map +1 -0
- package/dist/modules/website_seo/index.js +15 -5
- package/dist/modules/website_seo/index.js.map +1 -1
- package/dist/modules/website_seo/projection.d.ts +52 -0
- package/dist/modules/website_seo/projection.d.ts.map +1 -0
- package/dist/modules/website_seo/projection.js +129 -0
- package/dist/modules/website_seo/projection.js.map +1 -0
- package/dist/modules/website_seo/routes.d.ts +3 -0
- package/dist/modules/website_seo/routes.d.ts.map +1 -0
- package/dist/modules/website_seo/routes.js +56 -0
- package/dist/modules/website_seo/routes.js.map +1 -0
- package/dist/permission-catalogue.d.ts +5 -0
- package/dist/permission-catalogue.d.ts.map +1 -0
- package/dist/permission-catalogue.js +1518 -0
- package/dist/permission-catalogue.js.map +1 -0
- package/dist/scaffold/index.d.ts +2 -0
- package/dist/scaffold/index.d.ts.map +1 -0
- package/dist/scaffold/index.js +31 -0
- package/dist/scaffold/index.js.map +1 -0
- package/dist/scaffold/templates/README.md.tmpl +17 -0
- package/dist/scaffold/templates/gitignore.tmpl +2 -0
- package/dist/scaffold/templates/ket.workspace.mjs.tmpl +1 -0
- package/dist/scaffold/templates/package.json.tmpl +15 -0
- package/dist/themes/hospitality/templates/website.columns.ktl +4 -0
- package/dist/themes/paper/templates/website.columns.ktl +4 -0
- package/dist/ui/actions.d.ts +4 -0
- package/dist/ui/actions.d.ts.map +1 -1
- package/dist/ui/actions.js +1 -1
- package/dist/ui/actions.js.map +1 -1
- package/dist/ui/activity.d.ts +1 -1
- package/dist/ui/activity.d.ts.map +1 -1
- package/dist/ui/activity.js +3 -5
- package/dist/ui/activity.js.map +1 -1
- package/dist/ui/attachments.js +1 -1
- package/dist/ui/attachments.js.map +1 -1
- package/dist/ui/auth.d.ts +36 -0
- package/dist/ui/auth.d.ts.map +1 -1
- package/dist/ui/auth.js +55 -0
- package/dist/ui/auth.js.map +1 -1
- package/dist/ui/board-page.d.ts +6 -0
- package/dist/ui/board-page.d.ts.map +1 -0
- package/dist/ui/board-page.js +4 -0
- package/dist/ui/board-page.js.map +1 -0
- package/dist/ui/charts.d.ts +83 -0
- package/dist/ui/charts.d.ts.map +1 -0
- package/dist/ui/charts.js +105 -0
- package/dist/ui/charts.js.map +1 -0
- package/dist/ui/chrome.d.ts +45 -2
- package/dist/ui/chrome.d.ts.map +1 -1
- package/dist/ui/chrome.js +47 -5
- package/dist/ui/chrome.js.map +1 -1
- package/dist/ui/client/activity-view.mjs +7 -7
- package/dist/ui/client/activity-view.mjs.map +1 -1
- package/dist/ui/client/activity.css +6 -34
- package/dist/ui/client/calendar-view.d.mts.map +1 -1
- package/dist/ui/client/calendar-view.mjs +7 -6
- package/dist/ui/client/calendar-view.mjs.map +1 -1
- package/dist/ui/client/calendar.css +4 -14
- package/dist/ui/client/chart-view.d.ts +51 -0
- package/dist/ui/client/chart-view.d.ts.map +1 -0
- package/dist/ui/client/chart-view.js +192 -0
- package/dist/ui/client/chart-view.js.map +1 -0
- package/dist/ui/client/flow-app.css +387 -0
- package/dist/ui/client/flow-board-view.d.mts +8 -0
- package/dist/ui/client/flow-board-view.d.mts.map +1 -0
- package/dist/ui/client/flow-board-view.mjs +161 -0
- package/dist/ui/client/flow-board-view.mjs.map +1 -0
- package/dist/ui/client/flow-board.d.mts +3 -0
- package/dist/ui/client/flow-board.d.mts.map +1 -0
- package/dist/ui/client/flow-board.mjs +7 -0
- package/dist/ui/client/flow-board.mjs.map +1 -0
- package/dist/ui/client/flow-map-view.d.mts +2 -0
- package/dist/ui/client/flow-map-view.d.mts.map +1 -0
- package/dist/ui/client/flow-map-view.mjs +235 -0
- package/dist/ui/client/flow-map-view.mjs.map +1 -0
- package/dist/ui/client/flow-map.d.mts +3 -0
- package/dist/ui/client/flow-map.d.mts.map +1 -0
- package/dist/ui/client/flow-map.mjs +7 -0
- package/dist/ui/client/flow-map.mjs.map +1 -0
- package/dist/ui/client/live-doc-blocks.d.ts +19 -0
- package/dist/ui/client/live-doc-blocks.d.ts.map +1 -0
- package/dist/ui/client/live-doc-blocks.js +23 -0
- package/dist/ui/client/live-doc-blocks.js.map +1 -0
- package/dist/ui/client/live-doc-markdown.d.ts +18 -0
- package/dist/ui/client/live-doc-markdown.d.ts.map +1 -0
- package/dist/ui/client/live-doc-markdown.js +175 -0
- package/dist/ui/client/live-doc-markdown.js.map +1 -0
- package/dist/ui/client/live-doc-shell.d.ts +101 -0
- package/dist/ui/client/live-doc-shell.d.ts.map +1 -0
- package/dist/ui/client/live-doc-shell.js +251 -0
- package/dist/ui/client/live-doc-shell.js.map +1 -0
- package/dist/ui/client/live-doc-view.d.ts +33 -0
- package/dist/ui/client/live-doc-view.d.ts.map +1 -0
- package/dist/ui/client/live-doc-view.js +1237 -0
- package/dist/ui/client/live-doc-view.js.map +1 -0
- package/dist/ui/client/live-doc.css +243 -0
- package/dist/ui/client/live-doc.d.mts +12 -0
- package/dist/ui/client/live-doc.d.mts.map +1 -0
- package/dist/ui/client/live-doc.mjs +11 -0
- package/dist/ui/client/live-doc.mjs.map +7 -0
- package/dist/ui/client/mail-bundle.d.mts +9 -0
- package/dist/ui/client/mail-bundle.d.mts.map +1 -0
- package/dist/ui/client/mail-bundle.mjs +50 -0
- package/dist/ui/client/mail-bundle.mjs.map +7 -0
- package/dist/ui/client/mail-entry.d.mts +11 -0
- package/dist/ui/client/mail-entry.d.mts.map +1 -0
- package/dist/ui/client/mail-entry.mjs +9 -0
- package/dist/ui/client/mail-entry.mjs.map +1 -0
- package/dist/ui/client/mail-view.d.mts.map +1 -1
- package/dist/ui/client/mail-view.mjs +5 -3
- package/dist/ui/client/mail-view.mjs.map +1 -1
- package/dist/ui/client/mail.css +3 -3
- package/dist/ui/client/relation-select-view.d.ts +77 -0
- package/dist/ui/client/relation-select-view.d.ts.map +1 -0
- package/dist/ui/client/relation-select-view.js +216 -0
- package/dist/ui/client/relation-select-view.js.map +1 -0
- package/dist/ui/client/table-selection-view.d.ts +4 -0
- package/dist/ui/client/table-selection-view.d.ts.map +1 -0
- package/dist/ui/client/table-selection-view.js +345 -0
- package/dist/ui/client/table-selection-view.js.map +1 -0
- package/dist/ui/dashboard-page.d.ts +6 -0
- package/dist/ui/dashboard-page.d.ts.map +1 -0
- package/dist/ui/dashboard-page.js +4 -0
- package/dist/ui/dashboard-page.js.map +1 -0
- package/dist/ui/data.d.ts +51 -1
- package/dist/ui/data.d.ts.map +1 -1
- package/dist/ui/data.js +87 -1
- package/dist/ui/data.js.map +1 -1
- package/dist/ui/date-picker.d.ts.map +1 -1
- package/dist/ui/date-picker.js +2 -2
- package/dist/ui/date-picker.js.map +1 -1
- package/dist/ui/form-page.d.ts +6 -0
- package/dist/ui/form-page.d.ts.map +1 -0
- package/dist/ui/form-page.js +5 -0
- package/dist/ui/form-page.js.map +1 -0
- package/dist/ui/form.d.ts +6 -1
- package/dist/ui/form.d.ts.map +1 -1
- package/dist/ui/form.js +8 -5
- package/dist/ui/form.js.map +1 -1
- package/dist/ui/format.d.ts +13 -2
- package/dist/ui/format.d.ts.map +1 -1
- package/dist/ui/format.js +28 -7
- package/dist/ui/format.js.map +1 -1
- package/dist/ui/gantt.d.ts +52 -0
- package/dist/ui/gantt.d.ts.map +1 -0
- package/dist/ui/gantt.js +92 -0
- package/dist/ui/gantt.js.map +1 -0
- package/dist/ui/hooks.d.ts.map +1 -1
- package/dist/ui/hooks.js +14 -0
- package/dist/ui/hooks.js.map +1 -1
- package/dist/ui/icons.d.ts.map +1 -1
- package/dist/ui/icons.js +6 -1
- package/dist/ui/icons.js.map +1 -1
- package/dist/ui/index.d.ts +96 -15
- package/dist/ui/index.d.ts.map +1 -1
- package/dist/ui/index.js +79 -14
- package/dist/ui/index.js.map +1 -1
- package/dist/ui/layout.d.ts +43 -38
- package/dist/ui/layout.d.ts.map +1 -1
- package/dist/ui/layout.js +29 -37
- package/dist/ui/layout.js.map +1 -1
- package/dist/ui/list-page.d.ts +19 -0
- package/dist/ui/list-page.d.ts.map +1 -0
- package/dist/ui/list-page.js +21 -0
- package/dist/ui/list-page.js.map +1 -0
- package/dist/ui/media.d.ts.map +1 -1
- package/dist/ui/media.js +1 -1
- package/dist/ui/media.js.map +1 -1
- package/dist/ui/modal.d.ts +26 -1
- package/dist/ui/modal.d.ts.map +1 -1
- package/dist/ui/modal.js +18 -2
- package/dist/ui/modal.js.map +1 -1
- package/dist/ui/nav.d.ts +21 -1
- package/dist/ui/nav.d.ts.map +1 -1
- package/dist/ui/nav.js +43 -8
- package/dist/ui/nav.js.map +1 -1
- package/dist/ui/navigation.d.ts +36 -2
- package/dist/ui/navigation.d.ts.map +1 -1
- package/dist/ui/navigation.js +60 -5
- package/dist/ui/navigation.js.map +1 -1
- package/dist/ui/partner.d.ts +18 -0
- package/dist/ui/partner.d.ts.map +1 -0
- package/dist/ui/partner.js +11 -0
- package/dist/ui/partner.js.map +1 -0
- package/dist/ui/primitives.d.ts +28 -10
- package/dist/ui/primitives.d.ts.map +1 -1
- package/dist/ui/primitives.js +21 -7
- package/dist/ui/primitives.js.map +1 -1
- package/dist/ui/product-media.d.ts +47 -0
- package/dist/ui/product-media.d.ts.map +1 -0
- package/dist/ui/product-media.js +67 -0
- package/dist/ui/product-media.js.map +1 -0
- package/dist/ui/product-variants.d.ts +68 -0
- package/dist/ui/product-variants.d.ts.map +1 -0
- package/dist/ui/product-variants.js +81 -0
- package/dist/ui/product-variants.js.map +1 -0
- package/dist/ui/record-detail.d.ts +70 -0
- package/dist/ui/record-detail.d.ts.map +1 -0
- package/dist/ui/record-detail.js +35 -0
- package/dist/ui/record-detail.js.map +1 -0
- package/dist/ui/record-page.d.ts +16 -0
- package/dist/ui/record-page.d.ts.map +1 -0
- package/dist/ui/record-page.js +13 -0
- package/dist/ui/record-page.js.map +1 -0
- package/dist/ui/record.d.ts +15 -3
- package/dist/ui/record.d.ts.map +1 -1
- package/dist/ui/record.js +6 -5
- package/dist/ui/record.js.map +1 -1
- package/dist/ui/state.d.ts +20 -1
- package/dist/ui/state.d.ts.map +1 -1
- package/dist/ui/state.js +17 -0
- package/dist/ui/state.js.map +1 -1
- package/dist/ui/surfaces.d.ts +30 -2
- package/dist/ui/surfaces.d.ts.map +1 -1
- package/dist/ui/surfaces.js +39 -2
- package/dist/ui/surfaces.js.map +1 -1
- package/dist/ui/table.d.ts +25 -2
- package/dist/ui/table.d.ts.map +1 -1
- package/dist/ui/table.js +10 -6
- package/dist/ui/table.js.map +1 -1
- package/dist/ui/timeframe.d.ts +39 -0
- package/dist/ui/timeframe.d.ts.map +1 -0
- package/dist/ui/timeframe.js +36 -0
- package/dist/ui/timeframe.js.map +1 -0
- package/dist/ui/workspace-page.d.ts +16 -0
- package/dist/ui/workspace-page.d.ts.map +1 -0
- package/dist/ui/workspace-page.js +15 -0
- package/dist/ui/workspace-page.js.map +1 -0
- package/package.json +16 -3
- package/dist/modules/account/tt99.d.ts +0 -30
- package/dist/modules/account/tt99.d.ts.map +0 -1
- package/dist/modules/account/tt99.js +0 -1661
- package/dist/modules/account/tt99.js.map +0 -1
- package/dist/modules/account_backend/accounting-overview-screen.d.ts +0 -18
- package/dist/modules/account_backend/accounting-overview-screen.d.ts.map +0 -1
- package/dist/modules/account_backend/accounting-overview-screen.js +0 -104
- package/dist/modules/account_backend/accounting-overview-screen.js.map +0 -1
- package/dist/modules/account_backend/accounts-screen.d.ts +0 -13
- package/dist/modules/account_backend/accounts-screen.d.ts.map +0 -1
- package/dist/modules/account_backend/accounts-screen.js +0 -49
- package/dist/modules/account_backend/accounts-screen.js.map +0 -1
- package/dist/modules/account_backend/customer-invoices-screen.d.ts +0 -14
- package/dist/modules/account_backend/customer-invoices-screen.d.ts.map +0 -1
- package/dist/modules/account_backend/customer-invoices-screen.js +0 -63
- package/dist/modules/account_backend/customer-invoices-screen.js.map +0 -1
- package/dist/modules/account_backend/general-ledger-screen.d.ts +0 -13
- package/dist/modules/account_backend/general-ledger-screen.d.ts.map +0 -1
- package/dist/modules/account_backend/general-ledger-screen.js +0 -56
- package/dist/modules/account_backend/general-ledger-screen.js.map +0 -1
- package/dist/modules/account_backend/journal-entries-screen.d.ts +0 -14
- package/dist/modules/account_backend/journal-entries-screen.d.ts.map +0 -1
- package/dist/modules/account_backend/journal-entries-screen.js +0 -45
- package/dist/modules/account_backend/journal-entries-screen.js.map +0 -1
- package/dist/modules/account_backend/journals-screen.d.ts +0 -14
- package/dist/modules/account_backend/journals-screen.d.ts.map +0 -1
- package/dist/modules/account_backend/journals-screen.js +0 -53
- package/dist/modules/account_backend/journals-screen.js.map +0 -1
- package/dist/modules/account_backend/move-detail-screen.d.ts +0 -10
- package/dist/modules/account_backend/move-detail-screen.d.ts.map +0 -1
- package/dist/modules/account_backend/move-detail-screen.js +0 -100
- package/dist/modules/account_backend/move-detail-screen.js.map +0 -1
- package/dist/modules/account_backend/partner-ledger-screen.d.ts +0 -14
- package/dist/modules/account_backend/partner-ledger-screen.d.ts.map +0 -1
- package/dist/modules/account_backend/partner-ledger-screen.js +0 -69
- package/dist/modules/account_backend/partner-ledger-screen.js.map +0 -1
- package/dist/modules/account_backend/payment-terms-screen.d.ts +0 -14
- package/dist/modules/account_backend/payment-terms-screen.d.ts.map +0 -1
- package/dist/modules/account_backend/payment-terms-screen.js +0 -40
- package/dist/modules/account_backend/payment-terms-screen.js.map +0 -1
- package/dist/modules/account_backend/payments-screen.d.ts +0 -14
- package/dist/modules/account_backend/payments-screen.d.ts.map +0 -1
- package/dist/modules/account_backend/payments-screen.js +0 -54
- package/dist/modules/account_backend/payments-screen.js.map +0 -1
- package/dist/modules/account_backend/screens.d.ts +0 -7
- package/dist/modules/account_backend/screens.d.ts.map +0 -1
- package/dist/modules/account_backend/screens.js +0 -7
- package/dist/modules/account_backend/screens.js.map +0 -1
- package/dist/modules/account_backend/taxes-screen.d.ts +0 -15
- package/dist/modules/account_backend/taxes-screen.d.ts.map +0 -1
- package/dist/modules/account_backend/taxes-screen.js +0 -73
- package/dist/modules/account_backend/taxes-screen.js.map +0 -1
- package/dist/modules/account_backend/trial-balance-screen.d.ts +0 -13
- package/dist/modules/account_backend/trial-balance-screen.d.ts.map +0 -1
- package/dist/modules/account_backend/trial-balance-screen.js +0 -62
- package/dist/modules/account_backend/trial-balance-screen.js.map +0 -1
- package/dist/modules/account_backend/vendor-bills-screen.d.ts +0 -14
- package/dist/modules/account_backend/vendor-bills-screen.d.ts.map +0 -1
- package/dist/modules/account_backend/vendor-bills-screen.js +0 -59
- package/dist/modules/account_backend/vendor-bills-screen.js.map +0 -1
- package/dist/modules/account_partner_backend/screens.d.ts +0 -16
- package/dist/modules/account_partner_backend/screens.d.ts.map +0 -1
- package/dist/modules/account_partner_backend/screens.js +0 -26
- package/dist/modules/account_partner_backend/screens.js.map +0 -1
- package/dist/modules/activity_backend/screens.d.ts +0 -5
- package/dist/modules/activity_backend/screens.d.ts.map +0 -1
- package/dist/modules/activity_backend/screens.js +0 -52
- package/dist/modules/activity_backend/screens.js.map +0 -1
- package/dist/modules/address_backend/screens.d.ts +0 -31
- package/dist/modules/address_backend/screens.d.ts.map +0 -1
- package/dist/modules/address_backend/screens.js +0 -147
- package/dist/modules/address_backend/screens.js.map +0 -1
- package/dist/modules/backend/design/admin.css +0 -4229
- package/dist/modules/backend/design/client/relation-select-view.d.mts +0 -5
- package/dist/modules/backend/design/client/relation-select-view.d.mts.map +0 -1
- package/dist/modules/backend/design/client/relation-select-view.mjs +0 -335
- package/dist/modules/backend/design/client/relation-select-view.mjs.map +0 -1
- package/dist/modules/calendar_backend/screens.d.ts +0 -5
- package/dist/modules/calendar_backend/screens.d.ts.map +0 -1
- package/dist/modules/calendar_backend/screens.js +0 -4
- package/dist/modules/calendar_backend/screens.js.map +0 -1
- package/dist/modules/company_backend/screens.d.ts +0 -62
- package/dist/modules/company_backend/screens.d.ts.map +0 -1
- package/dist/modules/company_backend/screens.js +0 -268
- package/dist/modules/company_backend/screens.js.map +0 -1
- package/dist/modules/crm_backend/list-search.d.ts +0 -21
- package/dist/modules/crm_backend/list-search.d.ts.map +0 -1
- package/dist/modules/crm_backend/list-search.js +0 -220
- package/dist/modules/crm_backend/list-search.js.map +0 -1
- package/dist/modules/crm_backend/screens.d.ts +0 -32
- package/dist/modules/crm_backend/screens.d.ts.map +0 -1
- package/dist/modules/crm_backend/screens.js +0 -405
- package/dist/modules/crm_backend/screens.js.map +0 -1
- package/dist/modules/hospitality_core/screens.d.ts +0 -773
- package/dist/modules/hospitality_core/screens.d.ts.map +0 -1
- package/dist/modules/hospitality_core/screens.js +0 -4152
- package/dist/modules/hospitality_core/screens.js.map +0 -1
- package/dist/modules/hr_backend/screens.d.ts +0 -9
- package/dist/modules/hr_backend/screens.d.ts.map +0 -1
- package/dist/modules/hr_backend/screens.js +0 -144
- package/dist/modules/hr_backend/screens.js.map +0 -1
- package/dist/modules/loyalty_backend/screens.d.ts +0 -33
- package/dist/modules/loyalty_backend/screens.d.ts.map +0 -1
- package/dist/modules/loyalty_backend/screens.js +0 -562
- package/dist/modules/loyalty_backend/screens.js.map +0 -1
- package/dist/modules/mail_backend/screens.d.ts +0 -5
- package/dist/modules/mail_backend/screens.d.ts.map +0 -1
- package/dist/modules/mail_backend/screens.js +0 -11
- package/dist/modules/mail_backend/screens.js.map +0 -1
- package/dist/modules/mail_inbound_backend/screens.d.ts +0 -5
- package/dist/modules/mail_inbound_backend/screens.d.ts.map +0 -1
- package/dist/modules/mail_inbound_backend/screens.js +0 -25
- package/dist/modules/mail_inbound_backend/screens.js.map +0 -1
- package/dist/modules/mail_transport_backend/screens.d.ts +0 -5
- package/dist/modules/mail_transport_backend/screens.d.ts.map +0 -1
- package/dist/modules/mail_transport_backend/screens.js +0 -35
- package/dist/modules/mail_transport_backend/screens.js.map +0 -1
- package/dist/modules/oauth_backend/screens.d.ts +0 -66
- package/dist/modules/oauth_backend/screens.d.ts.map +0 -1
- package/dist/modules/oauth_backend/screens.js +0 -323
- package/dist/modules/oauth_backend/screens.js.map +0 -1
- package/dist/modules/odoo_collaboration_import/functions.d.ts.map +0 -1
- package/dist/modules/odoo_collaboration_import/functions.js +0 -128
- package/dist/modules/odoo_collaboration_import/functions.js.map +0 -1
- package/dist/modules/odoo_collaboration_import/index.d.ts +0 -6
- package/dist/modules/odoo_collaboration_import/index.d.ts.map +0 -1
- package/dist/modules/odoo_collaboration_import/index.js +0 -31
- package/dist/modules/odoo_collaboration_import/index.js.map +0 -1
- package/dist/modules/odoo_collaboration_import/models.d.ts.map +0 -1
- package/dist/modules/odoo_collaboration_import/models.js +0 -76
- package/dist/modules/odoo_collaboration_import/models.js.map +0 -1
- package/dist/modules/odoo_collaboration_import/operations.d.ts +0 -14
- package/dist/modules/odoo_collaboration_import/operations.d.ts.map +0 -1
- package/dist/modules/odoo_collaboration_import/operations.js +0 -1139
- package/dist/modules/odoo_collaboration_import/operations.js.map +0 -1
- package/dist/modules/odoo_collaboration_import/relations.d.ts.map +0 -1
- package/dist/modules/odoo_collaboration_import/relations.js +0 -19
- package/dist/modules/odoo_collaboration_import/relations.js.map +0 -1
- package/dist/modules/odoo_collaboration_import/types.d.ts +0 -58
- package/dist/modules/odoo_collaboration_import/types.d.ts.map +0 -1
- package/dist/modules/odoo_collaboration_import/types.js.map +0 -1
- package/dist/modules/partner_backend/screens.d.ts +0 -53
- package/dist/modules/partner_backend/screens.d.ts.map +0 -1
- package/dist/modules/partner_backend/screens.js +0 -169
- package/dist/modules/partner_backend/screens.js.map +0 -1
- package/dist/modules/pricing_backend/screens.d.ts +0 -13
- package/dist/modules/pricing_backend/screens.d.ts.map +0 -1
- package/dist/modules/pricing_backend/screens.js +0 -182
- package/dist/modules/pricing_backend/screens.js.map +0 -1
- package/dist/modules/product_backend/attributes-screen.d.ts +0 -7
- package/dist/modules/product_backend/attributes-screen.d.ts.map +0 -1
- package/dist/modules/product_backend/attributes-screen.js +0 -76
- package/dist/modules/product_backend/attributes-screen.js.map +0 -1
- package/dist/modules/product_backend/create-screen.d.ts +0 -12
- package/dist/modules/product_backend/create-screen.d.ts.map +0 -1
- package/dist/modules/product_backend/create-screen.js +0 -83
- package/dist/modules/product_backend/create-screen.js.map +0 -1
- package/dist/modules/product_backend/screens.d.ts +0 -68
- package/dist/modules/product_backend/screens.d.ts.map +0 -1
- package/dist/modules/product_backend/screens.js +0 -388
- package/dist/modules/product_backend/screens.js.map +0 -1
- package/dist/modules/purchase_backend/screens.d.ts +0 -29
- package/dist/modules/purchase_backend/screens.d.ts.map +0 -1
- package/dist/modules/purchase_backend/screens.js +0 -324
- package/dist/modules/purchase_backend/screens.js.map +0 -1
- package/dist/modules/sale_backend/invoicing-policies-screen.d.ts +0 -14
- package/dist/modules/sale_backend/invoicing-policies-screen.d.ts.map +0 -1
- package/dist/modules/sale_backend/invoicing-policies-screen.js +0 -36
- package/dist/modules/sale_backend/invoicing-policies-screen.js.map +0 -1
- package/dist/modules/sale_backend/order-detail-screen.d.ts +0 -18
- package/dist/modules/sale_backend/order-detail-screen.d.ts.map +0 -1
- package/dist/modules/sale_backend/order-detail-screen.js +0 -217
- package/dist/modules/sale_backend/order-detail-screen.js.map +0 -1
- package/dist/modules/sale_backend/quotations-screen.d.ts +0 -15
- package/dist/modules/sale_backend/quotations-screen.d.ts.map +0 -1
- package/dist/modules/sale_backend/quotations-screen.js +0 -64
- package/dist/modules/sale_backend/quotations-screen.js.map +0 -1
- package/dist/modules/sale_backend/sales-orders-screen.d.ts +0 -12
- package/dist/modules/sale_backend/sales-orders-screen.d.ts.map +0 -1
- package/dist/modules/sale_backend/sales-orders-screen.js +0 -65
- package/dist/modules/sale_backend/sales-orders-screen.js.map +0 -1
- package/dist/modules/sale_backend/screens.d.ts +0 -23
- package/dist/modules/sale_backend/screens.d.ts.map +0 -1
- package/dist/modules/sale_backend/screens.js +0 -275
- package/dist/modules/sale_backend/screens.js.map +0 -1
- package/dist/modules/stock_backend/forecast-screen.d.ts +0 -28
- package/dist/modules/stock_backend/forecast-screen.d.ts.map +0 -1
- package/dist/modules/stock_backend/forecast-screen.js +0 -108
- package/dist/modules/stock_backend/forecast-screen.js.map +0 -1
- package/dist/modules/stock_backend/inventory-screen.d.ts +0 -27
- package/dist/modules/stock_backend/inventory-screen.d.ts.map +0 -1
- package/dist/modules/stock_backend/inventory-screen.js +0 -141
- package/dist/modules/stock_backend/inventory-screen.js.map +0 -1
- package/dist/modules/stock_backend/locations-screen.d.ts +0 -18
- package/dist/modules/stock_backend/locations-screen.d.ts.map +0 -1
- package/dist/modules/stock_backend/locations-screen.js +0 -92
- package/dist/modules/stock_backend/locations-screen.js.map +0 -1
- package/dist/modules/stock_backend/lot-screen.d.ts +0 -30
- package/dist/modules/stock_backend/lot-screen.d.ts.map +0 -1
- package/dist/modules/stock_backend/lot-screen.js +0 -86
- package/dist/modules/stock_backend/lot-screen.js.map +0 -1
- package/dist/modules/stock_backend/lots-screen.d.ts +0 -21
- package/dist/modules/stock_backend/lots-screen.d.ts.map +0 -1
- package/dist/modules/stock_backend/lots-screen.js +0 -79
- package/dist/modules/stock_backend/lots-screen.js.map +0 -1
- package/dist/modules/stock_backend/picking-types-screen.d.ts +0 -21
- package/dist/modules/stock_backend/picking-types-screen.d.ts.map +0 -1
- package/dist/modules/stock_backend/picking-types-screen.js +0 -110
- package/dist/modules/stock_backend/picking-types-screen.js.map +0 -1
- package/dist/modules/stock_backend/replenishment-screen.d.ts +0 -29
- package/dist/modules/stock_backend/replenishment-screen.d.ts.map +0 -1
- package/dist/modules/stock_backend/replenishment-screen.js +0 -131
- package/dist/modules/stock_backend/replenishment-screen.js.map +0 -1
- package/dist/modules/stock_backend/screens.d.ts +0 -14
- package/dist/modules/stock_backend/screens.d.ts.map +0 -1
- package/dist/modules/stock_backend/screens.js +0 -40
- package/dist/modules/stock_backend/screens.js.map +0 -1
- package/dist/modules/stock_backend/stock-route-screen.d.ts +0 -30
- package/dist/modules/stock_backend/stock-route-screen.d.ts.map +0 -1
- package/dist/modules/stock_backend/stock-route-screen.js +0 -129
- package/dist/modules/stock_backend/stock-route-screen.js.map +0 -1
- package/dist/modules/stock_backend/stock-routes-screen.d.ts +0 -17
- package/dist/modules/stock_backend/stock-routes-screen.d.ts.map +0 -1
- package/dist/modules/stock_backend/stock-routes-screen.js +0 -60
- package/dist/modules/stock_backend/stock-routes-screen.js.map +0 -1
- package/dist/modules/stock_backend/transfer-screen.d.ts +0 -26
- package/dist/modules/stock_backend/transfer-screen.d.ts.map +0 -1
- package/dist/modules/stock_backend/transfer-screen.js +0 -95
- package/dist/modules/stock_backend/transfer-screen.js.map +0 -1
- package/dist/modules/stock_backend/transfers-screen.d.ts +0 -21
- package/dist/modules/stock_backend/transfers-screen.d.ts.map +0 -1
- package/dist/modules/stock_backend/transfers-screen.js +0 -88
- package/dist/modules/stock_backend/transfers-screen.js.map +0 -1
- package/dist/modules/stock_backend/warehouses-screen.d.ts +0 -17
- package/dist/modules/stock_backend/warehouses-screen.d.ts.map +0 -1
- package/dist/modules/stock_backend/warehouses-screen.js +0 -96
- package/dist/modules/stock_backend/warehouses-screen.js.map +0 -1
- package/dist/modules/user_backend/screens.d.ts +0 -70
- package/dist/modules/user_backend/screens.d.ts.map +0 -1
- package/dist/modules/user_backend/screens.js +0 -308
- package/dist/modules/user_backend/screens.js.map +0 -1
- package/dist/modules/website/customer-routes.d.ts +0 -3
- package/dist/modules/website/customer-routes.d.ts.map +0 -1
- package/dist/modules/website/customer-routes.js +0 -322
- package/dist/modules/website/customer-routes.js.map +0 -1
- package/dist/modules/website_backend/screens.d.ts +0 -114
- package/dist/modules/website_backend/screens.d.ts.map +0 -1
- package/dist/modules/website_backend/screens.js +0 -625
- package/dist/modules/website_backend/screens.js.map +0 -1
- package/dist/ui/client/mail.d.mts +0 -11
- package/dist/ui/client/mail.d.mts.map +0 -1
- package/dist/ui/client/mail.mjs +0 -10
- package/dist/ui/client/mail.mjs.map +0 -1
- /package/dist/modules/{odoo_collaboration_import → account_staff_channel}/functions.d.ts +0 -0
- /package/dist/modules/{odoo_collaboration_import → account_staff_channel}/models.d.ts +0 -0
- /package/dist/modules/{odoo_collaboration_import → address_backend/screens}/types.js +0 -0
- /package/dist/modules/{odoo_collaboration_import → manufacturing}/relations.d.ts +0 -0
|
@@ -0,0 +1,1518 @@
|
|
|
1
|
+
const sources = {
|
|
2
|
+
account: {
|
|
3
|
+
posture: 'permission-bearing',
|
|
4
|
+
bundles: ['approve', 'configure', 'operate', 'sensitive'],
|
|
5
|
+
functions: {
|
|
6
|
+
accountingBook: ['operate', 'operate'],
|
|
7
|
+
addMoveLine: ['operate', 'operate'],
|
|
8
|
+
approveCashCountDifference: ['approve', 'approve', 'account.domain-policy'],
|
|
9
|
+
approveCostAdjustmentProposal: ['approve', 'approve', 'account.domain-policy'],
|
|
10
|
+
assetReconciliation: ['operate', 'operate'],
|
|
11
|
+
cancelMove: ['approve', 'approve', 'account.domain-policy'],
|
|
12
|
+
cashFlow: ['operate', 'operate'],
|
|
13
|
+
changePeriodLock: ['operate', 'operate'],
|
|
14
|
+
closePeriod: ['approve', 'approve', 'account.domain-policy'],
|
|
15
|
+
completeAssetChange: ['approve', 'approve', 'account.domain-policy'],
|
|
16
|
+
configureFxPolicy: ['operate', 'operate'],
|
|
17
|
+
countMoves: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
18
|
+
createAsset: ['operate', 'operate'],
|
|
19
|
+
createCashCount: ['operate', 'operate'],
|
|
20
|
+
createCashDocument: ['operate', 'operate'],
|
|
21
|
+
createClosePeriod: ['configure', 'configure', 'account.configuration-audit'],
|
|
22
|
+
createCostAdjustmentProposal: ['configure', 'configure', 'account.configuration-audit'],
|
|
23
|
+
createInvoice: ['operate', 'operate'],
|
|
24
|
+
createMove: ['operate', 'operate'],
|
|
25
|
+
finalizeCostRun: ['approve', 'approve', 'account.domain-policy'],
|
|
26
|
+
generalLedger: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
27
|
+
getClosePeriod: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
28
|
+
getCustomerInvoiceReport: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
29
|
+
getDefaults: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
30
|
+
getFxPolicy: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
31
|
+
getMove: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
32
|
+
getOpeningBatch: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
33
|
+
getOpenItemBatch: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
34
|
+
getPeriodPolicy: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
35
|
+
getProductTax: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
36
|
+
getSetup: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
37
|
+
getVendorBillReport: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
38
|
+
importBankStatement: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
39
|
+
importOpenItems: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
40
|
+
initializeCompany: ['operate', 'operate'],
|
|
41
|
+
listAccounts: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
42
|
+
listAssetCategories: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
43
|
+
listAssetEvents: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
44
|
+
listAssets: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
45
|
+
listAssetSchedule: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
46
|
+
listAuditEvents: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
47
|
+
listBankAccounts: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
48
|
+
listBankImportProfiles: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
49
|
+
listBankReconciliations: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
50
|
+
listBankTransactions: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
51
|
+
listCashCounts: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
52
|
+
listCategoryAccounts: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
53
|
+
listClosePeriods: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
54
|
+
listCostRuns: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
55
|
+
listCostVariances: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
56
|
+
listFollowUpCases: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
57
|
+
listFollowUpMessages: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
58
|
+
listJournals: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
59
|
+
listMoveResiduals: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
60
|
+
listMoves: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
61
|
+
listOpeningBatches: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
62
|
+
listOpenItemBatches: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
63
|
+
listOpenItems: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
64
|
+
listPayments: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
65
|
+
listPaymentTerms: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
66
|
+
listPeriodLockEvents: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
67
|
+
listTaxes: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
68
|
+
openItemSummary: ['operate', 'operate'],
|
|
69
|
+
partnerStatement: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
70
|
+
performance: ['operate', 'operate'],
|
|
71
|
+
position: ['operate', 'operate'],
|
|
72
|
+
postAssetScheduleLine: ['approve', 'approve', 'account.domain-policy'],
|
|
73
|
+
postBankReconciliation: ['approve', 'approve', 'account.domain-policy'],
|
|
74
|
+
postMove: ['approve', 'approve', 'account.domain-policy'],
|
|
75
|
+
postOpeningBatch: ['approve', 'approve', 'account.domain-policy'],
|
|
76
|
+
postStoredValueBalance: ['approve', 'approve', 'account.domain-policy'],
|
|
77
|
+
prepareOpeningBatch: ['operate', 'operate'],
|
|
78
|
+
previewAccounts: ['operate', 'operate'],
|
|
79
|
+
previewBankStatement: ['sensitive', 'sensitive', 'account.sensitive-data'],
|
|
80
|
+
proposeAssetChange: ['operate', 'operate'],
|
|
81
|
+
queueFollowUpMessage: ['operate', 'operate'],
|
|
82
|
+
quoteLine: ['operate', 'operate'],
|
|
83
|
+
receivableAging: ['operate', 'operate'],
|
|
84
|
+
reconcile: ['approve', 'approve', 'account.domain-policy'],
|
|
85
|
+
recordFollowUpDelivery: ['operate', 'operate'],
|
|
86
|
+
refreshClosePeriod: ['operate', 'operate'],
|
|
87
|
+
registerInvoicePayment: ['operate', 'operate'],
|
|
88
|
+
registerPayment: ['operate', 'operate'],
|
|
89
|
+
reopenClosePeriod: ['approve', 'approve', 'account.domain-policy'],
|
|
90
|
+
revenueTimeline: ['operate', 'operate'],
|
|
91
|
+
reverseMove: ['approve', 'approve', 'account.domain-policy'],
|
|
92
|
+
runAssetBatch: ['operate', 'operate'],
|
|
93
|
+
saveAccount: ['configure', 'configure', 'account.configuration-audit'],
|
|
94
|
+
saveAssetCategory: ['operate', 'operate'],
|
|
95
|
+
saveBankAccount: ['configure', 'configure', 'account.configuration-audit'],
|
|
96
|
+
saveBankImportProfile: ['configure', 'configure', 'account.configuration-audit'],
|
|
97
|
+
saveCategoryAccount: ['configure', 'configure', 'account.configuration-audit'],
|
|
98
|
+
saveCostPolicy: ['configure', 'configure', 'account.configuration-audit'],
|
|
99
|
+
saveDefaults: ['configure', 'configure', 'account.configuration-audit'],
|
|
100
|
+
saveFollowUpCase: ['operate', 'operate'],
|
|
101
|
+
saveFollowUpPolicy: ['operate', 'operate'],
|
|
102
|
+
saveJournal: ['configure', 'configure', 'account.configuration-audit'],
|
|
103
|
+
saveMatchRule: ['configure', 'configure', 'account.configuration-audit'],
|
|
104
|
+
savePaymentTerm: ['operate', 'operate'],
|
|
105
|
+
savePaymentTermLine: ['operate', 'operate'],
|
|
106
|
+
saveTax: ['configure', 'configure', 'account.configuration-audit'],
|
|
107
|
+
setProductTax: ['configure', 'configure', 'account.configuration-audit'],
|
|
108
|
+
startCostRun: ['operate', 'operate'],
|
|
109
|
+
suggestBankMatches: ['operate', 'operate'],
|
|
110
|
+
transitionAsset: ['approve', 'approve', 'account.domain-policy'],
|
|
111
|
+
trialBalance: ['operate', 'operate'],
|
|
112
|
+
undoBankReconciliation: ['operate', 'operate'],
|
|
113
|
+
},
|
|
114
|
+
exemptions: {},
|
|
115
|
+
},
|
|
116
|
+
account_backend: {
|
|
117
|
+
posture: 'projection/bridge',
|
|
118
|
+
bundles: [],
|
|
119
|
+
functions: {},
|
|
120
|
+
exemptions: {},
|
|
121
|
+
},
|
|
122
|
+
account_staff_channel: {
|
|
123
|
+
posture: 'projection/bridge',
|
|
124
|
+
bundles: ['approve', 'operate', 'view'],
|
|
125
|
+
functions: {
|
|
126
|
+
beginInvoiceCommand: ['operate', 'operate'],
|
|
127
|
+
completeInvoiceCommand: ['approve', 'approve', 'account_staff_channel.domain-policy'],
|
|
128
|
+
getInvoiceCommand: ['read', 'view'],
|
|
129
|
+
},
|
|
130
|
+
exemptions: {},
|
|
131
|
+
},
|
|
132
|
+
activity: {
|
|
133
|
+
posture: 'permission-bearing',
|
|
134
|
+
bundles: ['approve', 'configure', 'operate', 'view'],
|
|
135
|
+
functions: {
|
|
136
|
+
cancel: ['approve', 'approve', 'activity.domain-policy'],
|
|
137
|
+
complete: ['approve', 'approve', 'activity.domain-policy'],
|
|
138
|
+
countDue: ['read', 'view'],
|
|
139
|
+
listMy: ['read', 'view'],
|
|
140
|
+
listPlans: ['read', 'view'],
|
|
141
|
+
listTypes: ['read', 'view'],
|
|
142
|
+
reschedule: ['operate', 'operate'],
|
|
143
|
+
savePlan: ['configure', 'configure', 'activity.configuration-audit'],
|
|
144
|
+
saveType: ['configure', 'configure', 'activity.configuration-audit'],
|
|
145
|
+
},
|
|
146
|
+
exemptions: {},
|
|
147
|
+
},
|
|
148
|
+
address: {
|
|
149
|
+
posture: 'permission-bearing',
|
|
150
|
+
bundles: ['approve', 'operate', 'view'],
|
|
151
|
+
functions: {
|
|
152
|
+
availableCatalogs: ['operate', 'operate'],
|
|
153
|
+
catalogStatus: ['operate', 'operate'],
|
|
154
|
+
format: ['operate', 'operate'],
|
|
155
|
+
listCountries: ['read', 'view'],
|
|
156
|
+
listDivisionChildren: ['read', 'view'],
|
|
157
|
+
resolveDivisionPath: ['operate', 'operate'],
|
|
158
|
+
snapshot: ['operate', 'operate'],
|
|
159
|
+
validate: ['approve', 'approve', 'address.domain-policy'],
|
|
160
|
+
},
|
|
161
|
+
exemptions: {
|
|
162
|
+
installCatalog: ['internal-route', 'address.trusted-route-worker-or-service'],
|
|
163
|
+
},
|
|
164
|
+
},
|
|
165
|
+
attendance: {
|
|
166
|
+
posture: 'permission-bearing',
|
|
167
|
+
bundles: ['configure', 'operate', 'sensitive'],
|
|
168
|
+
functions: {
|
|
169
|
+
'calendar.mine': ['operate', 'operate'],
|
|
170
|
+
'clock.mine': ['operate', 'operate'],
|
|
171
|
+
'correction.manageDecision': ['configure', 'configure', 'attendance.configuration-audit'],
|
|
172
|
+
'correction.request': ['operate', 'operate'],
|
|
173
|
+
'credential.manageOptions': ['sensitive', 'sensitive', 'attendance.sensitive-data'],
|
|
174
|
+
'overtime.manageDecision': ['configure', 'configure', 'attendance.configuration-audit'],
|
|
175
|
+
'period.export': ['sensitive', 'sensitive', 'attendance.sensitive-data'],
|
|
176
|
+
'period.manageClose': ['configure', 'configure', 'attendance.configuration-audit'],
|
|
177
|
+
'period.manageReopen': ['configure', 'configure', 'attendance.configuration-audit'],
|
|
178
|
+
'period.report': ['sensitive', 'sensitive', 'attendance.sensitive-data'],
|
|
179
|
+
'policy.save': ['configure', 'configure', 'attendance.configuration-audit'],
|
|
180
|
+
'punch.self': ['operate', 'operate'],
|
|
181
|
+
'session.mine': ['operate', 'operate'],
|
|
182
|
+
},
|
|
183
|
+
exemptions: {
|
|
184
|
+
'credential.managePin': ['internal-route', 'attendance.trusted-route-worker-or-service'],
|
|
185
|
+
'credential.manageQr': ['internal-route', 'attendance.trusted-route-worker-or-service'],
|
|
186
|
+
'kiosk.manageIssue': ['internal-route', 'attendance.trusted-route-worker-or-service'],
|
|
187
|
+
'punch.kiosk': ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
188
|
+
},
|
|
189
|
+
},
|
|
190
|
+
backend: {
|
|
191
|
+
posture: 'internal/headless',
|
|
192
|
+
bundles: [],
|
|
193
|
+
functions: {},
|
|
194
|
+
exemptions: {
|
|
195
|
+
archiveSavedSearch: ['internal-route', 'backend.trusted-route-worker-or-service'],
|
|
196
|
+
listSavedSearches: ['internal-route', 'backend.trusted-route-worker-or-service'],
|
|
197
|
+
saveSavedSearch: ['internal-route', 'backend.trusted-route-worker-or-service'],
|
|
198
|
+
setDefaultSavedSearch: ['internal-route', 'backend.trusted-route-worker-or-service'],
|
|
199
|
+
},
|
|
200
|
+
},
|
|
201
|
+
business_report_staff_channel: {
|
|
202
|
+
posture: 'projection/bridge',
|
|
203
|
+
bundles: [],
|
|
204
|
+
functions: {},
|
|
205
|
+
exemptions: {},
|
|
206
|
+
},
|
|
207
|
+
calendar: {
|
|
208
|
+
posture: 'permission-bearing',
|
|
209
|
+
bundles: ['approve', 'configure', 'operate', 'view'],
|
|
210
|
+
functions: {
|
|
211
|
+
availability: ['operate', 'operate'],
|
|
212
|
+
cancelEvent: ['approve', 'approve', 'calendar.domain-policy'],
|
|
213
|
+
listAgenda: ['read', 'view'],
|
|
214
|
+
saveEvent: ['operate', 'operate'],
|
|
215
|
+
saveTag: ['configure', 'configure', 'calendar.configuration-audit'],
|
|
216
|
+
},
|
|
217
|
+
exemptions: {
|
|
218
|
+
rsvp: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
219
|
+
},
|
|
220
|
+
},
|
|
221
|
+
channel_api: {
|
|
222
|
+
posture: 'internal/headless',
|
|
223
|
+
bundles: [],
|
|
224
|
+
functions: {},
|
|
225
|
+
exemptions: {},
|
|
226
|
+
},
|
|
227
|
+
company: {
|
|
228
|
+
posture: 'permission-bearing',
|
|
229
|
+
bundles: ['configure', 'view'],
|
|
230
|
+
functions: {
|
|
231
|
+
archiveBranch: ['configure', 'configure', 'company.configuration-audit'],
|
|
232
|
+
archiveCompany: ['configure', 'configure', 'company.configuration-audit'],
|
|
233
|
+
getCompany: ['read', 'view'],
|
|
234
|
+
listBranches: ['read', 'view'],
|
|
235
|
+
listCompanies: ['read', 'view'],
|
|
236
|
+
saveBranch: ['configure', 'configure', 'company.configuration-audit'],
|
|
237
|
+
saveCompany: ['configure', 'configure', 'company.configuration-audit'],
|
|
238
|
+
},
|
|
239
|
+
exemptions: {
|
|
240
|
+
contextLabels: ['internal-route', 'company.trusted-route-worker-or-service'],
|
|
241
|
+
},
|
|
242
|
+
},
|
|
243
|
+
crm: {
|
|
244
|
+
posture: 'permission-bearing',
|
|
245
|
+
bundles: ['agent-operate', 'analytics', 'approve', 'assignment', 'configure', 'merge', 'report', 'view'],
|
|
246
|
+
functions: {
|
|
247
|
+
'access.get': ['read', 'view'],
|
|
248
|
+
'access.save': ['configure', 'configure', 'crm.configuration-audit'],
|
|
249
|
+
'activity.cancel': ['approve', 'approve', 'crm.domain-policy'],
|
|
250
|
+
'activity.complete': ['approve', 'approve', 'crm.domain-policy'],
|
|
251
|
+
'activity.listMine': ['read', 'view'],
|
|
252
|
+
'activity.schedule': ['operate', 'agent-operate'],
|
|
253
|
+
'assignmentRule.save': ['configure', 'configure', 'crm.configuration-audit'],
|
|
254
|
+
'bootstrap.defaults': ['configure', 'configure', 'crm.configuration-audit'],
|
|
255
|
+
'calendar.list': ['read', 'view'],
|
|
256
|
+
'case.addMessage': ['operate', 'agent-operate'],
|
|
257
|
+
'case.assign': ['approve', 'assignment', 'crm.assignment-policy'],
|
|
258
|
+
'case.convertLead': ['operate', 'agent-operate'],
|
|
259
|
+
'case.count': ['read', 'view'],
|
|
260
|
+
'case.detectDuplicates': ['sensitive', 'analytics', 'crm.sensitive-data'],
|
|
261
|
+
'case.get': ['read', 'view'],
|
|
262
|
+
'case.group': ['read', 'report'],
|
|
263
|
+
'case.list': ['read', 'view'],
|
|
264
|
+
'case.markLost': ['approve', 'approve', 'crm.domain-policy'],
|
|
265
|
+
'case.markWon': ['approve', 'approve', 'crm.domain-policy'],
|
|
266
|
+
'case.merge': ['approve', 'merge', 'crm.merge-policy'],
|
|
267
|
+
'case.move': ['operate', 'agent-operate'],
|
|
268
|
+
'case.options': ['read', 'view'],
|
|
269
|
+
'case.reassign': ['approve', 'assignment', 'crm.assignment-policy'],
|
|
270
|
+
'case.refreshScore': ['operate', 'analytics'],
|
|
271
|
+
'case.save': ['operate', 'agent-operate'],
|
|
272
|
+
'configuration.get': ['read', 'view'],
|
|
273
|
+
'enrichment.preview': ['sensitive', 'analytics', 'crm.sensitive-data'],
|
|
274
|
+
'gamification.list': ['read', 'view'],
|
|
275
|
+
'gamification.refresh': ['operate', 'analytics'],
|
|
276
|
+
'mining.preview': ['sensitive', 'analytics', 'crm.sensitive-data'],
|
|
277
|
+
overview: ['read', 'report'],
|
|
278
|
+
'pipeline.summary': ['read', 'report'],
|
|
279
|
+
'plan.apply': ['configure', 'configure', 'crm.configuration-audit'],
|
|
280
|
+
'scoreRule.save': ['configure', 'configure', 'crm.configuration-audit'],
|
|
281
|
+
'stage.list': ['read', 'view'],
|
|
282
|
+
'stage.save': ['configure', 'configure', 'crm.configuration-audit'],
|
|
283
|
+
'tag.archive': ['configure', 'configure', 'crm.configuration-audit'],
|
|
284
|
+
'tag.list': ['read', 'view'],
|
|
285
|
+
'tag.save': ['configure', 'configure', 'crm.configuration-audit'],
|
|
286
|
+
'team.list': ['read', 'view'],
|
|
287
|
+
'team.member.list': ['read', 'view'],
|
|
288
|
+
'team.member.remove': ['configure', 'configure', 'crm.configuration-audit'],
|
|
289
|
+
'team.member.save': ['configure', 'configure', 'crm.configuration-audit'],
|
|
290
|
+
'team.save': ['configure', 'configure', 'crm.configuration-audit'],
|
|
291
|
+
},
|
|
292
|
+
exemptions: {},
|
|
293
|
+
},
|
|
294
|
+
crm_backend: {
|
|
295
|
+
posture: 'projection/bridge',
|
|
296
|
+
bundles: [],
|
|
297
|
+
functions: {},
|
|
298
|
+
exemptions: {},
|
|
299
|
+
},
|
|
300
|
+
crm_sale: {
|
|
301
|
+
posture: 'permission-bearing',
|
|
302
|
+
bundles: ['configure', 'view'],
|
|
303
|
+
functions: {
|
|
304
|
+
'sale.createQuotation': ['configure', 'configure', 'crm_sale.configuration-audit'],
|
|
305
|
+
'sale.listQuotableProducts': ['read', 'view'],
|
|
306
|
+
'sale.listQuotations': ['read', 'view'],
|
|
307
|
+
},
|
|
308
|
+
exemptions: {},
|
|
309
|
+
},
|
|
310
|
+
crm_staff_channel: {
|
|
311
|
+
posture: 'projection/bridge',
|
|
312
|
+
bundles: [],
|
|
313
|
+
functions: {},
|
|
314
|
+
exemptions: {},
|
|
315
|
+
},
|
|
316
|
+
crm_website: {
|
|
317
|
+
posture: 'projection/bridge',
|
|
318
|
+
bundles: [],
|
|
319
|
+
functions: {},
|
|
320
|
+
exemptions: {
|
|
321
|
+
'website.submitLead': ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
322
|
+
},
|
|
323
|
+
},
|
|
324
|
+
flow: {
|
|
325
|
+
posture: 'permission-bearing',
|
|
326
|
+
bundles: ['author', 'configure', 'operate', 'project-access', 'project-delete', 'view'],
|
|
327
|
+
functions: {
|
|
328
|
+
'board.remember': ['operate', 'operate'],
|
|
329
|
+
'board.scope': ['read', 'view'],
|
|
330
|
+
'column.archive': ['configure', 'configure', 'flow.configuration-audit'],
|
|
331
|
+
'column.list': ['read', 'view'],
|
|
332
|
+
'column.save': ['configure', 'configure', 'flow.configuration-audit'],
|
|
333
|
+
'epic.archive': ['operate', 'operate'],
|
|
334
|
+
'epic.editContent': ['operate', 'author'],
|
|
335
|
+
'epic.get': ['read', 'view'],
|
|
336
|
+
'epic.list': ['read', 'view'],
|
|
337
|
+
'epic.listAll': ['read', 'view'],
|
|
338
|
+
'epic.save': ['operate', 'operate'],
|
|
339
|
+
'field.archive': ['configure', 'configure', 'flow.configuration-audit'],
|
|
340
|
+
'field.list': ['read', 'view'],
|
|
341
|
+
'field.save': ['configure', 'configure', 'flow.configuration-audit'],
|
|
342
|
+
// Taking work out of every figure the project reports, and putting it
|
|
343
|
+
// back. Ordinary work rather than configuration: cancelling your own task
|
|
344
|
+
// is not a decision about how the project is run.
|
|
345
|
+
'issue.archive': ['operate', 'operate'],
|
|
346
|
+
'issue.restore': ['operate', 'operate'],
|
|
347
|
+
'issue.assignSprint': ['operate', 'operate'],
|
|
348
|
+
'issue.bulk': ['operate', 'operate'],
|
|
349
|
+
'issue.copyTo': ['operate', 'operate'],
|
|
350
|
+
'issue.transfer': ['operate', 'operate'],
|
|
351
|
+
'issue.buckets': ['read', 'view'],
|
|
352
|
+
'issue.comment': ['operate', 'operate'],
|
|
353
|
+
'issue.dependencies': ['read', 'view'],
|
|
354
|
+
'issue.dependency.add': ['operate', 'operate'],
|
|
355
|
+
'issue.dependency.remove': ['operate', 'operate'],
|
|
356
|
+
'issue.editDescription': ['operate', 'author'],
|
|
357
|
+
'issue.get': ['read', 'view'],
|
|
358
|
+
'issue.group': ['read', 'view'],
|
|
359
|
+
'issue.list': ['read', 'view'],
|
|
360
|
+
'issue.move': ['operate', 'operate'],
|
|
361
|
+
'issue.options': ['read', 'view'],
|
|
362
|
+
'issue.save': ['operate', 'operate'],
|
|
363
|
+
'issue.follow': ['operate', 'operate'],
|
|
364
|
+
'issue.unfollow': ['operate', 'operate'],
|
|
365
|
+
'issueType.archive': ['configure', 'configure', 'flow.configuration-audit'],
|
|
366
|
+
'issueType.list': ['read', 'view'],
|
|
367
|
+
'issueType.save': ['configure', 'configure', 'flow.configuration-audit'],
|
|
368
|
+
'page.archive': ['operate', 'operate'],
|
|
369
|
+
'page.editContent': ['operate', 'author'],
|
|
370
|
+
'page.get': ['read', 'view'],
|
|
371
|
+
'page.list': ['read', 'view'],
|
|
372
|
+
'page.listAll': ['read', 'view'],
|
|
373
|
+
// Re-parenting moves a whole branch of the wiki, not one record.
|
|
374
|
+
'page.move': ['configure', 'configure', 'flow.domain-policy'],
|
|
375
|
+
'page.reorder': ['operate', 'operate'],
|
|
376
|
+
'page.restore': ['operate', 'operate'],
|
|
377
|
+
'page.save': ['operate', 'operate'],
|
|
378
|
+
// The widest reach Flow grants: reading every project regardless of who
|
|
379
|
+
// was added to it. Its own capability, so nobody holds it by holding
|
|
380
|
+
// something else, and a policy authority because it is the answer to
|
|
381
|
+
// "who can see the project we hid".
|
|
382
|
+
'project.access.grant': ['security', 'project-access', 'flow.domain-policy'],
|
|
383
|
+
'project.count': ['read', 'view'],
|
|
384
|
+
'project.access.list': ['sensitive', 'project-access', 'flow.domain-policy'],
|
|
385
|
+
'project.access.revoke': ['security', 'project-access', 'flow.domain-policy'],
|
|
386
|
+
// Ending a project is not configuring one. Its own capability so that a
|
|
387
|
+
// role which reshapes boards every week cannot destroy one by accident,
|
|
388
|
+
// and its own policy authority because the act does not come back.
|
|
389
|
+
'project.delete': ['security', 'project-delete', 'flow.domain-policy'],
|
|
390
|
+
'project.deletion.list': ['sensitive', 'project-delete', 'flow.domain-policy'],
|
|
391
|
+
'project.editContent': ['operate', 'author'],
|
|
392
|
+
'project.get': ['read', 'view'],
|
|
393
|
+
'project.list': ['read', 'view'],
|
|
394
|
+
// Who is on a project decides what they may read, which is a decision
|
|
395
|
+
// about the project rather than a day of work in it.
|
|
396
|
+
'project.member.add': ['configure', 'configure', 'flow.configuration-audit'],
|
|
397
|
+
'project.member.list': ['read', 'view'],
|
|
398
|
+
'project.member.remove': ['configure', 'configure', 'flow.configuration-audit'],
|
|
399
|
+
'project.save': ['configure', 'configure', 'flow.configuration-audit'],
|
|
400
|
+
'project.stats': ['read', 'view'],
|
|
401
|
+
'sprint.close': ['operate', 'operate'],
|
|
402
|
+
'sprint.delete': ['operate', 'operate'],
|
|
403
|
+
'sprint.list': ['read', 'view'],
|
|
404
|
+
'sprint.save': ['operate', 'operate'],
|
|
405
|
+
'sprint.start': ['operate', 'operate'],
|
|
406
|
+
// Archiving a tag removes it from every issue in every project of the
|
|
407
|
+
// company and cannot be undone — a wider reach than the rest of `configure`.
|
|
408
|
+
'tag.archive': ['configure', 'configure', 'flow.configuration-audit'],
|
|
409
|
+
'tag.list': ['read', 'view'],
|
|
410
|
+
'tag.save': ['configure', 'configure', 'flow.configuration-audit'],
|
|
411
|
+
},
|
|
412
|
+
exemptions: {},
|
|
413
|
+
},
|
|
414
|
+
// Routes only, no functions of its own: every read and command reaches Flow
|
|
415
|
+
// through `ctx.call`, which is what makes project membership apply to the
|
|
416
|
+
// phone without the rule being written a second time (FLW-DEC-019).
|
|
417
|
+
flow_staff_channel: {
|
|
418
|
+
posture: 'projection/bridge',
|
|
419
|
+
bundles: [],
|
|
420
|
+
functions: {},
|
|
421
|
+
exemptions: {},
|
|
422
|
+
},
|
|
423
|
+
flow_backend: {
|
|
424
|
+
posture: 'projection/bridge',
|
|
425
|
+
bundles: [],
|
|
426
|
+
functions: {},
|
|
427
|
+
exemptions: {
|
|
428
|
+
// `exposure: 'internal'`: the generic /_ket/fn/ path refuses these outright.
|
|
429
|
+
// Live Doc calls them through the route that has already run its own record
|
|
430
|
+
// permission check — see documentRoutes and the DocumentOwner seam.
|
|
431
|
+
'sync.commitContent': ['internal-route', 'flow_backend.trusted-route-worker-or-service'],
|
|
432
|
+
'sync.commitEpicContent': ['internal-route', 'flow_backend.trusted-route-worker-or-service'],
|
|
433
|
+
'sync.commitPageContent': ['internal-route', 'flow_backend.trusted-route-worker-or-service'],
|
|
434
|
+
'sync.commitProjectContent': ['internal-route', 'flow_backend.trusted-route-worker-or-service'],
|
|
435
|
+
},
|
|
436
|
+
},
|
|
437
|
+
hospitality_billing: {
|
|
438
|
+
posture: 'permission-bearing',
|
|
439
|
+
bundles: ['approve', 'configure', 'operate', 'view'],
|
|
440
|
+
functions: {
|
|
441
|
+
getFolioBilling: ['read', 'view'],
|
|
442
|
+
invoiceFolio: ['approve', 'approve', 'hospitality_billing.domain-policy'],
|
|
443
|
+
listChargeRules: ['read', 'view'],
|
|
444
|
+
queueClosedFolios: ['operate', 'operate'],
|
|
445
|
+
recordFolioPayment: ['operate', 'operate'],
|
|
446
|
+
saveChargeRule: ['configure', 'configure', 'hospitality_billing.configuration-audit'],
|
|
447
|
+
},
|
|
448
|
+
exemptions: {},
|
|
449
|
+
},
|
|
450
|
+
hospitality_core: {
|
|
451
|
+
posture: 'permission-bearing',
|
|
452
|
+
bundles: [
|
|
453
|
+
'approve',
|
|
454
|
+
'compliance-operate',
|
|
455
|
+
'configure',
|
|
456
|
+
'housekeeping-attend',
|
|
457
|
+
'housekeeping-supervise',
|
|
458
|
+
'night-audit',
|
|
459
|
+
'operate',
|
|
460
|
+
'property-reference',
|
|
461
|
+
'reservation-input',
|
|
462
|
+
'revenue-operate',
|
|
463
|
+
'sensitive',
|
|
464
|
+
'view',
|
|
465
|
+
],
|
|
466
|
+
functions: {
|
|
467
|
+
addCharge: ['operate', 'operate'],
|
|
468
|
+
addStayGuest: ['operate', 'operate'],
|
|
469
|
+
adjustStayDeparture: ['operate', 'operate'],
|
|
470
|
+
amendReservation: ['operate', ['operate', 'reservation-input']],
|
|
471
|
+
archiveBuilding: ['configure', 'configure', 'hospitality_core.configuration-audit'],
|
|
472
|
+
archiveFloor: ['configure', 'configure', 'hospitality_core.configuration-audit'],
|
|
473
|
+
archiveProperty: ['configure', 'configure', 'hospitality_core.configuration-audit'],
|
|
474
|
+
archiveRoom: ['configure', 'configure', 'hospitality_core.configuration-audit'],
|
|
475
|
+
assignAmenity: ['configure', 'configure', 'hospitality_core.configuration-audit'],
|
|
476
|
+
attachContentImage: ['operate', 'operate'],
|
|
477
|
+
cancelCleaningTask: [
|
|
478
|
+
'approve',
|
|
479
|
+
['approve', 'housekeeping-supervise'],
|
|
480
|
+
'hospitality_core.domain-policy',
|
|
481
|
+
],
|
|
482
|
+
cancelReservation: ['approve', 'approve', 'hospitality_core.domain-policy'],
|
|
483
|
+
checkIn: ['operate', 'operate'],
|
|
484
|
+
checkOut: ['operate', 'operate'],
|
|
485
|
+
checkOutReadiness: ['read', ['view', 'operate']],
|
|
486
|
+
cleaningTaskSummary: ['operate', ['operate', 'housekeeping-attend', 'housekeeping-supervise']],
|
|
487
|
+
completeCleaningTask: ['approve', ['approve', 'housekeeping-attend'], 'hospitality_core.domain-policy'],
|
|
488
|
+
confirmStayNotice: ['approve', ['approve', 'compliance-operate'], 'hospitality_core.domain-policy'],
|
|
489
|
+
createCleaningTask: ['operate', ['operate', 'housekeeping-supervise']],
|
|
490
|
+
createReservation: ['operate', ['operate', 'reservation-input']],
|
|
491
|
+
getBuilding: ['read', 'view'],
|
|
492
|
+
getCleaningTask: ['read', ['view', 'housekeeping-attend']],
|
|
493
|
+
getFloor: ['read', 'view'],
|
|
494
|
+
getFolio: ['read', ['view', 'night-audit']],
|
|
495
|
+
getHousekeepingRoom: ['read', ['view', 'housekeeping-supervise']],
|
|
496
|
+
getProperty: [
|
|
497
|
+
'read',
|
|
498
|
+
['view', 'night-audit', 'property-reference', 'reservation-input', 'revenue-operate'],
|
|
499
|
+
],
|
|
500
|
+
getReservation: ['read', ['view', 'night-audit', 'reservation-input', 'revenue-operate']],
|
|
501
|
+
getRoom: ['read', ['view', 'revenue-operate']],
|
|
502
|
+
getRoomType: ['read', ['view', 'reservation-input', 'revenue-operate']],
|
|
503
|
+
getStay: ['read', ['view', 'night-audit']],
|
|
504
|
+
getTapeChart: ['read', ['view', 'reservation-input', 'revenue-operate']],
|
|
505
|
+
listAmenities: ['read', 'view'],
|
|
506
|
+
listAmenityCategories: ['read', 'view'],
|
|
507
|
+
listBuildings: ['read', 'view'],
|
|
508
|
+
listCancellationPolicies: ['read', ['view', 'reservation-input', 'revenue-operate']],
|
|
509
|
+
listCleaningTasks: ['read', ['view', 'housekeeping-attend']],
|
|
510
|
+
listContentChanges: ['read', 'view'],
|
|
511
|
+
listContentImages: ['read', 'view'],
|
|
512
|
+
listExtraLines: ['read', 'view'],
|
|
513
|
+
listFloors: ['read', 'view'],
|
|
514
|
+
listFolios: ['read', ['view', 'night-audit']],
|
|
515
|
+
listGuestDocuments: ['read', 'view'],
|
|
516
|
+
listInventory: ['read', ['view', 'reservation-input', 'revenue-operate']],
|
|
517
|
+
listInventoryChanges: ['read', ['view', 'revenue-operate']],
|
|
518
|
+
listNightAudits: ['sensitive', ['sensitive', 'night-audit'], 'hospitality_core.sensitive-data'],
|
|
519
|
+
listProperties: [
|
|
520
|
+
'read',
|
|
521
|
+
['view', 'night-audit', 'property-reference', 'reservation-input', 'revenue-operate'],
|
|
522
|
+
],
|
|
523
|
+
listPropertyCharges: ['read', 'view'],
|
|
524
|
+
listRatePlans: ['read', ['view', 'reservation-input', 'revenue-operate']],
|
|
525
|
+
listReservations: ['read', ['view', 'night-audit', 'reservation-input', 'revenue-operate']],
|
|
526
|
+
listRooms: ['read', ['view', 'housekeeping-supervise', 'revenue-operate']],
|
|
527
|
+
listRoomTypes: ['read', ['view', 'reservation-input', 'revenue-operate']],
|
|
528
|
+
listServiceCharges: ['read', 'view'],
|
|
529
|
+
listServiceProducts: ['read', 'view'],
|
|
530
|
+
listStayGuests: ['read', 'view'],
|
|
531
|
+
listStayNotices: ['read', ['view', 'compliance-operate']],
|
|
532
|
+
listStays: ['read', ['view', 'night-audit']],
|
|
533
|
+
markNoShow: ['approve', ['approve', 'night-audit'], 'hospitality_core.domain-policy'],
|
|
534
|
+
materializeExtraLine: ['operate', 'operate'],
|
|
535
|
+
holdRoom: ['operate', 'operate'],
|
|
536
|
+
moveRoom: ['operate', 'operate'],
|
|
537
|
+
releaseRoomHold: ['operate', 'operate'],
|
|
538
|
+
previewNightAudit: ['sensitive', ['sensitive', 'night-audit'], 'hospitality_core.sensitive-data'],
|
|
539
|
+
quoteReservation: ['operate', ['operate', 'reservation-input']],
|
|
540
|
+
recordStayNoticeSubmission: ['operate', ['operate', 'compliance-operate']],
|
|
541
|
+
removeContentImage: ['operate', 'operate'],
|
|
542
|
+
reorderContentImages: ['operate', 'operate'],
|
|
543
|
+
requestNightAudit: ['sensitive', ['sensitive', 'night-audit'], 'hospitality_core.sensitive-data'],
|
|
544
|
+
requestStayNoticeRefresh: ['operate', ['operate', 'compliance-operate']],
|
|
545
|
+
roomStatusSummary: ['operate', ['operate', 'housekeeping-supervise']],
|
|
546
|
+
saveAmenity: ['configure', 'configure', 'hospitality_core.configuration-audit'],
|
|
547
|
+
saveAmenityCategory: ['configure', 'configure', 'hospitality_core.configuration-audit'],
|
|
548
|
+
saveBed: ['configure', 'configure', 'hospitality_core.configuration-audit'],
|
|
549
|
+
saveBuilding: ['configure', 'configure', 'hospitality_core.configuration-audit'],
|
|
550
|
+
saveCancellationPolicy: [
|
|
551
|
+
'configure',
|
|
552
|
+
['configure', 'revenue-operate'],
|
|
553
|
+
'hospitality_core.configuration-audit',
|
|
554
|
+
],
|
|
555
|
+
saveExtraLine: ['configure', 'configure', 'hospitality_core.configuration-audit'],
|
|
556
|
+
saveFloor: ['configure', 'configure', 'hospitality_core.configuration-audit'],
|
|
557
|
+
saveGuestDocument: ['configure', 'configure', 'hospitality_core.configuration-audit'],
|
|
558
|
+
saveProperty: ['configure', 'configure', 'hospitality_core.configuration-audit'],
|
|
559
|
+
savePropertyCharge: ['configure', 'configure', 'hospitality_core.configuration-audit'],
|
|
560
|
+
savePropertyContact: ['configure', 'configure', 'hospitality_core.configuration-audit'],
|
|
561
|
+
saveRatePlan: ['configure', ['configure', 'revenue-operate'], 'hospitality_core.configuration-audit'],
|
|
562
|
+
saveRoom: ['configure', 'configure', 'hospitality_core.configuration-audit'],
|
|
563
|
+
saveRoomType: ['configure', 'configure', 'hospitality_core.configuration-audit'],
|
|
564
|
+
setInventoryRange: [
|
|
565
|
+
'configure',
|
|
566
|
+
['configure', 'revenue-operate'],
|
|
567
|
+
'hospitality_core.configuration-audit',
|
|
568
|
+
],
|
|
569
|
+
setPrimaryContentImage: ['configure', 'configure', 'hospitality_core.configuration-audit'],
|
|
570
|
+
setRestrictionRange: [
|
|
571
|
+
'configure',
|
|
572
|
+
['configure', 'revenue-operate'],
|
|
573
|
+
'hospitality_core.configuration-audit',
|
|
574
|
+
],
|
|
575
|
+
setRoomStatus: [
|
|
576
|
+
'configure',
|
|
577
|
+
['configure', 'housekeeping-supervise'],
|
|
578
|
+
'hospitality_core.configuration-audit',
|
|
579
|
+
],
|
|
580
|
+
startCleaningTask: ['operate', ['operate', 'housekeeping-attend']],
|
|
581
|
+
updateContentImage: ['operate', 'operate'],
|
|
582
|
+
voidCharge: ['approve', 'approve', 'hospitality_core.domain-policy'],
|
|
583
|
+
},
|
|
584
|
+
exemptions: {
|
|
585
|
+
cancelPartnerReservation: ['internal-route', 'hospitality_core.trusted-route-worker-or-service'],
|
|
586
|
+
createOnlineReservation: ['internal-route', 'hospitality_core.trusted-route-worker-or-service'],
|
|
587
|
+
getPartnerReservation: ['internal-route', 'hospitality_core.trusted-route-worker-or-service'],
|
|
588
|
+
getPropertyCatalog: ['internal-route', 'hospitality_core.trusted-route-worker-or-service'],
|
|
589
|
+
getRoomTypeCatalog: ['internal-route', 'hospitality_core.trusted-route-worker-or-service'],
|
|
590
|
+
listPartnerReservations: ['internal-route', 'hospitality_core.trusted-route-worker-or-service'],
|
|
591
|
+
listPropertyCatalog: ['internal-route', 'hospitality_core.trusted-route-worker-or-service'],
|
|
592
|
+
listRoomTypeCatalog: ['internal-route', 'hospitality_core.trusted-route-worker-or-service'],
|
|
593
|
+
quoteAvailability: ['internal-route', 'hospitality_core.trusted-route-worker-or-service'],
|
|
594
|
+
},
|
|
595
|
+
},
|
|
596
|
+
hospitality_staff_channel: {
|
|
597
|
+
posture: 'projection/bridge',
|
|
598
|
+
bundles: [],
|
|
599
|
+
functions: {},
|
|
600
|
+
exemptions: {},
|
|
601
|
+
},
|
|
602
|
+
hr: {
|
|
603
|
+
posture: 'permission-bearing',
|
|
604
|
+
bundles: ['configure', 'operate'],
|
|
605
|
+
functions: {
|
|
606
|
+
'department.save': ['configure', 'configure', 'hr.configuration-audit'],
|
|
607
|
+
'employee.create': ['configure', 'configure', 'hr.configuration-audit'],
|
|
608
|
+
'employee.manageList': ['configure', 'configure', 'hr.configuration-audit'],
|
|
609
|
+
'employee.myProfile': ['operate', 'operate'],
|
|
610
|
+
'employee.save': ['configure', 'configure', 'hr.configuration-audit'],
|
|
611
|
+
'job.save': ['configure', 'configure', 'hr.configuration-audit'],
|
|
612
|
+
'leave.manageAllocation': ['configure', 'configure', 'hr.configuration-audit'],
|
|
613
|
+
'leave.manageDecision': ['configure', 'configure', 'hr.configuration-audit'],
|
|
614
|
+
'leave.manageList': ['configure', 'configure', 'hr.configuration-audit'],
|
|
615
|
+
'leave.mine': ['operate', 'operate'],
|
|
616
|
+
'leave.request': ['operate', 'operate'],
|
|
617
|
+
'leaveType.save': ['configure', 'configure', 'hr.configuration-audit'],
|
|
618
|
+
'roster.generate': ['operate', 'operate'],
|
|
619
|
+
'roster.manageList': ['configure', 'configure', 'hr.configuration-audit'],
|
|
620
|
+
'roster.managePublish': ['configure', 'configure', 'hr.configuration-audit'],
|
|
621
|
+
'roster.manageReopen': ['configure', 'configure', 'hr.configuration-audit'],
|
|
622
|
+
'rotation.assign': ['configure', 'configure', 'hr.configuration-audit'],
|
|
623
|
+
'rotation.save': ['configure', 'configure', 'hr.configuration-audit'],
|
|
624
|
+
'schedule.mine': ['operate', 'operate'],
|
|
625
|
+
'shift.save': ['configure', 'configure', 'hr.configuration-audit'],
|
|
626
|
+
'shiftTemplate.save': ['configure', 'configure', 'hr.configuration-audit'],
|
|
627
|
+
},
|
|
628
|
+
exemptions: {},
|
|
629
|
+
},
|
|
630
|
+
inventory_staff_channel: {
|
|
631
|
+
posture: 'projection/bridge',
|
|
632
|
+
bundles: [],
|
|
633
|
+
functions: {},
|
|
634
|
+
exemptions: {},
|
|
635
|
+
},
|
|
636
|
+
livedoc: {
|
|
637
|
+
posture: 'projection/bridge',
|
|
638
|
+
bundles: [],
|
|
639
|
+
functions: {},
|
|
640
|
+
exemptions: {
|
|
641
|
+
// Both are `exposure: 'internal'`: the generic function path refuses them.
|
|
642
|
+
// The document owner's own route resolves the record and runs its read or
|
|
643
|
+
// write check first, then calls these — the same arrangement flow_backend's
|
|
644
|
+
// four commit functions use.
|
|
645
|
+
'sync.resolveSnapshotKey': ['internal-route', 'livedoc.trusted-route-worker-or-service'],
|
|
646
|
+
'sync.viewer': ['internal-route', 'livedoc.trusted-route-worker-or-service'],
|
|
647
|
+
},
|
|
648
|
+
},
|
|
649
|
+
loyalty: {
|
|
650
|
+
posture: 'permission-bearing',
|
|
651
|
+
bundles: ['approve', 'configure', 'operate', 'report', 'sensitive', 'view'],
|
|
652
|
+
functions: {
|
|
653
|
+
applyCode: ['configure', 'configure', 'loyalty.configuration-audit'],
|
|
654
|
+
applyReward: ['configure', 'configure', 'loyalty.configuration-audit'],
|
|
655
|
+
'earnGroup.list': ['read', 'view'],
|
|
656
|
+
'earnGroup.save': ['configure', 'configure', 'loyalty.configuration-audit'],
|
|
657
|
+
evaluateOrder: ['operate', 'operate'],
|
|
658
|
+
'ledger.list': ['sensitive', 'sensitive', 'loyalty.sensitive-data'],
|
|
659
|
+
'ledger.stats': ['sensitive', 'sensitive', 'loyalty.sensitive-data'],
|
|
660
|
+
'maintenance.expire': ['approve', 'approve', 'loyalty.domain-policy'],
|
|
661
|
+
'membership.config.get': ['read', 'view'],
|
|
662
|
+
'membership.config.save': ['configure', 'configure', 'loyalty.configuration-audit'],
|
|
663
|
+
'membership.getSummary': ['read', 'report'],
|
|
664
|
+
'membership.list': ['read', 'view'],
|
|
665
|
+
'membership.refresh': ['operate', 'operate'],
|
|
666
|
+
'membership.refreshAsync': ['operate', 'operate'],
|
|
667
|
+
'membership.stats': ['operate', 'operate'],
|
|
668
|
+
'order.finalize': ['approve', 'approve', 'loyalty.domain-policy'],
|
|
669
|
+
'order.reverse': ['approve', 'approve', 'loyalty.domain-policy'],
|
|
670
|
+
'order.reversePortion': ['approve', 'approve', 'loyalty.domain-policy'],
|
|
671
|
+
'portal.summary': ['operate', 'operate'],
|
|
672
|
+
'program.archive': ['configure', 'configure', 'loyalty.configuration-audit'],
|
|
673
|
+
'program.get': ['read', 'view'],
|
|
674
|
+
'program.list': ['read', 'view'],
|
|
675
|
+
'program.save': ['configure', 'configure', 'loyalty.configuration-audit'],
|
|
676
|
+
'program.setPricelists': ['configure', 'configure', 'loyalty.configuration-audit'],
|
|
677
|
+
'program.stats': ['operate', 'operate'],
|
|
678
|
+
removeReward: ['operate', 'operate'],
|
|
679
|
+
'reward.archive': ['configure', 'configure', 'loyalty.configuration-audit'],
|
|
680
|
+
'reward.save': ['configure', 'configure', 'loyalty.configuration-audit'],
|
|
681
|
+
'reward.setProducts': ['configure', 'configure', 'loyalty.configuration-audit'],
|
|
682
|
+
'rule.archive': ['configure', 'configure', 'loyalty.configuration-audit'],
|
|
683
|
+
'rule.save': ['configure', 'configure', 'loyalty.configuration-audit'],
|
|
684
|
+
'rule.setProducts': ['configure', 'configure', 'loyalty.configuration-audit'],
|
|
685
|
+
'storedValue.expire': ['approve', 'approve', 'loyalty.domain-policy'],
|
|
686
|
+
'storedValue.finalize': ['approve', 'approve', 'loyalty.domain-policy'],
|
|
687
|
+
'storedValue.issue': ['configure', 'configure', 'loyalty.configuration-audit'],
|
|
688
|
+
'storedValue.open': ['operate', 'operate'],
|
|
689
|
+
'storedValue.refund': ['approve', 'approve', 'loyalty.domain-policy'],
|
|
690
|
+
'storedValue.release': ['approve', 'approve', 'loyalty.domain-policy'],
|
|
691
|
+
'storedValue.reserve': ['operate', 'operate'],
|
|
692
|
+
'tag.assignProduct': ['configure', 'configure', 'loyalty.configuration-audit'],
|
|
693
|
+
'tag.save': ['configure', 'configure', 'loyalty.configuration-audit'],
|
|
694
|
+
'tier.list': ['read', 'view'],
|
|
695
|
+
'tier.save': ['configure', 'configure', 'loyalty.configuration-audit'],
|
|
696
|
+
'wallet.adjust': ['operate', 'operate'],
|
|
697
|
+
'wallet.create': ['operate', 'operate'],
|
|
698
|
+
'wallet.get': ['read', 'view'],
|
|
699
|
+
'wallet.list': ['read', 'view'],
|
|
700
|
+
'wallet.stats': ['operate', 'operate'],
|
|
701
|
+
},
|
|
702
|
+
exemptions: {},
|
|
703
|
+
},
|
|
704
|
+
loyalty_pos: {
|
|
705
|
+
posture: 'permission-bearing',
|
|
706
|
+
bundles: ['approve', 'configure', 'operate', 'view'],
|
|
707
|
+
functions: {
|
|
708
|
+
applyCode: ['configure', 'configure', 'loyalty_pos.configuration-audit'],
|
|
709
|
+
applyReward: ['configure', 'configure', 'loyalty_pos.configuration-audit'],
|
|
710
|
+
backfill: ['operate', 'operate'],
|
|
711
|
+
cancelOrder: ['approve', 'approve', 'loyalty_pos.domain-policy'],
|
|
712
|
+
createExchange: ['operate', 'operate'],
|
|
713
|
+
evaluateOrder: ['operate', 'operate'],
|
|
714
|
+
getOrderState: ['read', 'view'],
|
|
715
|
+
reconcileOrderAsync: ['approve', 'approve', 'loyalty_pos.domain-policy'],
|
|
716
|
+
refundOrder: ['approve', 'approve', 'loyalty_pos.domain-policy'],
|
|
717
|
+
removeReward: ['operate', 'operate'],
|
|
718
|
+
validateOrder: ['approve', 'approve', 'loyalty_pos.domain-policy'],
|
|
719
|
+
},
|
|
720
|
+
exemptions: {},
|
|
721
|
+
},
|
|
722
|
+
mail: {
|
|
723
|
+
posture: 'permission-bearing',
|
|
724
|
+
bundles: ['configure', 'operate', 'view'],
|
|
725
|
+
functions: {
|
|
726
|
+
countInbox: ['read', 'view'],
|
|
727
|
+
countUnread: ['read', 'view'],
|
|
728
|
+
listInbox: ['read', 'view'],
|
|
729
|
+
listSubtypes: ['read', 'view'],
|
|
730
|
+
markAllInboxRead: ['operate', 'operate'],
|
|
731
|
+
markInboxRead: ['operate', 'operate'],
|
|
732
|
+
saveSubtype: ['configure', 'configure', 'mail.configuration-audit'],
|
|
733
|
+
},
|
|
734
|
+
exemptions: {},
|
|
735
|
+
},
|
|
736
|
+
mail_backend: {
|
|
737
|
+
posture: 'projection/bridge',
|
|
738
|
+
bundles: [],
|
|
739
|
+
functions: {},
|
|
740
|
+
exemptions: {},
|
|
741
|
+
},
|
|
742
|
+
mail_staff_channel: {
|
|
743
|
+
posture: 'projection/bridge',
|
|
744
|
+
bundles: [],
|
|
745
|
+
functions: {},
|
|
746
|
+
exemptions: {},
|
|
747
|
+
},
|
|
748
|
+
mail_transport: {
|
|
749
|
+
posture: 'permission-bearing',
|
|
750
|
+
bundles: ['approve', 'configure', 'operate', 'sensitive', 'view'],
|
|
751
|
+
functions: {
|
|
752
|
+
cancel: ['approve', 'approve', 'mail_transport.domain-policy'],
|
|
753
|
+
listOutbox: ['read', 'view'],
|
|
754
|
+
queueTemplate: ['operate', 'operate'],
|
|
755
|
+
recordProviderEvent: ['sensitive', 'sensitive', 'mail_transport.sensitive-data'],
|
|
756
|
+
retry: ['operate', 'operate'],
|
|
757
|
+
saveTemplate: ['configure', 'configure', 'mail_transport.configuration-audit'],
|
|
758
|
+
},
|
|
759
|
+
exemptions: {},
|
|
760
|
+
},
|
|
761
|
+
manufacturing: {
|
|
762
|
+
posture: 'permission-bearing',
|
|
763
|
+
bundles: ['approve', 'configure', 'operate', 'view'],
|
|
764
|
+
functions: {
|
|
765
|
+
cancelProduction: ['approve', 'approve', 'manufacturing.domain-policy'],
|
|
766
|
+
completeProduction: ['approve', 'approve', 'manufacturing.domain-policy'],
|
|
767
|
+
confirmProduction: ['approve', 'approve', 'manufacturing.domain-policy'],
|
|
768
|
+
finishWorkOrder: ['operate', 'operate'],
|
|
769
|
+
getBom: ['read', 'view'],
|
|
770
|
+
getProduction: ['read', 'view'],
|
|
771
|
+
listBoms: ['read', 'view'],
|
|
772
|
+
listProductions: ['read', 'view'],
|
|
773
|
+
listWorkCenters: ['read', 'view'],
|
|
774
|
+
pauseWorkOrder: ['operate', 'operate'],
|
|
775
|
+
saveBom: ['configure', 'configure', 'manufacturing.configuration-audit'],
|
|
776
|
+
saveProduction: ['operate', 'operate'],
|
|
777
|
+
saveWorkCenter: ['configure', 'configure', 'manufacturing.configuration-audit'],
|
|
778
|
+
startProduction: ['operate', 'operate'],
|
|
779
|
+
startWorkOrder: ['operate', 'operate'],
|
|
780
|
+
},
|
|
781
|
+
exemptions: {},
|
|
782
|
+
},
|
|
783
|
+
manufacturing_backend: {
|
|
784
|
+
posture: 'permission-bearing',
|
|
785
|
+
bundles: [],
|
|
786
|
+
functions: {},
|
|
787
|
+
exemptions: {},
|
|
788
|
+
},
|
|
789
|
+
oauth: {
|
|
790
|
+
posture: 'session/device',
|
|
791
|
+
bundles: ['configure', 'security', 'sensitive'],
|
|
792
|
+
functions: {
|
|
793
|
+
archiveProvider: ['security', 'security', 'oauth.security-audit'],
|
|
794
|
+
getProvider: ['sensitive', 'sensitive', 'oauth.sensitive-data'],
|
|
795
|
+
linkIdentity: ['security', 'security', 'oauth.security-audit'],
|
|
796
|
+
listIdentities: ['sensitive', 'sensitive', 'oauth.sensitive-data'],
|
|
797
|
+
listProviders: ['sensitive', 'sensitive', 'oauth.sensitive-data'],
|
|
798
|
+
manageOptions: ['configure', 'configure', 'oauth.configuration-audit'],
|
|
799
|
+
saveProvider: ['security', 'security', 'oauth.security-audit'],
|
|
800
|
+
unlinkIdentity: ['security', 'security', 'oauth.security-audit'],
|
|
801
|
+
},
|
|
802
|
+
exemptions: {
|
|
803
|
+
beginTransaction: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
804
|
+
claimTransaction: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
805
|
+
myIdentities: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
806
|
+
providerForLogin: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
807
|
+
publicProviders: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
808
|
+
resolveLogin: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
809
|
+
},
|
|
810
|
+
},
|
|
811
|
+
oauth_backend: {
|
|
812
|
+
posture: 'projection/bridge',
|
|
813
|
+
bundles: [],
|
|
814
|
+
functions: {},
|
|
815
|
+
exemptions: {},
|
|
816
|
+
},
|
|
817
|
+
partner: {
|
|
818
|
+
posture: 'permission-bearing',
|
|
819
|
+
bundles: ['configure', 'operate', 'view'],
|
|
820
|
+
functions: {
|
|
821
|
+
archivePartner: ['configure', 'configure', 'partner.configuration-audit'],
|
|
822
|
+
archivePartners: ['configure', 'configure', 'partner.configuration-audit'],
|
|
823
|
+
countPartners: ['read', 'view'],
|
|
824
|
+
getPartner: ['read', 'view'],
|
|
825
|
+
getTerms: ['read', 'view'],
|
|
826
|
+
grantRole: ['configure', 'configure', 'partner.configuration-audit'],
|
|
827
|
+
listAddresses: ['read', 'view'],
|
|
828
|
+
listPartners: ['read', 'view'],
|
|
829
|
+
revokeRole: ['configure', 'configure', 'partner.configuration-audit'],
|
|
830
|
+
saveAddress: ['configure', 'configure', 'partner.configuration-audit'],
|
|
831
|
+
savePartner: ['configure', 'configure', 'partner.configuration-audit'],
|
|
832
|
+
saveTerms: ['configure', 'configure', 'partner.configuration-audit'],
|
|
833
|
+
snapshotAddress: ['operate', 'operate'],
|
|
834
|
+
},
|
|
835
|
+
exemptions: {},
|
|
836
|
+
},
|
|
837
|
+
partner_backend: {
|
|
838
|
+
posture: 'projection/bridge',
|
|
839
|
+
bundles: [],
|
|
840
|
+
functions: {},
|
|
841
|
+
exemptions: {},
|
|
842
|
+
},
|
|
843
|
+
partner_mail_backend: {
|
|
844
|
+
posture: 'projection/bridge',
|
|
845
|
+
bundles: ['approve', 'operate'],
|
|
846
|
+
functions: {
|
|
847
|
+
follow: ['operate', 'operate'],
|
|
848
|
+
post: ['approve', 'approve', 'partner_mail_backend.domain-policy'],
|
|
849
|
+
timeline: ['operate', 'operate'],
|
|
850
|
+
unfollow: ['operate', 'operate'],
|
|
851
|
+
},
|
|
852
|
+
exemptions: {},
|
|
853
|
+
},
|
|
854
|
+
pos: {
|
|
855
|
+
posture: 'permission-bearing',
|
|
856
|
+
bundles: [
|
|
857
|
+
'cash-control',
|
|
858
|
+
'configure',
|
|
859
|
+
'order-operate',
|
|
860
|
+
'reconcile',
|
|
861
|
+
'refund',
|
|
862
|
+
'sensitive',
|
|
863
|
+
'shift-approve',
|
|
864
|
+
'shift-operate',
|
|
865
|
+
'tender',
|
|
866
|
+
'view',
|
|
867
|
+
'void',
|
|
868
|
+
],
|
|
869
|
+
functions: {
|
|
870
|
+
addLine: ['operate', 'order-operate'],
|
|
871
|
+
addPayment: ['operate', 'tender'],
|
|
872
|
+
approveSessionVariance: ['approve', 'shift-approve', 'pos.domain-policy'],
|
|
873
|
+
cancelOrder: ['approve', 'void', 'pos.domain-policy'],
|
|
874
|
+
closeSession: ['approve', 'shift-approve', 'pos.domain-policy'],
|
|
875
|
+
createExchange: ['operate', 'order-operate'],
|
|
876
|
+
createOrder: ['operate', 'order-operate'],
|
|
877
|
+
createSession: ['configure', 'configure', 'pos.configuration-audit'],
|
|
878
|
+
getLineTrackingAvailability: ['read', 'view'],
|
|
879
|
+
getOrder: ['read', 'view'],
|
|
880
|
+
getReceipt: ['read', 'view'],
|
|
881
|
+
getReturnEligibility: ['read', 'view'],
|
|
882
|
+
getSession: ['read', 'view'],
|
|
883
|
+
linkPaymentMethod: ['configure', 'configure', 'pos.configuration-audit'],
|
|
884
|
+
listAuditEvents: ['sensitive', 'sensitive', 'pos.sensitive-data'],
|
|
885
|
+
listConfigs: ['read', 'view'],
|
|
886
|
+
listOrders: ['read', 'view'],
|
|
887
|
+
listPaymentMethods: ['read', 'view'],
|
|
888
|
+
listSessions: ['read', 'view'],
|
|
889
|
+
openSession: ['operate', 'shift-operate'],
|
|
890
|
+
operationsReport: ['sensitive', 'sensitive', 'pos.sensitive-data'],
|
|
891
|
+
paymentMethodAvailable: ['operate', 'tender'],
|
|
892
|
+
recordCashMovement: ['operate', 'cash-control', 'pos.cash-control-policy'],
|
|
893
|
+
recountSession: ['operate', 'shift-operate'],
|
|
894
|
+
refundOrder: ['approve', 'refund', 'pos.domain-policy'],
|
|
895
|
+
removeLine: ['operate', 'order-operate'],
|
|
896
|
+
reorderLines: ['operate', 'order-operate'],
|
|
897
|
+
reverseCashMovement: ['approve', 'cash-control', 'pos.cash-control-policy'],
|
|
898
|
+
saveConfig: ['configure', 'configure', 'pos.configuration-audit'],
|
|
899
|
+
savePaymentMethod: ['configure', 'configure', 'pos.configuration-audit'],
|
|
900
|
+
setLineLotSelections: ['configure', 'configure', 'pos.configuration-audit'],
|
|
901
|
+
startClosing: ['operate', 'shift-operate'],
|
|
902
|
+
updateLine: ['operate', 'order-operate'],
|
|
903
|
+
updateOrder: ['operate', 'order-operate'],
|
|
904
|
+
validateOrder: ['approve', 'reconcile', 'pos.domain-policy'],
|
|
905
|
+
voidPayment: ['approve', 'void', 'pos.domain-policy'],
|
|
906
|
+
},
|
|
907
|
+
exemptions: {
|
|
908
|
+
lockProviderPayment: ['internal-route', 'pos.trusted-route-worker-or-service'],
|
|
909
|
+
reverseProviderPayment: ['internal-route', 'pos.trusted-route-worker-or-service'],
|
|
910
|
+
reviewProviderPayment: ['internal-route', 'pos.trusted-route-worker-or-service'],
|
|
911
|
+
settleProviderPayment: ['internal-route', 'pos.trusted-route-worker-or-service'],
|
|
912
|
+
unlockProviderPayment: ['internal-route', 'pos.trusted-route-worker-or-service'],
|
|
913
|
+
},
|
|
914
|
+
},
|
|
915
|
+
pos_backend: {
|
|
916
|
+
posture: 'projection/bridge',
|
|
917
|
+
bundles: [],
|
|
918
|
+
functions: {},
|
|
919
|
+
exemptions: {},
|
|
920
|
+
},
|
|
921
|
+
pos_channel: {
|
|
922
|
+
posture: 'projection/bridge',
|
|
923
|
+
bundles: [],
|
|
924
|
+
functions: {},
|
|
925
|
+
exemptions: {
|
|
926
|
+
claimSyncCommand: ['internal-route', 'pos_channel.trusted-route-worker-or-service'],
|
|
927
|
+
completeSyncCommand: ['internal-route', 'pos_channel.trusted-route-worker-or-service'],
|
|
928
|
+
getSyncCommand: ['internal-route', 'pos_channel.trusted-route-worker-or-service'],
|
|
929
|
+
listDeviceSyncCommands: ['internal-route', 'pos_channel.trusted-route-worker-or-service'],
|
|
930
|
+
priceBook: ['internal-route', 'pos_channel.trusted-route-worker-or-service'],
|
|
931
|
+
},
|
|
932
|
+
},
|
|
933
|
+
pricing: {
|
|
934
|
+
posture: 'permission-bearing',
|
|
935
|
+
bundles: ['configure', 'operate', 'view'],
|
|
936
|
+
functions: {
|
|
937
|
+
listPricelistItems: ['read', 'view'],
|
|
938
|
+
listPricelists: ['read', 'view'],
|
|
939
|
+
priceFor: ['operate', 'operate'],
|
|
940
|
+
savePricelist: ['configure', 'configure', 'pricing.configuration-audit'],
|
|
941
|
+
savePricelistItem: ['configure', 'configure', 'pricing.configuration-audit'],
|
|
942
|
+
},
|
|
943
|
+
exemptions: {},
|
|
944
|
+
},
|
|
945
|
+
product: {
|
|
946
|
+
posture: 'permission-bearing',
|
|
947
|
+
bundles: ['configure', 'operate', 'report', 'view'],
|
|
948
|
+
functions: {
|
|
949
|
+
addProductUom: ['operate', 'operate'],
|
|
950
|
+
addTemplateUom: ['operate', 'operate'],
|
|
951
|
+
archiveTemplate: ['configure', 'configure', 'product.configuration-audit'],
|
|
952
|
+
countTemplates: ['read', 'view'],
|
|
953
|
+
deleteTemplates: ['configure', 'configure', 'product.configuration-audit'],
|
|
954
|
+
generateVariants: ['operate', 'operate'],
|
|
955
|
+
getTemplate: ['read', 'view'],
|
|
956
|
+
getVariant: ['read', 'view'],
|
|
957
|
+
getVariantSummary: ['read', 'report'],
|
|
958
|
+
groupTemplates: ['operate', 'operate'],
|
|
959
|
+
listAttributeLines: ['read', 'view'],
|
|
960
|
+
listAttributes: ['read', 'view'],
|
|
961
|
+
listAttributeValues: ['read', 'view'],
|
|
962
|
+
listBrands: ['read', 'view'],
|
|
963
|
+
listCategories: ['read', 'view'],
|
|
964
|
+
listTemplates: ['read', 'view'],
|
|
965
|
+
listVariantCosts: ['read', 'view'],
|
|
966
|
+
listVariants: ['read', 'view'],
|
|
967
|
+
removeAttributeLine: ['configure', 'configure', 'product.configuration-audit'],
|
|
968
|
+
saveAttribute: ['configure', 'configure', 'product.configuration-audit'],
|
|
969
|
+
saveAttributeLine: ['configure', 'configure', 'product.configuration-audit'],
|
|
970
|
+
saveAttributeValue: ['configure', 'configure', 'product.configuration-audit'],
|
|
971
|
+
saveBrand: ['configure', 'configure', 'product.configuration-audit'],
|
|
972
|
+
saveCategory: ['configure', 'configure', 'product.configuration-audit'],
|
|
973
|
+
saveTemplate: ['configure', 'configure', 'product.configuration-audit'],
|
|
974
|
+
saveVariant: ['configure', 'configure', 'product.configuration-audit'],
|
|
975
|
+
setCost: ['configure', 'configure', 'product.configuration-audit'],
|
|
976
|
+
setProductUom: ['configure', 'configure', 'product.configuration-audit'],
|
|
977
|
+
},
|
|
978
|
+
exemptions: {},
|
|
979
|
+
},
|
|
980
|
+
product_backend: {
|
|
981
|
+
posture: 'projection/bridge',
|
|
982
|
+
bundles: [],
|
|
983
|
+
functions: {},
|
|
984
|
+
exemptions: {},
|
|
985
|
+
},
|
|
986
|
+
product_mail_backend: {
|
|
987
|
+
posture: 'projection/bridge',
|
|
988
|
+
bundles: ['approve', 'operate'],
|
|
989
|
+
functions: {
|
|
990
|
+
follow: ['operate', 'operate'],
|
|
991
|
+
post: ['approve', 'approve', 'product_mail_backend.domain-policy'],
|
|
992
|
+
timeline: ['operate', 'operate'],
|
|
993
|
+
unfollow: ['operate', 'operate'],
|
|
994
|
+
},
|
|
995
|
+
exemptions: {},
|
|
996
|
+
},
|
|
997
|
+
product_media: {
|
|
998
|
+
posture: 'permission-bearing',
|
|
999
|
+
bundles: ['configure', 'operate', 'view'],
|
|
1000
|
+
functions: {
|
|
1001
|
+
attachMedia: ['operate', 'operate'],
|
|
1002
|
+
listMedia: ['read', 'view'],
|
|
1003
|
+
listMediaByProducts: ['read', 'view'],
|
|
1004
|
+
listPrimaryMedia: ['read', 'view'],
|
|
1005
|
+
removeMedia: ['operate', 'operate'],
|
|
1006
|
+
reorderMedia: ['operate', 'operate'],
|
|
1007
|
+
setPrimary: ['configure', 'configure', 'product_media.configuration-audit'],
|
|
1008
|
+
},
|
|
1009
|
+
exemptions: {},
|
|
1010
|
+
},
|
|
1011
|
+
purchase: {
|
|
1012
|
+
posture: 'permission-bearing',
|
|
1013
|
+
bundles: ['approve', 'configure', 'operate', 'report', 'sensitive', 'view'],
|
|
1014
|
+
functions: {
|
|
1015
|
+
addLine: ['operate', 'operate'],
|
|
1016
|
+
approveOrder: ['approve', 'approve', 'purchase.domain-policy'],
|
|
1017
|
+
cancelOrder: ['approve', 'approve', 'purchase.domain-policy'],
|
|
1018
|
+
confirmOrder: ['approve', 'approve', 'purchase.domain-policy'],
|
|
1019
|
+
createOrder: ['operate', 'operate'],
|
|
1020
|
+
createVendorBill: ['configure', 'configure', 'purchase.configuration-audit'],
|
|
1021
|
+
getOrder: ['read', 'view'],
|
|
1022
|
+
getPurchaseOrderReport: ['sensitive', 'sensitive', 'purchase.sensitive-data'],
|
|
1023
|
+
getRfqReport: ['sensitive', 'sensitive', 'purchase.sensitive-data'],
|
|
1024
|
+
listOrderMetrics: ['read', 'report'],
|
|
1025
|
+
listOrders: ['read', 'view'],
|
|
1026
|
+
listSupplierInfo: ['read', 'view'],
|
|
1027
|
+
lockOrder: ['approve', 'approve', 'purchase.domain-policy'],
|
|
1028
|
+
receiveOrderReceipt: ['operate', 'operate'],
|
|
1029
|
+
removeLine: ['operate', 'operate'],
|
|
1030
|
+
resetToDraft: ['operate', 'operate'],
|
|
1031
|
+
saveDraft: ['configure', 'configure', 'purchase.configuration-audit'],
|
|
1032
|
+
saveSupplierInfo: ['configure', 'configure', 'purchase.configuration-audit'],
|
|
1033
|
+
sendRfq: ['operate', 'operate'],
|
|
1034
|
+
setPurchaseMethod: ['configure', 'configure', 'purchase.configuration-audit'],
|
|
1035
|
+
syncReceipts: ['operate', 'operate'],
|
|
1036
|
+
updateLine: ['operate', 'operate'],
|
|
1037
|
+
},
|
|
1038
|
+
exemptions: {},
|
|
1039
|
+
},
|
|
1040
|
+
purchase_backend: {
|
|
1041
|
+
posture: 'projection/bridge',
|
|
1042
|
+
bundles: [],
|
|
1043
|
+
functions: {},
|
|
1044
|
+
exemptions: {},
|
|
1045
|
+
},
|
|
1046
|
+
purchase_staff_channel: {
|
|
1047
|
+
posture: 'projection/bridge',
|
|
1048
|
+
bundles: [],
|
|
1049
|
+
functions: {},
|
|
1050
|
+
exemptions: {},
|
|
1051
|
+
},
|
|
1052
|
+
quality: {
|
|
1053
|
+
posture: 'permission-bearing',
|
|
1054
|
+
bundles: ['approve', 'configure', 'operate', 'view'],
|
|
1055
|
+
functions: {
|
|
1056
|
+
createRequirement: ['configure', 'configure', 'quality.configuration-audit'],
|
|
1057
|
+
getCheck: ['read', 'view'],
|
|
1058
|
+
saveTemplate: ['configure', 'configure', 'quality.configuration-audit'],
|
|
1059
|
+
submit: ['approve', 'approve', 'quality.domain-policy'],
|
|
1060
|
+
uploadPhoto: ['operate', 'operate'],
|
|
1061
|
+
},
|
|
1062
|
+
exemptions: {},
|
|
1063
|
+
},
|
|
1064
|
+
quality_staff_channel: {
|
|
1065
|
+
posture: 'projection/bridge',
|
|
1066
|
+
bundles: [],
|
|
1067
|
+
functions: {},
|
|
1068
|
+
exemptions: {},
|
|
1069
|
+
},
|
|
1070
|
+
sale: {
|
|
1071
|
+
posture: 'permission-bearing',
|
|
1072
|
+
bundles: [
|
|
1073
|
+
'cancel',
|
|
1074
|
+
'configure',
|
|
1075
|
+
'confirm',
|
|
1076
|
+
'fulfillment-sync',
|
|
1077
|
+
'invoice',
|
|
1078
|
+
'quote-operate',
|
|
1079
|
+
'report',
|
|
1080
|
+
'view',
|
|
1081
|
+
],
|
|
1082
|
+
functions: {
|
|
1083
|
+
addLine: ['operate', 'quote-operate'],
|
|
1084
|
+
cancelOrder: ['approve', 'cancel', 'sale.domain-policy'],
|
|
1085
|
+
confirmOrder: ['approve', 'confirm', 'sale.domain-policy'],
|
|
1086
|
+
countOrders: ['read', 'view'],
|
|
1087
|
+
createInvoice: ['approve', 'invoice', 'sale.domain-policy'],
|
|
1088
|
+
createOrder: ['operate', 'quote-operate'],
|
|
1089
|
+
getOrder: ['read', 'view'],
|
|
1090
|
+
getProformaReport: ['sensitive', 'report', 'sale.sensitive-data'],
|
|
1091
|
+
getQuotationReport: ['sensitive', 'report', 'sale.sensitive-data'],
|
|
1092
|
+
getSalesOrderReport: ['sensitive', 'report', 'sale.sensitive-data'],
|
|
1093
|
+
listInvoicePolicies: ['read', 'view'],
|
|
1094
|
+
listOrders: ['read', 'view'],
|
|
1095
|
+
lockOrder: ['approve', 'confirm', 'sale.domain-policy'],
|
|
1096
|
+
removeLine: ['operate', 'quote-operate'],
|
|
1097
|
+
resetOrder: ['operate', 'quote-operate'],
|
|
1098
|
+
saveDraft: ['operate', 'quote-operate'],
|
|
1099
|
+
sendQuotation: ['operate', 'quote-operate'],
|
|
1100
|
+
setInvoicePolicy: ['configure', 'configure', 'sale.configuration-audit'],
|
|
1101
|
+
syncDeliveries: ['operate', 'fulfillment-sync'],
|
|
1102
|
+
},
|
|
1103
|
+
exemptions: {},
|
|
1104
|
+
},
|
|
1105
|
+
sale_backend: {
|
|
1106
|
+
posture: 'projection/bridge',
|
|
1107
|
+
bundles: [],
|
|
1108
|
+
functions: {},
|
|
1109
|
+
exemptions: {},
|
|
1110
|
+
},
|
|
1111
|
+
sale_staff_channel: {
|
|
1112
|
+
posture: 'projection/bridge',
|
|
1113
|
+
bundles: [],
|
|
1114
|
+
functions: {},
|
|
1115
|
+
exemptions: {},
|
|
1116
|
+
},
|
|
1117
|
+
stock: {
|
|
1118
|
+
posture: 'permission-bearing',
|
|
1119
|
+
bundles: ['approve', 'configure', 'operate', 'report', 'sensitive', 'view'],
|
|
1120
|
+
functions: {
|
|
1121
|
+
addMove: ['operate', 'operate'],
|
|
1122
|
+
adjustInventory: ['operate', 'operate'],
|
|
1123
|
+
assignCategoryRoute: ['configure', 'configure', 'stock.configuration-audit'],
|
|
1124
|
+
assignPicking: ['operate', 'operate'],
|
|
1125
|
+
assignProductRoute: ['configure', 'configure', 'stock.configuration-audit'],
|
|
1126
|
+
assignWarehouseRoute: ['configure', 'configure', 'stock.configuration-audit'],
|
|
1127
|
+
cancelPicking: ['approve', 'approve', 'stock.domain-policy'],
|
|
1128
|
+
completePicking: ['approve', 'approve', 'stock.domain-policy'],
|
|
1129
|
+
configureProduct: ['operate', 'operate'],
|
|
1130
|
+
confirmPicking: ['approve', 'approve', 'stock.domain-policy'],
|
|
1131
|
+
createLot: ['configure', 'configure', 'stock.configuration-audit'],
|
|
1132
|
+
createPicking: ['operate', 'operate'],
|
|
1133
|
+
forecast: ['read', 'report'],
|
|
1134
|
+
getDeliveryReport: ['sensitive', 'sensitive', 'stock.sensitive-data'],
|
|
1135
|
+
getInternalTransferReport: ['sensitive', 'sensitive', 'stock.sensitive-data'],
|
|
1136
|
+
getPicking: ['read', 'view'],
|
|
1137
|
+
getPickingView: ['read', 'view'],
|
|
1138
|
+
getProductConfig: ['read', 'view'],
|
|
1139
|
+
getProductStockView: ['read', 'view'],
|
|
1140
|
+
getReceiptReport: ['sensitive', 'sensitive', 'stock.sensitive-data'],
|
|
1141
|
+
listLocations: ['read', 'view'],
|
|
1142
|
+
listLots: ['read', 'view'],
|
|
1143
|
+
listOrderpoints: ['read', 'view'],
|
|
1144
|
+
listPickings: ['read', 'view'],
|
|
1145
|
+
listPickingTypes: ['read', 'view'],
|
|
1146
|
+
listPickingViews: ['read', 'view'],
|
|
1147
|
+
listProductAvailability: ['read', 'view'],
|
|
1148
|
+
listProductConfigs: ['read', 'view'],
|
|
1149
|
+
listQuants: ['read', 'view'],
|
|
1150
|
+
listRoutes: ['read', 'view'],
|
|
1151
|
+
listRules: ['read', 'view'],
|
|
1152
|
+
listStorableProducts: ['read', 'view'],
|
|
1153
|
+
listWarehouses: ['read', 'view'],
|
|
1154
|
+
procure: ['operate', 'operate'],
|
|
1155
|
+
reconcileReservations: ['approve', 'approve', 'stock.domain-policy'],
|
|
1156
|
+
reserveMove: ['operate', 'operate'],
|
|
1157
|
+
reserveMoves: ['operate', 'operate'],
|
|
1158
|
+
runOrderpoint: ['operate', 'operate'],
|
|
1159
|
+
runOrderpoints: ['operate', 'operate'],
|
|
1160
|
+
saveInventoryProduct: ['configure', 'configure', 'stock.configuration-audit'],
|
|
1161
|
+
saveLocation: ['configure', 'configure', 'stock.configuration-audit'],
|
|
1162
|
+
saveLot: ['configure', 'configure', 'stock.configuration-audit'],
|
|
1163
|
+
saveMoveLine: ['operate', 'operate'],
|
|
1164
|
+
saveOrderpoint: ['operate', 'operate'],
|
|
1165
|
+
savePicking: ['operate', 'operate'],
|
|
1166
|
+
savePickingType: ['operate', 'operate'],
|
|
1167
|
+
saveRoute: ['configure', 'configure', 'stock.configuration-audit'],
|
|
1168
|
+
saveRule: ['configure', 'configure', 'stock.configuration-audit'],
|
|
1169
|
+
saveWarehouse: ['configure', 'configure', 'stock.configuration-audit'],
|
|
1170
|
+
setInventoryProductActive: ['configure', 'configure', 'stock.configuration-audit'],
|
|
1171
|
+
trackedAvailability: ['operate', 'operate'],
|
|
1172
|
+
validatePicking: ['approve', 'approve', 'stock.domain-policy'],
|
|
1173
|
+
},
|
|
1174
|
+
exemptions: {
|
|
1175
|
+
deleteInventoryProduct: ['internal-route', 'stock.trusted-route-worker-or-service'],
|
|
1176
|
+
},
|
|
1177
|
+
},
|
|
1178
|
+
stock_backend: {
|
|
1179
|
+
posture: 'projection/bridge',
|
|
1180
|
+
bundles: [],
|
|
1181
|
+
functions: {},
|
|
1182
|
+
exemptions: {},
|
|
1183
|
+
},
|
|
1184
|
+
stock_mail_backend: {
|
|
1185
|
+
posture: 'projection/bridge',
|
|
1186
|
+
bundles: ['approve', 'operate'],
|
|
1187
|
+
functions: {
|
|
1188
|
+
follow: ['operate', 'operate'],
|
|
1189
|
+
post: ['approve', 'approve', 'stock_mail_backend.domain-policy'],
|
|
1190
|
+
timeline: ['operate', 'operate'],
|
|
1191
|
+
unfollow: ['operate', 'operate'],
|
|
1192
|
+
},
|
|
1193
|
+
exemptions: {},
|
|
1194
|
+
},
|
|
1195
|
+
stock_staff_channel: {
|
|
1196
|
+
posture: 'projection/bridge',
|
|
1197
|
+
bundles: ['approve', 'configure', 'operate', 'view'],
|
|
1198
|
+
functions: {
|
|
1199
|
+
claimCountSession: ['operate', 'operate'],
|
|
1200
|
+
claimPicking: ['operate', 'operate'],
|
|
1201
|
+
completeExecution: ['approve', 'approve', 'stock_staff_channel.domain-policy'],
|
|
1202
|
+
completeGuidedPicking: ['approve', 'approve', 'stock_staff_channel.domain-policy'],
|
|
1203
|
+
completeReturnExecution: ['approve', 'approve', 'stock_staff_channel.domain-policy'],
|
|
1204
|
+
createCountSession: ['configure', 'configure', 'stock_staff_channel.configuration-audit'],
|
|
1205
|
+
getCountContext: ['read', 'view'],
|
|
1206
|
+
getScanContext: ['read', 'view'],
|
|
1207
|
+
listActiveClaims: ['read', 'view'],
|
|
1208
|
+
listCountSessions: ['read', 'view'],
|
|
1209
|
+
recordCountLine: ['operate', 'operate'],
|
|
1210
|
+
releasePicking: ['approve', 'approve', 'stock_staff_channel.domain-policy'],
|
|
1211
|
+
resumeCountAttempt: ['operate', 'operate'],
|
|
1212
|
+
startScanSession: ['operate', 'operate'],
|
|
1213
|
+
submitCountAttempt: ['approve', 'approve', 'stock_staff_channel.domain-policy'],
|
|
1214
|
+
submitScanEvent: ['approve', 'approve', 'stock_staff_channel.domain-policy'],
|
|
1215
|
+
transitionScanSession: ['approve', 'approve', 'stock_staff_channel.domain-policy'],
|
|
1216
|
+
},
|
|
1217
|
+
exemptions: {},
|
|
1218
|
+
},
|
|
1219
|
+
storage: {
|
|
1220
|
+
posture: 'permission-bearing',
|
|
1221
|
+
bundles: ['operate', 'view'],
|
|
1222
|
+
functions: {
|
|
1223
|
+
createAttachment: ['operate', 'operate'],
|
|
1224
|
+
getAttachment: ['read', 'view'],
|
|
1225
|
+
listAttachments: ['read', 'view'],
|
|
1226
|
+
removeAttachment: ['operate', 'operate'],
|
|
1227
|
+
requestSweep: ['operate', 'operate'],
|
|
1228
|
+
},
|
|
1229
|
+
exemptions: {
|
|
1230
|
+
getPublicAttachment: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1231
|
+
},
|
|
1232
|
+
},
|
|
1233
|
+
uom: {
|
|
1234
|
+
posture: 'permission-bearing',
|
|
1235
|
+
bundles: ['approve', 'configure', 'operate', 'view'],
|
|
1236
|
+
functions: {
|
|
1237
|
+
convert: ['operate', 'operate'],
|
|
1238
|
+
listUnits: ['read', 'view'],
|
|
1239
|
+
lockUnit: ['approve', 'approve', 'uom.domain-policy'],
|
|
1240
|
+
savePrecision: ['configure', 'configure', 'uom.configuration-audit'],
|
|
1241
|
+
saveUnit: ['configure', 'configure', 'uom.configuration-audit'],
|
|
1242
|
+
},
|
|
1243
|
+
exemptions: {},
|
|
1244
|
+
},
|
|
1245
|
+
user: {
|
|
1246
|
+
posture: 'permission-bearing',
|
|
1247
|
+
bundles: ['security', 'sensitive'],
|
|
1248
|
+
functions: {
|
|
1249
|
+
applyPreset: ['security', 'security', 'user.security-audit'],
|
|
1250
|
+
applyRoleTemplate: ['security', 'security', 'user.security-audit'],
|
|
1251
|
+
archiveBranch: ['security', 'security', 'user.security-audit'],
|
|
1252
|
+
archiveCompany: ['security', 'security', 'user.security-audit'],
|
|
1253
|
+
archiveUser: ['security', 'security', 'user.security-audit'],
|
|
1254
|
+
assignRole: ['security', 'security', 'user.security-audit'],
|
|
1255
|
+
assignScopedRole: ['security', 'security', 'user.security-audit'],
|
|
1256
|
+
authorizationState: ['sensitive', 'sensitive', 'user.sensitive-data'],
|
|
1257
|
+
cloneManagedRole: ['security', 'security', 'user.security-audit'],
|
|
1258
|
+
createUser: ['security', 'security', 'user.security-audit'],
|
|
1259
|
+
effectiveAccess: ['sensitive', 'sensitive', 'user.sensitive-data'],
|
|
1260
|
+
getRole: ['sensitive', 'sensitive', 'user.sensitive-data'],
|
|
1261
|
+
getUser: ['sensitive', 'sensitive', 'user.sensitive-data'],
|
|
1262
|
+
grantBranch: ['security', 'security', 'user.security-audit'],
|
|
1263
|
+
grantCompany: ['security', 'security', 'user.security-audit'],
|
|
1264
|
+
grantFunction: ['security', 'security', 'user.security-audit'],
|
|
1265
|
+
listAuthorizationAudit: ['sensitive', 'sensitive', 'user.sensitive-data'],
|
|
1266
|
+
listRoles: ['sensitive', 'sensitive', 'user.sensitive-data'],
|
|
1267
|
+
listSecurityAudit: ['sensitive', 'sensitive', 'user.sensitive-data'],
|
|
1268
|
+
listUsers: ['sensitive', 'sensitive', 'user.sensitive-data'],
|
|
1269
|
+
permissionBundleCatalogue: ['sensitive', 'sensitive', 'user.sensitive-data'],
|
|
1270
|
+
permissionCatalogue: ['security', 'security', 'user.security-audit'],
|
|
1271
|
+
permitted: ['sensitive', 'sensitive', 'user.sensitive-data'],
|
|
1272
|
+
previewRoleTemplate: ['sensitive', 'sensitive', 'user.sensitive-data'],
|
|
1273
|
+
revokeBranch: ['security', 'security', 'user.security-audit'],
|
|
1274
|
+
revokeCompany: ['security', 'security', 'user.security-audit'],
|
|
1275
|
+
revokeFunction: ['security', 'security', 'user.security-audit'],
|
|
1276
|
+
saveRole: ['security', 'security', 'user.security-audit'],
|
|
1277
|
+
saveUser: ['security', 'security', 'user.security-audit'],
|
|
1278
|
+
setBreakGlass: ['security', 'security', 'user.security-audit'],
|
|
1279
|
+
setDefaultContext: ['security', 'security', 'user.security-audit'],
|
|
1280
|
+
unassignRole: ['security', 'security', 'user.security-audit'],
|
|
1281
|
+
unassignScopedRole: ['security', 'security', 'user.security-audit'],
|
|
1282
|
+
},
|
|
1283
|
+
exemptions: {
|
|
1284
|
+
authenticate: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1285
|
+
consumeAuthToken: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1286
|
+
contextOptions: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1287
|
+
issueAuthToken: ['internal-route', 'user.trusted-route-worker-or-service'],
|
|
1288
|
+
prepareContext: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1289
|
+
provisionAdmin: ['bootstrap-only', 'operator-provisioning-boundary'],
|
|
1290
|
+
recordSecurityEvent: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1291
|
+
resolveSessionContext: ['internal-route', 'user.trusted-route-worker-or-service'],
|
|
1292
|
+
setPassword: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1293
|
+
setTimezone: ['internal-route', 'user.trusted-route-worker-or-service'],
|
|
1294
|
+
},
|
|
1295
|
+
},
|
|
1296
|
+
user_backend: {
|
|
1297
|
+
posture: 'projection/bridge',
|
|
1298
|
+
bundles: [],
|
|
1299
|
+
functions: {},
|
|
1300
|
+
exemptions: {},
|
|
1301
|
+
},
|
|
1302
|
+
website_form: {
|
|
1303
|
+
posture: 'permission-bearing',
|
|
1304
|
+
bundles: ['configure', 'operate', 'security', 'sensitive', 'view'],
|
|
1305
|
+
functions: {
|
|
1306
|
+
countSubmissions: ['read', 'view'],
|
|
1307
|
+
exportSubmissions: ['sensitive', 'sensitive', 'website.sensitive-data'],
|
|
1308
|
+
holdSubmission: ['operate', 'operate'],
|
|
1309
|
+
listForms: ['read', 'view'],
|
|
1310
|
+
listSubmissionAudit: ['sensitive', 'sensitive', 'website.sensitive-data'],
|
|
1311
|
+
listSubmissions: ['read', 'view'],
|
|
1312
|
+
purgeSubmissions: ['security', 'security', 'website.security-audit'],
|
|
1313
|
+
readSubmission: ['sensitive', 'sensitive', 'website.sensitive-data'],
|
|
1314
|
+
saveForm: ['configure', 'configure', 'website.configuration-audit'],
|
|
1315
|
+
},
|
|
1316
|
+
exemptions: {
|
|
1317
|
+
getForm: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1318
|
+
submitForm: ['internal-route', 'website_form.public-submit-route'],
|
|
1319
|
+
},
|
|
1320
|
+
},
|
|
1321
|
+
website_form_mail: {
|
|
1322
|
+
posture: 'projection/bridge',
|
|
1323
|
+
bundles: ['operate'],
|
|
1324
|
+
functions: {
|
|
1325
|
+
notifySubmission: ['operate', 'operate'],
|
|
1326
|
+
},
|
|
1327
|
+
exemptions: {},
|
|
1328
|
+
},
|
|
1329
|
+
website_menu: {
|
|
1330
|
+
posture: 'permission-bearing',
|
|
1331
|
+
bundles: ['configure', 'view'],
|
|
1332
|
+
functions: {
|
|
1333
|
+
addMenuItem: ['configure', 'configure', 'website.configuration-audit'],
|
|
1334
|
+
listMenu: ['read', 'view'],
|
|
1335
|
+
preflightMenu: ['read', 'view'],
|
|
1336
|
+
moveMenuItem: ['configure', 'configure', 'website.configuration-audit'],
|
|
1337
|
+
removeMenuItem: ['configure', 'configure', 'website.configuration-audit'],
|
|
1338
|
+
snapshotMenu: ['configure', 'configure', 'website.configuration-audit'],
|
|
1339
|
+
},
|
|
1340
|
+
exemptions: {
|
|
1341
|
+
publicMenu: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1342
|
+
},
|
|
1343
|
+
},
|
|
1344
|
+
website_search: {
|
|
1345
|
+
posture: 'permission-bearing',
|
|
1346
|
+
bundles: ['operate', 'view'],
|
|
1347
|
+
functions: {
|
|
1348
|
+
indexStatus: ['read', 'view'],
|
|
1349
|
+
reindexSite: ['operate', 'operate'],
|
|
1350
|
+
},
|
|
1351
|
+
exemptions: {
|
|
1352
|
+
searchIndexed: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1353
|
+
},
|
|
1354
|
+
},
|
|
1355
|
+
website_seo: {
|
|
1356
|
+
posture: 'permission-bearing',
|
|
1357
|
+
bundles: ['configure', 'view'],
|
|
1358
|
+
functions: {
|
|
1359
|
+
getEntrySeo: ['read', 'view'],
|
|
1360
|
+
saveEntrySeo: ['configure', 'configure', 'website.configuration-audit'],
|
|
1361
|
+
},
|
|
1362
|
+
exemptions: {
|
|
1363
|
+
sitemapEntries: ['internal-route', 'website_seo.public-sitemap-route'],
|
|
1364
|
+
},
|
|
1365
|
+
},
|
|
1366
|
+
website: {
|
|
1367
|
+
posture: 'permission-bearing',
|
|
1368
|
+
bundles: ['configure', 'operate', 'security', 'sensitive', 'view'],
|
|
1369
|
+
functions: {
|
|
1370
|
+
assignTerm: ['configure', 'configure', 'website.configuration-audit'],
|
|
1371
|
+
countEntries: ['read', 'view'],
|
|
1372
|
+
countPages: ['read', 'view'],
|
|
1373
|
+
createPreviewToken: ['sensitive', 'sensitive', 'website.sensitive-data'],
|
|
1374
|
+
deleteMediaMetadata: ['configure', 'configure', 'website.configuration-audit'],
|
|
1375
|
+
deleteDomain: ['configure', 'configure', 'website.configuration-audit'],
|
|
1376
|
+
deleteTerm: ['configure', 'configure', 'website.configuration-audit'],
|
|
1377
|
+
diffRevisions: ['read', 'view'],
|
|
1378
|
+
getEntry: ['read', 'view'],
|
|
1379
|
+
getMediaMetadata: ['read', 'view'],
|
|
1380
|
+
getTaxonomyTerm: ['read', 'view'],
|
|
1381
|
+
listDomains: ['read', 'view'],
|
|
1382
|
+
listEntries: ['read', 'view'],
|
|
1383
|
+
listEntryTerms: ['read', 'view'],
|
|
1384
|
+
listMedia: ['read', 'view'],
|
|
1385
|
+
listPages: ['read', 'view'],
|
|
1386
|
+
mediaUsage: ['read', 'view'],
|
|
1387
|
+
listRedirects: ['read', 'view'],
|
|
1388
|
+
listRevisions: ['read', 'view'],
|
|
1389
|
+
listSiteMembers: ['read', 'view'],
|
|
1390
|
+
listSites: ['read', 'view'],
|
|
1391
|
+
listTaxonomyTerms: ['read', 'view'],
|
|
1392
|
+
activatePublication: ['configure', 'configure', 'website.configuration-audit'],
|
|
1393
|
+
listPublications: ['read', 'view'],
|
|
1394
|
+
preflightPublication: ['read', 'view'],
|
|
1395
|
+
preparePublication: ['configure', 'configure', 'website.configuration-audit'],
|
|
1396
|
+
publishEntry: ['configure', 'configure', 'website.configuration-audit'],
|
|
1397
|
+
rollbackPublication: ['configure', 'configure', 'website.configuration-audit'],
|
|
1398
|
+
publishPage: ['configure', 'configure', 'website.configuration-audit'],
|
|
1399
|
+
removeSiteMember: ['security', 'security', 'website.security-audit'],
|
|
1400
|
+
restoreRevision: ['operate', 'operate'],
|
|
1401
|
+
unpublishEntry: ['configure', 'configure', 'website.configuration-audit'],
|
|
1402
|
+
revokePreviewTokens: ['sensitive', 'sensitive', 'website.sensitive-data'],
|
|
1403
|
+
saveDomain: ['configure', 'configure', 'website.configuration-audit'],
|
|
1404
|
+
saveEntry: ['configure', 'configure', 'website.configuration-audit'],
|
|
1405
|
+
saveMediaMetadata: ['configure', 'configure', 'website.configuration-audit'],
|
|
1406
|
+
savePage: ['configure', 'configure', 'website.configuration-audit'],
|
|
1407
|
+
saveRedirect: ['configure', 'configure', 'website.configuration-audit'],
|
|
1408
|
+
saveSite: ['configure', 'configure', 'website.configuration-audit'],
|
|
1409
|
+
saveSiteMember: ['configure', 'configure', 'website.configuration-audit'],
|
|
1410
|
+
saveTerm: ['configure', 'configure', 'website.configuration-audit'],
|
|
1411
|
+
trashEntry: ['configure', 'configure', 'website.configuration-audit'],
|
|
1412
|
+
unassignTerm: ['configure', 'configure', 'website.configuration-audit'],
|
|
1413
|
+
untrashEntry: ['configure', 'configure', 'website.configuration-audit'],
|
|
1414
|
+
},
|
|
1415
|
+
exemptions: {
|
|
1416
|
+
authenticateCustomer: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1417
|
+
changeCustomerPassword: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1418
|
+
claimChannelRateSlot: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1419
|
+
customerRealmByKey: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1420
|
+
customerRealmForSite: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1421
|
+
getEntryByPath: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1422
|
+
getPageByPath: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1423
|
+
issueCustomerTokenGrant: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1424
|
+
previewEntry: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1425
|
+
primaryCustomerSiteForRealm: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1426
|
+
registerCustomer: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1427
|
+
resolveCustomerAccessToken: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1428
|
+
resolveCustomerSession: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1429
|
+
resolveSite: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1430
|
+
revokeAllCustomerSessions: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1431
|
+
revokeCustomerSession: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1432
|
+
revokeCustomerTokenGrant: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1433
|
+
rotateCustomerTokenGrant: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1434
|
+
activePublication: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1435
|
+
countSearchPublished: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1436
|
+
searchPublished: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1437
|
+
startCustomerSession: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1438
|
+
updateCustomerProfile: ['anonymous', 'declared-public-or-cryptographic-realm-boundary'],
|
|
1439
|
+
},
|
|
1440
|
+
},
|
|
1441
|
+
};
|
|
1442
|
+
const capabilityLabels = {
|
|
1443
|
+
'agent-operate': { en: 'Agent operations', vi: 'Nghiệp vụ nhân viên' },
|
|
1444
|
+
analytics: { en: 'Analytics', vi: 'Phân tích' },
|
|
1445
|
+
approve: { en: 'Approve', vi: 'Phê duyệt' },
|
|
1446
|
+
author: { en: 'Write documents', vi: 'Soạn nội dung' },
|
|
1447
|
+
assignment: { en: 'Assign records', vi: 'Phân công hồ sơ' },
|
|
1448
|
+
cancel: { en: 'Cancel', vi: 'Hủy' },
|
|
1449
|
+
'cash-control': { en: 'Cash control', vi: 'Kiểm soát tiền mặt' },
|
|
1450
|
+
'compliance-operate': { en: 'Hospitality compliance', vi: 'Tuân thủ lưu trú' },
|
|
1451
|
+
configure: { en: 'Configure', vi: 'Cấu hình' },
|
|
1452
|
+
confirm: { en: 'Confirm', vi: 'Xác nhận' },
|
|
1453
|
+
'fulfillment-sync': { en: 'Synchronize fulfillment', vi: 'Đồng bộ thực hiện đơn' },
|
|
1454
|
+
'housekeeping-attend': { en: 'Attend housekeeping', vi: 'Thực hiện buồng phòng' },
|
|
1455
|
+
'housekeeping-supervise': { en: 'Supervise housekeeping', vi: 'Giám sát buồng phòng' },
|
|
1456
|
+
invoice: { en: 'Invoice', vi: 'Lập hóa đơn' },
|
|
1457
|
+
merge: { en: 'Merge records', vi: 'Gộp hồ sơ' },
|
|
1458
|
+
'night-audit': { en: 'Run night audit', vi: 'Chạy kiểm toán đêm' },
|
|
1459
|
+
'order-operate': { en: 'Operate orders', vi: 'Vận hành đơn hàng' },
|
|
1460
|
+
operate: { en: 'Operate', vi: 'Vận hành' },
|
|
1461
|
+
// Not "read every project" — that is the grant row this capability hands out,
|
|
1462
|
+
// and holding the capability without a row of your own reads nothing. The
|
|
1463
|
+
// label said otherwise, which would have told a role screen that ticking this
|
|
1464
|
+
// box opens the projects; it opens the ability to open them for somebody.
|
|
1465
|
+
'project-access': { en: 'Administer project access', vi: 'Quản trị quyền đọc dự án' },
|
|
1466
|
+
'project-delete': { en: 'Delete projects for good', vi: 'Xóa hẳn dự án' },
|
|
1467
|
+
'property-reference': { en: 'Reference properties', vi: 'Tham chiếu cơ sở lưu trú' },
|
|
1468
|
+
reconcile: { en: 'Reconcile', vi: 'Đối soát' },
|
|
1469
|
+
refund: { en: 'Refund', vi: 'Hoàn tiền' },
|
|
1470
|
+
report: { en: 'Reports', vi: 'Báo cáo' },
|
|
1471
|
+
'reservation-input': { en: 'Enter reservations', vi: 'Nhập đặt phòng' },
|
|
1472
|
+
'revenue-operate': { en: 'Manage hospitality revenue', vi: 'Quản lý doanh thu lưu trú' },
|
|
1473
|
+
'quote-operate': { en: 'Operate quotations', vi: 'Vận hành báo giá' },
|
|
1474
|
+
security: { en: 'Security', vi: 'Bảo mật' },
|
|
1475
|
+
sensitive: { en: 'Sensitive data', vi: 'Dữ liệu nhạy cảm' },
|
|
1476
|
+
'shift-approve': { en: 'Approve shifts', vi: 'Duyệt ca' },
|
|
1477
|
+
'shift-operate': { en: 'Operate shifts', vi: 'Vận hành ca' },
|
|
1478
|
+
tender: { en: 'Take payment', vi: 'Nhận thanh toán' },
|
|
1479
|
+
view: { en: 'View', vi: 'Xem' },
|
|
1480
|
+
void: { en: 'Void', vi: 'Hủy thanh toán' },
|
|
1481
|
+
};
|
|
1482
|
+
/** Exact Wave 2 declarations for public KetSuite modules in production product deployments. */
|
|
1483
|
+
export const ketsuitePermissionModules = Object.fromEntries(Object.entries(sources).map(([module, source]) => [
|
|
1484
|
+
module,
|
|
1485
|
+
{
|
|
1486
|
+
posture: source.posture,
|
|
1487
|
+
owner: module,
|
|
1488
|
+
bundles: Object.fromEntries(source.bundles.map((capability) => {
|
|
1489
|
+
const labels = capabilityLabels[capability];
|
|
1490
|
+
if (!labels)
|
|
1491
|
+
throw new Error(`missing labels for permission capability "${capability}"`);
|
|
1492
|
+
return [
|
|
1493
|
+
`${module}.${capability}`,
|
|
1494
|
+
{
|
|
1495
|
+
labels: {
|
|
1496
|
+
en: `${labels.en} · ${module.replaceAll('_', ' ')}`,
|
|
1497
|
+
vi: `${labels.vi} · ${module.replaceAll('_', ' ')}`,
|
|
1498
|
+
},
|
|
1499
|
+
},
|
|
1500
|
+
];
|
|
1501
|
+
})),
|
|
1502
|
+
functions: Object.fromEntries(Object.entries(source.functions).map(([action, [risk, capabilities, policy]]) => [
|
|
1503
|
+
`${module}.${action}`,
|
|
1504
|
+
{
|
|
1505
|
+
risk,
|
|
1506
|
+
bundles: (Array.isArray(capabilities) ? capabilities : [capabilities]).map((capability) => `${module}.${capability}`),
|
|
1507
|
+
owner: module,
|
|
1508
|
+
...(policy ? { policy } : {}),
|
|
1509
|
+
},
|
|
1510
|
+
])),
|
|
1511
|
+
exemptions: Object.fromEntries(Object.entries(source.exemptions).map(([action, [reason, authority]]) => [
|
|
1512
|
+
`${module}.${action}`,
|
|
1513
|
+
{ reason, authority },
|
|
1514
|
+
])),
|
|
1515
|
+
},
|
|
1516
|
+
]));
|
|
1517
|
+
export const ketsuitePermissionModuleNames = Object.freeze(Object.keys(sources));
|
|
1518
|
+
//# sourceMappingURL=permission-catalogue.js.map
|