axiodb 2.24.71 → 2.25.73

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/lib/Services/Aggregation/Aggregation.Operation.js +2 -2
  2. package/lib/Services/Aggregation/Aggregation.Operation.js.map +1 -1
  3. package/lib/Services/CRUD Operation/Delete.operation.js +4 -4
  4. package/lib/Services/CRUD Operation/Delete.operation.js.map +1 -1
  5. package/lib/Services/CRUD Operation/Reader.operation.js +2 -2
  6. package/lib/Services/CRUD Operation/Reader.operation.js.map +1 -1
  7. package/lib/Services/CRUD Operation/Update.operation.js +2 -2
  8. package/lib/Services/CRUD Operation/Update.operation.js.map +1 -1
  9. package/lib/Services/Database/database.operation.d.ts +1 -0
  10. package/lib/Services/Database/database.operation.js +10 -1
  11. package/lib/Services/Database/database.operation.js.map +1 -1
  12. package/lib/engine/node/WorkerForDataLoad.engine.js +6 -1
  13. package/lib/engine/node/WorkerForDataLoad.engine.js.map +1 -1
  14. package/lib/server/config/PortFreeChecker.d.ts +16 -0
  15. package/lib/server/config/PortFreeChecker.js +34 -1
  16. package/lib/server/config/PortFreeChecker.js.map +1 -1
  17. package/lib/server/config/keys.js +32 -0
  18. package/lib/server/config/keys.js.map +1 -1
  19. package/lib/server/controller/Operation/CRUD.controller.d.ts +69 -0
  20. package/lib/server/controller/Operation/CRUD.controller.js +196 -0
  21. package/lib/server/controller/Operation/CRUD.controller.js.map +1 -0
  22. package/lib/server/public/AxioControl/.vite/manifest.json +2 -2
  23. package/lib/server/public/AxioControl/.vite/ssr-manifest.json +264 -4
  24. package/lib/server/public/AxioControl/assets/index-CAFsNx4j.js +81 -0
  25. package/lib/server/public/AxioControl/assets/index-xtzT-Znx.css +1 -0
  26. package/lib/server/public/AxioControl/index.html +2 -2
  27. package/lib/server/public/AxioControl/sw.js +1 -1
  28. package/lib/server/router/Router.js +6 -0
  29. package/lib/server/router/Router.js.map +1 -1
  30. package/lib/server/router/Routers/Operation.routes.d.ts +7 -0
  31. package/lib/server/router/Routers/Operation.routes.js +31 -0
  32. package/lib/server/router/Routers/Operation.routes.js.map +1 -0
  33. package/lib/utility/BufferLoaderWithWorker.utils.d.ts +1 -1
  34. package/lib/utility/BufferLoaderWithWorker.utils.js +3 -3
  35. package/lib/utility/BufferLoaderWithWorker.utils.js.map +1 -1
  36. package/package.json +1 -1
  37. package/lib/server/public/AxioControl/assets/index--rWHSvem.css +0 -1
  38. package/lib/server/public/AxioControl/assets/index-1QePTOyA.js +0 -56
@@ -0,0 +1,196 @@
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ var __importDefault = (this && this.__importDefault) || function (mod) {
12
+ return (mod && mod.__esModule) ? mod : { "default": mod };
13
+ };
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ /* eslint-disable @typescript-eslint/no-explicit-any */
16
+ /* eslint-disable prefer-const */
17
+ const outers_1 = require("outers");
18
+ const responseBuilder_helper_1 = __importDefault(require("../../helper/responseBuilder.helper"));
19
+ /**
20
+ * CRUD Controller class for handling database operations
21
+ */
22
+ class CRUDController {
23
+ constructor(AxioDBInstance) {
24
+ this.AxioDBInstance = AxioDBInstance;
25
+ }
26
+ /**
27
+ * Retrieves all documents from a specified collection with pagination.
28
+ *
29
+ * @param request - The Fastify request object containing query parameters
30
+ * @param request.query.dbName - The name of the database to query
31
+ * @param request.query.collectionName - The name of the collection to query
32
+ * @param request.query.page - The page number for pagination (starts from 1)
33
+ *
34
+ * @returns A response object with:
35
+ * - Status code 200 and documents data if successful
36
+ * - Status code 400 if database name, collection name, or page number is invalid
37
+ * - Status code 404 if no documents are found
38
+ *
39
+ * @example
40
+ * // GET /documents?dbName=users&collectionName=profiles&page=1
41
+ */
42
+ getAllDocuments(request) {
43
+ return __awaiter(this, void 0, void 0, function* () {
44
+ // Extracting parameters from the request body
45
+ let { dbName, collectionName, page } = request.query;
46
+ page = parseInt(String(page));
47
+ // Validating extracted parameters
48
+ if (!dbName || typeof dbName !== "string") {
49
+ return (0, responseBuilder_helper_1.default)(outers_1.StatusCodes.BAD_REQUEST, "Invalid database name");
50
+ }
51
+ if (!collectionName || typeof collectionName !== "string") {
52
+ return (0, responseBuilder_helper_1.default)(outers_1.StatusCodes.BAD_REQUEST, "Invalid collection name");
53
+ }
54
+ if (typeof page !== "number" || page < 1) {
55
+ return (0, responseBuilder_helper_1.default)(outers_1.StatusCodes.BAD_REQUEST, "Invalid page number");
56
+ }
57
+ const skip = (page - 1) * 10;
58
+ const databaseInstance = yield this.AxioDBInstance.createDB(dbName);
59
+ const DB_Collection = yield databaseInstance.createCollection(collectionName);
60
+ // Find All Data
61
+ const allDocuments = yield DB_Collection.query({})
62
+ .Limit(10)
63
+ .Sort({ updatedAt: -1 })
64
+ .Skip(skip)
65
+ .exec();
66
+ if (!allDocuments.data) {
67
+ return (0, responseBuilder_helper_1.default)(outers_1.StatusCodes.NOT_FOUND, "No documents found");
68
+ }
69
+ return (0, responseBuilder_helper_1.default)(outers_1.StatusCodes.OK, "Documents retrieved successfully", allDocuments);
70
+ });
71
+ }
72
+ /**
73
+ * Creates a new document in a specified collection within a database.
74
+ *
75
+ * @param request - The Fastify request object containing query parameters and body data
76
+ * @param request.query - Query parameters containing database and collection names
77
+ * @param request.query.dbName - The name of the database to store the document in
78
+ * @param request.query.collectionName - The name of the collection to store the document in
79
+ * @param request.body - The document data to be inserted
80
+ *
81
+ * @returns A response object with appropriate status code and message:
82
+ * - 201 (Created) with the inserted document data on success
83
+ * - 400 (Bad Request) if any required parameters are invalid
84
+ * - 500 (Internal Server Error) if document insertion fails
85
+ *
86
+ * @throws May throw exceptions if database or collection operations fail
87
+ */
88
+ createNewDocument(request) {
89
+ return __awaiter(this, void 0, void 0, function* () {
90
+ // Extracting parameters from the request body
91
+ let { dbName, collectionName } = request.query;
92
+ const documentData = request.body;
93
+ // Validating extracted parameters
94
+ if (!dbName || typeof dbName !== "string") {
95
+ return (0, responseBuilder_helper_1.default)(outers_1.StatusCodes.BAD_REQUEST, "Invalid database name");
96
+ }
97
+ if (!collectionName || typeof collectionName !== "string") {
98
+ return (0, responseBuilder_helper_1.default)(outers_1.StatusCodes.BAD_REQUEST, "Invalid collection name");
99
+ }
100
+ if (!documentData || typeof documentData !== "object") {
101
+ return (0, responseBuilder_helper_1.default)(outers_1.StatusCodes.BAD_REQUEST, "Invalid document data");
102
+ }
103
+ const databaseInstance = yield this.AxioDBInstance.createDB(dbName);
104
+ const DB_Collection = yield databaseInstance.createCollection(collectionName);
105
+ // Insert the new document
106
+ const insertResult = yield DB_Collection.insert(documentData);
107
+ if (!insertResult || insertResult.statusCode !== outers_1.StatusCodes.OK) {
108
+ return (0, responseBuilder_helper_1.default)(outers_1.StatusCodes.INTERNAL_SERVER_ERROR, "Failed to insert document");
109
+ }
110
+ return (0, responseBuilder_helper_1.default)(outers_1.StatusCodes.CREATED, "Document created successfully", insertResult.data);
111
+ });
112
+ }
113
+ /**
114
+ * Update an existing document in a specified collection within a database.
115
+ * @param request - The Fastify request object containing query parameters and body data
116
+ * @param request.query - Query parameters containing database, collection, and document IDs
117
+ * @param request.query.dbName - The name of the database
118
+ * @param request.query.collectionName - The name of the collection
119
+ * @param request.query.documentId - The ID of the document to update
120
+ * @param request.body - The updated document data
121
+ */
122
+ updateDocument(request) {
123
+ return __awaiter(this, void 0, void 0, function* () {
124
+ // Extracting parameters from the request body
125
+ let { dbName, collectionName, documentId } = request.query;
126
+ const updatedData = request.body;
127
+ // Validating extracted parameters
128
+ if (!dbName || typeof dbName !== "string") {
129
+ return (0, responseBuilder_helper_1.default)(outers_1.StatusCodes.BAD_REQUEST, "Invalid database name");
130
+ }
131
+ if (!collectionName || typeof collectionName !== "string") {
132
+ return (0, responseBuilder_helper_1.default)(outers_1.StatusCodes.BAD_REQUEST, "Invalid collection name");
133
+ }
134
+ if (!documentId || typeof documentId !== "string") {
135
+ return (0, responseBuilder_helper_1.default)(outers_1.StatusCodes.BAD_REQUEST, "Invalid document ID");
136
+ }
137
+ if (!updatedData || typeof updatedData !== "object") {
138
+ return (0, responseBuilder_helper_1.default)(outers_1.StatusCodes.BAD_REQUEST, "Invalid updated data");
139
+ }
140
+ const databaseInstance = yield this.AxioDBInstance.createDB(dbName);
141
+ const DB_Collection = yield databaseInstance.createCollection(collectionName);
142
+ // Update the document
143
+ const updateResult = yield DB_Collection.update({
144
+ documentId: documentId,
145
+ }).UpdateOne(updatedData);
146
+ if (!updateResult || updateResult.statusCode !== outers_1.StatusCodes.OK) {
147
+ return (0, responseBuilder_helper_1.default)(outers_1.StatusCodes.INTERNAL_SERVER_ERROR, "Failed to update document");
148
+ }
149
+ return (0, responseBuilder_helper_1.default)(outers_1.StatusCodes.OK, "Document updated successfully", updateResult.data);
150
+ });
151
+ }
152
+ /**
153
+ * Deletes a document from a specified collection in a database.
154
+ *
155
+ * @param request - The Fastify request object containing query parameters
156
+ * @param request.query.dbName - The name of the database
157
+ * @param request.query.collectionName - The name of the collection
158
+ * @param request.query.documentId - The ID of the document to delete
159
+ *
160
+ * @returns A response object with appropriate status code and message:
161
+ * - 200 (OK) if the document was successfully deleted
162
+ * - 400 (BAD REQUEST) if any required parameters are missing or invalid
163
+ * - 500 (INTERNAL SERVER ERROR) if the deletion operation fails
164
+ *
165
+ * @throws May throw exceptions during database operations
166
+ */
167
+ deleteDocument(request) {
168
+ return __awaiter(this, void 0, void 0, function* () {
169
+ // Extracting parameters from the request body
170
+ let { dbName, collectionName, documentId } = request.query;
171
+ // Validating extracted parameters
172
+ if (!dbName || typeof dbName !== "string") {
173
+ return (0, responseBuilder_helper_1.default)(outers_1.StatusCodes.BAD_REQUEST, "Invalid database name");
174
+ }
175
+ if (!collectionName || typeof collectionName !== "string") {
176
+ return (0, responseBuilder_helper_1.default)(outers_1.StatusCodes.BAD_REQUEST, "Invalid collection name");
177
+ }
178
+ if (!documentId || typeof documentId !== "string") {
179
+ return (0, responseBuilder_helper_1.default)(outers_1.StatusCodes.BAD_REQUEST, "Invalid document ID");
180
+ }
181
+ const databaseInstance = yield this.AxioDBInstance.createDB(dbName);
182
+ const DB_Collection = yield databaseInstance.createCollection(collectionName);
183
+ // Delete the document
184
+ const deleteResult = yield DB_Collection.delete({
185
+ documentId: documentId,
186
+ }).deleteOne();
187
+ console.log(deleteResult);
188
+ if (!deleteResult || deleteResult.statusCode !== outers_1.StatusCodes.OK) {
189
+ return (0, responseBuilder_helper_1.default)(outers_1.StatusCodes.INTERNAL_SERVER_ERROR, "Failed to delete document");
190
+ }
191
+ return (0, responseBuilder_helper_1.default)(outers_1.StatusCodes.OK, "Document deleted successfully");
192
+ });
193
+ }
194
+ }
195
+ exports.default = CRUDController;
196
+ //# sourceMappingURL=CRUD.controller.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CRUD.controller.js","sourceRoot":"","sources":["../../../../source/server/controller/Operation/CRUD.controller.ts"],"names":[],"mappings":"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"}
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "index.html": {
3
- "file": "assets/index-1QePTOyA.js",
3
+ "file": "assets/index-CAFsNx4j.js",
4
4
  "name": "index",
5
5
  "src": "index.html",
6
6
  "isEntry": true,
7
7
  "css": [
8
- "assets/index--rWHSvem.css"
8
+ "assets/index-xtzT-Znx.css"
9
9
  ]
10
10
  }
11
11
  }
@@ -1,6 +1,4 @@
1
1
  {
2
- "\u0000/home/runner/work/AxioDB/AxioDB/GUI/node_modules/cookie/dist/index.js?commonjs-es-import": [],
3
- "\u0000/home/runner/work/AxioDB/AxioDB/GUI/node_modules/cookie/dist/index.js?commonjs-exports": [],
4
2
  "\u0000/home/runner/work/AxioDB/AxioDB/GUI/node_modules/react-dom/cjs/react-dom-client.production.js?commonjs-exports": [],
5
3
  "\u0000/home/runner/work/AxioDB/AxioDB/GUI/node_modules/react-dom/cjs/react-dom.production.js?commonjs-exports": [],
6
4
  "\u0000/home/runner/work/AxioDB/AxioDB/GUI/node_modules/react-dom/client.js?commonjs-es-import": [],
@@ -75,12 +73,268 @@
75
73
  "node_modules/axios/lib/platform/common/utils.js": [],
76
74
  "node_modules/axios/lib/platform/index.js": [],
77
75
  "node_modules/axios/lib/utils.js": [],
78
- "node_modules/cookie/dist/index.js": [],
76
+ "node_modules/framer-motion/dist/es/animation/animate/single-value.mjs": [],
77
+ "node_modules/framer-motion/dist/es/animation/animators/waapi/utils/get-final-keyframe.mjs": [],
78
+ "node_modules/framer-motion/dist/es/animation/interfaces/motion-value.mjs": [],
79
+ "node_modules/framer-motion/dist/es/animation/interfaces/visual-element-target.mjs": [],
80
+ "node_modules/framer-motion/dist/es/animation/interfaces/visual-element-variant.mjs": [],
81
+ "node_modules/framer-motion/dist/es/animation/interfaces/visual-element.mjs": [],
82
+ "node_modules/framer-motion/dist/es/animation/optimized-appear/data-id.mjs": [],
83
+ "node_modules/framer-motion/dist/es/animation/optimized-appear/get-appear-id.mjs": [],
84
+ "node_modules/framer-motion/dist/es/animation/utils/calc-child-stagger.mjs": [],
85
+ "node_modules/framer-motion/dist/es/animation/utils/default-transitions.mjs": [],
86
+ "node_modules/framer-motion/dist/es/animation/utils/is-animation-controls.mjs": [],
87
+ "node_modules/framer-motion/dist/es/animation/utils/is-keyframes-target.mjs": [],
88
+ "node_modules/framer-motion/dist/es/animation/utils/is-transition-defined.mjs": [],
89
+ "node_modules/framer-motion/dist/es/components/AnimatePresence/PopChild.mjs": [],
90
+ "node_modules/framer-motion/dist/es/components/AnimatePresence/PresenceChild.mjs": [],
91
+ "node_modules/framer-motion/dist/es/components/AnimatePresence/index.mjs": [],
92
+ "node_modules/framer-motion/dist/es/components/AnimatePresence/use-presence.mjs": [],
93
+ "node_modules/framer-motion/dist/es/components/AnimatePresence/utils.mjs": [],
94
+ "node_modules/framer-motion/dist/es/context/LayoutGroupContext.mjs": [],
95
+ "node_modules/framer-motion/dist/es/context/LazyContext.mjs": [],
96
+ "node_modules/framer-motion/dist/es/context/MotionConfigContext.mjs": [],
97
+ "node_modules/framer-motion/dist/es/context/MotionContext/create.mjs": [],
98
+ "node_modules/framer-motion/dist/es/context/MotionContext/index.mjs": [],
99
+ "node_modules/framer-motion/dist/es/context/MotionContext/utils.mjs": [],
100
+ "node_modules/framer-motion/dist/es/context/PresenceContext.mjs": [],
101
+ "node_modules/framer-motion/dist/es/context/SwitchLayoutGroupContext.mjs": [],
102
+ "node_modules/framer-motion/dist/es/events/add-dom-event.mjs": [],
103
+ "node_modules/framer-motion/dist/es/events/add-pointer-event.mjs": [],
104
+ "node_modules/framer-motion/dist/es/events/event-info.mjs": [],
105
+ "node_modules/framer-motion/dist/es/gestures/drag/VisualElementDragControls.mjs": [],
106
+ "node_modules/framer-motion/dist/es/gestures/drag/index.mjs": [],
107
+ "node_modules/framer-motion/dist/es/gestures/drag/utils/constraints.mjs": [],
108
+ "node_modules/framer-motion/dist/es/gestures/focus.mjs": [],
109
+ "node_modules/framer-motion/dist/es/gestures/hover.mjs": [],
110
+ "node_modules/framer-motion/dist/es/gestures/pan/PanSession.mjs": [],
111
+ "node_modules/framer-motion/dist/es/gestures/pan/index.mjs": [],
112
+ "node_modules/framer-motion/dist/es/gestures/press.mjs": [],
113
+ "node_modules/framer-motion/dist/es/motion/features/Feature.mjs": [],
114
+ "node_modules/framer-motion/dist/es/motion/features/animation/exit.mjs": [],
115
+ "node_modules/framer-motion/dist/es/motion/features/animation/index.mjs": [],
116
+ "node_modules/framer-motion/dist/es/motion/features/animations.mjs": [],
117
+ "node_modules/framer-motion/dist/es/motion/features/definitions.mjs": [],
118
+ "node_modules/framer-motion/dist/es/motion/features/drag.mjs": [],
119
+ "node_modules/framer-motion/dist/es/motion/features/gestures.mjs": [],
120
+ "node_modules/framer-motion/dist/es/motion/features/layout.mjs": [],
121
+ "node_modules/framer-motion/dist/es/motion/features/layout/MeasureLayout.mjs": [],
122
+ "node_modules/framer-motion/dist/es/motion/features/load-features.mjs": [],
123
+ "node_modules/framer-motion/dist/es/motion/features/viewport/index.mjs": [],
124
+ "node_modules/framer-motion/dist/es/motion/features/viewport/observers.mjs": [],
125
+ "node_modules/framer-motion/dist/es/motion/index.mjs": [],
126
+ "node_modules/framer-motion/dist/es/motion/utils/is-forced-motion-value.mjs": [],
127
+ "node_modules/framer-motion/dist/es/motion/utils/symbol.mjs": [],
128
+ "node_modules/framer-motion/dist/es/motion/utils/use-motion-ref.mjs": [],
129
+ "node_modules/framer-motion/dist/es/motion/utils/use-visual-element.mjs": [],
130
+ "node_modules/framer-motion/dist/es/motion/utils/use-visual-state.mjs": [],
131
+ "node_modules/framer-motion/dist/es/motion/utils/valid-prop.mjs": [],
132
+ "node_modules/framer-motion/dist/es/projection/animation/mix-values.mjs": [],
133
+ "node_modules/framer-motion/dist/es/projection/geometry/conversion.mjs": [],
134
+ "node_modules/framer-motion/dist/es/projection/geometry/copy.mjs": [],
135
+ "node_modules/framer-motion/dist/es/projection/geometry/delta-apply.mjs": [],
136
+ "node_modules/framer-motion/dist/es/projection/geometry/delta-calc.mjs": [],
137
+ "node_modules/framer-motion/dist/es/projection/geometry/delta-remove.mjs": [],
138
+ "node_modules/framer-motion/dist/es/projection/geometry/models.mjs": [],
139
+ "node_modules/framer-motion/dist/es/projection/geometry/utils.mjs": [],
140
+ "node_modules/framer-motion/dist/es/projection/node/DocumentProjectionNode.mjs": [],
141
+ "node_modules/framer-motion/dist/es/projection/node/HTMLProjectionNode.mjs": [],
142
+ "node_modules/framer-motion/dist/es/projection/node/create-projection-node.mjs": [],
143
+ "node_modules/framer-motion/dist/es/projection/node/state.mjs": [],
144
+ "node_modules/framer-motion/dist/es/projection/shared/stack.mjs": [],
145
+ "node_modules/framer-motion/dist/es/projection/styles/scale-border-radius.mjs": [],
146
+ "node_modules/framer-motion/dist/es/projection/styles/scale-box-shadow.mjs": [],
147
+ "node_modules/framer-motion/dist/es/projection/styles/scale-correction.mjs": [],
148
+ "node_modules/framer-motion/dist/es/projection/styles/transform.mjs": [],
149
+ "node_modules/framer-motion/dist/es/projection/utils/each-axis.mjs": [],
150
+ "node_modules/framer-motion/dist/es/projection/utils/has-transform.mjs": [],
151
+ "node_modules/framer-motion/dist/es/projection/utils/measure.mjs": [],
152
+ "node_modules/framer-motion/dist/es/render/VisualElement.mjs": [],
153
+ "node_modules/framer-motion/dist/es/render/components/create-proxy.mjs": [],
154
+ "node_modules/framer-motion/dist/es/render/components/motion/feature-bundle.mjs": [],
155
+ "node_modules/framer-motion/dist/es/render/components/motion/proxy.mjs": [],
156
+ "node_modules/framer-motion/dist/es/render/dom/DOMVisualElement.mjs": [],
157
+ "node_modules/framer-motion/dist/es/render/dom/create-visual-element.mjs": [],
158
+ "node_modules/framer-motion/dist/es/render/dom/use-render.mjs": [],
159
+ "node_modules/framer-motion/dist/es/render/dom/utils/camel-to-dash.mjs": [],
160
+ "node_modules/framer-motion/dist/es/render/dom/utils/filter-props.mjs": [],
161
+ "node_modules/framer-motion/dist/es/render/dom/utils/is-svg-component.mjs": [],
162
+ "node_modules/framer-motion/dist/es/render/html/HTMLVisualElement.mjs": [],
163
+ "node_modules/framer-motion/dist/es/render/html/use-html-visual-state.mjs": [],
164
+ "node_modules/framer-motion/dist/es/render/html/use-props.mjs": [],
165
+ "node_modules/framer-motion/dist/es/render/html/utils/build-styles.mjs": [],
166
+ "node_modules/framer-motion/dist/es/render/html/utils/build-transform.mjs": [],
167
+ "node_modules/framer-motion/dist/es/render/html/utils/create-render-state.mjs": [],
168
+ "node_modules/framer-motion/dist/es/render/html/utils/render.mjs": [],
169
+ "node_modules/framer-motion/dist/es/render/html/utils/scrape-motion-values.mjs": [],
170
+ "node_modules/framer-motion/dist/es/render/store.mjs": [],
171
+ "node_modules/framer-motion/dist/es/render/svg/SVGVisualElement.mjs": [],
172
+ "node_modules/framer-motion/dist/es/render/svg/lowercase-elements.mjs": [],
173
+ "node_modules/framer-motion/dist/es/render/svg/use-props.mjs": [],
174
+ "node_modules/framer-motion/dist/es/render/svg/use-svg-visual-state.mjs": [],
175
+ "node_modules/framer-motion/dist/es/render/svg/utils/build-attrs.mjs": [],
176
+ "node_modules/framer-motion/dist/es/render/svg/utils/camel-case-attrs.mjs": [],
177
+ "node_modules/framer-motion/dist/es/render/svg/utils/create-render-state.mjs": [],
178
+ "node_modules/framer-motion/dist/es/render/svg/utils/is-svg-tag.mjs": [],
179
+ "node_modules/framer-motion/dist/es/render/svg/utils/path.mjs": [],
180
+ "node_modules/framer-motion/dist/es/render/svg/utils/render.mjs": [],
181
+ "node_modules/framer-motion/dist/es/render/svg/utils/scrape-motion-values.mjs": [],
182
+ "node_modules/framer-motion/dist/es/render/utils/animation-state.mjs": [],
183
+ "node_modules/framer-motion/dist/es/render/utils/compare-by-depth.mjs": [],
184
+ "node_modules/framer-motion/dist/es/render/utils/flat-tree.mjs": [],
185
+ "node_modules/framer-motion/dist/es/render/utils/get-variant-context.mjs": [],
186
+ "node_modules/framer-motion/dist/es/render/utils/is-controlling-variants.mjs": [],
187
+ "node_modules/framer-motion/dist/es/render/utils/is-variant-label.mjs": [],
188
+ "node_modules/framer-motion/dist/es/render/utils/motion-values.mjs": [],
189
+ "node_modules/framer-motion/dist/es/render/utils/resolve-dynamic-variants.mjs": [],
190
+ "node_modules/framer-motion/dist/es/render/utils/resolve-variants.mjs": [],
191
+ "node_modules/framer-motion/dist/es/render/utils/setters.mjs": [],
192
+ "node_modules/framer-motion/dist/es/render/utils/variant-props.mjs": [],
193
+ "node_modules/framer-motion/dist/es/utils/delay.mjs": [],
194
+ "node_modules/framer-motion/dist/es/utils/distance.mjs": [],
195
+ "node_modules/framer-motion/dist/es/utils/get-context-window.mjs": [],
196
+ "node_modules/framer-motion/dist/es/utils/is-browser.mjs": [],
197
+ "node_modules/framer-motion/dist/es/utils/is-ref-object.mjs": [],
198
+ "node_modules/framer-motion/dist/es/utils/reduced-motion/index.mjs": [],
199
+ "node_modules/framer-motion/dist/es/utils/reduced-motion/state.mjs": [],
200
+ "node_modules/framer-motion/dist/es/utils/shallow-compare.mjs": [],
201
+ "node_modules/framer-motion/dist/es/utils/use-constant.mjs": [],
202
+ "node_modules/framer-motion/dist/es/utils/use-isomorphic-effect.mjs": [],
203
+ "node_modules/framer-motion/dist/es/value/use-will-change/add-will-change.mjs": [],
204
+ "node_modules/framer-motion/dist/es/value/use-will-change/is.mjs": [],
205
+ "node_modules/framer-motion/dist/es/value/utils/resolve-motion-value.mjs": [],
206
+ "node_modules/motion-dom/dist/es/animation/AsyncMotionValueAnimation.mjs": [],
207
+ "node_modules/motion-dom/dist/es/animation/JSAnimation.mjs": [],
208
+ "node_modules/motion-dom/dist/es/animation/NativeAnimation.mjs": [],
209
+ "node_modules/motion-dom/dist/es/animation/NativeAnimationExtended.mjs": [],
210
+ "node_modules/motion-dom/dist/es/animation/drivers/frame.mjs": [],
211
+ "node_modules/motion-dom/dist/es/animation/generators/inertia.mjs": [],
212
+ "node_modules/motion-dom/dist/es/animation/generators/keyframes.mjs": [],
213
+ "node_modules/motion-dom/dist/es/animation/generators/spring/defaults.mjs": [],
214
+ "node_modules/motion-dom/dist/es/animation/generators/spring/find.mjs": [],
215
+ "node_modules/motion-dom/dist/es/animation/generators/spring/index.mjs": [],
216
+ "node_modules/motion-dom/dist/es/animation/generators/utils/calc-duration.mjs": [],
217
+ "node_modules/motion-dom/dist/es/animation/generators/utils/create-generator-easing.mjs": [],
218
+ "node_modules/motion-dom/dist/es/animation/generators/utils/is-generator.mjs": [],
219
+ "node_modules/motion-dom/dist/es/animation/generators/utils/velocity.mjs": [],
220
+ "node_modules/motion-dom/dist/es/animation/keyframes/DOMKeyframesResolver.mjs": [],
221
+ "node_modules/motion-dom/dist/es/animation/keyframes/KeyframesResolver.mjs": [],
222
+ "node_modules/motion-dom/dist/es/animation/keyframes/get-final.mjs": [],
223
+ "node_modules/motion-dom/dist/es/animation/keyframes/offsets/default.mjs": [],
224
+ "node_modules/motion-dom/dist/es/animation/keyframes/offsets/fill.mjs": [],
225
+ "node_modules/motion-dom/dist/es/animation/keyframes/offsets/time.mjs": [],
226
+ "node_modules/motion-dom/dist/es/animation/keyframes/utils/fill-wildcards.mjs": [],
227
+ "node_modules/motion-dom/dist/es/animation/keyframes/utils/is-none.mjs": [],
228
+ "node_modules/motion-dom/dist/es/animation/keyframes/utils/make-none-animatable.mjs": [],
229
+ "node_modules/motion-dom/dist/es/animation/keyframes/utils/unit-conversion.mjs": [],
230
+ "node_modules/motion-dom/dist/es/animation/utils/WithPromise.mjs": [],
231
+ "node_modules/motion-dom/dist/es/animation/utils/can-animate.mjs": [],
232
+ "node_modules/motion-dom/dist/es/animation/utils/css-variables-conversion.mjs": [],
233
+ "node_modules/motion-dom/dist/es/animation/utils/get-value-transition.mjs": [],
234
+ "node_modules/motion-dom/dist/es/animation/utils/is-animatable.mjs": [],
235
+ "node_modules/motion-dom/dist/es/animation/utils/is-css-variable.mjs": [],
236
+ "node_modules/motion-dom/dist/es/animation/utils/make-animation-instant.mjs": [],
237
+ "node_modules/motion-dom/dist/es/animation/utils/replace-transition-type.mjs": [],
238
+ "node_modules/motion-dom/dist/es/animation/waapi/easing/cubic-bezier.mjs": [],
239
+ "node_modules/motion-dom/dist/es/animation/waapi/easing/map-easing.mjs": [],
240
+ "node_modules/motion-dom/dist/es/animation/waapi/easing/supported.mjs": [],
241
+ "node_modules/motion-dom/dist/es/animation/waapi/start-waapi-animation.mjs": [],
242
+ "node_modules/motion-dom/dist/es/animation/waapi/supports/waapi.mjs": [],
243
+ "node_modules/motion-dom/dist/es/animation/waapi/utils/apply-generator.mjs": [],
244
+ "node_modules/motion-dom/dist/es/animation/waapi/utils/linear.mjs": [],
245
+ "node_modules/motion-dom/dist/es/animation/waapi/utils/unsupported-easing.mjs": [],
246
+ "node_modules/motion-dom/dist/es/frameloop/batcher.mjs": [],
247
+ "node_modules/motion-dom/dist/es/frameloop/frame.mjs": [],
248
+ "node_modules/motion-dom/dist/es/frameloop/microtask.mjs": [],
249
+ "node_modules/motion-dom/dist/es/frameloop/order.mjs": [],
250
+ "node_modules/motion-dom/dist/es/frameloop/render-step.mjs": [],
251
+ "node_modules/motion-dom/dist/es/frameloop/sync-time.mjs": [],
252
+ "node_modules/motion-dom/dist/es/gestures/drag/state/is-active.mjs": [],
253
+ "node_modules/motion-dom/dist/es/gestures/drag/state/set-active.mjs": [],
254
+ "node_modules/motion-dom/dist/es/gestures/hover.mjs": [],
255
+ "node_modules/motion-dom/dist/es/gestures/press/index.mjs": [],
256
+ "node_modules/motion-dom/dist/es/gestures/press/utils/is-keyboard-accessible.mjs": [],
257
+ "node_modules/motion-dom/dist/es/gestures/press/utils/keyboard.mjs": [],
258
+ "node_modules/motion-dom/dist/es/gestures/press/utils/state.mjs": [],
259
+ "node_modules/motion-dom/dist/es/gestures/utils/is-node-or-child.mjs": [],
260
+ "node_modules/motion-dom/dist/es/gestures/utils/is-primary-pointer.mjs": [],
261
+ "node_modules/motion-dom/dist/es/gestures/utils/setup.mjs": [],
262
+ "node_modules/motion-dom/dist/es/render/dom/is-css-var.mjs": [],
263
+ "node_modules/motion-dom/dist/es/render/dom/parse-transform.mjs": [],
264
+ "node_modules/motion-dom/dist/es/render/dom/style-set.mjs": [],
265
+ "node_modules/motion-dom/dist/es/render/utils/keys-position.mjs": [],
266
+ "node_modules/motion-dom/dist/es/render/utils/keys-transform.mjs": [],
267
+ "node_modules/motion-dom/dist/es/utils/interpolate.mjs": [],
268
+ "node_modules/motion-dom/dist/es/utils/is-html-element.mjs": [],
269
+ "node_modules/motion-dom/dist/es/utils/is-svg-element.mjs": [],
270
+ "node_modules/motion-dom/dist/es/utils/is-svg-svg-element.mjs": [],
271
+ "node_modules/motion-dom/dist/es/utils/mix/color.mjs": [],
272
+ "node_modules/motion-dom/dist/es/utils/mix/complex.mjs": [],
273
+ "node_modules/motion-dom/dist/es/utils/mix/immediate.mjs": [],
274
+ "node_modules/motion-dom/dist/es/utils/mix/index.mjs": [],
275
+ "node_modules/motion-dom/dist/es/utils/mix/number.mjs": [],
276
+ "node_modules/motion-dom/dist/es/utils/mix/visibility.mjs": [],
277
+ "node_modules/motion-dom/dist/es/utils/resolve-elements.mjs": [],
278
+ "node_modules/motion-dom/dist/es/utils/supports/flags.mjs": [],
279
+ "node_modules/motion-dom/dist/es/utils/supports/linear-easing.mjs": [],
280
+ "node_modules/motion-dom/dist/es/utils/supports/memo.mjs": [],
281
+ "node_modules/motion-dom/dist/es/utils/supports/scroll-timeline.mjs": [],
282
+ "node_modules/motion-dom/dist/es/value/index.mjs": [],
283
+ "node_modules/motion-dom/dist/es/value/types/auto.mjs": [],
284
+ "node_modules/motion-dom/dist/es/value/types/color/hex.mjs": [],
285
+ "node_modules/motion-dom/dist/es/value/types/color/hsla-to-rgba.mjs": [],
286
+ "node_modules/motion-dom/dist/es/value/types/color/hsla.mjs": [],
287
+ "node_modules/motion-dom/dist/es/value/types/color/index.mjs": [],
288
+ "node_modules/motion-dom/dist/es/value/types/color/rgba.mjs": [],
289
+ "node_modules/motion-dom/dist/es/value/types/color/utils.mjs": [],
290
+ "node_modules/motion-dom/dist/es/value/types/complex/filter.mjs": [],
291
+ "node_modules/motion-dom/dist/es/value/types/complex/index.mjs": [],
292
+ "node_modules/motion-dom/dist/es/value/types/dimensions.mjs": [],
293
+ "node_modules/motion-dom/dist/es/value/types/int.mjs": [],
294
+ "node_modules/motion-dom/dist/es/value/types/maps/defaults.mjs": [],
295
+ "node_modules/motion-dom/dist/es/value/types/maps/number.mjs": [],
296
+ "node_modules/motion-dom/dist/es/value/types/maps/transform.mjs": [],
297
+ "node_modules/motion-dom/dist/es/value/types/numbers/index.mjs": [],
298
+ "node_modules/motion-dom/dist/es/value/types/numbers/units.mjs": [],
299
+ "node_modules/motion-dom/dist/es/value/types/test.mjs": [],
300
+ "node_modules/motion-dom/dist/es/value/types/utils/animatable-none.mjs": [],
301
+ "node_modules/motion-dom/dist/es/value/types/utils/color-regex.mjs": [],
302
+ "node_modules/motion-dom/dist/es/value/types/utils/find.mjs": [],
303
+ "node_modules/motion-dom/dist/es/value/types/utils/float-regex.mjs": [],
304
+ "node_modules/motion-dom/dist/es/value/types/utils/get-as-type.mjs": [],
305
+ "node_modules/motion-dom/dist/es/value/types/utils/is-nullish.mjs": [],
306
+ "node_modules/motion-dom/dist/es/value/types/utils/sanitize.mjs": [],
307
+ "node_modules/motion-dom/dist/es/value/types/utils/single-color-regex.mjs": [],
308
+ "node_modules/motion-dom/dist/es/value/utils/is-motion-value.mjs": [],
309
+ "node_modules/motion-utils/dist/es/array.mjs": [],
310
+ "node_modules/motion-utils/dist/es/clamp.mjs": [],
311
+ "node_modules/motion-utils/dist/es/easing/anticipate.mjs": [],
312
+ "node_modules/motion-utils/dist/es/easing/back.mjs": [],
313
+ "node_modules/motion-utils/dist/es/easing/circ.mjs": [],
314
+ "node_modules/motion-utils/dist/es/easing/cubic-bezier.mjs": [],
315
+ "node_modules/motion-utils/dist/es/easing/ease.mjs": [],
316
+ "node_modules/motion-utils/dist/es/easing/modifiers/mirror.mjs": [],
317
+ "node_modules/motion-utils/dist/es/easing/modifiers/reverse.mjs": [],
318
+ "node_modules/motion-utils/dist/es/easing/utils/is-bezier-definition.mjs": [],
319
+ "node_modules/motion-utils/dist/es/easing/utils/is-easing-array.mjs": [],
320
+ "node_modules/motion-utils/dist/es/easing/utils/map.mjs": [],
321
+ "node_modules/motion-utils/dist/es/errors.mjs": [],
322
+ "node_modules/motion-utils/dist/es/global-config.mjs": [],
323
+ "node_modules/motion-utils/dist/es/is-numerical-string.mjs": [],
324
+ "node_modules/motion-utils/dist/es/is-object.mjs": [],
325
+ "node_modules/motion-utils/dist/es/is-zero-value-string.mjs": [],
326
+ "node_modules/motion-utils/dist/es/memo.mjs": [],
327
+ "node_modules/motion-utils/dist/es/noop.mjs": [],
328
+ "node_modules/motion-utils/dist/es/pipe.mjs": [],
329
+ "node_modules/motion-utils/dist/es/progress.mjs": [],
330
+ "node_modules/motion-utils/dist/es/subscription-manager.mjs": [],
331
+ "node_modules/motion-utils/dist/es/time-conversion.mjs": [],
332
+ "node_modules/motion-utils/dist/es/velocity-per-second.mjs": [],
79
333
  "node_modules/react-dom/cjs/react-dom-client.production.js": [],
80
334
  "node_modules/react-dom/cjs/react-dom.production.js": [],
81
335
  "node_modules/react-dom/client.js": [],
82
336
  "node_modules/react-dom/index.js": [],
83
- "node_modules/react-router/dist/development/chunk-NL6KNZEE.mjs": [],
337
+ "node_modules/react-router/dist/development/chunk-ZYFC6VSF.mjs": [],
84
338
  "node_modules/react/cjs/react-jsx-runtime.production.js": [],
85
339
  "node_modules/react/cjs/react.production.js": [],
86
340
  "node_modules/react/index.js": [],
@@ -91,6 +345,7 @@
91
345
  "node_modules/zustand/esm/vanilla.mjs": [],
92
346
  "src/components/collection/CreateCollectionModal.jsx": [],
93
347
  "src/components/collection/DeleteCollectionModal.jsx": [],
348
+ "src/components/collection/SchemaViewModal.jsx": [],
94
349
  "src/components/dashboard/DatabaseTreeView.jsx": [],
95
350
  "src/components/dashboard/InMemoryCacheCard.jsx": [],
96
351
  "src/components/dashboard/StorageUsageCard.jsx": [],
@@ -100,6 +355,10 @@
100
355
  "src/components/database/CreateDatabaseModal.jsx": [],
101
356
  "src/components/database/DatabaseList.jsx": [],
102
357
  "src/components/database/DeleteDatabaseModal.jsx": [],
358
+ "src/components/document/AggregateModal.jsx": [],
359
+ "src/components/document/DeleteDocumentModal.jsx": [],
360
+ "src/components/document/InsertDocumentModal.jsx": [],
361
+ "src/components/document/UpdateDocumentModal.jsx": [],
103
362
  "src/config/config.jsx": [],
104
363
  "src/config/key.js": [],
105
364
  "src/index.css": [],
@@ -109,5 +368,6 @@
109
368
  "src/pages/Collections.jsx": [],
110
369
  "src/pages/Dashboard.jsx": [],
111
370
  "src/pages/Databases.jsx": [],
371
+ "src/pages/Documents.jsx": [],
112
372
  "src/store/store.js": []
113
373
  }