-
-
-
-
-
- {{result.address}}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+ {{result.address}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{!--
+
+
+
+
+ --}}
+
+
+
+
+
+ {{#if this.warehouse.warehouse_sections}}
+
+ {{#if this.warehouse.warehouse_aisles}}
+
+ {{#if this.warehouse.warehouse_racks}}
+
+ {{/if}}
+ {{/if}}
+ {{/if}}
+
+
+
+
+
\ No newline at end of file
diff --git a/addon/controllers/batch/index.js b/addon/controllers/batch/index.js
deleted file mode 100644
index f2efb60c..00000000
--- a/addon/controllers/batch/index.js
+++ /dev/null
@@ -1,276 +0,0 @@
-import Controller from '@ember/controller';
-import { inject as service } from '@ember/service';
-import { tracked } from '@glimmer/tracking';
-import { action } from '@ember/object';
-import { isBlank } from '@ember/utils';
-import { task, timeout } from 'ember-concurrency';
-
-export default class BatchIndexController extends Controller {
- /**
- * Inject the `notifications` service
- *
- * @var {Service}
- */
- @service notifications;
-
- /**
- * Inject the `modals-manager` service
- *
- * @var {Service}
- */
- @service modalsManager;
-
- /**
- * Inject the `store` service
- *
- * @var {Service}
- */
- @service store;
-
- /**
- * Inject the `fetch` service
- *
- * @var {Service}
- */
- @service fetch;
-
- /**
- * Inject the `filters` service
- *
- * @var {Service}
- */
- @service filters;
-
- /**
- * Inject the `hostRouter` service
- *
- * @var {Service}
- */
- @service hostRouter;
-
- /**
- * Inject the `crud` service
- *
- * @var {Service}
- */
- @service crud;
-
- /**
- * Queryable parameters for this controller's model
- *
- * @var {Array}
- */
- queryParams = ['page', 'limit', 'sort', 'product', 'warehouse', 'batch'];
-
- /**
- * The current page of data being viewed
- *
- * @var {Integer}
- */
- @tracked page = 1;
-
- /**
- * The maximum number of items to show per page
- *
- * @var {Integer}
- */
- @tracked limit;
-
- /**
- * The param to sort the data on, the param with prepended `-` is descending
- *
- * @var {String}
- */
- @tracked sort = '-created_at';
-
- /**
- * The filterable param `sku`
- *
- * @var {String}
- */
- @tracked sku;
-
- /**
- * The filterable param `status`
- *
- * @var {String}
- */
- @tracked status;
-
- /**
- * All columns applicable for orders
- *
- * @var {Array}
- */
- @tracked columns = [
- {
- label: 'Product',
- valuePath: 'product.name',
- action: this.viewBatch,
- width: '200px',
- cellComponent: 'table/cell/anchor',
- resizable: true,
- sortable: true,
- filterable: true,
- filterComponent: 'filter/string',
- },
- {
- label: 'Quantity',
- valuePath: 'quantity',
- width: '200px',
- },
- {
- label: 'Batch Number',
- valuePath: 'batch_number',
- width: '200px',
- },
- {
- label: 'Created At',
- valuePath: 'createdAt',
- sortParam: 'created_at',
- width: '10%',
- resizable: true,
- sortable: true,
- filterable: true,
- filterComponent: 'filter/date',
- },
- {
- label: 'Updated At',
- valuePath: 'updatedAt',
- sortParam: 'updated_at',
- width: '10%',
- resizable: true,
- sortable: true,
- hidden: true,
- filterable: true,
- filterComponent: 'filter/date',
- },
- {
- label: '',
- cellComponent: 'table/cell/dropdown',
- ddButtonText: false,
- ddButtonIcon: 'ellipsis-h',
- ddButtonIconPrefix: 'fas',
- ddMenuLabel: 'Batch Actions',
- cellClassNames: 'overflow-visible',
- wrapperClass: 'flex items-center justify-end mx-2',
- width: '10%',
- actions: [
- {
- label: 'View Batch',
- fn: this.viewBatch,
- },
- {
- label: 'Edit Batch',
- fn: this.editBatch,
- },
- ],
- sortable: false,
- filterable: false,
- resizable: false,
- searchable: false,
- },
- ];
-
- /**
- * The search task.
- *
- * @void
- */
- @task({ restartable: true }) *search({ target: { value } }) {
- // if no query don't search
- if (isBlank(value)) {
- this.query = null;
- return;
- }
-
- // timeout for typing
- yield timeout(250);
-
- // reset page for results
- if (this.page > 1) {
- this.page = 1;
- }
-
- // update the query param
- this.query = value;
- }
-
- /**
- * Toggles dialog to export `batch`
- *
- * @void
- */
- @action exportProcuts() {
- this.crud.export('batch');
- }
-
- /**
- * View a `batch` details in overlay
- *
- * @param {BatchModel} batch
- * @param {Object} options
- * @void
- */
- @action viewBatch(batch) {
- return this.transitionToRoute('batch.index.details', batch);
- }
-
- /**
- * Create a new `batch` in modal
- *
- * @param {Object} options
- * @void
- */
- @action createBatch() {
- return this.transitionToRoute('batch.index.new');
- }
-
- /**
- * Edit a `batch` details
- *
- * @param {BatchModel} batch
- * @param {Object} options
- * @void
- */
- @action async editBatch(batch) {
- return this.transitionToRoute('batch.index.edit', batch);
- }
-
- /**
- * Delete a `batch` via confirm prompt
- *
- * @param {BatchModel} batch
- * @param {Object} options
- * @void
- */
- @action deleteBatch(batch, options = {}) {
- this.crud.delete(batch, {
- onConfirm: () => {
- return this.hostRouter.refresh();
- },
- ...options,
- });
- }
-
- /**
- * Bulk deletes selected `batch` via confirm prompt
- *
- * @param {Array} selected an array of selected models
- * @void
- */
- @action bulkDeleteBatchs() {
- const selected = this.table.selectedRows;
-
- this.crud.bulkDelete(selected, {
- modelNamePath: `public_id`,
- acceptButtonText: 'Delete Batches',
- fetchOptions: {
- namespace: 'pallet/int/v1',
- },
- onSuccess: () => {
- return this.hostRouter.refresh();
- },
- });
- }
-}
diff --git a/addon/controllers/batch/index/details.js b/addon/controllers/batch/index/details.js
deleted file mode 100644
index 68e07243..00000000
--- a/addon/controllers/batch/index/details.js
+++ /dev/null
@@ -1,58 +0,0 @@
-import Controller from '@ember/controller';
-import { tracked } from '@glimmer/tracking';
-import { action } from '@ember/object';
-import { inject as service } from '@ember/service';
-
-export default class BatchIndexDetailsController extends Controller {
- @service hostRouter;
-
- /**
- * The currently active view tab ('details' by default).
- *
- * @type {String}
- * @tracked
- */
- @tracked view = 'details';
-
- /**
- * An array of query parameters to be serialized in the URL.
- *
- * @type {String[]}
- * @tracked
- */
- @tracked queryParams = ['view'];
-
- /**
- * Transitions back to the "batch.index" route.
- *
- * @method
- * @action
- * @returns {Transition} The transition object representing the route change.
- */
- @action transitionBack() {
- return this.transitionToRoute('batch.index');
- }
-
- /**
- * Transitions to the edit view for a specific vehicle.
- *
- * @param {BatchModel} batch
- * @method
- * @action
- * @returns {Transition} The transition object representing the route change.
- */
- @action onEdit(batch) {
- return this.transitionToRoute('batch.index.edit', batch);
- }
-
- /**
- * Updates the active view tab.
- *
- * @method
- * @param {String} tab - The name of the tab to activate.
- * @action
- */
- @action onTabChanged(tab) {
- this.view = tab;
- }
-}
diff --git a/addon/controllers/batch/index/edit.js b/addon/controllers/batch/index/edit.js
deleted file mode 100644
index 408b5422..00000000
--- a/addon/controllers/batch/index/edit.js
+++ /dev/null
@@ -1,110 +0,0 @@
-import Controller from '@ember/controller';
-import { inject as service } from '@ember/service';
-import { tracked } from '@glimmer/tracking';
-import { action } from '@ember/object';
-
-export default class BatchIndexEditController extends Controller {
- /**
- * Inject the `hostRouter` service
- *
- * @memberof ManagementBatchsIndexEditController
- */
- @service hostRouter;
-
- /**
- * Inject the `hostRouter` service
- *
- * @memberof ManagementBatchsIndexEditController
- */
- @service modalsManager;
-
- /**
- * The overlay component context.
- *
- * @memberof ManagementBatchsIndexEditController
- */
- @tracked overlay;
-
- /**
- * When exiting the overlay.
- *
- * @return {Transition}
- * @memberof ManagementBatchsIndexEditController
- */
- @action transitionBack(batch) {
- if (batch.hasDirtyAttributes) {
- return this.confirmContinueWithUnsavedChanges(batch, {
- confirm: () => {
- batch.rollbackAttributes();
- return this.transitionToRoute('batch.index');
- },
- });
- }
-
- return this.transitionToRoute('batch.index');
- }
-
- /**
- * Set the overlay component context object.
- *
- * @param {OverlayContext} overlay
- * @memberof ManagementBatchsIndexEditController
- */
- @action setOverlayContext(overlay) {
- this.overlay = overlay;
- }
-
- /**
- * When batch details button is clicked in overlay.
- *
- * @param {BatchModel} batch
- * @return {Promise}
- * @memberof ManagementBatchsIndexEditController
- */
- @action onViewDetails(batch) {
- // check if batch record has been edited and prompt for confirmation
- if (batch.hasDirtyAttributes) {
- return this.confirmContinueWithUnsavedChanges(batch);
- }
-
- return this.transitionToRoute('batch.index.details', batch);
- }
-
- /**
- * Trigger a route refresh and focus the new batch created.
- *
- * @param {BatchModel} batch
- * @return {Promise}
- * @memberof ManagementBatchsIndexEditController
- */
- @action onAfterSave(batch) {
- if (this.overlay) {
- this.overlay.close();
- }
-
- this.hostRouter.refresh();
- return this.transitionToRoute('batch.index.details', batch);
- }
-
- /**
- * Prompts the user to confirm if they wish to continue with unsaved changes.
- *
- * @method
- * @param {BatchModel} batch - The batch object with unsaved changes.
- * @param {Object} [options={}] - Additional options for configuring the modal.
- * @returns {Promise} A promise that resolves when the user confirms, and transitions to a new route.
- * @memberof ManagementBatchsIndexEditController
- */
- confirmContinueWithUnsavedChanges(batch, options = {}) {
- return this.modalsManager.confirm({
- title: 'Continue Without Saving?',
- body: 'Unsaved changes to this batch will be lost. Click continue to proceed.',
- acceptButtonText: 'Continue without saving',
- confirm: () => {
- batch.rollbackAttributes();
- return this.transitionToRoute('batch.index.details', batch);
- },
- ...options,
- });
- }
-}
diff --git a/addon/controllers/batch/index/new.js b/addon/controllers/batch/index/new.js
deleted file mode 100644
index 33f95eae..00000000
--- a/addon/controllers/batch/index/new.js
+++ /dev/null
@@ -1,88 +0,0 @@
-import Controller from '@ember/controller';
-import { tracked } from '@glimmer/tracking';
-import { inject as service } from '@ember/service';
-import { action } from '@ember/object';
-
-export default class BatchIndexNewController extends Controller {
- /**
- * Inject the `store` service
- *
- * @memberof BatchIndexNewController
- */
- @service store;
-
- /**
- * Inject the `hostRouter` service
- *
- * @memberof BatchIndexNewController
- */
- @service hostRouter;
-
- /**
- * Inject the `hostRouter` service
- *
- * @memberof BatchIndexNewController
- */
- @service modalsManager;
-
- /**
- * The overlay component context.
- *
- * @memberof BatchIndexNewController
- */
- @tracked overlay;
-
- /**
- * The product being created.
- *
- * @var {BatchModel}
- */
- @tracked batch = this.store.createRecord('batch');
-
- /**
- * Set the overlay component context object.
- *
- * @param {OverlayContext} overlay
- * @memberof BatchIndexNewController
- */
- @action setOverlayContext(overlay) {
- this.overlay = overlay;
- }
-
- /**
- * When exiting the overlay.
- *
- * @return {Transition}
- * @memberof BatchIndexNewController
- */
- @action transitionBack() {
- return this.transitionToRoute('batch.index');
- }
-
- /**
- * Trigger a route refresh and focus the new product created.
- *
- * @param {BatchModel} batch
- * @return {Promise}
- * @memberof BatchIndexNewController
- */
- @action onAfterSave(batch) {
- if (this.overlay) {
- this.overlay.close();
- }
-
- this.hostRouter.refresh();
- return this.transitionToRoute('batch.index.details', batch).then(() => {
- this.resetForm();
- });
- }
-
- /**
- * Resets the form with a new Batch record
- *
- * @memberof BatchIndexNewController
- */
- resetForm() {
- this.batch = this.store.createRecord('batch');
- }
-}
diff --git a/addon/controllers/warehouses/index.js b/addon/controllers/warehouses/index.js
index a7d7042e..8bcd32ac 100644
--- a/addon/controllers/warehouses/index.js
+++ b/addon/controllers/warehouses/index.js
@@ -60,7 +60,7 @@ export default class WarehousesIndexController extends Controller {
*
* @var {Array}
*/
- queryParams = ['name', 'page', 'limit', 'sort', 'query', 'public_id', 'country', 'phone', 'created_at', 'updated_at', 'city', 'neighborhood', 'state'];
+ queryParams = ['name', 'page', 'limit', 'sort', 'query', 'public_id', 'country', 'phone', 'created_at', 'updated_at', 'city', 'neighborhood', 'state', 'description'];
/**
* The current page of data being viewed
@@ -151,40 +151,36 @@ export default class WarehousesIndexController extends Controller {
filterComponent: 'filter/string',
},
{
- label: 'Address',
- valuePath: 'address',
+ label: 'Description',
+ valuePath: 'meta.description',
+ width: '200px',
cellComponent: 'table/cell/anchor',
- action: this.viewWarehouse,
- width: '320px',
resizable: true,
sortable: true,
filterable: true,
- filterParam: 'address',
+ filterParam: 'description',
filterComponent: 'filter/string',
},
{
- label: 'State',
- valuePath: 'state',
+ label: 'Address',
+ valuePath: 'address',
cellComponent: 'table/cell/anchor',
action: this.viewWarehouse,
- width: '100px',
+ width: '320px',
resizable: true,
sortable: true,
filterable: true,
- filterParam: 'state',
+ filterParam: 'address',
filterComponent: 'filter/string',
},
{
- label: 'City',
- valuePath: 'city',
+ label: 'Stock Items',
+ valuePath: 'stockItems',
+ width: '120px',
cellComponent: 'table/cell/anchor',
- action: this.viewWarehouse,
- width: '100px',
resizable: true,
sortable: true,
- filterable: true,
- filterParam: 'city',
- filterComponent: 'filter/string',
+ filterable: false,
},
{
label: 'ID',
@@ -196,17 +192,6 @@ export default class WarehousesIndexController extends Controller {
filterable: true,
filterComponent: 'filter/string',
},
- {
- label: 'Phone',
- valuePath: 'phone',
- cellComponent: 'table/cell/base',
- width: '120px',
- resizable: true,
- sortable: true,
- hidden: true,
- filterable: true,
- filterComponent: 'filter/string',
- },
{
label: 'Country',
valuePath: 'country_name',
@@ -220,26 +205,25 @@ export default class WarehousesIndexController extends Controller {
filterParam: 'country',
},
{
- label: 'Neighborhood',
- valuePath: 'neighborhood',
- cellComponent: 'table/cell/anchor',
- action: this.viewWarehouse,
- width: '100px',
+ label: 'Structural',
+ valuePath: 'meta.structural',
+ width: '120px',
+ cellComponent: 'table/cell/base',
resizable: true,
sortable: true,
filterable: true,
- filterParam: 'neighborhood',
+ filterParam: 'structural',
filterComponent: 'filter/string',
},
{
- label: 'Postal Code',
- valuePath: 'postal_code',
- cellComponent: 'table/cell/anchor',
- action: this.viewWarehouse,
- width: '100px',
+ label: 'External',
+ valuePath: 'meta.external',
+ width: '120px',
+ cellComponent: 'table/cell/base',
resizable: true,
sortable: true,
filterable: true,
+ filterParam: 'external',
filterComponent: 'filter/string',
},
{
diff --git a/addon/models/stock-adjustment.js b/addon/models/stock-adjustment.js
index a09d6675..f4ed52b9 100644
--- a/addon/models/stock-adjustment.js
+++ b/addon/models/stock-adjustment.js
@@ -9,6 +9,7 @@ export default class StockAdjustmentModel extends Model {
@attr('string') company_uuid;
@attr('string') created_by_uuid;
@attr('string') product_uuid;
+ @attr('string') assignee_uuid;
/** @relationships */
@belongsTo('company', { async: true }) company;
@@ -18,7 +19,7 @@ export default class StockAdjustmentModel extends Model {
/** @attributes */
@attr('string') type;
@attr('string') reason;
- @attr('string') approval_status;
+ @attr('string') approval_required;
@attr('number') before_quantity;
@attr('number') after_quantity;
@attr('number') quantity;
diff --git a/addon/routes/batch/index.js b/addon/routes/batch/index.js
deleted file mode 100644
index 6db19981..00000000
--- a/addon/routes/batch/index.js
+++ /dev/null
@@ -1,18 +0,0 @@
-import Route from '@ember/routing/route';
-import { inject as service } from '@ember/service';
-
-export default class BatchIndexRoute extends Route {
- @service store;
-
- queryParams = {
- page: { refreshModel: true },
- limit: { refreshModel: true },
- sort: { refreshModel: true },
- query: { refreshModel: true },
- product: { refreshModel: true },
- };
-
- model(params) {
- return this.store.query('batch', { ...params, with: ['product'] });
- }
-}
diff --git a/addon/routes/batch/index/details.js b/addon/routes/batch/index/details.js
deleted file mode 100644
index 8679b101..00000000
--- a/addon/routes/batch/index/details.js
+++ /dev/null
@@ -1,14 +0,0 @@
-import Route from '@ember/routing/route';
-import { inject as service } from '@ember/service';
-
-export default class BatchIndexDetailsRoute extends Route {
- @service store;
-
- queryParams = {
- view: { refreshModel: false },
- };
-
- model({ public_id }) {
- return this.store.findRecord('batch', public_id);
- }
-}
diff --git a/addon/routes/batch/index/edit.js b/addon/routes/batch/index/edit.js
deleted file mode 100644
index 7279e7c2..00000000
--- a/addon/routes/batch/index/edit.js
+++ /dev/null
@@ -1,10 +0,0 @@
-import Route from '@ember/routing/route';
-import { inject as service } from '@ember/service';
-
-export default class BatchIndexEditRoute extends Route {
- @service store;
-
- model({ public_id }) {
- return this.store.findRecord('batch', public_id);
- }
-}
diff --git a/addon/routes/batch/index/new.js b/addon/routes/batch/index/new.js
deleted file mode 100644
index d08f9c1c..00000000
--- a/addon/routes/batch/index/new.js
+++ /dev/null
@@ -1,3 +0,0 @@
-import Route from '@ember/routing/route';
-
-export default class BatchIndexNewRoute extends Route {}
diff --git a/addon/routes/products/index/details.js b/addon/routes/products/index/details.js
index 01d3bbff..4343499d 100644
--- a/addon/routes/products/index/details.js
+++ b/addon/routes/products/index/details.js
@@ -9,6 +9,6 @@ export default class ProductsIndexDetailsRoute extends Route {
};
model({ public_id }) {
- return this.store.findRecord('pallet-product', public_id);
+ return this.store.queryRecord('pallet-product', { public_id, single: true, with: ['supplier'] });
}
}
diff --git a/addon/templates/application.hbs b/addon/templates/application.hbs
index f181e191..07cd664a 100644
--- a/addon/templates/application.hbs
+++ b/addon/templates/application.hbs
@@ -2,10 +2,13 @@
Dashboard
Products
- Inventory
Warehouses
Suppliers
- Batch
+
+
+ Dashboard
+ Low Stock
+ Expired Stock
Sales
diff --git a/addon/templates/batch/index.hbs b/addon/templates/batch/index.hbs
deleted file mode 100644
index c68d20bd..00000000
--- a/addon/templates/batch/index.hbs
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
- {{#if (safe-has this.table "selectedRows")}}
-
-
-
- {{/if}}
-
-
-
-
-
-
-
-{{outlet}}
\ No newline at end of file
diff --git a/addon/templates/batch/index/details.hbs b/addon/templates/batch/index/details.hbs
deleted file mode 100644
index b36e626f..00000000
--- a/addon/templates/batch/index/details.hbs
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/addon/templates/batch/index/edit.hbs b/addon/templates/batch/index/edit.hbs
deleted file mode 100644
index 16c22dd6..00000000
--- a/addon/templates/batch/index/edit.hbs
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/addon/templates/batch/index/new.hbs b/addon/templates/batch/index/new.hbs
deleted file mode 100644
index fa6382fc..00000000
--- a/addon/templates/batch/index/new.hbs
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/app/controllers/batch/index.js b/app/controllers/batch/index.js
deleted file mode 100644
index 28ab9998..00000000
--- a/app/controllers/batch/index.js
+++ /dev/null
@@ -1 +0,0 @@
-export { default } from '@fleetbase/pallet-engine/controllers/batch/index';
diff --git a/app/controllers/batch/index/details.js b/app/controllers/batch/index/details.js
deleted file mode 100644
index a2e15761..00000000
--- a/app/controllers/batch/index/details.js
+++ /dev/null
@@ -1 +0,0 @@
-export { default } from '@fleetbase/pallet-engine/controllers/batch/index/details';
diff --git a/app/controllers/batch/index/edit.js b/app/controllers/batch/index/edit.js
deleted file mode 100644
index fe428fcc..00000000
--- a/app/controllers/batch/index/edit.js
+++ /dev/null
@@ -1 +0,0 @@
-export { default } from '@fleetbase/pallet-engine/controllers/batch/index/edit';
diff --git a/app/controllers/batch/index/new.js b/app/controllers/batch/index/new.js
deleted file mode 100644
index 8b032535..00000000
--- a/app/controllers/batch/index/new.js
+++ /dev/null
@@ -1 +0,0 @@
-export { default } from '@fleetbase/pallet-engine/controllers/batch/index/new';
diff --git a/app/routes/batch/index.js b/app/routes/batch/index.js
deleted file mode 100644
index 0299e4b5..00000000
--- a/app/routes/batch/index.js
+++ /dev/null
@@ -1 +0,0 @@
-export { default } from '@fleetbase/pallet-engine/routes/batch/index';
diff --git a/app/routes/batch/index/details.js b/app/routes/batch/index/details.js
deleted file mode 100644
index 9d75c4ce..00000000
--- a/app/routes/batch/index/details.js
+++ /dev/null
@@ -1 +0,0 @@
-export { default } from '@fleetbase/pallet-engine/routes/batch/index/details';
diff --git a/app/routes/batch/index/edit.js b/app/routes/batch/index/edit.js
deleted file mode 100644
index 340b2f98..00000000
--- a/app/routes/batch/index/edit.js
+++ /dev/null
@@ -1 +0,0 @@
-export { default } from '@fleetbase/pallet-engine/routes/batch/index/edit';
diff --git a/app/routes/batch/index/new.js b/app/routes/batch/index/new.js
deleted file mode 100644
index 13cc2df5..00000000
--- a/app/routes/batch/index/new.js
+++ /dev/null
@@ -1 +0,0 @@
-export { default } from '@fleetbase/pallet-engine/routes/batch/index/new';
diff --git a/app/templates/batch/index.js b/app/templates/batch/index.js
deleted file mode 100644
index 8ff20955..00000000
--- a/app/templates/batch/index.js
+++ /dev/null
@@ -1 +0,0 @@
-export { default } from '@fleetbase/pallet-engine/templates/batch/index';
diff --git a/app/templates/batch/index/details.js b/app/templates/batch/index/details.js
deleted file mode 100644
index 10e92435..00000000
--- a/app/templates/batch/index/details.js
+++ /dev/null
@@ -1 +0,0 @@
-export { default } from '@fleetbase/pallet-engine/templates/batch/index/details';
diff --git a/app/templates/batch/index/edit.js b/app/templates/batch/index/edit.js
deleted file mode 100644
index 2eb33b00..00000000
--- a/app/templates/batch/index/edit.js
+++ /dev/null
@@ -1 +0,0 @@
-export { default } from '@fleetbase/pallet-engine/templates/batch/index/edit';
diff --git a/app/templates/batch/index/new.js b/app/templates/batch/index/new.js
deleted file mode 100644
index b776cc16..00000000
--- a/app/templates/batch/index/new.js
+++ /dev/null
@@ -1 +0,0 @@
-export { default } from '@fleetbase/pallet-engine/templates/batch/index/new';
diff --git a/g.sh b/g.sh
deleted file mode 100644
index fe0cc098..00000000
--- a/g.sh
+++ /dev/null
@@ -1,44 +0,0 @@
-ember g route audits/index/new
-ember g route audits/index/edit
-ember g route audits/index/details
-ember g controller audits/index/new
-ember g controller audits/index/edit
-ember g controller audits/index/details
-
-ember g route products/index/new
-ember g route products/index/edit
-ember g route products/index/details
-ember g controller products/index/new
-ember g controller products/index/edit
-ember g controller products/index/details
-
-ember g route sales-orders/index/new
-ember g route sales-orders/index/edit
-ember g route sales-orders/index/details
-ember g controller sales-orders/index/new
-ember g controller sales-orders/index/edit
-ember g controller sales-orders/index/details
-
-ember g route purchase-orders/index/new
-ember g route purchase-orders/index/edit
-ember g route purchase-orders/index/details
-ember g controller purchase-orders/index/new
-ember g controller purchase-orders/index/edit
-ember g controller purchase-orders/index/details
-
-ember g route suppliers/index/new
-ember g route suppliers/index/edit
-ember g route suppliers/index/details
-ember g controller suppliers/index/new
-ember g controller suppliers/index/edit
-ember g controller suppliers/index/details
-
-ember g route warehouses/index/new
-ember g route warehouses/index/edit
-ember g route warehouses/index/details
-ember g controller warehouses/index/new
-ember g controller warehouses/index/edit
-ember g controller warehouses/index/details
-
-ember destroy component batch-form-panel
-ember destroy component batch-panel
\ No newline at end of file
diff --git a/package.json b/package.json
index 92a1edd7..4627c652 100644
--- a/package.json
+++ b/package.json
@@ -39,16 +39,16 @@
"publish:github": "npm config set '@fleetbase:registry' https://npm.pkg.github.com/ && npm publish"
},
"dependencies": {
- "@fleetbase/ember-core": "^0.1.8",
+ "@fleetbase/ember-core": "link:../ember-core",
"@fleetbase/ember-ui": "^0.2.5",
- "@fleetbase/fleetops-data": "^0.1.4",
+ "@fleetbase/fleetops-data": "link:../fleetops-data",
"@fortawesome/ember-fontawesome": "^0.4.1",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"broccoli-funnel": "^3.0.8",
"ember-cli-babel": "^7.26.11",
"ember-cli-htmlbars": "^6.1.0",
- "ember-intl": "^6.0.0-beta.6",
+ "ember-intl": "6.0.0-beta.6",
"ember-radio-button": "^3.0.0-beta.1",
"ember-wormhole": "^0.6.0",
"ember-leaflet": "^5.1.1",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 5069433c..35cb61e6 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -6,14 +6,14 @@ settings:
dependencies:
'@fleetbase/ember-core':
- specifier: ^0.1.8
- version: 0.1.8(@babel/core@7.23.3)(ember-fetch@8.1.2)(postcss@8.4.31)(webpack@5.89.0)
+ specifier: link:../ember-core
+ version: link:../ember-core
'@fleetbase/ember-ui':
specifier: ^0.2.5
version: 0.2.5(@babel/core@7.23.3)(@ember/test-helpers@2.9.4)(ember-source@4.6.0)(postcss@8.4.31)(webpack@5.89.0)
'@fleetbase/fleetops-data':
- specifier: ^0.1.4
- version: 0.1.4
+ specifier: link:../fleetops-data
+ version: link:../fleetops-data
'@fortawesome/ember-fontawesome':
specifier: ^0.4.1
version: 0.4.3
@@ -33,8 +33,8 @@ dependencies:
specifier: ^6.1.0
version: 6.3.0
ember-intl:
- specifier: ^6.0.0-beta.6
- version: 6.1.2(@babel/core@7.23.3)(webpack@5.89.0)
+ specifier: 6.0.0-beta.6
+ version: 6.0.0-beta.6(webpack@5.89.0)
ember-leaflet:
specifier: ^5.1.1
version: 5.1.3(@babel/core@7.23.3)(ember-source@4.6.0)(leaflet@1.9.4)(webpack@5.89.0)
@@ -192,14 +192,14 @@ packages:
/@babel/code-frame@7.12.11:
resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==}
dependencies:
- '@babel/highlight': 7.22.20
+ '@babel/highlight': 7.23.4
dev: true
- /@babel/code-frame@7.22.13:
- resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==}
+ /@babel/code-frame@7.23.4:
+ resolution: {integrity: sha512-r1IONyb6Ia+jYR2vvIDhdWdlTGhqbBoFqLTQidzZ4kepUFH15ejXvFHxCVbtl7BOXIudsIubf4E81xeA3h3IXA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/highlight': 7.22.20
+ '@babel/highlight': 7.23.4
chalk: 2.4.2
/@babel/compat-data@7.23.3:
@@ -211,15 +211,15 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.1
- '@babel/code-frame': 7.22.13
- '@babel/generator': 7.23.3
+ '@babel/code-frame': 7.23.4
+ '@babel/generator': 7.23.4
'@babel/helper-compilation-targets': 7.22.15
'@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3)
- '@babel/helpers': 7.23.2
- '@babel/parser': 7.23.3
+ '@babel/helpers': 7.23.4
+ '@babel/parser': 7.23.4
'@babel/template': 7.22.15
- '@babel/traverse': 7.23.3
- '@babel/types': 7.23.3
+ '@babel/traverse': 7.23.4
+ '@babel/types': 7.23.4
convert-source-map: 2.0.0
debug: 4.3.4
gensync: 1.0.0-beta.2
@@ -228,11 +228,11 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/generator@7.23.3:
- resolution: {integrity: sha512-keeZWAV4LU3tW0qRi19HRpabC/ilM0HRBBzf9/k8FFiG4KVpiv0FIy4hHfLfFQZNhziCTPTmd59zoyv6DNISzg==}
+ /@babel/generator@7.23.4:
+ resolution: {integrity: sha512-esuS49Cga3HcThFNebGhlgsrVLkvhqvYDTzgjfFFlHJcIfLe5jFmRRfCQ1KuBfc4Jrtn3ndLgKWAKjBE+IraYQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.3
+ '@babel/types': 7.23.4
'@jridgewell/gen-mapping': 0.3.3
'@jridgewell/trace-mapping': 0.3.20
jsesc: 2.5.2
@@ -241,13 +241,13 @@ packages:
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.3
+ '@babel/types': 7.23.4
/@babel/helper-builder-binary-assignment-operator-visitor@7.22.15:
resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.3
+ '@babel/types': 7.23.4
/@babel/helper-compilation-targets@7.22.15:
resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==}
@@ -310,25 +310,25 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.22.15
- '@babel/types': 7.23.3
+ '@babel/types': 7.23.4
/@babel/helper-hoist-variables@7.22.5:
resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.3
+ '@babel/types': 7.23.4
/@babel/helper-member-expression-to-functions@7.23.0:
resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.3
+ '@babel/types': 7.23.4
/@babel/helper-module-imports@7.22.15:
resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.3
+ '@babel/types': 7.23.4
/@babel/helper-module-transforms@7.23.3(@babel/core@7.23.3):
resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
@@ -347,7 +347,7 @@ packages:
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.3
+ '@babel/types': 7.23.4
/@babel/helper-plugin-utils@7.22.5:
resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
@@ -379,22 +379,22 @@ packages:
resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.3
+ '@babel/types': 7.23.4
/@babel/helper-skip-transparent-expression-wrappers@7.22.5:
resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.3
+ '@babel/types': 7.23.4
/@babel/helper-split-export-declaration@7.22.6:
resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.3
+ '@babel/types': 7.23.4
- /@babel/helper-string-parser@7.22.5:
- resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==}
+ /@babel/helper-string-parser@7.23.4:
+ resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==}
engines: {node: '>=6.9.0'}
/@babel/helper-validator-identifier@7.22.20:
@@ -411,32 +411,32 @@ packages:
dependencies:
'@babel/helper-function-name': 7.23.0
'@babel/template': 7.22.15
- '@babel/types': 7.23.3
+ '@babel/types': 7.23.4
- /@babel/helpers@7.23.2:
- resolution: {integrity: sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==}
+ /@babel/helpers@7.23.4:
+ resolution: {integrity: sha512-HfcMizYz10cr3h29VqyfGL6ZWIjTwWfvYBMsBVGwpcbhNGe3wQ1ZXZRPzZoAHhd9OqHadHqjQ89iVKINXnbzuw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.22.15
- '@babel/traverse': 7.23.3
- '@babel/types': 7.23.3
+ '@babel/traverse': 7.23.4
+ '@babel/types': 7.23.4
transitivePeerDependencies:
- supports-color
- /@babel/highlight@7.22.20:
- resolution: {integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==}
+ /@babel/highlight@7.23.4:
+ resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': 7.22.20
chalk: 2.4.2
js-tokens: 4.0.0
- /@babel/parser@7.23.3:
- resolution: {integrity: sha512-uVsWNvlVsIninV2prNz/3lHCb+5CJ+e+IUBfbjToAHODtfGYLfCFuY4AU7TskI+dAKk+njsPiBjq1gKTvZOBaw==}
+ /@babel/parser@7.23.4:
+ resolution: {integrity: sha512-vf3Xna6UEprW+7t6EtOmFpHNAuxw3xqPZghy+brsnusscJRW5BMUzzHZc5ICjULee81WeUV2jjakG09MDglJXQ==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
- '@babel/types': 7.23.3
+ '@babel/types': 7.23.4
/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.3):
resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==}
@@ -456,7 +456,7 @@ packages:
'@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-optional-chaining': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.3)
/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.3(@babel/core@7.23.3):
resolution: {integrity: sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==}
@@ -725,8 +725,8 @@ packages:
'@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-async-generator-functions@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-59GsVNavGxAXCDDbakWSMJhajASb4kBCqDjqJsv+p5nKdbz7istmZ3HrX3L2LuiI80+zsOADCvooqQH3qGCucQ==}
+ /@babel/plugin-transform-async-generator-functions@7.23.4(@babel/core@7.23.3):
+ resolution: {integrity: sha512-efdkfPhHYTtn0G6n2ddrESE91fgXxjlqLsnUtPWnJs4a4mZIbUaK7ffqKIIUKXSHwcDvaCVX6GXkaJJFqtX7jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -757,8 +757,8 @@ packages:
'@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-block-scoping@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-QPZxHrThbQia7UdvfpaRRlq/J9ciz1J4go0k+lPBXbgaNeY7IQrBj/9ceWjvMMI07/ZBzHl/F0R/2K0qH7jCVw==}
+ /@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.23.3):
+ resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -776,8 +776,8 @@ packages:
'@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3)
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-class-static-block@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-PENDVxdr7ZxKPyi5Ffc0LjXdnJyrJxyqF5T5YjlVg4a0VFfQHW0r8iAtRiDXkfHlu1wwcvdtnndGYIeJLSuRMQ==}
+ /@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.23.3):
+ resolution: {integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
@@ -842,8 +842,8 @@ packages:
'@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-dynamic-import@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-vTG+cTGxPFou12Rj7ll+eD5yWeNl5/8xvQvF08y5Gv3v4mZQoyFf8/n9zg4q5vvCWt5jmgymfzMAldO7orBn7A==}
+ /@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.23.3):
+ resolution: {integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -862,8 +862,8 @@ packages:
'@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-export-namespace-from@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-yCLhW34wpJWRdTxxWtFZASJisihrfyMOTOQexhVzA78jlU+dH7Dw+zQgcPepQ5F3C6bAIiblZZ+qBggJdHiBAg==}
+ /@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.23.3):
+ resolution: {integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -892,8 +892,8 @@ packages:
'@babel/helper-function-name': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-json-strings@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-H9Ej2OiISIZowZHaBwF0tsJOih1PftXJtE8EWqlEIwpc7LMTGq0rPOrywKLQ4nefzx8/HMR0D3JGXoMHYvhi0A==}
+ /@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.23.3):
+ resolution: {integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -911,8 +911,8 @@ packages:
'@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-logical-assignment-operators@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-+pD5ZbxofyOygEp+zZAfujY2ShNCXRpDRIPOiBmTO693hhyOEteZgl876Xs9SAHPQpcV0vz8LvA/T+w8AzyX8A==}
+ /@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.23.3):
+ resolution: {integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -992,8 +992,8 @@ packages:
'@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-nullish-coalescing-operator@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-xzg24Lnld4DYIdysyf07zJ1P+iIfJpxtVFOzX4g+bsJ3Ng5Le7rXx9KwqKzuyaUeRnt+I1EICwQITqc0E2PmpA==}
+ /@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.23.3):
+ resolution: {integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1002,8 +1002,8 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.3)
- /@babel/plugin-transform-numeric-separator@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-s9GO7fIBi/BLsZ0v3Rftr6Oe4t0ctJ8h4CCXfPoEJwmvAPMyNrfkOOJzm6b9PX9YXcCJWWQd/sBF/N26eBiMVw==}
+ /@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.23.3):
+ resolution: {integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1012,8 +1012,8 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.3)
- /@babel/plugin-transform-object-rest-spread@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-VxHt0ANkDmu8TANdE9Kc0rndo/ccsmfe2Cx2y5sI4hu3AukHQ5wAu4cM7j3ba8B9548ijVyclBU+nuDQftZsog==}
+ /@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.23.3):
+ resolution: {integrity: sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1035,8 +1035,8 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.3)
- /@babel/plugin-transform-optional-catch-binding@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-LxYSb0iLjUamfm7f1D7GpiS4j0UAC8AOiehnsGAP8BEsIX8EOi3qV6bbctw8M7ZvLtcoZfZX5Z7rN9PlWk0m5A==}
+ /@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.23.3):
+ resolution: {integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1045,8 +1045,8 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.3)
- /@babel/plugin-transform-optional-chaining@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-zvL8vIfIUgMccIAK1lxjvNv572JHFJIKb4MWBz5OGdBQA0fB0Xluix5rmOby48exiJc987neOmP/m9Fnpkz3Tg==}
+ /@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.23.3):
+ resolution: {integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1075,8 +1075,8 @@ packages:
'@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3)
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-private-property-in-object@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-a5m2oLNFyje2e/rGKjVfAELTVI5mbA0FeZpBnkOWWV7eSmKQ+T/XW0Vf+29ScLzSxX+rnsarvU0oie/4m6hkxA==}
+ /@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.23.3):
+ resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1115,8 +1115,8 @@ packages:
'@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-runtime@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-XcQ3X58CKBdBnnZpPaQjgVMePsXtSZzHoku70q9tUAQp02ggPQNM04BF3RvlW1GSM/McbSOQAzEK4MXbS7/JFg==}
+ /@babel/plugin-transform-runtime@7.23.4(@babel/core@7.23.3):
+ resolution: {integrity: sha512-ITwqpb6V4btwUG0YJR82o2QvmWrLgDnx/p2A3CTPYGaRgULkDiC0DRA2C4jlRB9uXGUEfaSS/IGHfVW+ohzYDw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1177,8 +1177,8 @@ packages:
'@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-typescript@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-ogV0yWnq38CFwH20l2Afz0dfKuZBx9o/Y2Rmh5vuSS0YD1hswgEgTfyTzuSrT2q9btmHRSqYoSfwFUVaC1M1Jw==}
+ /@babel/plugin-transform-typescript@7.23.4(@babel/core@7.23.3):
+ resolution: {integrity: sha512-39hCCOl+YUAyMOu6B9SmUTiHUU0t/CxJNUmY3qRdJujbqi+lrQcL11ysYUsAvFWPBdhihrv1z0oRG84Yr3dODQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1299,25 +1299,25 @@ packages:
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.3)
'@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.3)
'@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-async-generator-functions': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-async-generator-functions': 7.23.4(@babel/core@7.23.3)
'@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.3)
'@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-block-scoping': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.3)
'@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-class-static-block': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.23.3)
'@babel/plugin-transform-classes': 7.23.3(@babel/core@7.23.3)
'@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.3)
'@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.3)
'@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.23.3)
'@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-dynamic-import': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.23.3)
'@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-export-namespace-from': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.23.3)
'@babel/plugin-transform-for-of': 7.23.3(@babel/core@7.23.3)
'@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-json-strings': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.23.3)
'@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-logical-assignment-operators': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.23.3)
'@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.3)
'@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.3)
'@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.3)
@@ -1325,15 +1325,15 @@ packages:
'@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.23.3)
'@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.3)
'@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-numeric-separator': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-object-rest-spread': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.23.3)
+ '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.23.3)
+ '@babel/plugin-transform-object-rest-spread': 7.23.4(@babel/core@7.23.3)
'@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-optional-catch-binding': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-optional-chaining': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.23.3)
+ '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.3)
'@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.3)
'@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-private-property-in-object': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.23.3)
'@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.3)
'@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.23.3)
'@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.23.3)
@@ -1350,7 +1350,7 @@ packages:
babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.3)
babel-plugin-polyfill-corejs3: 0.8.6(@babel/core@7.23.3)
babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.3)
- core-js-compat: 3.33.2
+ core-js-compat: 3.33.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -1362,7 +1362,7 @@ packages:
dependencies:
'@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
- '@babel/types': 7.23.3
+ '@babel/types': 7.23.4
esutils: 2.0.3
/@babel/regjsgen@0.8.0:
@@ -1373,8 +1373,8 @@ packages:
dependencies:
regenerator-runtime: 0.13.11
- /@babel/runtime@7.23.2:
- resolution: {integrity: sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==}
+ /@babel/runtime@7.23.4:
+ resolution: {integrity: sha512-2Yv65nlWnWlSpe3fXEyX5i7fx5kIKo4Qbcj+hMO0odwaneFjfXw5fdum+4yL20O0QiaHpia0cYQ9xpNMqrBwHg==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.14.0
@@ -1383,32 +1383,32 @@ packages:
resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.22.13
- '@babel/parser': 7.23.3
- '@babel/types': 7.23.3
+ '@babel/code-frame': 7.23.4
+ '@babel/parser': 7.23.4
+ '@babel/types': 7.23.4
- /@babel/traverse@7.23.3:
- resolution: {integrity: sha512-+K0yF1/9yR0oHdE0StHuEj3uTPzwwbrLGfNOndVJVV2TqA5+j3oljJUb4nmB954FLGjNem976+B+eDuLIjesiQ==}
+ /@babel/traverse@7.23.4:
+ resolution: {integrity: sha512-IYM8wSUwunWTB6tFC2dkKZhxbIjHoWemdK+3f8/wq8aKhbUscxD5MX72ubd90fxvFknaLPeGw5ycU84V1obHJg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.22.13
- '@babel/generator': 7.23.3
+ '@babel/code-frame': 7.23.4
+ '@babel/generator': 7.23.4
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-hoist-variables': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
- '@babel/parser': 7.23.3
- '@babel/types': 7.23.3
+ '@babel/parser': 7.23.4
+ '@babel/types': 7.23.4
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- /@babel/types@7.23.3:
- resolution: {integrity: sha512-OZnvoH2l8PK5eUvEcUyCt/sXgr/h+UWpVuBbOljwcrAgUl6lpchoQ++PHGyQy1AtYnVA6CEq3y5xeEI10brpXw==}
+ /@babel/types@7.23.4:
+ resolution: {integrity: sha512-7uIFwVYpoplT5jp/kVv6EF93VaJ8H+Yn5IczYiaAi98ajzjfoZfslet/e0sLh+wVBjb2qqIut1b0S26VSafsSQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-string-parser': 7.22.5
+ '@babel/helper-string-parser': 7.23.4
'@babel/helper-validator-identifier': 7.22.20
to-fast-properties: 2.0.0
@@ -1444,11 +1444,6 @@ packages:
engines: {node: ^14 || ^16 || >=18}
dev: false
- /@csstools/convert-colors@1.4.0:
- resolution: {integrity: sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==}
- engines: {node: '>=4.0.0'}
- dev: false
-
/@csstools/css-calc@1.1.4(@csstools/css-parser-algorithms@2.3.2)(@csstools/css-tokenizer@2.2.1):
resolution: {integrity: sha512-ZV1TSmToiNcQL1P3hfzlzZzA02mmVkVmXGaUDUqpYUG84PmLhVSZpKX+KfxAuOcK7de04UXSQPBrAvaya6iiGg==}
engines: {node: ^14 || ^16 || >=18}
@@ -1872,7 +1867,7 @@ packages:
'@ember-data/store': 4.6.4(@babel/core@7.23.3)(webpack@5.89.0)
'@ember/edition-utils': 1.2.0
'@ember/string': 3.1.1
- '@embroider/macros': 1.13.2
+ '@embroider/macros': 1.13.3
ember-auto-import: 2.6.3(webpack@5.89.0)
ember-cached-decorator-polyfill: 0.1.4(@babel/core@7.23.3)
ember-cli-babel: 7.26.11
@@ -1892,7 +1887,7 @@ packages:
resolution: {integrity: sha512-Phh1TJR+t19I+EKwJFQW34da5CS+/8uMeerKOKBHf6FsrSj3e+pv9Q7iMUnd4+To/YC0F/qXTQGIoUztcREvWg==}
engines: {node: ^14.8.0 || 16.* || >= 18.*}
dependencies:
- '@babel/plugin-transform-block-scoping': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.3)
'@ember-data/canary-features': 4.6.4
'@ember/edition-utils': 1.2.0
babel-plugin-debug-macros: 0.3.4(@babel/core@7.23.3)
@@ -1968,7 +1963,7 @@ packages:
'@ember-data/canary-features': 4.6.4
'@ember-data/private-build-infra': 4.6.4(@babel/core@7.23.3)
'@ember/string': 3.1.1
- '@embroider/macros': 1.13.2
+ '@embroider/macros': 1.13.3
'@glimmer/tracking': 1.1.2
ember-auto-import: 2.6.3(webpack@5.89.0)
ember-cached-decorator-polyfill: 0.1.4(@babel/core@7.23.3)
@@ -2019,7 +2014,7 @@ packages:
peerDependencies:
ember-source: '>= 4.8'
dependencies:
- '@embroider/macros': 1.13.2
+ '@embroider/macros': 1.13.3
ember-cli-babel: 7.26.11
ember-cli-htmlbars: 5.7.2
ember-cli-typescript: 4.2.1
@@ -2053,7 +2048,7 @@ packages:
'@glint/template':
optional: true
dependencies:
- '@embroider/macros': 1.13.2
+ '@embroider/macros': 1.13.3
ember-cli-babel: 7.26.11
ember-modifier-manager-polyfill: 1.2.0(@babel/core@7.23.3)
ember-source: 4.6.0(@babel/core@7.23.3)(webpack@5.89.0)
@@ -2077,8 +2072,8 @@ packages:
ember-source: '>=3.8.0'
dependencies:
'@ember/test-waiters': 3.1.0
- '@embroider/macros': 1.13.2
- '@embroider/util': 1.12.0(ember-source@4.6.0)
+ '@embroider/macros': 1.13.3
+ '@embroider/util': 1.12.1(ember-source@4.6.0)
broccoli-debug: 0.6.5
broccoli-funnel: 3.0.8
ember-cli-babel: 7.26.11
@@ -2110,11 +2105,11 @@ packages:
semver: 7.5.4
dev: false
- /@embroider/addon-shim@1.8.6:
- resolution: {integrity: sha512-siC9kP78uucEbpDcVyxjkwa76pcs5rVzDVpWO4PDc9EAXRX+pzmUuSTLAK3GztUwx7/PWhz1BenAivqdSvSgfg==}
+ /@embroider/addon-shim@1.8.7:
+ resolution: {integrity: sha512-JGOQNRj3UR0NdWEg8MsM2eqPLncEwSB1IX+rwntIj22TEKj8biqx7GDgSbeH+ZedijmCh354Hf2c5rthrdzUAw==}
engines: {node: 12.* || 14.* || >= 16}
dependencies:
- '@embroider/shared-internals': 2.5.0
+ '@embroider/shared-internals': 2.5.1
broccoli-funnel: 3.0.8
semver: 7.5.4
transitivePeerDependencies:
@@ -2130,8 +2125,8 @@ packages:
- supports-color
dev: false
- /@embroider/macros@1.13.2:
- resolution: {integrity: sha512-AUgJ71xG8kjuTx8XB1AQNBiebJuXRfhcHr318dCwnQz9VRXdYSnEEqf38XRvGYIoCvIyn/3c72LrSwzaJqknOA==}
+ /@embroider/macros@1.13.3:
+ resolution: {integrity: sha512-JUC1aHRLIN2LNy1l+gz7gWkw9JmnsE20GL3LduCzNvCAnEQpMTJhW5BUbEWqdCnAWBPte/M2ofckqBXyTZioTQ==}
engines: {node: 12.* || 14.* || >= 16}
peerDependencies:
'@glint/template': ^1.0.0
@@ -2139,7 +2134,7 @@ packages:
'@glint/template':
optional: true
dependencies:
- '@embroider/shared-internals': 2.5.0
+ '@embroider/shared-internals': 2.5.1
assert-never: 1.2.1
babel-import-util: 2.0.1
ember-cli-babel: 7.26.11
@@ -2163,8 +2158,8 @@ packages:
semver: 7.5.4
typescript-memoize: 1.1.1
- /@embroider/shared-internals@2.5.0:
- resolution: {integrity: sha512-7qzrb7GVIyNqeY0umxoeIvjDC+ay1b+wb2yCVuYTUYrFfLAkLEy9FNI3iWCi3RdQ9OFjgcAxAnwsAiPIMZZ3pQ==}
+ /@embroider/shared-internals@2.5.1:
+ resolution: {integrity: sha512-b+TWDBisH1p6HeTbJIO8pgu1WzfTP0ZSAlZBqjXwOyrS0ZxP1qNYRrEX+IxyzIibEFjXBxeLakiejz3DJvZX5A==}
engines: {node: 12.* || 14.* || >= 16}
dependencies:
babel-import-util: 2.0.1
@@ -2187,9 +2182,9 @@ packages:
resolve: 1.22.8
dev: true
- /@embroider/util@1.12.0(ember-source@4.6.0):
- resolution: {integrity: sha512-P4M1QADEH9ceIYC9mwHeV+6DDgEIQQYFfZi728nVKqTAxakXoiLgu/BCyQmEGyow9fYEPYaC1boDCZxW2JQAXg==}
- engines: {node: 14.* || >= 16}
+ /@embroider/util@1.12.1(ember-source@4.6.0):
+ resolution: {integrity: sha512-sEjFf2HOcqQdm3auernvvD3oXX/CdGTjo9eB5N8DmQBz9vseYNjn4kQRaAcyHWpCpMHe5Yr0d9xW8+4c9a9fJw==}
+ engines: {node: 12.* || 14.* || >= 16}
peerDependencies:
'@glint/environment-ember-loose': ^1.0.0
'@glint/template': ^1.0.0
@@ -2200,7 +2195,7 @@ packages:
'@glint/template':
optional: true
dependencies:
- '@embroider/macros': 1.13.2
+ '@embroider/macros': 1.13.3
broccoli-funnel: 3.0.8
ember-cli-babel: 7.26.11
ember-source: 4.6.0(@babel/core@7.23.3)(webpack@5.89.0)
@@ -2224,38 +2219,6 @@ packages:
- supports-color
dev: true
- /@fleetbase/ember-core@0.1.8(@babel/core@7.23.3)(ember-fetch@8.1.2)(postcss@8.4.31)(webpack@5.89.0):
- resolution: {integrity: sha512-ayfxpdeGDdEmecGCBkaMlmZNLXUmcpAWVxMB4ge/+/I1GDkw5ZngZ2XCZK6wlMYyPpkKsoE2TstD1fwg89ZuYA==}
- engines: {node: 14.* || >= 16}
- dependencies:
- date-fns: 2.30.0
- ember-auto-import: 2.6.3(webpack@5.89.0)
- ember-cli-babel: 7.26.11
- ember-cli-htmlbars: 6.3.0
- ember-cli-notifications: 8.0.0(@babel/core@7.23.3)(postcss@8.4.31)
- ember-concurrency: 2.3.7(@babel/core@7.23.3)
- ember-concurrency-decorators: 2.0.3(@babel/core@7.23.3)
- ember-decorators: 6.1.1
- ember-get-config: 2.1.1
- ember-inflector: 4.0.2
- ember-intl: 6.1.2(@babel/core@7.23.3)(webpack@5.89.0)
- ember-loading: 2.0.0(@babel/core@7.23.3)
- ember-local-storage: 2.0.6
- ember-simple-auth: 4.2.2(ember-fetch@8.1.2)
- ember-wormhole: 0.6.0
- socketcluster-client: 17.2.2
- transitivePeerDependencies:
- - '@babel/core'
- - '@glint/template'
- - bufferutil
- - ember-fetch
- - postcss
- - supports-color
- - typescript
- - utf-8-validate
- - webpack
- dev: false
-
/@fleetbase/ember-ui@0.2.5(@babel/core@7.23.3)(@ember/test-helpers@2.9.4)(ember-source@4.6.0)(postcss@8.4.31)(webpack@5.89.0):
resolution: {integrity: sha512-QrCBvUFmPNT6Q9Q/RsTS/fMGJnS2kDOmtMbxAbwFmHPdD2mZcjU6NPR8YsBa6vq1YlO7ru04wkByAmJvNCVUzw==}
engines: {node: 14.* || >= 16}
@@ -2263,7 +2226,7 @@ packages:
'@ember/render-modifiers': 2.1.0(@babel/core@7.23.3)(ember-source@4.6.0)
'@ember/string': 3.1.1
'@embroider/addon': 0.30.0
- '@embroider/macros': 1.13.2
+ '@embroider/macros': 1.13.3
'@floating-ui/dom': 1.5.3
'@fortawesome/ember-fontawesome': 1.0.3(webpack@5.89.0)
'@fortawesome/fontawesome-svg-core': 6.4.2
@@ -2273,7 +2236,7 @@ packages:
'@fullcalendar/daygrid': 6.1.9(@fullcalendar/core@6.1.9)
'@fullcalendar/interaction': 6.1.9(@fullcalendar/core@6.1.9)
'@makepanic/ember-power-calendar-date-fns': 0.4.2
- '@tailwindcss/forms': 0.5.6(tailwindcss@3.3.5)
+ '@tailwindcss/forms': 0.5.7(tailwindcss@3.3.5)
air-datepicker: 3.4.0
autonumeric: 4.10.0
autoprefixer: 10.4.16(postcss@8.4.31)
@@ -2282,9 +2245,9 @@ packages:
chart.js: 4.4.0
chartjs-adapter-date-fns: 3.0.0(chart.js@4.4.0)(date-fns@2.30.0)
date-fns: 2.30.0
- ember-animated: 1.0.4(@ember/test-helpers@2.9.4)(ember-source@4.6.0)
+ ember-animated: 1.1.1(@ember/test-helpers@2.9.4)(ember-source@4.6.0)
ember-auto-import: 2.6.3(webpack@5.89.0)
- ember-basic-dropdown: 7.2.2(@babel/core@7.23.3)(@ember/string@3.1.1)(ember-source@4.6.0)(webpack@5.89.0)
+ ember-basic-dropdown: 7.3.0(@babel/core@7.23.3)(@ember/string@3.1.1)(ember-source@4.6.0)(webpack@5.89.0)
ember-cli-accounting: 2.1.0
ember-cli-babel: 7.26.11
ember-cli-htmlbars: 6.3.0
@@ -2337,17 +2300,6 @@ packages:
- webpack-command
dev: false
- /@fleetbase/fleetops-data@0.1.4:
- resolution: {integrity: sha512-+M9xQHJKyT3qtkWrb+25YMfNs8BKTXB5q27HN8YU0u2+gbsFL1q/809tO5S+EQjLmCzTKuxfh5Pc9iIQqTvm3Q==}
- engines: {node: 14.* || >= 16}
- dependencies:
- date-fns: 2.30.0
- ember-cli-babel: 7.26.11
- ember-cli-htmlbars: 6.3.0
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/@floating-ui/core@1.5.0:
resolution: {integrity: sha512-kK1h4m36DQ0UHGj5Ah4db7R0rHemTqqO0QLvUqi1/mUUp3LuAWbWxdxSIf/XsnH9VS6rRVPLJCncjRzUvyCLXg==}
dependencies:
@@ -2365,10 +2317,10 @@ packages:
resolution: {integrity: sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A==}
dev: false
- /@formatjs/ecma402-abstract@1.17.3:
- resolution: {integrity: sha512-2Q4hmKQ6CM30mRG/YMdSBW8LXf32BfuOb1FZgG+uVWPC/SQMoiVFz5JaeOukt96v6TZ4ddE+bHCmd611PW38QA==}
+ /@formatjs/ecma402-abstract@1.18.0:
+ resolution: {integrity: sha512-PEVLoa3zBevWSCZzPIM/lvPCi8P5l4G+NXQMc/CjEiaCWgyHieUoo0nM7Bs0n/NbuQ6JpXEolivQ9pKSBHaDlA==}
dependencies:
- '@formatjs/intl-localematcher': 0.5.0
+ '@formatjs/intl-localematcher': 0.5.2
tslib: 2.6.2
dev: false
@@ -2378,57 +2330,57 @@ packages:
tslib: 2.6.2
dev: false
- /@formatjs/icu-messageformat-parser@2.7.1:
- resolution: {integrity: sha512-ErnXyRdk8AlpGcKskKVYn23aAlWXhI1kt5ek2o3pJwVeMTcrosSESQ8baztdTtJjfQHlB4NBeocfRA5C6DKv2g==}
+ /@formatjs/icu-messageformat-parser@2.7.3:
+ resolution: {integrity: sha512-X/jy10V9S/vW+qlplqhMUxR8wErQ0mmIYSq4mrjpjDl9mbuGcCILcI1SUYkL5nlM4PJqpc0KOS0bFkkJNPxYRw==}
dependencies:
- '@formatjs/ecma402-abstract': 1.17.3
- '@formatjs/icu-skeleton-parser': 1.6.3
+ '@formatjs/ecma402-abstract': 1.18.0
+ '@formatjs/icu-skeleton-parser': 1.7.0
tslib: 2.6.2
dev: false
- /@formatjs/icu-skeleton-parser@1.6.3:
- resolution: {integrity: sha512-Viggz4Pic7oC4uR8z2VroL8H9boiUTTB0TqEsiRb6DHZv7QEcg1BoVQZBkBdLmvxhBS7nwBNrTdbaiW8GOV58Q==}
+ /@formatjs/icu-skeleton-parser@1.7.0:
+ resolution: {integrity: sha512-Cfdo/fgbZzpN/jlN/ptQVe0lRHora+8ezrEeg2RfrNjyp+YStwBy7cqDY8k5/z2LzXg6O0AdzAV91XS0zIWv+A==}
dependencies:
- '@formatjs/ecma402-abstract': 1.17.3
+ '@formatjs/ecma402-abstract': 1.18.0
tslib: 2.6.2
dev: false
- /@formatjs/intl-displaynames@6.6.2:
- resolution: {integrity: sha512-8wenvLpInbVEPoVDHiG1QC/dE16io3fptVanMr2jKUqr3938UziygflnUqPlG7U6AHRbU7geCFthfZt8x2NpsA==}
+ /@formatjs/intl-displaynames@6.6.4:
+ resolution: {integrity: sha512-ET8KQ+L9Q0K8x1SnJQa4DNssUcbATlMopWqYvGGR8yAvw5qwAQc1fv+DshCoZNIE9pbcue0IGC4kWNAkWqlFag==}
dependencies:
- '@formatjs/ecma402-abstract': 1.17.3
- '@formatjs/intl-localematcher': 0.5.0
+ '@formatjs/ecma402-abstract': 1.18.0
+ '@formatjs/intl-localematcher': 0.5.2
tslib: 2.6.2
dev: false
- /@formatjs/intl-listformat@7.5.1:
- resolution: {integrity: sha512-J6heE28cikJ2cUZ7Mvmets418lE96k5OcbgDYQkXDFHVbRnUKCHQwRAXKRCPFEGDrEmcvtqUj7NmZEJYbsJdqQ==}
+ /@formatjs/intl-listformat@7.5.3:
+ resolution: {integrity: sha512-l7EOr0Yh1m8KagytukB90yw81uyzrM7amKFrgxXqphz4KeSIL0KPa68lPsdtZ+JmQB73GaDQRwLOwUKFZ1VZPQ==}
dependencies:
- '@formatjs/ecma402-abstract': 1.17.3
- '@formatjs/intl-localematcher': 0.5.0
+ '@formatjs/ecma402-abstract': 1.18.0
+ '@formatjs/intl-localematcher': 0.5.2
tslib: 2.6.2
dev: false
- /@formatjs/intl-localematcher@0.5.0:
- resolution: {integrity: sha512-K1Xpg/8oyfCMxisJQa/fILoeoeyndcM0wcN8QiNG/uM5OAe1BcO1+2yd0gIboDI2tRJEsUi/sSBEYPbgkIdq4A==}
+ /@formatjs/intl-localematcher@0.5.2:
+ resolution: {integrity: sha512-txaaE2fiBMagLrR4jYhxzFO6wEdEG4TPMqrzBAcbr4HFUYzH/YC+lg6OIzKCHm8WgDdyQevxbAAV1OgcXctuGw==}
dependencies:
tslib: 2.6.2
dev: false
- /@formatjs/intl@2.9.6:
- resolution: {integrity: sha512-pHvVycu4g1S8zsZhYm0naf/ODCsDXHw00ITMMUM9TK9MYa8zGkf4W5gdItVbUX7elYN3JdDwp0d5fLNBBljhgQ==}
+ /@formatjs/intl@2.9.9:
+ resolution: {integrity: sha512-JI3CNgL2Zdg5lv9ncT2sYKqbAj2RGrCbdzaCckIxMPxn4QuHuOVvYUGmBAXVusBmfG/0sxLmMrnwnBioz+QKdA==}
peerDependencies:
typescript: '5'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- '@formatjs/ecma402-abstract': 1.17.3
+ '@formatjs/ecma402-abstract': 1.18.0
'@formatjs/fast-memoize': 2.2.0
- '@formatjs/icu-messageformat-parser': 2.7.1
- '@formatjs/intl-displaynames': 6.6.2
- '@formatjs/intl-listformat': 7.5.1
- intl-messageformat: 10.5.5
+ '@formatjs/icu-messageformat-parser': 2.7.3
+ '@formatjs/intl-displaynames': 6.6.4
+ '@formatjs/intl-listformat': 7.5.3
+ intl-messageformat: 10.5.8
tslib: 2.6.2
dev: false
@@ -2822,8 +2774,8 @@ packages:
defer-to-connect: 1.1.3
dev: true
- /@tailwindcss/forms@0.5.6(tailwindcss@3.3.5):
- resolution: {integrity: sha512-Fw+2BJ0tmAwK/w01tEFL5TiaJBX1NLT1/YbWgvm7ws3Qcn11kiXxzNTEQDMs5V3mQemhB56l3u0i9dwdzSQldA==}
+ /@tailwindcss/forms@0.5.7(tailwindcss@3.3.5):
+ resolution: {integrity: sha512-QE7X69iQI+ZXwldE+rzasvbJiyV/ju1FGHH0Qn2W3FKbuYtqp8LKcy6iSw79fVUT5/Vvf+0XgLCeYVG+UV6hOw==}
peerDependencies:
tailwindcss: '>=3.0.0 || >= 3.0.0-alpha.1'
dependencies:
@@ -2831,17 +2783,11 @@ packages:
tailwindcss: 3.3.5
dev: false
- /@types/acorn@4.0.6:
- resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==}
- dependencies:
- '@types/estree': 1.0.5
- dev: false
-
/@types/body-parser@1.19.5:
resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
dependencies:
'@types/connect': 3.4.38
- '@types/node': 20.9.0
+ '@types/node': 20.9.4
dev: true
/@types/broccoli-plugin@3.0.0:
@@ -2855,27 +2801,27 @@ packages:
/@types/chai-as-promised@7.1.8:
resolution: {integrity: sha512-ThlRVIJhr69FLlh6IctTXFkmhtP3NpMZ2QGq69StYLyKZFp/HOp1VdKZj7RvfNWYYcJ1xlbLGLLWj1UvP5u/Gw==}
dependencies:
- '@types/chai': 4.3.10
+ '@types/chai': 4.3.11
dev: true
- /@types/chai@4.3.10:
- resolution: {integrity: sha512-of+ICnbqjmFCiixUnqRulbylyXQrPqIGf/B3Jax1wIF3DvSheysQxAWvqHhZiW3IQrycvokcLcFQlveGp+vyNg==}
+ /@types/chai@4.3.11:
+ resolution: {integrity: sha512-qQR1dr2rGIHYlJulmr8Ioq3De0Le9E4MJ5AiaeAETJJpndT1uUNHsGFK3L/UIu+rbkQSdj8J/w2bCsBZc/Y5fQ==}
dev: true
/@types/connect@3.4.38:
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
dependencies:
- '@types/node': 20.9.0
+ '@types/node': 20.9.4
dev: true
/@types/cookie@0.4.1:
resolution: {integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==}
dev: true
- /@types/cors@2.8.16:
- resolution: {integrity: sha512-Trx5or1Nyg1Fq138PCuWqoApzvoSLWzZ25ORBiHMbbUT42g578lH1GT4TwYDbiUOLFuDsCkfLneT2105fsFWGg==}
+ /@types/cors@2.8.17:
+ resolution: {integrity: sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==}
dependencies:
- '@types/node': 20.9.0
+ '@types/node': 20.9.4
dev: true
/@types/eslint-scope@3.7.7:
@@ -2896,7 +2842,7 @@ packages:
/@types/express-serve-static-core@4.17.41:
resolution: {integrity: sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==}
dependencies:
- '@types/node': 20.9.0
+ '@types/node': 20.9.4
'@types/qs': 6.9.10
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
@@ -2914,26 +2860,26 @@ packages:
/@types/fs-extra@5.1.0:
resolution: {integrity: sha512-AInn5+UBFIK9FK5xc9yP5e3TQSPNNgjHByqYcj9g5elVBnDQcQL7PlO1CIRy2gWlbwK7UPYqi7vRvFA44dCmYQ==}
dependencies:
- '@types/node': 20.9.0
+ '@types/node': 20.9.4
/@types/fs-extra@8.1.5:
resolution: {integrity: sha512-0dzKcwO+S8s2kuF5Z9oUWatQJj5Uq/iqphEtE3GQJVRRYm/tD1LglU2UnXi2A8jLq5umkGouOXOR9y0n613ZwQ==}
dependencies:
- '@types/node': 20.9.0
+ '@types/node': 20.9.4
dev: true
/@types/glob@7.2.0:
resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 20.9.0
+ '@types/node': 20.9.4
dev: true
/@types/glob@8.1.0:
resolution: {integrity: sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==}
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 20.9.0
+ '@types/node': 20.9.4
/@types/http-errors@2.0.4:
resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==}
@@ -2945,7 +2891,7 @@ packages:
/@types/keyv@3.1.4:
resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
dependencies:
- '@types/node': 20.9.0
+ '@types/node': 20.9.4
dev: true
/@types/mime@1.3.5:
@@ -2962,15 +2908,11 @@ packages:
/@types/minimatch@5.1.2:
resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==}
- /@types/node@20.9.0:
- resolution: {integrity: sha512-nekiGu2NDb1BcVofVcEKMIwzlx4NjHlcjhoxxKBNLtz15Y1z7MYf549DFvkHSId02Ax6kGwWntIBPC3l/JZcmw==}
+ /@types/node@20.9.4:
+ resolution: {integrity: sha512-wmyg8HUhcn6ACjsn8oKYjkN/zUzQeNtMy44weTJSM6p4MMzEOuKbA3OjJ267uPCOW7Xex9dyrNTful8XTQYoDA==}
dependencies:
undici-types: 5.26.5
- /@types/node@9.6.61:
- resolution: {integrity: sha512-/aKAdg5c8n468cYLy2eQrcR5k6chlbNwZNGUj3TboyPa2hcO2QAJcfymlqPzMiRj8B6nYKXjzQz36minFE0RwQ==}
- dev: false
-
/@types/qs@6.9.10:
resolution: {integrity: sha512-3Gnx08Ns1sEoCrWssEgTSJs/rsT2vhGP+Ja9cnnk9k4ALxinORlQneLXFeFKOTJMOeZUFD1s7w+w2AphTpvzZw==}
dev: true
@@ -2986,20 +2928,20 @@ packages:
/@types/responselike@1.0.3:
resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==}
dependencies:
- '@types/node': 20.9.0
+ '@types/node': 20.9.4
dev: true
/@types/rimraf@2.0.5:
resolution: {integrity: sha512-YyP+VfeaqAyFmXoTh3HChxOQMyjByRMsHU7kc5KOJkSlXudhMhQIALbYV7rHh/l8d2lX3VUQzprrcAgWdRuU8g==}
dependencies:
'@types/glob': 8.1.0
- '@types/node': 20.9.0
+ '@types/node': 20.9.4
/@types/send@0.17.4:
resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
dependencies:
'@types/mime': 1.3.5
- '@types/node': 20.9.0
+ '@types/node': 20.9.4
dev: true
/@types/serve-static@1.15.5:
@@ -3007,7 +2949,7 @@ packages:
dependencies:
'@types/http-errors': 2.0.4
'@types/mime': 3.0.4
- '@types/node': 20.9.0
+ '@types/node': 20.9.4
dev: true
/@types/symlink-or-copy@1.2.2:
@@ -3232,10 +3174,6 @@ packages:
resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==}
dev: true
- /abortcontroller-polyfill@1.7.5:
- resolution: {integrity: sha512-JMJ5soJWP18htbbxJjG7bG6yuI6pRhgJ0scHHTfkUjf6wjP912xZWvM+A4sJK3gqd9E8fcPbDnOefbA9Th/FIQ==}
- dev: false
-
/accepts@1.3.8:
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
engines: {node: '>= 0.6'}
@@ -3244,13 +3182,6 @@ packages:
negotiator: 0.6.3
dev: true
- /acorn-dynamic-import@3.0.0:
- resolution: {integrity: sha512-zVWV8Z8lislJoOKKqdNMOB+s6+XV5WERty8MnKBeFgwA+19XJjJHs2RP5dzM57FftIs+jQnRToLiWazKr6sSWg==}
- deprecated: This is probably built in to whatever tool you're using. If you still need it... idk
- dependencies:
- acorn: 5.7.4
- dev: false
-
/acorn-import-assertions@1.9.0(acorn@8.11.2):
resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==}
peerDependencies:
@@ -3270,6 +3201,7 @@ packages:
resolution: {integrity: sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==}
engines: {node: '>=0.4.0'}
hasBin: true
+ dev: true
/acorn@6.4.2:
resolution: {integrity: sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==}
@@ -3287,18 +3219,6 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
- /ag-channel@5.0.0:
- resolution: {integrity: sha512-bArHkdqQxynim981t8FLZM5TfA0v7p081OlFdOxs6clB79GSGcGlOQMDa31DT9F5VMjzqNiJmhfGwinvfU/3Zg==}
- dependencies:
- consumable-stream: 2.0.0
- dev: false
-
- /ag-request@1.0.1:
- resolution: {integrity: sha512-3F4pDpLy9mxOXop7LoWE78J5g2jmiEJ0gJfzcECOsf/NaCfyeNmOdNLDVM5dS4Hvbi9T+HENL4DmXq5XSotPaA==}
- dependencies:
- sc-errors: 2.0.3
- dev: false
-
/air-datepicker@3.4.0:
resolution: {integrity: sha512-MFr+2QYdHgrbd6Ah32hxoSCsmNJdrhYSkhr6hhefLpJBtsvX7zdYSvizsCJg15B2000NrEXep8UCYOsWy39iiw==}
dev: false
@@ -3508,8 +3428,8 @@ packages:
call-bind: 1.0.5
is-array-buffer: 3.0.2
- /array-equal@1.0.0:
- resolution: {integrity: sha512-H3LU5RLiSsGXPhN+Nipar0iR0IofH+8r89G2y1tBKxQ/agagKyAjhkAFDRBfodP2caPrNKHpAWNIM/c9yeL7uA==}
+ /array-equal@1.0.2:
+ resolution: {integrity: sha512-gUHx76KtnhEgB3HOuFYiCm3FIdEs6ocM2asHvNTkfu/Y09qQVrrVVaOKENmS2KkSaGoxgXNqC+ZVtR/n0MOkSA==}
/array-flatten@1.1.1:
resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
@@ -3616,12 +3536,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /async-stream-emitter@4.1.0:
- resolution: {integrity: sha512-cfPZYjHkhCdHSR+eux71vOU8+8Xb23oLyxccAjwYHgOxDb3+qSDb2HV1Y0Hmu39vZlse2cm15CUShLiVYXHCmQ==}
- dependencies:
- stream-demux: 8.1.0
- dev: false
-
/async@0.2.10:
resolution: {integrity: sha512-eAkdoKxU6/LkKDBzLpT+t6Ff5EtfSF4wx1WfJiPEEV7WNLnDaRXk0oVysiEPm262roaachGexwUv94WhSgN5TQ==}
dev: true
@@ -3652,7 +3566,7 @@ packages:
postcss: ^8.1.0
dependencies:
browserslist: 4.22.1
- caniuse-lite: 1.0.30001561
+ caniuse-lite: 1.0.30001564
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.0.0
@@ -3660,19 +3574,6 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /autoprefixer@9.8.8:
- resolution: {integrity: sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==}
- hasBin: true
- dependencies:
- browserslist: 4.22.1
- caniuse-lite: 1.0.30001561
- normalize-range: 0.1.2
- num2fraction: 1.2.2
- picocolors: 0.2.1
- postcss: 7.0.39
- postcss-value-parser: 4.2.0
- dev: false
-
/available-typed-arrays@1.0.5:
resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
engines: {node: '>= 0.4'}
@@ -3716,10 +3617,10 @@ packages:
peerDependencies:
eslint: '>= 4.12.1'
dependencies:
- '@babel/code-frame': 7.22.13
- '@babel/parser': 7.23.3
- '@babel/traverse': 7.23.3
- '@babel/types': 7.23.3
+ '@babel/code-frame': 7.23.4
+ '@babel/parser': 7.23.4
+ '@babel/traverse': 7.23.4
+ '@babel/types': 7.23.4
eslint: 7.32.0
eslint-visitor-keys: 1.3.0
resolve: 1.22.8
@@ -3838,7 +3739,7 @@ packages:
resolution: {integrity: sha512-jDLlxI8QnfKd7PtieH6pl4tZJzymzfCDCPGdTq/grgbiYAikwDPp/oL0IlFJn0HQjLpcLkyYhPKkUVneRESw5w==}
engines: {node: '>=8'}
dependencies:
- '@babel/types': 7.23.3
+ '@babel/types': 7.23.4
lodash: 4.17.21
/babel-plugin-htmlbars-inline-precompile@3.2.0:
@@ -3906,7 +3807,7 @@ packages:
dependencies:
'@babel/core': 7.23.3
'@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.3)
- core-js-compat: 3.33.2
+ core-js-compat: 3.33.3
transitivePeerDependencies:
- supports-color
@@ -3993,10 +3894,6 @@ packages:
/balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
- /base-64@0.1.0:
- resolution: {integrity: sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA==}
- dev: false
-
/base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
@@ -4011,7 +3908,7 @@ packages:
dependencies:
cache-base: 1.0.1
class-utils: 0.3.6
- component-emitter: 1.3.0
+ component-emitter: 1.3.1
define-property: 1.0.0
isobject: 3.0.1
mixin-deep: 1.3.2
@@ -4048,13 +3945,6 @@ packages:
file-uri-to-path: 1.0.0
optional: true
- /bl@1.2.3:
- resolution: {integrity: sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==}
- dependencies:
- readable-stream: 2.3.8
- safe-buffer: 5.2.1
- dev: false
-
/bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
dependencies:
@@ -4066,10 +3956,6 @@ packages:
/blank-object@1.0.2:
resolution: {integrity: sha512-kXQ19Xhoghiyw66CUiGypnuRpWlbHAzY/+NyvqTEdTfhfQGH1/dbEMYiXju7fYKIFePpzp/y9dsu5Cu/PkmawQ==}
- /blob-polyfill@7.0.20220408:
- resolution: {integrity: sha512-oD8Ydw+5lNoqq+en24iuPt1QixdPpe/nUF8azTHnviCZYu9zUC+TwdzIp5orpblJosNlgNbVmmAb//c6d6ImUQ==}
- dev: false
-
/bluebird@3.7.2:
resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
@@ -4173,7 +4059,7 @@ packages:
broccoli-asset-rewrite: 2.0.0
broccoli-filter: 1.3.0
broccoli-persistent-filter: 1.4.6
- json-stable-stringify: 1.0.2
+ json-stable-stringify: 1.1.0
minimatch: 3.1.2
rsvp: 3.6.2
transitivePeerDependencies:
@@ -4201,7 +4087,7 @@ packages:
hash-for-dep: 1.5.1
heimdalljs: 0.2.6
heimdalljs-logger: 0.1.10
- json-stable-stringify: 1.0.2
+ json-stable-stringify: 1.1.0
rsvp: 4.8.5
workerpool: 3.1.2
transitivePeerDependencies:
@@ -4219,7 +4105,7 @@ packages:
hash-for-dep: 1.5.1
heimdalljs: 0.2.6
heimdalljs-logger: 0.1.10
- json-stable-stringify: 1.0.2
+ json-stable-stringify: 1.1.0
rsvp: 4.8.5
workerpool: 6.5.1
transitivePeerDependencies:
@@ -4272,7 +4158,7 @@ packages:
broccoli-persistent-filter: 1.4.6
clean-css-promise: 0.1.1
inline-source-map-comment: 1.0.5
- json-stable-stringify: 1.0.2
+ json-stable-stringify: 1.1.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -4343,13 +4229,6 @@ packages:
- supports-color
dev: true
- /broccoli-file-creator@1.2.0:
- resolution: {integrity: sha512-l9zthHg6bAtnOfRr/ieZ1srRQEsufMZID7xGYRW3aBDv3u/3Eux+Iawl10tAGYE5pL9YB4n5X4vxkp6iNOoZ9g==}
- dependencies:
- broccoli-plugin: 1.3.1
- mkdirp: 0.5.6
- dev: false
-
/broccoli-file-creator@2.1.1:
resolution: {integrity: sha512-YpjOExWr92C5vhnK0kmD81kM7U09kdIRZk9w4ZDCDHuHXW+VE/x6AGEOQQW3loBQQ6Jk+k+TSm8dESy4uZsnjw==}
engines: {node: ^4.5 || 6.* || >= 7.*}
@@ -4381,7 +4260,7 @@ packages:
resolution: {integrity: sha512-C8Lnp9TVsSSiZMGEF16C0dCiNg2oJqUKwuZ1K4kVC6qRPG/2Cj/rtB5kRCC9qEbwqhX71bDbfHROx0L3J7zXQg==}
engines: {node: ^4.5 || 6.* || >= 7.*}
dependencies:
- array-equal: 1.0.0
+ array-equal: 1.0.2
blank-object: 1.0.2
broccoli-plugin: 1.3.1
debug: 2.6.9
@@ -4401,7 +4280,7 @@ packages:
resolution: {integrity: sha512-/vDTqtv7ipjEZQOVqO4vGDVAOZyuYzQ/EgGoyewfOgh1M7IQAToBKZI0oAQPgMBeFPPlIbfMuAngk+ohPBuaHQ==}
engines: {node: ^4.5 || 6.* || >= 7.*}
dependencies:
- array-equal: 1.0.0
+ array-equal: 1.0.2
blank-object: 1.0.2
broccoli-plugin: 1.3.1
debug: 2.6.9
@@ -4421,7 +4300,7 @@ packages:
resolution: {integrity: sha512-ng4eIhPYiXqMw6SyGoxPHR3YAwEd2lr9FgBI1CyTbspl4txZovOsmzFkMkGAlu88xyvYXJqHiM2crfLa65T1BQ==}
engines: {node: 10.* || >= 12.*}
dependencies:
- array-equal: 1.0.0
+ array-equal: 1.0.2
broccoli-plugin: 4.0.7
debug: 4.3.4
fs-tree-diff: 2.0.1
@@ -4661,25 +4540,6 @@ packages:
- supports-color
dev: false
- /broccoli-rollup@2.1.1:
- resolution: {integrity: sha512-aky/Ovg5DbsrsJEx2QCXxHLA6ZR+9u1TNVTf85soP4gL8CjGGKQ/JU8R3BZ2ntkWzo6/83RCKzX6O+nlNKR5MQ==}
- engines: {node: '>=4.0'}
- dependencies:
- '@types/node': 9.6.61
- amd-name-resolver: 1.3.1
- broccoli-plugin: 1.3.1
- fs-tree-diff: 0.5.9
- heimdalljs: 0.2.6
- heimdalljs-logger: 0.1.10
- magic-string: 0.24.1
- node-modules-path: 1.0.2
- rollup: 0.57.1
- symlink-or-copy: 1.3.1
- walk-sync: 0.3.4
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/broccoli-rollup@5.0.0:
resolution: {integrity: sha512-QdMuXHwsdz/LOS8zu4HP91Sfi4ofimrOXoYP/lrPdRh7lJYD87Lfq4WzzUhGHsxMfzANIEvl/7qVHKD3cFJ4tA==}
engines: {node: '>=12.0'}
@@ -4780,19 +4640,6 @@ packages:
- supports-color
dev: false
- /broccoli-templater@2.0.2:
- resolution: {integrity: sha512-71KpNkc7WmbEokTQpGcbGzZjUIY1NSVa3GB++KFKAfx5SZPUozCOsBlSTwxcv8TLoCAqbBnsX5AQPgg6vJ2l9g==}
- engines: {node: 6.* || >= 8.*}
- dependencies:
- broccoli-plugin: 1.3.1
- fs-tree-diff: 0.5.9
- lodash.template: 4.5.0
- rimraf: 2.7.1
- walk-sync: 0.3.4
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/broccoli-terser-sourcemap@4.1.1:
resolution: {integrity: sha512-8sbpRf0/+XeszBJQM7vph2UNj4Kal0lCI/yubcrBIzb2NvYj5gjTHJABXOdxx5mKNmlCMu2hx2kvOtMpQsxrfg==}
engines: {node: ^10.12.0 || 12.* || >= 14}
@@ -4856,7 +4703,7 @@ packages:
resolution: {integrity: sha512-sWi3b3fTUSVPDsz5KsQ5eCQNVAtLgkIE/HYFkEZXR/07clqmd4E/gFiuwSaqa9b+QTXc1Uemfb7TVWbEIURWDg==}
engines: {node: 8.* || >= 10.*}
dependencies:
- '@types/chai': 4.3.10
+ '@types/chai': 4.3.11
'@types/chai-as-promised': 7.1.8
'@types/express': 4.17.21
ansi-html: 0.0.7
@@ -4942,8 +4789,8 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001561
- electron-to-chromium: 1.4.580
+ caniuse-lite: 1.0.30001564
+ electron-to-chromium: 1.4.592
node-releases: 2.0.13
update-browserslist-db: 1.0.13(browserslist@4.22.1)
@@ -4971,6 +4818,7 @@ packages:
dependencies:
base64-js: 1.5.1
ieee754: 1.2.1
+ dev: true
/builtin-modules@3.3.0:
resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==}
@@ -5024,7 +4872,7 @@ packages:
engines: {node: '>=0.10.0'}
dependencies:
collection-visit: 1.0.0
- component-emitter: 1.3.0
+ component-emitter: 1.3.1
get-value: 2.0.6
has-value: 1.0.0
isobject: 3.0.1
@@ -5050,7 +4898,7 @@ packages:
resolution: {integrity: sha512-Quw8a6y8CPmRd6eU+mwypktYCwUcf8yVFIRbNZ6tPQEckX9yd+EBVEPC/GSZZrMWH9e7Vz4pT7XhpmyApRByLQ==}
engines: {node: 6.* || 8.* || >= 10.*}
dependencies:
- json-stable-stringify: 1.0.2
+ json-stable-stringify: 1.1.0
/call-bind@1.0.5:
resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==}
@@ -5090,13 +4938,13 @@ packages:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
dependencies:
browserslist: 4.22.1
- caniuse-lite: 1.0.30001561
+ caniuse-lite: 1.0.30001564
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
dev: false
- /caniuse-lite@1.0.30001561:
- resolution: {integrity: sha512-NTt0DNoKe958Q0BE0j0c1V9jbUzhBxHIEJy7asmGrpE0yG63KTV7PLHPnK2E1O9RsQrQ081I3NLuXGS6zht3cw==}
+ /caniuse-lite@1.0.30001564:
+ resolution: {integrity: sha512-DqAOf+rhof+6GVx1y+xzbFPeOumfQnhYzVnZD6LAXijR77yPtm9mfOcqOnT3mpnJiZVT+kwLAFnRlZcIz+c6bg==}
/capture-exit@2.0.0:
resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==}
@@ -5228,8 +5076,8 @@ packages:
isobject: 3.0.1
static-extend: 0.1.2
- /cldr-core@44.0.1:
- resolution: {integrity: sha512-k+Mgsb/VbCYCJHhdL/ej+qyNNFs9OB8fOmi/tpa8L+vkbX3ksn1MizUtToKU827Y1XUfT0TAaybmLA+7cEqx7Q==}
+ /cldr-core@43.1.0:
+ resolution: {integrity: sha512-8Q/Zh/eCzV4SxggzZhPnw5WDWH9OnhbPfwzthfG8uXsCn7F5UeBCiAOTxsstxuxtXPKlvPJqqMSQjiYcqJPJsA==}
dev: false
/clean-base-url@1.0.0:
@@ -5314,15 +5162,6 @@ packages:
wrap-ansi: 7.0.0
dev: true
- /clone-deep@4.0.1:
- resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==}
- engines: {node: '>=6'}
- dependencies:
- is-plain-object: 2.0.4
- kind-of: 6.0.3
- shallow-clone: 3.0.1
- dev: false
-
/clone-response@1.0.3:
resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==}
dependencies:
@@ -5412,8 +5251,8 @@ packages:
/commondir@1.0.1:
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
- /component-emitter@1.3.0:
- resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==}
+ /component-emitter@1.3.1:
+ resolution: {integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==}
/compressible@2.0.18:
resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
@@ -5486,7 +5325,7 @@ packages:
dependencies:
chalk: 2.4.2
inquirer: 6.5.2
- json-stable-stringify: 1.0.2
+ json-stable-stringify: 1.1.0
ora: 3.4.0
through2: 3.0.2
dev: true
@@ -5664,10 +5503,6 @@ packages:
/constants-browserify@1.0.0:
resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==}
- /consumable-stream@2.0.0:
- resolution: {integrity: sha512-I6WA2JVYXs/68rEvi1ie3rZjP6qusTVFEQkbzR+WC+fY56TpwiGTIDJETsrnlxv5CsnmK69ps6CkYvIbpEEqBA==}
- dev: false
-
/content-disposition@0.5.4:
resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
engines: {node: '>= 0.6'}
@@ -5722,8 +5557,8 @@ packages:
resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==}
engines: {node: '>=0.10.0'}
- /core-js-compat@3.33.2:
- resolution: {integrity: sha512-axfo+wxFVxnqf8RvxTzoAlzW4gRoacrHeoFlc9n0x50+7BEyZL/Rt3hicaED1/CEd7I6tPCPVUYcJwCMO5XUYw==}
+ /core-js-compat@3.33.3:
+ resolution: {integrity: sha512-cNzGqFsh3Ot+529GIXacjTJ7kegdt5fPXxCBVS1G0iaZpuo/tBz399ymceLJveQhFFZ8qThHiP3fzuoQjKN2ow==}
dependencies:
browserslist: 4.22.1
@@ -5814,14 +5649,6 @@ packages:
engines: {node: '>=8'}
dev: true
- /css-blank-pseudo@0.1.4:
- resolution: {integrity: sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w==}
- engines: {node: '>=6.0.0'}
- hasBin: true
- dependencies:
- postcss: 7.0.39
- dev: false
-
/css-blank-pseudo@6.0.0(postcss@8.4.31):
resolution: {integrity: sha512-VbfLlOWO7sBHBTn6pwDQzc07Z0SDydgDBfNfCE0nvrehdBNv9RKsuupIRa/qal0+fBZhAALyQDPMKz5lnvcchw==}
engines: {node: ^14 || ^16 || >=18}
@@ -5840,15 +5667,6 @@ packages:
css-unit-converter: 1.1.2
dev: false
- /css-has-pseudo@0.10.0:
- resolution: {integrity: sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==}
- engines: {node: '>=6.0.0'}
- hasBin: true
- dependencies:
- postcss: 7.0.39
- postcss-selector-parser: 5.0.0
- dev: false
-
/css-has-pseudo@6.0.0(postcss@8.4.31):
resolution: {integrity: sha512-X+r+JBuoO37FBOWVNhVJhxtSBUFHgHbrcc0CjFT28JEdOw1qaDwABv/uunyodUuSy2hMPe9j/HjssxSlvUmKjg==}
engines: {node: ^14 || ^16 || >=18}
@@ -5879,14 +5697,6 @@ packages:
semver: 7.5.4
webpack: 5.89.0
- /css-prefers-color-scheme@3.1.1:
- resolution: {integrity: sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg==}
- engines: {node: '>=6.0.0'}
- hasBin: true
- dependencies:
- postcss: 7.0.39
- dev: false
-
/css-prefers-color-scheme@9.0.0(postcss@8.4.31):
resolution: {integrity: sha512-03QGAk/FXIRseDdLb7XAiu6gidQ0Nd8945xuM7VFVPpc6goJsG9uIO8xQjTxwbPdPIIV4o4AJoOJyt8gwDl67g==}
engines: {node: ^14 || ^16 || >=18}
@@ -5908,20 +5718,10 @@ packages:
resolution: {integrity: sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA==}
dev: false
- /cssdb@4.4.0:
- resolution: {integrity: sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ==}
- dev: false
-
/cssdb@7.9.0:
resolution: {integrity: sha512-WPMT9seTQq6fPAa1yN4zjgZZeoTriSN2LqW9C+otjar12DQIWA4LuSfFrvFJiKp4oD0xIk1vumDLw8K9ur4NBw==}
dev: false
- /cssesc@2.0.0:
- resolution: {integrity: sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==}
- engines: {node: '>=4'}
- hasBin: true
- dev: false
-
/cssesc@3.0.0:
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
engines: {node: '>=4'}
@@ -5938,14 +5738,7 @@ packages:
resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==}
engines: {node: '>=0.11'}
dependencies:
- '@babel/runtime': 7.23.2
-
- /date-time@2.1.0:
- resolution: {integrity: sha512-/9+C44X7lot0IeiyfgJmETtRMhBidBYM2QFFIkGa0U1k+hSyY87Nw7PY3eDqpvCBm7I3WCSfPeZskW/YYq6m4g==}
- engines: {node: '>=4'}
- dependencies:
- time-zone: 1.0.0
- dev: false
+ '@babel/runtime': 7.23.4
/debug@2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
@@ -6178,8 +5971,8 @@ packages:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
dev: true
- /electron-to-chromium@1.4.580:
- resolution: {integrity: sha512-T5q3pjQon853xxxHUq3ZP68ZpvJHuSMY2+BZaW3QzjS4HvNuvsMmZ/+lU+nCrftre1jFZ+OSlExynXWBihnXzw==}
+ /electron-to-chromium@1.4.592:
+ resolution: {integrity: sha512-D3NOkROIlF+d5ixnz7pAf3Lu/AuWpd6AYgI9O67GQXMXTcCP1gJQRotOq35eQy5Sb4hez33XH1YdTtILA7Udww==}
/element-closest@3.0.2:
resolution: {integrity: sha512-JxKQiJKX0Zr5Q2/bCaTx8P+UbfyMET1OQd61qu5xQFeWr1km3fGaxelSJtnfT27XQ5Uoztn2yIyeamAc/VX13g==}
@@ -6197,20 +5990,19 @@ packages:
minimalistic-assert: 1.0.1
minimalistic-crypto-utils: 1.0.1
- /ember-animated@1.0.4(@ember/test-helpers@2.9.4)(ember-source@4.6.0):
- resolution: {integrity: sha512-dqnVpHqW7Tv/GiMkdiTR+QhhHD5OaAoZCfoL0jl/D26yln5we2CftPtN/ZQ3Y7Ose5FNxovrCvGUBJp0ugfwpA==}
- engines: {node: 12.* || 14.* || >= 16}
+ /ember-animated@1.1.1(@ember/test-helpers@2.9.4)(ember-source@4.6.0):
+ resolution: {integrity: sha512-ya/tLqJIP6H7gzZFh3sah2+US5APQPvEgRrbk/cNLp8x4vWAhayFEx1bsOhSXfZ73k1Sx3w2o3EC3WxLsGX8Xw==}
peerDependencies:
- '@ember/test-helpers': ^2.6.0
+ '@ember/test-helpers': ^2.6.0 || ^3.0.0
peerDependenciesMeta:
'@ember/test-helpers':
optional: true
dependencies:
'@ember/test-helpers': 2.9.4(@babel/core@7.23.3)(ember-source@4.6.0)
- '@embroider/addon-shim': 1.8.6
- '@embroider/macros': 1.13.2
+ '@embroider/addon-shim': 1.8.7
+ '@embroider/macros': 1.13.3
assert-never: 1.2.1
- ember-element-helper: 0.6.1(ember-source@4.6.0)
+ ember-element-helper: 0.8.5(ember-source@4.6.0)
transitivePeerDependencies:
- '@glint/environment-ember-loose'
- '@glint/template'
@@ -6257,8 +6049,8 @@ packages:
dependencies:
'@babel/core': 7.23.3
'@babel/preset-env': 7.23.3(@babel/core@7.23.3)
- '@babel/traverse': 7.23.3
- '@babel/types': 7.23.3
+ '@babel/traverse': 7.23.4
+ '@babel/types': 7.23.4
'@embroider/shared-internals': 1.8.3
babel-core: 6.26.3
babel-loader: 8.3.0(@babel/core@7.23.3)(webpack@4.47.0)
@@ -6297,8 +6089,8 @@ packages:
'@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.3)
'@babel/plugin-proposal-decorators': 7.23.3(@babel/core@7.23.3)
'@babel/preset-env': 7.23.3(@babel/core@7.23.3)
- '@embroider/macros': 1.13.2
- '@embroider/shared-internals': 2.5.0
+ '@embroider/macros': 1.13.3
+ '@embroider/shared-internals': 2.5.1
babel-loader: 8.3.0(@babel/core@7.23.3)(webpack@5.89.0)
babel-plugin-ember-modules-api-polyfill: 3.5.0
babel-plugin-ember-template-compilation: 2.2.1
@@ -6334,8 +6126,8 @@ packages:
engines: {node: 12.* || 14.* || >= 16}
dependencies:
'@ember/render-modifiers': 2.1.0(@babel/core@7.23.3)(ember-source@4.6.0)
- '@embroider/macros': 1.13.2
- '@embroider/util': 1.12.0(ember-source@4.6.0)
+ '@embroider/macros': 1.13.3
+ '@embroider/util': 1.12.1(ember-source@4.6.0)
'@glimmer/component': 1.1.2(@babel/core@7.23.3)
'@glimmer/tracking': 1.1.2
ember-cli-babel: 7.26.11
@@ -6355,13 +6147,14 @@ packages:
- supports-color
dev: false
- /ember-basic-dropdown@7.2.2(@babel/core@7.23.3)(@ember/string@3.1.1)(ember-source@4.6.0)(webpack@5.89.0):
- resolution: {integrity: sha512-H8mNW9nL2gJG59wkX6V+9S0PWktxvF1hGkRvlqaeegLCnCl9ML+z1QXxt8eMNdaVj7+7BXZ3nKy0mU9wMuxRIQ==}
+ /ember-basic-dropdown@7.3.0(@babel/core@7.23.3)(@ember/string@3.1.1)(ember-source@4.6.0)(webpack@5.89.0):
+ resolution: {integrity: sha512-XzLd1noCrHjG7O35HpZ+ljj7VwPPqon7svbvNJ2U7421e00eXBUVcCioGJFo1NnnPkjc14FTDc5UwktbGSbJdQ==}
engines: {node: 16.* || >= 18}
+ peerDependencies:
+ ember-source: ^3.28.0 || ^4.0.0 || >=5.0.0
dependencies:
- '@ember/render-modifiers': 2.1.0(@babel/core@7.23.3)(ember-source@4.6.0)
- '@embroider/macros': 1.13.2
- '@embroider/util': 1.12.0(ember-source@4.6.0)
+ '@embroider/macros': 1.13.3
+ '@embroider/util': 1.12.1(ember-source@4.6.0)
'@glimmer/component': 1.1.2(@babel/core@7.23.3)
'@glimmer/tracking': 1.1.2
ember-auto-import: 2.6.3(webpack@5.89.0)
@@ -6372,6 +6165,7 @@ packages:
ember-get-config: 2.1.1
ember-maybe-in-element: 2.1.0
ember-modifier: 3.2.7(@babel/core@7.23.3)
+ ember-source: 4.6.0(@babel/core@7.23.3)(webpack@5.89.0)
ember-style-modifier: 3.0.1(@babel/core@7.23.3)(@ember/string@3.1.1)(webpack@5.89.0)
ember-truth-helpers: 3.1.1
transitivePeerDependencies:
@@ -6379,7 +6173,6 @@ packages:
- '@ember/string'
- '@glint/environment-ember-loose'
- '@glint/template'
- - ember-source
- supports-color
- webpack
dev: false
@@ -6434,8 +6227,8 @@ packages:
'@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.23.3)
'@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.23.3)
'@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-runtime': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-typescript': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-runtime': 7.23.4(@babel/core@7.23.3)
+ '@babel/plugin-transform-typescript': 7.23.4(@babel/core@7.23.3)
'@babel/polyfill': 7.12.1
'@babel/preset-env': 7.23.3(@babel/core@7.23.3)
'@babel/runtime': 7.12.18
@@ -6472,10 +6265,10 @@ packages:
'@babel/plugin-proposal-decorators': 7.23.3(@babel/core@7.23.3)
'@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.23.3)
'@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.23.3)
- '@babel/plugin-transform-class-static-block': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.23.3)
'@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-runtime': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-typescript': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-runtime': 7.23.4(@babel/core@7.23.3)
+ '@babel/plugin-transform-typescript': 7.23.4(@babel/core@7.23.3)
'@babel/preset-env': 7.23.3(@babel/core@7.23.3)
'@babel/runtime': 7.12.18
amd-name-resolver: 1.3.1
@@ -6544,7 +6337,7 @@ packages:
fs-tree-diff: 2.0.1
hash-for-dep: 1.5.1
heimdalljs-logger: 0.1.10
- json-stable-stringify: 1.0.2
+ json-stable-stringify: 1.1.0
semver: 6.3.1
strip-bom: 4.0.0
walk-sync: 2.2.0
@@ -6566,7 +6359,7 @@ packages:
fs-tree-diff: 2.0.1
hash-for-dep: 1.5.1
heimdalljs-logger: 0.1.10
- json-stable-stringify: 1.0.2
+ json-stable-stringify: 1.1.0
semver: 7.5.4
silent-error: 1.1.1
strip-bom: 4.0.0
@@ -6618,27 +6411,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /ember-cli-notifications@8.0.0(@babel/core@7.23.3)(postcss@8.4.31):
- resolution: {integrity: sha512-kvAp97ODHQEyOInsVxRGfccrwaEoKZCT6ALL6Ej8E140S1yoZAepxVDphWnQJ/BxViR0Hp5sMiE01v8SdvdrMA==}
- engines: {node: '>= 12'}
- dependencies:
- broccoli-funnel: 3.0.8
- broccoli-merge-trees: 4.2.0
- broccoli-postcss: 6.1.0
- ember-cli-babel: 7.26.11
- ember-cli-htmlbars: 6.3.0
- ember-decorators-polyfill: 1.1.5(@babel/core@7.23.3)
- ember-get-config: 0.5.0
- ember-on-modifier: 1.0.1(@babel/core@7.23.3)
- lodash.get: 4.4.2
- postcss-import: 14.1.0(postcss@8.4.31)
- postcss-preset-env: 6.7.2
- transitivePeerDependencies:
- - '@babel/core'
- - postcss
- - supports-color
- dev: false
-
/ember-cli-path-utils@1.0.0:
resolution: {integrity: sha512-Qq0vvquzf4cFHoDZavzkOy3Izc893r/5spspWgyzLCPTaG78fM3HsrjZm7UWEltbXUqwHHYrqZd/R0jS08NqSA==}
@@ -6942,7 +6714,7 @@ packages:
sort-package-json: 1.57.0
symlink-or-copy: 1.3.1
temp: 0.9.4
- testem: 3.10.1
+ testem: 3.11.0
tiny-lr: 2.0.0
tree-sync: 2.1.0
uuid: 8.3.2
@@ -7062,7 +6834,7 @@ packages:
ember-concurrency: ^2.0.0-rc.1
dependencies:
'@babel/helper-plugin-utils': 7.22.5
- '@babel/types': 7.23.3
+ '@babel/types': 7.23.4
ember-cli-babel: 7.26.11
ember-cli-babel-plugin-helpers: 1.1.1
ember-cli-htmlbars: 4.5.0
@@ -7113,7 +6885,7 @@ packages:
engines: {node: 10.* || 12.* || 14.* || >= 16}
dependencies:
'@babel/helper-plugin-utils': 7.22.5
- '@babel/types': 7.23.3
+ '@babel/types': 7.23.4
'@glimmer/tracking': 1.1.2
ember-cli-babel: 7.26.11
ember-cli-babel-plugin-helpers: 1.1.1
@@ -7124,25 +6896,6 @@ packages:
- '@babel/core'
- supports-color
- /ember-cookies@0.5.2:
- resolution: {integrity: sha512-nZ7oG97kBcO9UHjO95ryABpnVx62Bhxo7lIsBJNmWvFXleILm9DGueiAynzXxuYWWPuKIeeSbYakrS1869tNTw==}
- engines: {node: 8.* || 10.* || >= 12.*}
- dependencies:
- ember-cli-babel: 7.26.11
- ember-getowner-polyfill: 2.2.0
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /ember-copy@2.0.1:
- resolution: {integrity: sha512-N/XFvZszrzyyX4IcNoeK4mJvIItNuONumhPLqi64T8NDjJkxBj4Pq61rvMkJx/9eZ8alzE4I8vYKOLxT0FvRuQ==}
- engines: {node: 10.* || >= 12}
- dependencies:
- ember-cli-babel: 7.26.11
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/ember-data@4.6.4(@babel/core@7.23.3)(webpack@5.89.0):
resolution: {integrity: sha512-3Q5+rm2ktUtqg2VE6p5LKdCG6SHNoS8++9ycORa4ngjKOtshi0JWkRIddjkDtwSv0oUgQKauGKYsKQs3q7ZIRA==}
engines: {node: ^14.8.0 || 16.* || >= 18.*}
@@ -7156,7 +6909,7 @@ packages:
'@ember-data/store': 4.6.4(@babel/core@7.23.3)(webpack@5.89.0)
'@ember/edition-utils': 1.2.0
'@ember/string': 3.1.1
- '@embroider/macros': 1.13.2
+ '@embroider/macros': 1.13.3
'@glimmer/env': 0.1.7
broccoli-merge-trees: 4.2.0
ember-auto-import: 2.6.3(webpack@5.89.0)
@@ -7170,18 +6923,6 @@ packages:
- webpack
dev: true
- /ember-decorators-polyfill@1.1.5(@babel/core@7.23.3):
- resolution: {integrity: sha512-O154i8sLoVjsiKzSqxGRfHGr+N+drT6mRrLDbNgJCnW/V5uLg/ppZFpUsrdxuXnp5Q9us3OfXV1nX2CH+7bUpA==}
- engines: {node: 8.* || >= 10.*}
- dependencies:
- ember-cli-babel: 7.26.11
- ember-cli-version-checker: 3.1.3
- ember-compatibility-helpers: 1.2.7(@babel/core@7.23.3)
- transitivePeerDependencies:
- - '@babel/core'
- - supports-color
- dev: false
-
/ember-decorators@6.1.1:
resolution: {integrity: sha512-63vZPntPn1aqMyeNRLoYjJD+8A8obd+c2iZkJflswpDRNVIsp2m7aQdSCtPt4G0U/TEq2251g+N10maHX3rnJQ==}
engines: {node: '>= 8.*'}
@@ -7215,7 +6956,7 @@ packages:
peerDependencies:
ember-source: ^3.8 || 4
dependencies:
- '@embroider/util': 1.12.0(ember-source@4.6.0)
+ '@embroider/util': 1.12.1(ember-source@4.6.0)
ember-cli-babel: 7.26.11
ember-cli-htmlbars: 6.3.0
ember-source: 4.6.0(@babel/core@7.23.3)(webpack@5.89.0)
@@ -7232,7 +6973,7 @@ packages:
ember-source: ^3.8 || ^4.0.0 || >= 5.0.0
dependencies:
'@embroider/addon-shim': 1.8.3
- '@embroider/util': 1.12.0(ember-source@4.6.0)
+ '@embroider/util': 1.12.1(ember-source@4.6.0)
ember-source: 4.6.0(@babel/core@7.23.3)(webpack@5.89.0)
transitivePeerDependencies:
- '@glint/environment-ember-loose'
@@ -7248,7 +6989,7 @@ packages:
ember-source: ^3.12 || 4
dependencies:
'@ember/legacy-built-in-components': 0.5.0(ember-source@4.6.0)
- '@embroider/macros': 1.13.2
+ '@embroider/macros': 1.13.3
amd-name-resolver: 1.3.1
babel-plugin-compact-reexports: 1.1.0
broccoli-babel-transpiler: 7.8.1
@@ -7272,36 +7013,6 @@ packages:
- supports-color
dev: true
- /ember-factory-for-polyfill@1.3.1:
- resolution: {integrity: sha512-y3iG2iCzH96lZMTWQw6LWNLAfOmDC4pXKbZP6FxG8lt7GGaNFkZjwsf+Z5GAe7kxfD7UG4lVkF7x37K82rySGA==}
- engines: {node: ^4.5 || 6.* || >= 7.*}
- dependencies:
- ember-cli-version-checker: 2.2.0
- dev: false
-
- /ember-fetch@8.1.2:
- resolution: {integrity: sha512-TVx24/jrvDIuPL296DV0hBwp7BWLcSMf0I8464KGz01sPytAB+ZAePbc9ooBTJDkKZEGFgatJa4nj3yF1S9Bpw==}
- engines: {node: '>= 10'}
- dependencies:
- abortcontroller-polyfill: 1.7.5
- broccoli-concat: 4.2.5
- broccoli-debug: 0.6.5
- broccoli-merge-trees: 4.2.0
- broccoli-rollup: 2.1.1
- broccoli-stew: 3.0.0
- broccoli-templater: 2.0.2
- calculate-cache-key-for-tree: 2.0.0
- caniuse-api: 3.0.0
- ember-cli-babel: 7.26.11
- ember-cli-typescript: 4.2.1
- ember-cli-version-checker: 5.1.2
- node-fetch: 2.7.0
- whatwg-fetch: 3.6.19
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: false
-
/ember-file-upload@7.4.0(@babel/core@7.23.3)(ember-source@4.6.0)(webpack@5.89.0):
resolution: {integrity: sha512-ZWyUpdtEFZoSeJmeiNf0xdoUxWURbUtViFwPDW5qDZx8GX7245q5vb0kNizTTLuOnTVVly0Nnm7lOPvQhcMg9g==}
engines: {node: 14.* || 16.* || >= 18}
@@ -7316,8 +7027,8 @@ packages:
dependencies:
'@ember/test-helpers': 2.9.4(@babel/core@7.23.3)(ember-source@4.6.0)
'@ember/test-waiters': 3.1.0
- '@embroider/addon-shim': 1.8.6
- '@embroider/macros': 1.13.2
+ '@embroider/addon-shim': 1.8.7
+ '@embroider/macros': 1.13.3
'@glimmer/component': 1.1.2(@babel/core@7.23.3)
'@glimmer/tracking': 1.1.2
ember-auto-import: 2.6.3(webpack@5.89.0)
@@ -7338,43 +7049,24 @@ packages:
peerDependencies:
ember-source: ^4.0.0 || ^5.0.0
dependencies:
- '@embroider/addon-shim': 1.8.6
+ '@embroider/addon-shim': 1.8.7
ember-source: 4.6.0(@babel/core@7.23.3)(webpack@5.89.0)
focus-trap: 6.9.4
transitivePeerDependencies:
- supports-color
dev: false
- /ember-get-config@0.5.0:
- resolution: {integrity: sha512-y1osD6g8wV/BlDjuaN6OG5MT0iHY2X/yE38gUj/05uUIMIRfpcwOdWnFQHBiXIhDojvAJQTEF1VOYFIETQMkeQ==}
- engines: {node: 12.* || 14.* || >= 16}
- dependencies:
- broccoli-file-creator: 1.2.0
- ember-cli-babel: 7.26.11
- ember-cli-htmlbars: 5.7.2
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/ember-get-config@2.1.1:
resolution: {integrity: sha512-uNmv1cPG/4qsac8oIf5txJ2FZ8p88LEpG4P3dNcjsJS98Y8hd0GPMFwVqpnzI78Lz7VYRGQWY4jnE4qm5R3j4g==}
engines: {node: 12.* || 14.* || >= 16}
dependencies:
- '@embroider/macros': 1.13.2
+ '@embroider/macros': 1.13.3
ember-cli-babel: 7.26.11
transitivePeerDependencies:
- '@glint/template'
- supports-color
dev: false
- /ember-getowner-polyfill@2.2.0:
- resolution: {integrity: sha512-rwGMJgbGzxIAiWYjdpAh04Abvt0s3HuS/VjHzUFhVyVg2pzAuz45B9AzOxYXzkp88vFC7FPaiA4kE8NxNk4A4Q==}
- engines: {node: ^4.5 || 6.* || >= 7.*}
- dependencies:
- ember-cli-version-checker: 2.2.0
- ember-factory-for-polyfill: 1.3.1
- dev: false
-
/ember-in-element-polyfill@1.0.1:
resolution: {integrity: sha512-eHs+7D7PuQr8a1DPqsJTsEyo3FZ1XuH6WEZaEBPDa9s0xLlwByCNKl8hi1EbXOgvgEZNHHi9Rh0vjxyfakrlgg==}
engines: {node: 10.* || >= 12}
@@ -7429,17 +7121,17 @@ packages:
transitivePeerDependencies:
- supports-color
- /ember-intl@6.1.2(@babel/core@7.23.3)(webpack@5.89.0):
- resolution: {integrity: sha512-NRfh+qpTavfC5jZLSjHxmcXKZa9r+Nx3PdMQcr54rEpt9hZKOY9B/AkvkZqswQau9QF4ftOHDvncEhMRp1xMoA==}
+ /ember-intl@6.0.0-beta.6(webpack@5.89.0):
+ resolution: {integrity: sha512-SCFAsXH1x7zNhJOfpgiIk5gVt7ysw4KB5LGMUoBmy3K2OYpD5C4Ka5w+xvw8sKhh69uo5rRpxWoiYQv2r/uOjQ==}
engines: {node: 16.* || >= 18}
peerDependencies:
- typescript: ^4.8.0 || ^5.0.0
+ typescript: '4'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- '@formatjs/icu-messageformat-parser': 2.7.1
- '@formatjs/intl': 2.9.6
+ '@formatjs/icu-messageformat-parser': 2.7.3
+ '@formatjs/intl': 2.9.9
broccoli-caching-writer: 3.0.3
broccoli-funnel: 3.0.8
broccoli-merge-files: 0.8.0
@@ -7447,24 +7139,23 @@ packages:
broccoli-source: 3.0.1
broccoli-stew: 3.0.0
calculate-cache-key-for-tree: 2.0.0
- cldr-core: 44.0.1
+ cldr-core: 43.1.0
ember-auto-import: 2.6.3(webpack@5.89.0)
- ember-cli-babel: 8.2.0(@babel/core@7.23.3)
+ ember-cli-babel: 7.26.11
ember-cli-typescript: 5.2.1
- eventemitter3: 5.0.1
+ eventemitter3: 4.0.7
extend: 3.0.2
fast-memoize: 2.5.2
has-unicode: 2.0.1
- intl-messageformat: 10.5.5
+ intl-messageformat: 10.5.8
js-yaml: 4.1.0
- json-stable-stringify: 1.0.2
+ json-stable-stringify: 1.1.0
locale-emoji: 0.3.0
lodash.castarray: 4.4.0
lodash.last: 3.0.0
lodash.omit: 4.5.0
silent-error: 1.1.1
transitivePeerDependencies:
- - '@babel/core'
- '@glint/template'
- supports-color
- webpack
@@ -7524,22 +7215,6 @@ packages:
- supports-color
dev: false
- /ember-local-storage@2.0.6:
- resolution: {integrity: sha512-SrC147cA726m1ho00PVtYqEz7xib4+0JJQbN6A2E3Dvrv2JnmwBK7Oexslu3GkHLvTGwry2bzQ0ySFSz2RObBw==}
- engines: {node: 12.* || 14.* || >= 16}
- dependencies:
- blob-polyfill: 7.0.20220408
- broccoli-funnel: 3.0.8
- broccoli-merge-trees: 4.2.0
- broccoli-stew: 3.0.0
- ember-cli-babel: 7.26.11
- ember-cli-string-utils: 1.1.0
- ember-cli-version-checker: 5.1.2
- ember-copy: 2.0.1
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/ember-math-helpers@2.18.2:
resolution: {integrity: sha512-ikAXlIiT0wk8X8uuMtHkrRYt8HnDt9Wk+iNoY9IoBmt6IRZjCD5BmuxrIPj5Eop2/afMfKmNKnc4L1StkXM3wg==}
engines: {node: 12.* || 14.* || >= 16}
@@ -7612,19 +7287,6 @@ packages:
- supports-color
dev: false
- /ember-on-modifier@1.0.1(@babel/core@7.23.3):
- resolution: {integrity: sha512-4JKUb/DBmdZkLfljN2Dj6gKmqq2vZ0/3TOwRs1+jUIXTUg1MaBMUVD1XYwzUm+a7abW9/JkQNUEVZZu13SwFMg==}
- engines: {node: 8.* || >= 10.*}
- dependencies:
- broccoli-funnel: 2.0.2
- ember-cli-babel: 7.26.11
- ember-cli-version-checker: 4.1.1
- ember-modifier-manager-polyfill: 1.2.0(@babel/core@7.23.3)
- transitivePeerDependencies:
- - '@babel/core'
- - supports-color
- dev: false
-
/ember-page-title@7.0.0:
resolution: {integrity: sha512-oq6+HYbeVD/BnxIO5AkP4gWlsatdgW2HFO10F8+XQiJZrwa7cC7Wm54JNGqQkavkDQTgNSiy1Fe2NILJ14MmAg==}
engines: {node: 12.* || 14.* || >= 16}
@@ -7658,7 +7320,7 @@ packages:
resolution: {integrity: sha512-YslsjEUzdHhFfUP7IlklQuKt6rFG/VS38JLCjTYiCcBKrl76pxky/PoGMx3V+Ukh5mI77mGfA7BSKpKv8MAQAw==}
engines: {node: 14.* || >= 16}
dependencies:
- '@embroider/util': 1.12.0(ember-source@4.6.0)
+ '@embroider/util': 1.12.1(ember-source@4.6.0)
'@glimmer/component': 1.1.2(@babel/core@7.23.3)
'@glimmer/tracking': 1.1.2
ember-assign-helper: 0.4.0
@@ -7770,31 +7432,12 @@ packages:
resolution: {integrity: sha512-89oVHVJwmLDvGvAUWgS87KpBoRhy3aZ6U0Ql6HOmU4TrPkyaa8pM0W81wj9cIwjYprcQtN9EwzZMHnq46+oUyw==}
engines: {node: 8.* || 10.* || >= 12}
dependencies:
- '@babel/parser': 7.23.3
- '@babel/traverse': 7.23.3
+ '@babel/parser': 7.23.4
+ '@babel/traverse': 7.23.4
recast: 0.18.10
transitivePeerDependencies:
- supports-color
- /ember-simple-auth@4.2.2(ember-fetch@8.1.2):
- resolution: {integrity: sha512-D7W6OREUvf5OzeB0ePptSNBilccchRYukH4f7mkbL6WT+z6VEqRRAIaQuBZdFM6lrcSFGmzctINLZJwsIpI3wg==}
- engines: {node: '>= 12'}
- peerDependencies:
- ember-fetch: ^8.0.1
- dependencies:
- base-64: 0.1.0
- broccoli-file-creator: 2.1.1
- broccoli-funnel: 2.0.2
- broccoli-merge-trees: 4.2.0
- ember-cli-babel: 7.26.11
- ember-cli-is-package-missing: 1.0.0
- ember-cookies: 0.5.2
- ember-fetch: 8.1.2
- silent-error: 1.1.1
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/ember-source-channel-url@3.0.0:
resolution: {integrity: sha512-vF/8BraOc66ZxIDo3VuNP7iiDrnXEINclJgSJmqwAAEpg84Zb1DHPI22XTXSDA+E8fW5btPUxu65c3ZXi8AQFA==}
engines: {node: 10.* || 12.* || >= 14}
@@ -7810,7 +7453,7 @@ packages:
engines: {node: '>= 12.*'}
dependencies:
'@babel/helper-module-imports': 7.22.15
- '@babel/plugin-transform-block-scoping': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.3)
'@ember/edition-utils': 1.2.0
'@glimmer/vm-babel-plugins': 0.84.2(@babel/core@7.23.3)
babel-plugin-debug-macros: 0.3.4(@babel/core@7.23.3)
@@ -8044,8 +7687,8 @@ packages:
engines: {node: '>=10.2.0'}
dependencies:
'@types/cookie': 0.4.1
- '@types/cors': 2.8.16
- '@types/node': 20.9.0
+ '@types/cors': 2.8.17
+ '@types/node': 20.9.4
accepts: 1.3.8
base64id: 2.0.0
cookie: 0.4.2
@@ -8163,8 +7806,8 @@ packages:
unbox-primitive: 1.0.2
which-typed-array: 1.1.13
- /es-module-lexer@1.4.0:
- resolution: {integrity: sha512-lcCr3v3OLezdfFyx9r5NRYHOUTQNnFEQ9E87Mx8Kc+iqyJNkO7MJoB4GQRTlIMw9kLLTwGw0OAkm4BQQud/d9g==}
+ /es-module-lexer@1.4.1:
+ resolution: {integrity: sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==}
/es-set-tostringtag@2.0.2:
resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==}
@@ -8252,7 +7895,7 @@ packages:
eslint: 7.32.0
eslint-plugin-es: 3.0.1(eslint@7.32.0)
eslint-utils: 2.1.0
- ignore: 5.2.4
+ ignore: 5.3.0
minimatch: 3.1.2
resolve: 1.22.8
semver: 6.3.1
@@ -8439,11 +8082,6 @@ packages:
/eventemitter3@4.0.7:
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
- dev: true
-
- /eventemitter3@5.0.1:
- resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==}
- dev: false
/events-to-array@1.1.2:
resolution: {integrity: sha512-inRWzRY7nG+aXZxBzEqYKB3HPgwflZRopAjDCHv0whhRx+MTUr1ei0ICZUypdyE0HRm4L2d5VEcIqLD6yl+BFA==}
@@ -8758,7 +8396,7 @@ packages:
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
- flat-cache: 3.1.1
+ flat-cache: 3.2.0
dev: true
/file-uri-to-path@1.0.0:
@@ -8974,9 +8612,9 @@ packages:
walk-sync: 2.2.0
dev: true
- /flat-cache@3.1.1:
- resolution: {integrity: sha512-/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q==}
- engines: {node: '>=12.0.0'}
+ /flat-cache@3.2.0:
+ resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
+ engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
flatted: 3.2.9
keyv: 4.5.4
@@ -8987,11 +8625,6 @@ packages:
resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==}
dev: true
- /flatten@1.0.3:
- resolution: {integrity: sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==}
- deprecated: flatten is deprecated in favor of utility frameworks such as lodash.
- dev: false
-
/flush-write-stream@1.1.1:
resolution: {integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==}
dependencies:
@@ -9428,7 +9061,7 @@ packages:
dir-glob: 3.0.1
fast-glob: 3.3.2
glob: 7.2.3
- ignore: 5.2.4
+ ignore: 5.3.0
merge2: 1.4.1
slash: 3.0.0
dev: true
@@ -9440,7 +9073,7 @@ packages:
array-union: 2.1.0
dir-glob: 3.0.1
fast-glob: 3.3.2
- ignore: 5.2.4
+ ignore: 5.3.0
merge2: 1.4.1
slash: 3.0.0
dev: true
@@ -9451,7 +9084,7 @@ packages:
dependencies:
dir-glob: 3.0.1
fast-glob: 3.3.2
- ignore: 5.2.4
+ ignore: 5.3.0
merge2: 1.4.1
slash: 4.0.0
dev: true
@@ -9756,8 +9389,8 @@ packages:
engines: {node: '>= 4'}
dev: true
- /ignore@5.2.4:
- resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
+ /ignore@5.3.0:
+ resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==}
engines: {node: '>= 4'}
dev: true
@@ -9782,10 +9415,6 @@ packages:
resolution: {integrity: sha512-KlpXnsZOrBGo4PPKqPFi3Ft6dcRyh8fTaqgzqDRi8jKAsngJEWWOxeFIWC8EfZtXKaZqlsNf9XRwcQ49DVgl/g==}
dev: false
- /indexes-of@1.0.1:
- resolution: {integrity: sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA==}
- dev: false
-
/infer-owner@1.0.4:
resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==}
@@ -9870,12 +9499,12 @@ packages:
resolution: {integrity: sha512-aKMJPw/8cxybcgYTbnwGn87VgSFbSNNqeChRJahD+ai+jtwlCOdIcEvtuBd2BWO9bPuylVgeQVmGGfX2aS1NIg==}
dev: false
- /intl-messageformat@10.5.5:
- resolution: {integrity: sha512-sF+cJCfMn+kGcSeGGRcB1UpBH0/+Ko2KByHj2RpL2qIkRvsrnuDl8zufEkvk+GPosk932C6W1Kq24xWaw+2jDA==}
+ /intl-messageformat@10.5.8:
+ resolution: {integrity: sha512-NRf0jpBWV0vd671G5b06wNofAN8tp7WWDogMZyaU8GUAsmbouyvgwmFJI7zLjfAMpm3zK+vSwRP3jzaoIcMbaA==}
dependencies:
- '@formatjs/ecma402-abstract': 1.17.3
+ '@formatjs/ecma402-abstract': 1.18.0
'@formatjs/fast-memoize': 2.2.0
- '@formatjs/icu-messageformat-parser': 2.7.1
+ '@formatjs/icu-messageformat-parser': 2.7.3
tslib: 2.6.2
dev: false
@@ -10040,7 +9669,7 @@ packages:
/is-language-code@3.1.0:
resolution: {integrity: sha512-zJdQ3QTeLye+iphMeK3wks+vXSRFKh68/Pnlw7aOfApFSEIOhYa8P9vwwa6QrImNNBMJTiL1PpYF0f4BxDuEgA==}
dependencies:
- '@babel/runtime': 7.23.2
+ '@babel/runtime': 7.23.4
dev: true
/is-module@1.0.0:
@@ -10083,12 +9712,6 @@ packages:
dependencies:
isobject: 3.0.1
- /is-reference@1.2.1:
- resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
- dependencies:
- '@types/estree': 1.0.5
- dev: false
-
/is-regex@1.1.4:
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
engines: {node: '>= 0.4'}
@@ -10210,7 +9833,7 @@ packages:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 20.9.0
+ '@types/node': 20.9.4
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -10281,10 +9904,14 @@ packages:
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
dev: true
- /json-stable-stringify@1.0.2:
- resolution: {integrity: sha512-eunSSaEnxV12z+Z73y/j5N37/In40GK4GmsSy+tEHJMxknvqnA7/djeYtAgW0GsWHUfg+847WJjKaEylk2y09g==}
+ /json-stable-stringify@1.1.0:
+ resolution: {integrity: sha512-zfA+5SuwYN2VWqN1/5HZaDzQKLJHaBVMZIIM+wuYjdptkaQsqzDdqjqf+lZZJUuJq1aanHiY8LhH8LmH+qBYJA==}
+ engines: {node: '>= 0.4'}
dependencies:
+ call-bind: 1.0.5
+ isarray: 2.0.5
jsonify: 0.0.1
+ object-keys: 1.1.1
/json5@0.5.1:
resolution: {integrity: sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==}
@@ -10400,6 +10027,11 @@ packages:
engines: {node: '>=10'}
dev: false
+ /lilconfig@3.0.0:
+ resolution: {integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==}
+ engines: {node: '>=14'}
+ dev: false
+
/line-column@1.0.2:
resolution: {integrity: sha512-Ktrjk5noGYlHsVnYWh62FLVs4hTb8A3e+vucNZMgPeAOITdshMSgv4cCZQeRDjm7+goqmo6+liZwTXo+U3sVww==}
dependencies:
@@ -10410,10 +10042,6 @@ packages:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
dev: false
- /linked-list@0.1.0:
- resolution: {integrity: sha512-Zr4ovrd0ODzF3ut2TWZMdHIxb8iFdJc/P3QM4iCJdlxxGHXo69c9hGIHzLo8/FtuR9E6WUZc5irKhtPUgOKMAg==}
- dev: false
-
/linkify-it@2.2.0:
resolution: {integrity: sha512-GnAl/knGn+i1U/wjBz3akz2stz+HrHLsxMwHQGofCDfPvlf+gDKN58UtfmUquTY4/MXeE2x7k19KQmeoZi94Iw==}
dependencies:
@@ -10472,10 +10100,6 @@ packages:
resolution: {integrity: sha512-JGm8+naU49CBDnH1jksS3LecPdfWQLxFgkLN6ZhYONKa850pJ0Xt8DPGJnYK0ZuJI8jTuiDDPCDtSL3nyacXwg==}
dev: false
- /locate-character@2.0.5:
- resolution: {integrity: sha512-n2GmejDXtOPBAZdIiEFy5dJ5N38xBCXLNOtw2WpB9kGh6pnrEuKlwYI+Tkpofc4wDtVXHtoAOJaMRlYG/oYaxg==}
- dev: false
-
/locate-path@2.0.0:
resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==}
engines: {node: '>=4'}
@@ -10549,6 +10173,7 @@ packages:
/lodash._reinterpolate@3.0.0:
resolution: {integrity: sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==}
+ dev: true
/lodash.assign@3.2.0:
resolution: {integrity: sha512-/VVxzgGBmbphasTg51FrztxQJ/VgAUpol6zmJuSVSGcNg4g7FA4z7rQV8Ovr9V3vFBNWZhvKWHfpAytjTVUfFA==}
@@ -10601,10 +10226,6 @@ packages:
lodash._isiterateecall: 3.0.9
dev: true
- /lodash.get@4.4.2:
- resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==}
- dev: false
-
/lodash.isarguments@3.1.0:
resolution: {integrity: sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==}
dev: true
@@ -10648,11 +10269,13 @@ packages:
dependencies:
lodash._reinterpolate: 3.0.0
lodash.templatesettings: 4.2.0
+ dev: true
/lodash.templatesettings@4.2.0:
resolution: {integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==}
dependencies:
lodash._reinterpolate: 3.0.0
+ dev: true
/lodash.truncate@4.4.2:
resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==}
@@ -10720,12 +10343,6 @@ packages:
engines: {node: '>=12'}
dev: true
- /magic-string@0.24.1:
- resolution: {integrity: sha512-YBfNxbJiixMzxW40XqJEIldzHyh5f7CZKalo1uZffevyrPEX8Qgo9s0dmcORLHdV47UyvJg8/zD+6hQG3qvJrA==}
- dependencies:
- sourcemap-codec: 1.4.8
- dev: false
-
/magic-string@0.25.9:
resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
dependencies:
@@ -11037,6 +10654,12 @@ packages:
engines: {node: '>=10'}
hasBin: true
+ /mkdirp@3.0.1:
+ resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==}
+ engines: {node: '>=10'}
+ hasBin: true
+ dev: true
+
/mktemp@0.4.0:
resolution: {integrity: sha512-IXnMcJ6ZyTuhRmJSjzvHSRhlVPiN9Jwc6e59V0bEJ0ba6OBeX2L0E+mRN1QseeOF4mM+F1Rit6Nh7o+rl2Yn/A==}
engines: {node: '>0.9'}
@@ -11166,6 +10789,7 @@ packages:
optional: true
dependencies:
whatwg-url: 5.0.0
+ dev: true
/node-int64@0.4.0:
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
@@ -11315,10 +10939,6 @@ packages:
set-blocking: 2.0.0
dev: true
- /num2fraction@1.2.2:
- resolution: {integrity: sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==}
- dev: false
-
/object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
@@ -11602,11 +11222,6 @@ packages:
json-parse-better-errors: 1.0.2
dev: true
- /parse-ms@1.0.1:
- resolution: {integrity: sha512-LpH1Cf5EYuVjkBvCDBYvkUPh+iv2bk3FHflxHkpCYT0/FZ1d3N3uJaLiHr4yGuMcFUhv6eAivitTvWZI4B/chg==}
- engines: {node: '>=0.10.0'}
- dev: false
-
/parse-passwd@1.0.0:
resolution: {integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==}
engines: {node: '>=0.10.0'}
@@ -11708,10 +11323,6 @@ packages:
safe-buffer: 5.2.1
sha.js: 2.4.11
- /picocolors@0.2.1:
- resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==}
- dev: false
-
/picocolors@1.0.0:
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
@@ -11804,13 +11415,6 @@ packages:
postcss: 8.4.31
dev: false
- /postcss-attribute-case-insensitive@4.0.2:
- resolution: {integrity: sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA==}
- dependencies:
- postcss: 7.0.39
- postcss-selector-parser: 6.0.13
- dev: false
-
/postcss-attribute-case-insensitive@6.0.2(postcss@8.4.31):
resolution: {integrity: sha512-IRuCwwAAQbgaLhxQdQcIIK0dCVXg3XDUnzgKD8iwdiYdwU4rMWRWyl/W9/0nA4ihVpq5pyALiHB2veBJ0292pw==}
engines: {node: ^14 || ^16 || >=18}
@@ -11831,14 +11435,6 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-color-functional-notation@2.0.1:
- resolution: {integrity: sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==}
- engines: {node: '>=6.0.0'}
- dependencies:
- postcss: 7.0.39
- postcss-values-parser: 2.0.1
- dev: false
-
/postcss-color-functional-notation@6.0.2(postcss@8.4.31):
resolution: {integrity: sha512-FsjSmlSufuiFBsIqQ++VxFmvX7zKndZpBkHmfXr4wqhvzM92FTEkAh703iqWTl1U3faTgqioIqCbfqdWiFVwtw==}
engines: {node: ^14 || ^16 || >=18}
@@ -11850,23 +11446,6 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-color-gray@5.0.0:
- resolution: {integrity: sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw==}
- engines: {node: '>=6.0.0'}
- dependencies:
- '@csstools/convert-colors': 1.4.0
- postcss: 7.0.39
- postcss-values-parser: 2.0.1
- dev: false
-
- /postcss-color-hex-alpha@5.0.3:
- resolution: {integrity: sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw==}
- engines: {node: '>=6.0.0'}
- dependencies:
- postcss: 7.0.39
- postcss-values-parser: 2.0.1
- dev: false
-
/postcss-color-hex-alpha@9.0.2(postcss@8.4.31):
resolution: {integrity: sha512-SfPjgr//VQ/DOCf80STIAsdAs7sbIbxATvVmd+Ec7JvR8onz9pjawhq3BJM3Pie40EE3TyB0P6hft16D33Nlyg==}
engines: {node: ^14 || ^16 || >=18}
@@ -11877,23 +11456,6 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-color-mod-function@3.0.3:
- resolution: {integrity: sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ==}
- engines: {node: '>=6.0.0'}
- dependencies:
- '@csstools/convert-colors': 1.4.0
- postcss: 7.0.39
- postcss-values-parser: 2.0.1
- dev: false
-
- /postcss-color-rebeccapurple@4.0.1:
- resolution: {integrity: sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g==}
- engines: {node: '>=6.0.0'}
- dependencies:
- postcss: 7.0.39
- postcss-values-parser: 2.0.1
- dev: false
-
/postcss-color-rebeccapurple@9.0.1(postcss@8.4.31):
resolution: {integrity: sha512-ds4cq5BjRieizVb2PnvbJ0omg9VCo2/KzluvoFZbxuGpsGJ5BQSD93CHBooinEtangCM5YqUOerGDl4xGmOb6Q==}
engines: {node: ^14 || ^16 || >=18}
@@ -11927,13 +11489,6 @@ packages:
postcss: 8.4.31
dev: false
- /postcss-custom-media@7.0.8:
- resolution: {integrity: sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==}
- engines: {node: '>=6.0.0'}
- dependencies:
- postcss: 7.0.39
- dev: false
-
/postcss-custom-properties@13.3.2(postcss@8.4.31):
resolution: {integrity: sha512-2Coszybpo8lpLY24vy2CYv9AasiZ39/bs8Imv0pWMq55Gl8NWzfc24OAo3zIX7rc6uUJAqESnVOMZ6V6lpMjJA==}
engines: {node: ^14 || ^16 || >=18}
@@ -11947,22 +11502,6 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-custom-properties@8.0.11:
- resolution: {integrity: sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA==}
- engines: {node: '>=6.0.0'}
- dependencies:
- postcss: 7.0.39
- postcss-values-parser: 2.0.1
- dev: false
-
- /postcss-custom-selectors@5.1.2:
- resolution: {integrity: sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w==}
- engines: {node: '>=6.0.0'}
- dependencies:
- postcss: 7.0.39
- postcss-selector-parser: 5.0.0
- dev: false
-
/postcss-custom-selectors@7.1.6(postcss@8.4.31):
resolution: {integrity: sha512-svsjWRaxqL3vAzv71dV0/65P24/FB8TbPX+lWyyf9SZ7aZm4S4NhCn7N3Bg+Z5sZunG3FS8xQ80LrCU9hb37cw==}
engines: {node: ^14 || ^16 || >=18}
@@ -11976,14 +11515,6 @@ packages:
postcss-selector-parser: 6.0.13
dev: false
- /postcss-dir-pseudo-class@5.0.0:
- resolution: {integrity: sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==}
- engines: {node: '>=4.0.0'}
- dependencies:
- postcss: 7.0.39
- postcss-selector-parser: 5.0.0
- dev: false
-
/postcss-dir-pseudo-class@8.0.0(postcss@8.4.31):
resolution: {integrity: sha512-Oy5BBi0dWPwij/IA+yDYj+/OBMQ9EPqAzTHeSNUYrUWdll/PRJmcbiUj0MNcsBi681I1gcSTLvMERPaXzdbvJg==}
engines: {node: ^14 || ^16 || >=18}
@@ -11994,14 +11525,6 @@ packages:
postcss-selector-parser: 6.0.13
dev: false
- /postcss-double-position-gradients@1.0.0:
- resolution: {integrity: sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA==}
- engines: {node: '>=6.0.0'}
- dependencies:
- postcss: 7.0.39
- postcss-values-parser: 2.0.1
- dev: false
-
/postcss-double-position-gradients@5.0.2(postcss@8.4.31):
resolution: {integrity: sha512-KTbvdOOy8z8zb0BTkEg4/1vqlRlApdvjw8/pFoehgQl0WVO+fezDGlvo0B8xRA+XccA7ohkQCULKNsiNOx70Cw==}
engines: {node: ^14 || ^16 || >=18}
@@ -12022,21 +11545,6 @@ packages:
postcss-simple-vars: 6.0.3(postcss@8.4.31)
dev: false
- /postcss-env-function@2.0.2:
- resolution: {integrity: sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw==}
- engines: {node: '>=6.0.0'}
- dependencies:
- postcss: 7.0.39
- postcss-values-parser: 2.0.1
- dev: false
-
- /postcss-focus-visible@4.0.0:
- resolution: {integrity: sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g==}
- engines: {node: '>=6.0.0'}
- dependencies:
- postcss: 7.0.39
- dev: false
-
/postcss-focus-visible@9.0.0(postcss@8.4.31):
resolution: {integrity: sha512-zA4TbVaIaT8npZBEROhZmlc+GBKE8AELPHXE7i4TmIUEQhw/P/mSJfY9t6tBzpQ1rABeGtEOHYrW4SboQeONMQ==}
engines: {node: ^14 || ^16 || >=18}
@@ -12047,13 +11555,6 @@ packages:
postcss-selector-parser: 6.0.13
dev: false
- /postcss-focus-within@3.0.0:
- resolution: {integrity: sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w==}
- engines: {node: '>=6.0.0'}
- dependencies:
- postcss: 7.0.39
- dev: false
-
/postcss-focus-within@8.0.0(postcss@8.4.31):
resolution: {integrity: sha512-E7+J9nuQzZaA37D/MUZMX1K817RZGDab8qw6pFwzAkDd/QtlWJ9/WTKmzewNiuxzeq6WWY7ATiRePVoDKp+DnA==}
engines: {node: ^14 || ^16 || >=18}
@@ -12064,12 +11565,6 @@ packages:
postcss-selector-parser: 6.0.13
dev: false
- /postcss-font-variant@4.0.1:
- resolution: {integrity: sha512-I3ADQSTNtLTTd8uxZhtSOrTCQ9G4qUVKPjHiDk0bV75QSxXjVWiJVJ2VLdspGUi9fbW9BcjKJoRvxAH1pckqmA==}
- dependencies:
- postcss: 7.0.39
- dev: false
-
/postcss-font-variant@5.0.0(postcss@8.4.31):
resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==}
peerDependencies:
@@ -12078,13 +11573,6 @@ packages:
postcss: 8.4.31
dev: false
- /postcss-gap-properties@2.0.0:
- resolution: {integrity: sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg==}
- engines: {node: '>=6.0.0'}
- dependencies:
- postcss: 7.0.39
- dev: false
-
/postcss-gap-properties@5.0.0(postcss@8.4.31):
resolution: {integrity: sha512-YjsEEL6890P7MCv6fch6Am1yq0EhQCJMXyT4LBohiu87+4/WqR7y5W3RIv53WdA901hhytgRvjlrAhibhW4qsA==}
engines: {node: ^14 || ^16 || >=18}
@@ -12094,14 +11582,6 @@ packages:
postcss: 8.4.31
dev: false
- /postcss-image-set-function@3.0.1:
- resolution: {integrity: sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw==}
- engines: {node: '>=6.0.0'}
- dependencies:
- postcss: 7.0.39
- postcss-values-parser: 2.0.1
- dev: false
-
/postcss-image-set-function@6.0.1(postcss@8.4.31):
resolution: {integrity: sha512-VlZncC9hhZ5tg0JllY4g6Z28BeoPO8DIkelioEEkXL0AA0IORlqYpTi2L8TUnl4YQrlwvBgxVy+mdZJw5R/cIQ==}
engines: {node: ^14 || ^16 || >=18}
@@ -12112,18 +11592,6 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-import@14.1.0(postcss@8.4.31):
- resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- postcss: ^8.0.0
- dependencies:
- postcss: 8.4.31
- postcss-value-parser: 4.2.0
- read-cache: 1.0.0
- resolve: 1.22.8
- dev: false
-
/postcss-import@15.1.0(postcss@8.4.31):
resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
engines: {node: '>=14.0.0'}
@@ -12136,12 +11604,6 @@ packages:
resolve: 1.22.8
dev: false
- /postcss-initial@3.0.4:
- resolution: {integrity: sha512-3RLn6DIpMsK1l5UUy9jxQvoDeUN4gP939tDcKUHD/kM8SGSKbFAnvkpFpj3Bhtz3HGk1jWY5ZNWX6mPta5M9fg==}
- dependencies:
- postcss: 7.0.39
- dev: false
-
/postcss-js@4.0.1(postcss@8.4.31):
resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
engines: {node: ^12 || ^14 || >= 16}
@@ -12152,15 +11614,6 @@ packages:
postcss: 8.4.31
dev: false
- /postcss-lab-function@2.0.1:
- resolution: {integrity: sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg==}
- engines: {node: '>=6.0.0'}
- dependencies:
- '@csstools/convert-colors': 1.4.0
- postcss: 7.0.39
- postcss-values-parser: 2.0.1
- dev: false
-
/postcss-lab-function@6.0.7(postcss@8.4.31):
resolution: {integrity: sha512-4d1lhDVPukHFqkMv4G5vVcK+tgY52vwb5uR1SWKOaO5389r2q8fMxBWuXSW+YtbCOEGP0/X9KERi9E9le2pJuw==}
engines: {node: ^14 || ^16 || >=18}
@@ -12174,8 +11627,8 @@ packages:
postcss: 8.4.31
dev: false
- /postcss-load-config@4.0.1(postcss@8.4.31):
- resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==}
+ /postcss-load-config@4.0.2(postcss@8.4.31):
+ resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
engines: {node: '>= 14'}
peerDependencies:
postcss: '>=8.0.9'
@@ -12186,18 +11639,11 @@ packages:
ts-node:
optional: true
dependencies:
- lilconfig: 2.1.0
+ lilconfig: 3.0.0
postcss: 8.4.31
yaml: 2.3.4
dev: false
- /postcss-logical@3.0.0:
- resolution: {integrity: sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==}
- engines: {node: '>=6.0.0'}
- dependencies:
- postcss: 7.0.39
- dev: false
-
/postcss-logical@7.0.0(postcss@8.4.31):
resolution: {integrity: sha512-zYf3vHkoW82f5UZTEXChTJvH49Yl9X37axTZsJGxrCG2kOUwtaAoz9E7tqYg0lsIoJLybaL8fk/2mOi81zVIUw==}
engines: {node: ^14 || ^16 || >=18}
@@ -12208,13 +11654,6 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-media-minmax@4.0.0:
- resolution: {integrity: sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw==}
- engines: {node: '>=6.0.0'}
- dependencies:
- postcss: 7.0.39
- dev: false
-
/postcss-mixins@9.0.4(postcss@8.4.31):
resolution: {integrity: sha512-XVq5jwQJDRu5M1XGkdpgASqLk37OqkH4JCFDXl/Dn7janOJjCTEKL+36cnRVy7bMtoBzALfO7bV7nTIsFnUWLA==}
engines: {node: '>=14.0'}
@@ -12286,13 +11725,6 @@ packages:
postcss-selector-parser: 6.0.13
dev: false
- /postcss-nesting@7.0.1:
- resolution: {integrity: sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg==}
- engines: {node: '>=6.0.0'}
- dependencies:
- postcss: 7.0.39
- dev: false
-
/postcss-opacity-percentage@2.0.0(postcss@8.4.31):
resolution: {integrity: sha512-lyDrCOtntq5Y1JZpBFzIWm2wG9kbEdujpNt4NLannF+J9c8CgFIzPa80YQfdza+Y+yFfzbYj/rfoOsYsooUWTQ==}
engines: {node: ^14 || ^16 || >=18}
@@ -12302,13 +11734,6 @@ packages:
postcss: 8.4.31
dev: false
- /postcss-overflow-shorthand@2.0.0:
- resolution: {integrity: sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g==}
- engines: {node: '>=6.0.0'}
- dependencies:
- postcss: 7.0.39
- dev: false
-
/postcss-overflow-shorthand@5.0.0(postcss@8.4.31):
resolution: {integrity: sha512-2rlxDyeSics/hC2FuMdPnWiP9WUPZ5x7FTuArXLFVpaSQ2woPSfZS4RD59HuEokbZhs/wPUQJ1E3MT6zVv94MQ==}
engines: {node: ^14 || ^16 || >=18}
@@ -12319,12 +11744,6 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-page-break@2.0.0:
- resolution: {integrity: sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ==}
- dependencies:
- postcss: 7.0.39
- dev: false
-
/postcss-page-break@3.0.4(postcss@8.4.31):
resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==}
peerDependencies:
@@ -12333,14 +11752,6 @@ packages:
postcss: 8.4.31
dev: false
- /postcss-place@4.0.1:
- resolution: {integrity: sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg==}
- engines: {node: '>=6.0.0'}
- dependencies:
- postcss: 7.0.39
- postcss-values-parser: 2.0.1
- dev: false
-
/postcss-place@9.0.0(postcss@8.4.31):
resolution: {integrity: sha512-qLEPD9VPH5opDVemwmRaujODF9nExn24VOC3ghgVLEvfYN7VZLwJHes0q/C9YR5hI2UC3VgBE8Wkdp1TxCXhtg==}
engines: {node: ^14 || ^16 || >=18}
@@ -12351,49 +11762,6 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-preset-env@6.7.2:
- resolution: {integrity: sha512-nz+VyUUEB9uAxo5VxI0Gq4E31UjHCG3cUiZW3PzRn7KqkGlAEWuYgb/VLbAitEq7Ooubfix+H2JCm9v+C6hJuw==}
- engines: {node: '>=6.0.0'}
- dependencies:
- autoprefixer: 9.8.8
- browserslist: 4.22.1
- caniuse-lite: 1.0.30001561
- css-blank-pseudo: 0.1.4
- css-has-pseudo: 0.10.0
- css-prefers-color-scheme: 3.1.1
- cssdb: 4.4.0
- postcss: 7.0.39
- postcss-attribute-case-insensitive: 4.0.2
- postcss-color-functional-notation: 2.0.1
- postcss-color-gray: 5.0.0
- postcss-color-hex-alpha: 5.0.3
- postcss-color-mod-function: 3.0.3
- postcss-color-rebeccapurple: 4.0.1
- postcss-custom-media: 7.0.8
- postcss-custom-properties: 8.0.11
- postcss-custom-selectors: 5.1.2
- postcss-dir-pseudo-class: 5.0.0
- postcss-double-position-gradients: 1.0.0
- postcss-env-function: 2.0.2
- postcss-focus-visible: 4.0.0
- postcss-focus-within: 3.0.0
- postcss-font-variant: 4.0.1
- postcss-gap-properties: 2.0.0
- postcss-image-set-function: 3.0.1
- postcss-initial: 3.0.4
- postcss-lab-function: 2.0.1
- postcss-logical: 3.0.0
- postcss-media-minmax: 4.0.0
- postcss-nesting: 7.0.1
- postcss-overflow-shorthand: 2.0.0
- postcss-page-break: 2.0.0
- postcss-place: 4.0.1
- postcss-pseudo-class-any-link: 6.0.0
- postcss-replace-overflow-wrap: 3.0.0
- postcss-selector-matches: 4.0.0
- postcss-selector-not: 4.0.1
- dev: false
-
/postcss-preset-env@9.3.0(postcss@8.4.31):
resolution: {integrity: sha512-ycw6doPrqV6QxDCtgiyGDef61bEfiSc59HGM4gOw/wxQxmKnhuEery61oOC/5ViENz/ycpRsuhTexs1kUBTvVw==}
engines: {node: ^14 || ^16 || >=18}
@@ -12463,14 +11831,6 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-pseudo-class-any-link@6.0.0:
- resolution: {integrity: sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew==}
- engines: {node: '>=6.0.0'}
- dependencies:
- postcss: 7.0.39
- postcss-selector-parser: 5.0.0
- dev: false
-
/postcss-pseudo-class-any-link@9.0.0(postcss@8.4.31):
resolution: {integrity: sha512-QNCYIL98VKFKY6HGDEJpF6+K/sg9bxcUYnOmNHJxZS5wsFDFaVoPeG68WAuhsqwbIBSo/b9fjEnTwY2mTSD+uA==}
engines: {node: ^14 || ^16 || >=18}
@@ -12481,12 +11841,6 @@ packages:
postcss-selector-parser: 6.0.13
dev: false
- /postcss-replace-overflow-wrap@3.0.0:
- resolution: {integrity: sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==}
- dependencies:
- postcss: 7.0.39
- dev: false
-
/postcss-replace-overflow-wrap@4.0.0(postcss@8.4.31):
resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==}
peerDependencies:
@@ -12495,20 +11849,6 @@ packages:
postcss: 8.4.31
dev: false
- /postcss-selector-matches@4.0.0:
- resolution: {integrity: sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==}
- dependencies:
- balanced-match: 1.0.2
- postcss: 7.0.39
- dev: false
-
- /postcss-selector-not@4.0.1:
- resolution: {integrity: sha512-YolvBgInEK5/79C+bdFMyzqTg6pkYqDbzZIST/PDMqa/o3qtXenD05apBG2jLgT0/BQ77d4U2UK12jWpilqMAQ==}
- dependencies:
- balanced-match: 1.0.2
- postcss: 7.0.39
- dev: false
-
/postcss-selector-not@7.0.1(postcss@8.4.31):
resolution: {integrity: sha512-1zT5C27b/zeJhchN7fP0kBr16Cc61mu7Si9uWWLoA3Px/D9tIJPKchJCkUH3tPO5D0pCFmGeApAv8XpXBQJ8SQ==}
engines: {node: ^14 || ^16 || >=18}
@@ -12519,15 +11859,6 @@ packages:
postcss-selector-parser: 6.0.13
dev: false
- /postcss-selector-parser@5.0.0:
- resolution: {integrity: sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==}
- engines: {node: '>=4'}
- dependencies:
- cssesc: 2.0.0
- indexes-of: 1.0.1
- uniq: 1.0.1
- dev: false
-
/postcss-selector-parser@6.0.13:
resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==}
engines: {node: '>=4'}
@@ -12556,23 +11887,6 @@ packages:
/postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- /postcss-values-parser@2.0.1:
- resolution: {integrity: sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg==}
- engines: {node: '>=6.14.4'}
- dependencies:
- flatten: 1.0.3
- indexes-of: 1.0.1
- uniq: 1.0.1
- dev: false
-
- /postcss@7.0.39:
- resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==}
- engines: {node: '>=6.0.0'}
- dependencies:
- picocolors: 0.2.1
- source-map: 0.6.1
- dev: false
-
/postcss@8.4.31:
resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
engines: {node: ^10 || ^12 || >=14}
@@ -12607,13 +11921,6 @@ packages:
engines: {node: '>=10.13.0'}
hasBin: true
- /pretty-ms@3.2.0:
- resolution: {integrity: sha512-ZypexbfVUGTFxb0v+m1bUyy92DHe5SyYlnyY0msyms5zd3RwyvNgyxZZsXXgoyzlxjx5MiqtXUdhUfvQbe0A2Q==}
- engines: {node: '>=4'}
- dependencies:
- parse-ms: 1.0.1
- dev: false
-
/printf@0.6.1:
resolution: {integrity: sha512-is0ctgGdPJ5951KulgfzvHGwJtZ5ck8l042vRkV6jrkpBzTmb/lueTqguWHy2JfVA+RY6gFVlaZgUS0j7S/dsw==}
engines: {node: '>= 0.9.0'}
@@ -12929,7 +12236,7 @@ packages:
/regenerator-transform@0.15.2:
resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
dependencies:
- '@babel/runtime': 7.23.2
+ '@babel/runtime': 7.23.4
/regex-not@1.0.2:
resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==}
@@ -12995,7 +12302,7 @@ packages:
dependencies:
'@babel/core': 7.23.3
'@babel/plugin-syntax-decorators': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-typescript': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-typescript': 7.23.4(@babel/core@7.23.3)
prettier: 2.8.8
transitivePeerDependencies:
- supports-color
@@ -13023,10 +12330,6 @@ packages:
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
engines: {node: '>=0.10.0'}
- /require-relative@0.8.7:
- resolution: {integrity: sha512-AKGr4qvHiryxRb19m3PsLRGuKVAbJLUD7E6eOaHkfKhwc+vSgVOCY5xNvm9EkolBKTOf0GrQAZKLimOCz81Khg==}
- dev: false
-
/requireindex@1.2.0:
resolution: {integrity: sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==}
engines: {node: '>=0.10.5'}
@@ -13166,23 +12469,6 @@ packages:
dependencies:
estree-walker: 0.6.1
- /rollup@0.57.1:
- resolution: {integrity: sha512-I18GBqP0qJoJC1K1osYjreqA8VAKovxuI3I81RSk0Dmr4TgloI0tAULjZaox8OsJ+n7XRrhH6i0G2By/pj1LCA==}
- hasBin: true
- dependencies:
- '@types/acorn': 4.0.6
- acorn: 5.7.4
- acorn-dynamic-import: 3.0.0
- date-time: 2.1.0
- is-reference: 1.2.1
- locate-character: 2.0.5
- pretty-ms: 3.2.0
- require-relative: 0.8.7
- rollup-pluginutils: 2.8.2
- signal-exit: 3.0.7
- sourcemap-codec: 1.4.8
- dev: false
-
/rollup@2.79.1:
resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==}
engines: {node: '>=10.0.0'}
@@ -13297,14 +12583,6 @@ packages:
walker: 1.0.8
dev: true
- /sc-errors@2.0.3:
- resolution: {integrity: sha512-HNpClBWpo7zxLBnhH0U/FbC19Gl3OJlVyPxo9Q2eomfdWgYfd84uhqe0LRgybc+nSpcYjtF08+/dKPLugLMMeQ==}
- dev: false
-
- /sc-formatter@4.0.0:
- resolution: {integrity: sha512-MgUIvuca+90fBrCWY5LdlU9YUWjlkPFwdpvmomcwQEu3t2id/6YHdG2nhB6o7nhRp4ocfmcXQTh00r/tJtynSg==}
- dev: false
-
/schema-utils@1.0.0:
resolution: {integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==}
engines: {node: '>= 4'}
@@ -13444,13 +12722,6 @@ packages:
inherits: 2.0.4
safe-buffer: 5.2.1
- /shallow-clone@3.0.1:
- resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
- engines: {node: '>=8'}
- dependencies:
- kind-of: 6.0.3
- dev: false
-
/shebang-command@1.2.0:
resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
engines: {node: '>=0.10.0'}
@@ -13600,26 +12871,6 @@ packages:
- utf-8-validate
dev: true
- /socketcluster-client@17.2.2:
- resolution: {integrity: sha512-HIopjTj8p979N5klC7FeZSwu9rd805bFgFcyVX7Y8zPyjVHXHTfGrV/8vqzN2gpOwnnosWQ44ue0qGqovlxZrg==}
- dependencies:
- ag-channel: 5.0.0
- ag-request: 1.0.1
- async-stream-emitter: 4.1.0
- buffer: 5.7.1
- clone-deep: 4.0.1
- linked-list: 0.1.0
- sc-errors: 2.0.3
- sc-formatter: 4.0.0
- stream-demux: 8.1.0
- uuid: 8.3.2
- vinyl-buffer: 1.0.1
- ws: 8.14.2
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
- dev: false
-
/sort-object-keys@1.1.3:
resolution: {integrity: sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==}
dev: true
@@ -13770,13 +13021,6 @@ packages:
inherits: 2.0.4
readable-stream: 2.3.8
- /stream-demux@8.1.0:
- resolution: {integrity: sha512-20vtOmAj2EVzQZKZVmfyio16u/3QOKSvg+0ldgZeS+m2FNI1vKFoqggamagsPCXufdZ1Tk8VvAM/HV/YUmRbSg==}
- dependencies:
- consumable-stream: 2.0.0
- writable-consumable-stream: 3.0.1
- dev: false
-
/stream-each@1.2.3:
resolution: {integrity: sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==}
dependencies:
@@ -14060,7 +13304,7 @@ packages:
postcss: 8.4.31
postcss-import: 15.1.0(postcss@8.4.31)
postcss-js: 4.0.1(postcss@8.4.31)
- postcss-load-config: 4.0.1(postcss@8.4.31)
+ postcss-load-config: 4.0.2(postcss@8.4.31)
postcss-nested: 6.0.1(postcss@8.4.31)
postcss-selector-parser: 6.0.13
resolve: 1.22.8
@@ -14154,8 +13398,8 @@ packages:
commander: 2.20.3
source-map-support: 0.5.21
- /testem@3.10.1:
- resolution: {integrity: sha512-42c4e7qlAelwMd8O3ogtVGRbgbr6fJnX6H51ACOIG1V1IjsKPlcQtxPyOwaL4iikH22Dfh+EyIuJnMG4yxieBQ==}
+ /testem@3.11.0:
+ resolution: {integrity: sha512-q0U126/nnRH54ZDrr6j1Ai5zK6vOm2rdY/5VJrbqcEPQgOWoLB6zrymWUs7BqN2/yRsdorocl9E9ZEwm7LLIZQ==}
engines: {node: '>= 7.*'}
hasBin: true
dependencies:
@@ -14177,7 +13421,7 @@ packages:
lodash.clonedeep: 4.5.0
lodash.find: 4.6.0
lodash.uniqby: 4.7.0
- mkdirp: 1.0.4
+ mkdirp: 3.0.1
mustache: 4.2.0
node-notifier: 10.0.1
npmlog: 6.0.2
@@ -14285,11 +13529,6 @@ packages:
resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
dev: true
- /time-zone@1.0.0:
- resolution: {integrity: sha512-TIsDdtKo6+XrPtiTm1ssmMngN1sAhyKnTO2kunQWqNPWIVvCm15Wmw4SWInwTVgJ5u/Tr04+8Ei9TNcw4x4ONA==}
- engines: {node: '>=4'}
- dev: false
-
/timers-browserify@2.0.12:
resolution: {integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==}
engines: {node: '>=0.6.0'}
@@ -14397,11 +13636,12 @@ packages:
/tr46@0.0.3:
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
+ dev: true
/tracked-built-ins@3.3.0:
resolution: {integrity: sha512-ewKFrW/AQs05oLPM5isOUb/1aOwBRfHfmF408CCzTk21FLAhKrKVOP5Q5ebX+zCT4kvg81PGBGwrBiEGND1nWA==}
dependencies:
- '@embroider/addon-shim': 1.8.6
+ '@embroider/addon-shim': 1.8.7
ember-tracked-storage-polyfill: 1.0.0
transitivePeerDependencies:
- supports-color
@@ -14585,10 +13825,6 @@ packages:
is-extendable: 0.1.1
set-value: 2.0.1
- /uniq@1.0.1:
- resolution: {integrity: sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==}
- dev: false
-
/unique-filename@1.1.1:
resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==}
dependencies:
@@ -14704,6 +13940,7 @@ packages:
/uuid@8.3.2:
resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
hasBin: true
+ dev: true
/v8-compile-cache@2.4.0:
resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==}
@@ -14735,13 +13972,6 @@ packages:
engines: {node: '>= 0.8'}
dev: true
- /vinyl-buffer@1.0.1:
- resolution: {integrity: sha512-LRBE2/g3C1hSHL2k/FynSZcVTRhEw8sb08oKGt/0hukZXwrh2m8nfy+r5yLhGEk7eFFuclhyIuPct/Bxlxk6rg==}
- dependencies:
- bl: 1.2.3
- through2: 2.0.5
- dev: false
-
/vm-browserify@1.1.2:
resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==}
@@ -14848,6 +14078,7 @@ packages:
/webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
+ dev: true
/webpack-sources@1.4.3:
resolution: {integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==}
@@ -14918,7 +14149,7 @@ packages:
browserslist: 4.22.1
chrome-trace-event: 1.0.3
enhanced-resolve: 5.15.0
- es-module-lexer: 1.4.0
+ es-module-lexer: 1.4.1
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
@@ -14951,15 +14182,12 @@ packages:
engines: {node: '>=0.8.0'}
dev: true
- /whatwg-fetch@3.6.19:
- resolution: {integrity: sha512-d67JP4dHSbm2TrpFj8AbO8DnL1JXL5J9u0Kq2xW6d0TFDbCA3Muhdt8orXC22utleTVj7Prqt82baN6RBvnEgw==}
- dev: false
-
/whatwg-url@5.0.0:
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
dependencies:
tr46: 0.0.3
webidl-conversions: 3.0.1
+ dev: true
/which-boxed-primitive@1.0.2:
resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
@@ -15037,12 +14265,6 @@ packages:
/wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
- /writable-consumable-stream@3.0.1:
- resolution: {integrity: sha512-rAOJTA/sMgXD/X6eMwbQJe49w+Fnkdx3iV5oUzdmiZ7Bwx03khqUnAKIpzp/hbI8q2EP5NfjXgIXN0MsipfHeg==}
- dependencies:
- consumable-stream: 2.0.0
- dev: false
-
/write-file-atomic@3.0.3:
resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==}
dependencies:
@@ -15065,19 +14287,6 @@ packages:
optional: true
dev: true
- /ws@8.14.2:
- resolution: {integrity: sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: '>=5.0.2'
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
- dev: false
-
/xdg-basedir@4.0.0:
resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==}
engines: {node: '>=8'}
diff --git a/server/migrations/2023_11_15_034937_create_stock_adjustment_table.php b/server/migrations/2023_11_15_034937_create_stock_adjustment_table.php
index 3d7ac559..0c01a2a8 100644
--- a/server/migrations/2023_11_15_034937_create_stock_adjustment_table.php
+++ b/server/migrations/2023_11_15_034937_create_stock_adjustment_table.php
@@ -20,10 +20,11 @@ public function up()
$table->foreignUuid('company_uuid')->nullable()->index()->references('uuid')->on('companies');
$table->foreignUuid('created_by_uuid')->nullable()->index()->references('uuid')->on('users');
$table->foreignUuid('product_uuid')->nullable()->index()->references('uuid')->on('entities');
+ $table->foreignUuid('assignee_uuid')->nullable()->index()->references('uuid')->on('users');
$table->json('meta')->nullable();
$table->string('type')->nullable();
- $table->string('reason')->nullabe();
- $table->string('approval_status')->nullable();
+ $table->string('reason')->nullabe();
+ $table->string('approval_required')->nullable();
$table->integer('before_quantity')->nullable();
$table->integer('after_quantity')->nullable();
$table->integer('quantity')->nullabe();
diff --git a/server/src/Models/StockAdjustment.php b/server/src/Models/StockAdjustment.php
index 4f925beb..f11d8c37 100644
--- a/server/src/Models/StockAdjustment.php
+++ b/server/src/Models/StockAdjustment.php
@@ -29,7 +29,7 @@ class StockAdjustment extends Model
*
* @var array
*/
- protected $searchableColumns = ['uuid', 'public_id', 'company_uuid', 'created_by_uuid', 'product_uuid', 'type', 'reason', 'approval_status', 'created_at'];
+ protected $searchableColumns = ['uuid', 'public_id', 'company_uuid', 'created_by_uuid', 'product_uuid', 'created_at'];
/**
* The attributes that are mass assignable.
@@ -42,10 +42,11 @@ class StockAdjustment extends Model
'company_uuid',
'created_by_uuid',
'product_uuid',
+ 'assignee_uuid',
'meta',
'type',
'reason',
- 'approval_status',
+ 'approval_required',
'before_quantity',
'after_quantity',
'quantity',
@@ -105,4 +106,8 @@ public function product()
{
return $this->belongsTo(Entity::class, 'product_uuid', 'uuid');
}
+
+ public function user() {
+ return $this->belongsTo(User::class, 'assignee_uuid');
+ }
}
diff --git a/tests/unit/controllers/batch/index-test.js b/tests/unit/controllers/batch/index-test.js
deleted file mode 100644
index 19c83a28..00000000
--- a/tests/unit/controllers/batch/index-test.js
+++ /dev/null
@@ -1,12 +0,0 @@
-import { module, test } from 'qunit';
-import { setupTest } from 'dummy/tests/helpers';
-
-module('Unit | Controller | batch/index', function (hooks) {
- setupTest(hooks);
-
- // TODO: Replace this with your real tests.
- test('it exists', function (assert) {
- let controller = this.owner.lookup('controller:batch/index');
- assert.ok(controller);
- });
-});
diff --git a/tests/unit/controllers/batch/index/details-test.js b/tests/unit/controllers/batch/index/details-test.js
deleted file mode 100644
index 7a6648eb..00000000
--- a/tests/unit/controllers/batch/index/details-test.js
+++ /dev/null
@@ -1,12 +0,0 @@
-import { module, test } from 'qunit';
-import { setupTest } from 'dummy/tests/helpers';
-
-module('Unit | Controller | batch/index/details', function (hooks) {
- setupTest(hooks);
-
- // TODO: Replace this with your real tests.
- test('it exists', function (assert) {
- let controller = this.owner.lookup('controller:batch/index/details');
- assert.ok(controller);
- });
-});
diff --git a/tests/unit/controllers/batch/index/edit-test.js b/tests/unit/controllers/batch/index/edit-test.js
deleted file mode 100644
index 8499ef95..00000000
--- a/tests/unit/controllers/batch/index/edit-test.js
+++ /dev/null
@@ -1,12 +0,0 @@
-import { module, test } from 'qunit';
-import { setupTest } from 'dummy/tests/helpers';
-
-module('Unit | Controller | batch/index/edit', function (hooks) {
- setupTest(hooks);
-
- // TODO: Replace this with your real tests.
- test('it exists', function (assert) {
- let controller = this.owner.lookup('controller:batch/index/edit');
- assert.ok(controller);
- });
-});
diff --git a/tests/unit/controllers/batch/index/new-test.js b/tests/unit/controllers/batch/index/new-test.js
deleted file mode 100644
index c7b9465e..00000000
--- a/tests/unit/controllers/batch/index/new-test.js
+++ /dev/null
@@ -1,12 +0,0 @@
-import { module, test } from 'qunit';
-import { setupTest } from 'dummy/tests/helpers';
-
-module('Unit | Controller | batch/index/new', function (hooks) {
- setupTest(hooks);
-
- // TODO: Replace this with your real tests.
- test('it exists', function (assert) {
- let controller = this.owner.lookup('controller:batch/index/new');
- assert.ok(controller);
- });
-});
diff --git a/tests/unit/routes/batch/index-test.js b/tests/unit/routes/batch/index-test.js
deleted file mode 100644
index 10233762..00000000
--- a/tests/unit/routes/batch/index-test.js
+++ /dev/null
@@ -1,11 +0,0 @@
-import { module, test } from 'qunit';
-import { setupTest } from 'dummy/tests/helpers';
-
-module('Unit | Route | batch/index', function (hooks) {
- setupTest(hooks);
-
- test('it exists', function (assert) {
- let route = this.owner.lookup('route:batch/index');
- assert.ok(route);
- });
-});
diff --git a/tests/unit/routes/batch/index/details-test.js b/tests/unit/routes/batch/index/details-test.js
deleted file mode 100644
index 6b651936..00000000
--- a/tests/unit/routes/batch/index/details-test.js
+++ /dev/null
@@ -1,11 +0,0 @@
-import { module, test } from 'qunit';
-import { setupTest } from 'dummy/tests/helpers';
-
-module('Unit | Route | batch/index/details', function (hooks) {
- setupTest(hooks);
-
- test('it exists', function (assert) {
- let route = this.owner.lookup('route:batch/index/details');
- assert.ok(route);
- });
-});
diff --git a/tests/unit/routes/batch/index/edit-test.js b/tests/unit/routes/batch/index/edit-test.js
deleted file mode 100644
index ef8c2d9c..00000000
--- a/tests/unit/routes/batch/index/edit-test.js
+++ /dev/null
@@ -1,11 +0,0 @@
-import { module, test } from 'qunit';
-import { setupTest } from 'dummy/tests/helpers';
-
-module('Unit | Route | batch/index/edit', function (hooks) {
- setupTest(hooks);
-
- test('it exists', function (assert) {
- let route = this.owner.lookup('route:batch/index/edit');
- assert.ok(route);
- });
-});
diff --git a/tests/unit/routes/batch/index/new-test.js b/tests/unit/routes/batch/index/new-test.js
deleted file mode 100644
index ffc42815..00000000
--- a/tests/unit/routes/batch/index/new-test.js
+++ /dev/null
@@ -1,11 +0,0 @@
-import { module, test } from 'qunit';
-import { setupTest } from 'dummy/tests/helpers';
-
-module('Unit | Route | batch/index/new', function (hooks) {
- setupTest(hooks);
-
- test('it exists', function (assert) {
- let route = this.owner.lookup('route:batch/index/new');
- assert.ok(route);
- });
-});