diff --git a/.gitapp/.gitkeep b/.gitapp/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/.gitapp/manifest.json b/.gitapp/manifest.json deleted file mode 100644 index fdc7375..0000000 --- a/.gitapp/manifest.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "name": "pocketbase-lite", - "version": "0.1.0", - "paths": { - "data": "collections/", - "media": "media/", - "indexes": ".gitapp/indexes/" - }, - "schemas": [ - { - "id": "categories", - "file": "schemas/categories.json", - "glob": "collections/categories/*.json" - }, - { - "id": "brands", - "file": "schemas/brands.json", - "glob": "collections/brands/*.json" - }, - { - "id": "products", - "file": "schemas/products.json", - "glob": "collections/products/*.json" - }, - { - "id": "customers", - "file": "schemas/customers.json", - "glob": "collections/customers/*.json" - }, - { - "id": "orders", - "file": "schemas/orders.json", - "glob": "collections/orders/*.json" - }, - { - "id": "order_items", - "file": "schemas/order_items.json", - "glob": "collections/order_items/*.json" - }, - { - "id": "reviews", - "file": "schemas/reviews.json", - "glob": "collections/reviews/*.json" - } - ], - "operations": [], - "policies": { - "roles": [ - "viewer", - "editor" - ], - "acl": null - }, - "lfs": { - "enabled": false - } -} \ No newline at end of file diff --git a/.gitapp/operations/.gitkeep b/.gitapp/operations/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/.gitapp/schemas/.gitkeep b/.gitapp/schemas/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/.gitapp/schemas/brands.json b/.gitapp/schemas/brands.json deleted file mode 100644 index d96c09a..0000000 --- a/.gitapp/schemas/brands.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "$id": "brands", - "$schema": "https://json-schema.org/draft/2020-12/schema", - "type": "object", - "required": [ - "name" - ], - "properties": { - "name": { - "type": "string", - "minLength": 1 - }, - "logo": { - "type": "string" - }, - "description": { - "type": "string" - }, - "website": { - "type": "string", - "format": "uri" - } - } -} \ No newline at end of file diff --git a/.gitapp/schemas/categories.json b/.gitapp/schemas/categories.json deleted file mode 100644 index eb4b30b..0000000 --- a/.gitapp/schemas/categories.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "$id": "categories", - "$schema": "https://json-schema.org/draft/2020-12/schema", - "type": "object", - "required": [ - "name", - "slug" - ], - "properties": { - "name": { - "type": "string", - "minLength": 1 - }, - "slug": { - "type": "string" - }, - "description": { - "type": "string" - }, - "image": { - "type": "string" - }, - "parent": { - "type": "string", - "x-relation": { - "collection": "categories", - "type": "single" - } - } - } -} \ No newline at end of file diff --git a/.gitapp/schemas/customers.json b/.gitapp/schemas/customers.json deleted file mode 100644 index 64fe508..0000000 --- a/.gitapp/schemas/customers.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "$id": "customers", - "$schema": "https://json-schema.org/draft/2020-12/schema", - "type": "object", - "required": [ - "name", - "email" - ], - "properties": { - "name": { - "type": "string", - "minLength": 1 - }, - "email": { - "type": "string", - "format": "email" - }, - "phone": { - "type": "string" - }, - "address": { - "type": "string" - }, - "avatar": { - "type": "string" - } - } -} \ No newline at end of file diff --git a/.gitapp/schemas/order_items.json b/.gitapp/schemas/order_items.json deleted file mode 100644 index a1c1f0c..0000000 --- a/.gitapp/schemas/order_items.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "$id": "order_items", - "$schema": "https://json-schema.org/draft/2020-12/schema", - "type": "object", - "required": [ - "quantity", - "price" - ], - "properties": { - "quantity": { - "type": "integer", - "minimum": 1 - }, - "price": { - "type": "number", - "minimum": 0 - }, - "order": { - "type": "string", - "x-relation": { - "collection": "orders", - "type": "single" - } - }, - "product": { - "type": "string", - "x-relation": { - "collection": "products", - "type": "single" - } - } - } -} \ No newline at end of file diff --git a/.gitapp/schemas/orders.json b/.gitapp/schemas/orders.json deleted file mode 100644 index 14bf496..0000000 --- a/.gitapp/schemas/orders.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "$id": "orders", - "$schema": "https://json-schema.org/draft/2020-12/schema", - "type": "object", - "required": [ - "orderNumber", - "status", - "total" - ], - "properties": { - "orderNumber": { - "type": "string" - }, - "status": { - "type": "string", - "enum": [ - "pending", - "processing", - "shipped", - "delivered", - "cancelled" - ] - }, - "total": { - "type": "number", - "minimum": 0 - }, - "date": { - "type": "string", - "format": "date-time" - }, - "shippingAddress": { - "type": "string" - }, - "customer": { - "type": "string", - "x-relation": { - "collection": "customers", - "type": "single" - } - } - } -} \ No newline at end of file diff --git a/.gitapp/schemas/products.json b/.gitapp/schemas/products.json deleted file mode 100644 index f532ead..0000000 --- a/.gitapp/schemas/products.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "$id": "products", - "$schema": "https://json-schema.org/draft/2020-12/schema", - "type": "object", - "required": [ - "name", - "price", - "sku" - ], - "properties": { - "name": { - "type": "string", - "minLength": 1 - }, - "description": { - "type": "string" - }, - "price": { - "type": "number", - "minimum": 0 - }, - "sku": { - "type": "string" - }, - "stock": { - "type": "integer", - "minimum": 0 - }, - "image": { - "type": "string" - }, - "featured": { - "type": "boolean" - }, - "category": { - "type": "string", - "x-relation": { - "collection": "categories", - "type": "single" - } - }, - "brand": { - "type": "string", - "x-relation": { - "collection": "brands", - "type": "single" - } - } - } -} \ No newline at end of file diff --git a/.gitapp/schemas/reviews.json b/.gitapp/schemas/reviews.json deleted file mode 100644 index bc87f3f..0000000 --- a/.gitapp/schemas/reviews.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "$id": "reviews", - "$schema": "https://json-schema.org/draft/2020-12/schema", - "type": "object", - "required": [ - "rating", - "title" - ], - "properties": { - "rating": { - "type": "integer", - "minimum": 1, - "maximum": 5 - }, - "title": { - "type": "string" - }, - "content": { - "type": "string" - }, - "date": { - "type": "string", - "format": "date-time" - }, - "verified": { - "type": "boolean" - }, - "product": { - "type": "string", - "x-relation": { - "collection": "products", - "type": "single" - } - }, - "customer": { - "type": "string", - "x-relation": { - "collection": "customers", - "type": "single" - } - } - } -} \ No newline at end of file diff --git a/collections/brands/.gitkeep b/collections/brands/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/collections/brands/bran_1766159437170_0.json b/collections/brands/bran_1766159437170_0.json deleted file mode 100644 index 417fe8a..0000000 --- a/collections/brands/bran_1766159437170_0.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "name": "TechCore", - "description": "Premium electronics and gadgets", - "logo": "https://placehold.co/100x100/333/fff?text=Logo", - "website": "https://left-chap.info", - "created": "2025-12-19T15:50:38.336Z", - "updated": "2025-12-19T15:50:38.336Z" -} \ No newline at end of file diff --git a/collections/brands/bran_1766159437170_1.json b/collections/brands/bran_1766159437170_1.json deleted file mode 100644 index 62f9f5b..0000000 --- a/collections/brands/bran_1766159437170_1.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "name": "StyleMax", - "description": "Modern fashion for everyone", - "logo": "https://placehold.co/100x100/333/fff?text=Logo", - "website": "https://wise-eternity.org", - "created": "2025-12-19T15:50:38.336Z", - "updated": "2025-12-19T15:50:38.336Z" -} \ No newline at end of file diff --git a/collections/categories/.gitkeep b/collections/categories/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/collections/categories/cate_1766159437170_0.json b/collections/categories/cate_1766159437170_0.json deleted file mode 100644 index 9941b54..0000000 --- a/collections/categories/cate_1766159437170_0.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Electronics", - "slug": "electronics", - "description": "Gadgets and tech devices", - "image": "https://placehold.co/400x400/333/fff?text=Category", - "parent": null, - "created": "2025-12-19T15:50:37.831Z", - "updated": "2025-12-19T15:50:37.831Z" -} \ No newline at end of file diff --git a/collections/categories/cate_1766159437170_1.json b/collections/categories/cate_1766159437170_1.json deleted file mode 100644 index 68368cc..0000000 --- a/collections/categories/cate_1766159437170_1.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Clothing", - "slug": "clothing", - "description": "Fashion and apparel", - "image": "https://placehold.co/400x400/333/fff?text=Category", - "parent": null, - "created": "2025-12-19T15:50:37.831Z", - "updated": "2025-12-19T15:50:37.831Z" -} \ No newline at end of file diff --git a/collections/customers/.gitkeep b/collections/customers/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/collections/customers/cust_1766159437170_0.json b/collections/customers/cust_1766159437170_0.json deleted file mode 100644 index cf3c34d..0000000 --- a/collections/customers/cust_1766159437170_0.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Alfonso Jakubowski", - "email": "Sarina.Renner@hotmail.com", - "phone": "(648) 860-1599", - "address": "637 Davon Fork, Rauport, Idaho 49849", - "avatar": "https://placehold.co/200x200/333/fff?text=Customer", - "created": "2025-12-19T15:50:39.563Z", - "updated": "2025-12-19T15:50:39.563Z" -} \ No newline at end of file diff --git a/collections/customers/cust_1766159437170_1.json b/collections/customers/cust_1766159437170_1.json deleted file mode 100644 index 8e28b64..0000000 --- a/collections/customers/cust_1766159437170_1.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Mr. Julio Gleichner", - "email": "Louvenia_Ryan@hotmail.com", - "phone": "992.465.6141", - "address": "7009 Heller Mall, Boyleborough, Montana 51306-2402", - "avatar": "https://placehold.co/200x200/333/fff?text=Customer", - "created": "2025-12-19T15:50:39.563Z", - "updated": "2025-12-19T15:50:39.563Z" -} \ No newline at end of file diff --git a/collections/customers/cust_1766159437170_2.json b/collections/customers/cust_1766159437170_2.json deleted file mode 100644 index 8a7aee3..0000000 --- a/collections/customers/cust_1766159437170_2.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Jacqueline Lowe", - "email": "Cora_Gleason@gmail.com", - "phone": "348.424.6255 x75256", - "address": "634 Pansy Ranch, Forestport, New Hampshire 87298", - "avatar": "https://placehold.co/200x200/333/fff?text=Customer", - "created": "2025-12-19T15:50:39.563Z", - "updated": "2025-12-19T15:50:39.563Z" -} \ No newline at end of file diff --git a/collections/customers/cust_1766159437170_3.json b/collections/customers/cust_1766159437170_3.json deleted file mode 100644 index 3430844..0000000 --- a/collections/customers/cust_1766159437170_3.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Shelia Jacobs", - "email": "Cielo3@yahoo.com", - "phone": "(370) 354-6727 x5105", - "address": "5374 Rory Centers, Birmingham, Wyoming 92667", - "avatar": "https://placehold.co/200x200/333/fff?text=Customer", - "created": "2025-12-19T15:50:39.563Z", - "updated": "2025-12-19T15:50:39.563Z" -} \ No newline at end of file diff --git a/collections/customers/cust_1766159437170_4.json b/collections/customers/cust_1766159437170_4.json deleted file mode 100644 index 83f009a..0000000 --- a/collections/customers/cust_1766159437170_4.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Nichole Sanford", - "email": "Jacinthe.Fahey78@gmail.com", - "phone": "(481) 369-3023 x795", - "address": "25296 Price Harbor, Boehmchester, Alabama 47905", - "avatar": "https://placehold.co/200x200/333/fff?text=Customer", - "created": "2025-12-19T15:50:39.563Z", - "updated": "2025-12-19T15:50:39.563Z" -} \ No newline at end of file diff --git a/collections/customers/cust_1766159437170_5.json b/collections/customers/cust_1766159437170_5.json deleted file mode 100644 index 765b0b4..0000000 --- a/collections/customers/cust_1766159437170_5.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Cecil Crona", - "email": "Assunta_Bartell@hotmail.com", - "phone": "(289) 316-1836 x25354", - "address": "5021 Dustin Passage, Matildeberg, Wisconsin 65349-4613", - "avatar": "https://placehold.co/200x200/333/fff?text=Customer", - "created": "2025-12-19T15:50:39.563Z", - "updated": "2025-12-19T15:50:39.563Z" -} \ No newline at end of file diff --git a/collections/order_items/.gitkeep b/collections/order_items/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/collections/order_items/orde_1766159437170_0.json b/collections/order_items/orde_1766159437170_0.json deleted file mode 100644 index d275c91..0000000 --- a/collections/order_items/orde_1766159437170_0.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 4, - "price": 182.75, - "order": "orde_1766159437170_2", - "product": "prod_1766159437170_19", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/order_items/orde_1766159437170_1.json b/collections/order_items/orde_1766159437170_1.json deleted file mode 100644 index 2886eb7..0000000 --- a/collections/order_items/orde_1766159437170_1.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 2, - "price": 50.19, - "order": "orde_1766159437170_2", - "product": "prod_1766159437170_12", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/order_items/orde_1766159437170_10.json b/collections/order_items/orde_1766159437170_10.json deleted file mode 100644 index 6562289..0000000 --- a/collections/order_items/orde_1766159437170_10.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 4, - "price": 140.95, - "order": "orde_1766159437170_2", - "product": "prod_1766159437170_7", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/order_items/orde_1766159437170_11.json b/collections/order_items/orde_1766159437170_11.json deleted file mode 100644 index 37d2c53..0000000 --- a/collections/order_items/orde_1766159437170_11.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 3, - "price": 131.09, - "order": "orde_1766159437170_3", - "product": "prod_1766159437170_4", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/order_items/orde_1766159437170_12.json b/collections/order_items/orde_1766159437170_12.json deleted file mode 100644 index 589cb7a..0000000 --- a/collections/order_items/orde_1766159437170_12.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 2, - "price": 175.15, - "order": "orde_1766159437170_9", - "product": "prod_1766159437170_0", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/order_items/orde_1766159437170_13.json b/collections/order_items/orde_1766159437170_13.json deleted file mode 100644 index ef14d73..0000000 --- a/collections/order_items/orde_1766159437170_13.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 2, - "price": 166.09, - "order": "orde_1766159437170_5", - "product": "prod_1766159437170_16", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/order_items/orde_1766159437170_14.json b/collections/order_items/orde_1766159437170_14.json deleted file mode 100644 index 153698e..0000000 --- a/collections/order_items/orde_1766159437170_14.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 3, - "price": 198.79, - "order": "orde_1766159437170_7", - "product": "prod_1766159437170_4", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/order_items/orde_1766159437170_15.json b/collections/order_items/orde_1766159437170_15.json deleted file mode 100644 index 837ea49..0000000 --- a/collections/order_items/orde_1766159437170_15.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 1, - "price": 164.1, - "order": "orde_1766159437170_3", - "product": "prod_1766159437170_4", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/order_items/orde_1766159437170_16.json b/collections/order_items/orde_1766159437170_16.json deleted file mode 100644 index 59f4c52..0000000 --- a/collections/order_items/orde_1766159437170_16.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 1, - "price": 35.6, - "order": "orde_1766159437170_0", - "product": "prod_1766159437170_18", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/order_items/orde_1766159437170_17.json b/collections/order_items/orde_1766159437170_17.json deleted file mode 100644 index bb65cc6..0000000 --- a/collections/order_items/orde_1766159437170_17.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 2, - "price": 43.87, - "order": "orde_1766159437170_4", - "product": "prod_1766159437170_13", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/order_items/orde_1766159437170_18.json b/collections/order_items/orde_1766159437170_18.json deleted file mode 100644 index 87059f4..0000000 --- a/collections/order_items/orde_1766159437170_18.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 3, - "price": 148.49, - "order": "orde_1766159437170_0", - "product": "prod_1766159437170_7", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/order_items/orde_1766159437170_19.json b/collections/order_items/orde_1766159437170_19.json deleted file mode 100644 index 7b6318e..0000000 --- a/collections/order_items/orde_1766159437170_19.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 4, - "price": 114.19, - "order": "orde_1766159437170_6", - "product": "prod_1766159437170_14", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/order_items/orde_1766159437170_2.json b/collections/order_items/orde_1766159437170_2.json deleted file mode 100644 index 74fa17e..0000000 --- a/collections/order_items/orde_1766159437170_2.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 2, - "price": 30.29, - "order": "orde_1766159437170_5", - "product": "prod_1766159437170_15", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/order_items/orde_1766159437170_20.json b/collections/order_items/orde_1766159437170_20.json deleted file mode 100644 index 94a1a8e..0000000 --- a/collections/order_items/orde_1766159437170_20.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 5, - "price": 119.89, - "order": "orde_1766159437170_7", - "product": "prod_1766159437170_16", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/order_items/orde_1766159437170_21.json b/collections/order_items/orde_1766159437170_21.json deleted file mode 100644 index cbd3f51..0000000 --- a/collections/order_items/orde_1766159437170_21.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 3, - "price": 13.75, - "order": "orde_1766159437170_9", - "product": "prod_1766159437170_6", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/order_items/orde_1766159437170_22.json b/collections/order_items/orde_1766159437170_22.json deleted file mode 100644 index 7244159..0000000 --- a/collections/order_items/orde_1766159437170_22.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 3, - "price": 120.75, - "order": "orde_1766159437170_4", - "product": "prod_1766159437170_13", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/order_items/orde_1766159437170_23.json b/collections/order_items/orde_1766159437170_23.json deleted file mode 100644 index e6de59e..0000000 --- a/collections/order_items/orde_1766159437170_23.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 5, - "price": 25.25, - "order": "orde_1766159437170_2", - "product": "prod_1766159437170_14", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/order_items/orde_1766159437170_24.json b/collections/order_items/orde_1766159437170_24.json deleted file mode 100644 index 8986118..0000000 --- a/collections/order_items/orde_1766159437170_24.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 3, - "price": 143.59, - "order": "orde_1766159437170_3", - "product": "prod_1766159437170_1", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/order_items/orde_1766159437170_25.json b/collections/order_items/orde_1766159437170_25.json deleted file mode 100644 index 069a780..0000000 --- a/collections/order_items/orde_1766159437170_25.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 3, - "price": 114.79, - "order": "orde_1766159437170_9", - "product": "prod_1766159437170_1", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/order_items/orde_1766159437170_26.json b/collections/order_items/orde_1766159437170_26.json deleted file mode 100644 index 3087bd7..0000000 --- a/collections/order_items/orde_1766159437170_26.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 3, - "price": 123.52, - "order": "orde_1766159437170_7", - "product": "prod_1766159437170_4", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/order_items/orde_1766159437170_27.json b/collections/order_items/orde_1766159437170_27.json deleted file mode 100644 index d4f7000..0000000 --- a/collections/order_items/orde_1766159437170_27.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 2, - "price": 104.84, - "order": "orde_1766159437170_3", - "product": "prod_1766159437170_14", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/order_items/orde_1766159437170_28.json b/collections/order_items/orde_1766159437170_28.json deleted file mode 100644 index afba7f2..0000000 --- a/collections/order_items/orde_1766159437170_28.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 4, - "price": 21.55, - "order": "orde_1766159437170_4", - "product": "prod_1766159437170_12", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/order_items/orde_1766159437170_29.json b/collections/order_items/orde_1766159437170_29.json deleted file mode 100644 index c39199f..0000000 --- a/collections/order_items/orde_1766159437170_29.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 5, - "price": 114.19, - "order": "orde_1766159437170_7", - "product": "prod_1766159437170_0", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/order_items/orde_1766159437170_3.json b/collections/order_items/orde_1766159437170_3.json deleted file mode 100644 index 8746b15..0000000 --- a/collections/order_items/orde_1766159437170_3.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 5, - "price": 68.35, - "order": "orde_1766159437170_7", - "product": "prod_1766159437170_16", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/order_items/orde_1766159437170_4.json b/collections/order_items/orde_1766159437170_4.json deleted file mode 100644 index 7b8ad48..0000000 --- a/collections/order_items/orde_1766159437170_4.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 1, - "price": 86.58, - "order": "orde_1766159437170_6", - "product": "prod_1766159437170_5", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/order_items/orde_1766159437170_5.json b/collections/order_items/orde_1766159437170_5.json deleted file mode 100644 index 76856fa..0000000 --- a/collections/order_items/orde_1766159437170_5.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 2, - "price": 12.49, - "order": "orde_1766159437170_1", - "product": "prod_1766159437170_11", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/order_items/orde_1766159437170_6.json b/collections/order_items/orde_1766159437170_6.json deleted file mode 100644 index f1d0573..0000000 --- a/collections/order_items/orde_1766159437170_6.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 2, - "price": 165.9, - "order": "orde_1766159437170_9", - "product": "prod_1766159437170_14", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/order_items/orde_1766159437170_7.json b/collections/order_items/orde_1766159437170_7.json deleted file mode 100644 index 81aad4d..0000000 --- a/collections/order_items/orde_1766159437170_7.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 2, - "price": 118.95, - "order": "orde_1766159437170_9", - "product": "prod_1766159437170_6", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/order_items/orde_1766159437170_8.json b/collections/order_items/orde_1766159437170_8.json deleted file mode 100644 index b7f3651..0000000 --- a/collections/order_items/orde_1766159437170_8.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 3, - "price": 166.37, - "order": "orde_1766159437170_2", - "product": "prod_1766159437170_3", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/order_items/orde_1766159437170_9.json b/collections/order_items/orde_1766159437170_9.json deleted file mode 100644 index 917ff6d..0000000 --- a/collections/order_items/orde_1766159437170_9.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "quantity": 5, - "price": 48.09, - "order": "orde_1766159437170_2", - "product": "prod_1766159437170_17", - "created": "2025-12-19T15:50:40.780Z", - "updated": "2025-12-19T15:50:40.780Z" -} \ No newline at end of file diff --git a/collections/orders/.gitkeep b/collections/orders/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/collections/orders/orde_1766159437170_0.json b/collections/orders/orde_1766159437170_0.json deleted file mode 100644 index c2709cd..0000000 --- a/collections/orders/orde_1766159437170_0.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "orderNumber": "ORD-Y4UT6PBU", - "status": "pending", - "total": 435.2, - "date": "2025-10-12T22:08:38.559Z", - "shippingAddress": "409 Hahn Key, Doylestead, Nebraska 50335", - "customer": "cust_1766159437170_1", - "created": "2025-12-19T15:50:40.201Z", - "updated": "2025-12-19T15:50:40.201Z" -} \ No newline at end of file diff --git a/collections/orders/orde_1766159437170_1.json b/collections/orders/orde_1766159437170_1.json deleted file mode 100644 index dfa03a5..0000000 --- a/collections/orders/orde_1766159437170_1.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "orderNumber": "ORD-W7G4RLNG", - "status": "processing", - "total": 385.7, - "date": "2025-12-05T10:27:13.130Z", - "shippingAddress": "219 Trinity Road, East Rebeca, Idaho 66503", - "customer": "cust_1766159437170_3", - "created": "2025-12-19T15:50:40.201Z", - "updated": "2025-12-19T15:50:40.201Z" -} \ No newline at end of file diff --git a/collections/orders/orde_1766159437170_2.json b/collections/orders/orde_1766159437170_2.json deleted file mode 100644 index 6a9801e..0000000 --- a/collections/orders/orde_1766159437170_2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "orderNumber": "ORD-43UWSF2H", - "status": "pending", - "total": 176.14, - "date": "2025-10-31T22:35:52.964Z", - "shippingAddress": "785 E 1st Street, Port Rubenstad, Wisconsin 52829-8069", - "customer": "cust_1766159437170_2", - "created": "2025-12-19T15:50:40.201Z", - "updated": "2025-12-19T15:50:40.201Z" -} \ No newline at end of file diff --git a/collections/orders/orde_1766159437170_3.json b/collections/orders/orde_1766159437170_3.json deleted file mode 100644 index a6c1b79..0000000 --- a/collections/orders/orde_1766159437170_3.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "orderNumber": "ORD-L5YL7STW", - "status": "delivered", - "total": 68.29, - "date": "2025-11-15T08:40:31.149Z", - "shippingAddress": "220 Myrl Highway, South Ellenside, North Dakota 53591", - "customer": "cust_1766159437170_0", - "created": "2025-12-19T15:50:40.201Z", - "updated": "2025-12-19T15:50:40.201Z" -} \ No newline at end of file diff --git a/collections/orders/orde_1766159437170_4.json b/collections/orders/orde_1766159437170_4.json deleted file mode 100644 index 29c6b56..0000000 --- a/collections/orders/orde_1766159437170_4.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "orderNumber": "ORD-I1USY0KN", - "status": "delivered", - "total": 284.69, - "date": "2025-11-19T18:19:58.311Z", - "shippingAddress": "672 Kareem Loaf, Fort Rosashire, Texas 65149", - "customer": "cust_1766159437170_5", - "created": "2025-12-19T15:50:40.201Z", - "updated": "2025-12-19T15:50:40.201Z" -} \ No newline at end of file diff --git a/collections/orders/orde_1766159437170_5.json b/collections/orders/orde_1766159437170_5.json deleted file mode 100644 index 49b8991..0000000 --- a/collections/orders/orde_1766159437170_5.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "orderNumber": "ORD-BNADZ0JU", - "status": "shipped", - "total": 189.45, - "date": "2025-10-26T02:08:51.710Z", - "shippingAddress": "86919 Predovic Spurs, New Adrieltown, Rhode Island 48620", - "customer": "cust_1766159437170_5", - "created": "2025-12-19T15:50:40.201Z", - "updated": "2025-12-19T15:50:40.201Z" -} \ No newline at end of file diff --git a/collections/orders/orde_1766159437170_6.json b/collections/orders/orde_1766159437170_6.json deleted file mode 100644 index 653bdb8..0000000 --- a/collections/orders/orde_1766159437170_6.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "orderNumber": "ORD-REELZDQA", - "status": "pending", - "total": 237.69, - "date": "2025-09-21T04:04:55.433Z", - "shippingAddress": "3914 Koelpin Forge, Kraigborough, Louisiana 99588", - "customer": "cust_1766159437170_1", - "created": "2025-12-19T15:50:40.201Z", - "updated": "2025-12-19T15:50:40.201Z" -} \ No newline at end of file diff --git a/collections/orders/orde_1766159437170_7.json b/collections/orders/orde_1766159437170_7.json deleted file mode 100644 index 1bc099b..0000000 --- a/collections/orders/orde_1766159437170_7.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "orderNumber": "ORD-LHZVE66C", - "status": "pending", - "total": 189.29, - "date": "2025-11-29T12:24:47.894Z", - "shippingAddress": "733 The Willows, Fullerton, Colorado 68957", - "customer": "cust_1766159437170_4", - "created": "2025-12-19T15:50:40.201Z", - "updated": "2025-12-19T15:50:40.201Z" -} \ No newline at end of file diff --git a/collections/orders/orde_1766159437170_8.json b/collections/orders/orde_1766159437170_8.json deleted file mode 100644 index 918843b..0000000 --- a/collections/orders/orde_1766159437170_8.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "orderNumber": "ORD-HMETJINO", - "status": "processing", - "total": 400.39, - "date": "2025-11-12T07:29:06.777Z", - "shippingAddress": "9847 Hills Brook, Willisstead, Idaho 13188", - "customer": "cust_1766159437170_4", - "created": "2025-12-19T15:50:40.201Z", - "updated": "2025-12-19T15:50:40.201Z" -} \ No newline at end of file diff --git a/collections/orders/orde_1766159437170_9.json b/collections/orders/orde_1766159437170_9.json deleted file mode 100644 index 095fcc5..0000000 --- a/collections/orders/orde_1766159437170_9.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "orderNumber": "ORD-VRX47ZP3", - "status": "delivered", - "total": 538.89, - "date": "2025-11-11T11:02:03.178Z", - "shippingAddress": "4200 Tyrique Cliff, Caldwell, South Dakota 44022", - "customer": "cust_1766159437170_3", - "created": "2025-12-19T15:50:40.201Z", - "updated": "2025-12-19T15:50:40.201Z" -} \ No newline at end of file diff --git a/collections/products/.gitkeep b/collections/products/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/collections/products/prod_1766159437170_0.json b/collections/products/prod_1766159437170_0.json deleted file mode 100644 index 92a614a..0000000 --- a/collections/products/prod_1766159437170_0.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "Licensed Bamboo Pizza", - "description": "New Soap model with 53 GB RAM, 197 GB storage, and afraid features", - "price": 165.89, - "sku": "O4I5XQMY", - "stock": 91, - "image": "https://placehold.co/400x400/333/fff?text=Product", - "featured": false, - "category": "cate_1766159437170_1", - "brand": "bran_1766159437170_0", - "created": "2025-12-19T15:50:38.852Z", - "updated": "2025-12-19T15:50:38.852Z" -} \ No newline at end of file diff --git a/collections/products/prod_1766159437170_1.json b/collections/products/prod_1766159437170_1.json deleted file mode 100644 index 1acef73..0000000 --- a/collections/products/prod_1766159437170_1.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "Bespoke Concrete Bacon", - "description": "Our tiger-friendly Table ensures responsible comfort for your pets", - "price": 438.49, - "sku": "AGKOKVLL", - "stock": 34, - "image": "https://placehold.co/400x400/333/fff?text=Product", - "featured": false, - "category": "cate_1766159437170_0", - "brand": "bran_1766159437170_1", - "created": "2025-12-19T15:50:38.852Z", - "updated": "2025-12-19T15:50:38.852Z" -} \ No newline at end of file diff --git a/collections/products/prod_1766159437170_10.json b/collections/products/prod_1766159437170_10.json deleted file mode 100644 index 9326879..0000000 --- a/collections/products/prod_1766159437170_10.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "Unbranded Ceramic Salad", - "description": "Savor the crispy essence in our Mouse, designed for honorable culinary adventures", - "price": 14.69, - "sku": "0AVG1ZHK", - "stock": 1, - "image": "https://placehold.co/400x400/333/fff?text=Product", - "featured": true, - "category": "cate_1766159437170_0", - "brand": "bran_1766159437170_1", - "created": "2025-12-19T15:50:38.852Z", - "updated": "2025-12-19T15:50:38.852Z" -} \ No newline at end of file diff --git a/collections/products/prod_1766159437170_11.json b/collections/products/prod_1766159437170_11.json deleted file mode 100644 index a211a16..0000000 --- a/collections/products/prod_1766159437170_11.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "Recycled Rubber Bike", - "description": "Innovative Bike featuring urban technology and Concrete construction", - "price": 234.89, - "sku": "KJYEVZD1", - "stock": 8, - "image": "https://placehold.co/400x400/333/fff?text=Product", - "featured": false, - "category": "cate_1766159437170_0", - "brand": "bran_1766159437170_1", - "created": "2025-12-19T15:50:38.852Z", - "updated": "2025-12-19T15:50:38.852Z" -} \ No newline at end of file diff --git a/collections/products/prod_1766159437170_12.json b/collections/products/prod_1766159437170_12.json deleted file mode 100644 index 06d48cc..0000000 --- a/collections/products/prod_1766159437170_12.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "Fresh Cotton Cheese", - "description": "Hansen - Bartell's most advanced Hat technology increases remorseful capabilities", - "price": 395.79, - "sku": "OHDLRBLT", - "stock": 42, - "image": "https://placehold.co/400x400/333/fff?text=Product", - "featured": false, - "category": "cate_1766159437170_1", - "brand": "bran_1766159437170_1", - "created": "2025-12-19T15:50:38.852Z", - "updated": "2025-12-19T15:50:38.852Z" -} \ No newline at end of file diff --git a/collections/products/prod_1766159437170_13.json b/collections/products/prod_1766159437170_13.json deleted file mode 100644 index 0f749f6..0000000 --- a/collections/products/prod_1766159437170_13.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "Recycled Bamboo Bike", - "description": "The Operative user-facing matrices Fish offers reliable performance and untried design", - "price": 187.15, - "sku": "HZPXWID3", - "stock": 93, - "image": "https://placehold.co/400x400/333/fff?text=Product", - "featured": false, - "category": "cate_1766159437170_1", - "brand": "bran_1766159437170_0", - "created": "2025-12-19T15:50:38.852Z", - "updated": "2025-12-19T15:50:38.852Z" -} \ No newline at end of file diff --git a/collections/products/prod_1766159437170_14.json b/collections/products/prod_1766159437170_14.json deleted file mode 100644 index f555d46..0000000 --- a/collections/products/prod_1766159437170_14.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "Rustic Bamboo Pizza", - "description": "Professional-grade Sausages perfect for smug training and recreational use", - "price": 206.09, - "sku": "DBYWAAJB", - "stock": 0, - "image": "https://placehold.co/400x400/333/fff?text=Product", - "featured": false, - "category": "cate_1766159437170_0", - "brand": "bran_1766159437170_0", - "created": "2025-12-19T15:50:38.852Z", - "updated": "2025-12-19T15:50:38.852Z" -} \ No newline at end of file diff --git a/collections/products/prod_1766159437170_15.json b/collections/products/prod_1766159437170_15.json deleted file mode 100644 index c81858b..0000000 --- a/collections/products/prod_1766159437170_15.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "Sleek Granite Sausages", - "description": "The Fletcher Chicken is the latest in a series of frail products from Bernhard, Berge and Kautzer", - "price": 243.29, - "sku": "XYVLCAIZ", - "stock": 97, - "image": "https://placehold.co/400x400/333/fff?text=Product", - "featured": false, - "category": "cate_1766159437170_0", - "brand": "bran_1766159437170_0", - "created": "2025-12-19T15:50:38.852Z", - "updated": "2025-12-19T15:50:38.852Z" -} \ No newline at end of file diff --git a/collections/products/prod_1766159437170_16.json b/collections/products/prod_1766159437170_16.json deleted file mode 100644 index 4284afe..0000000 --- a/collections/products/prod_1766159437170_16.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "Intelligent Rubber Fish", - "description": "New orange Bacon with ergonomic design for pleasant comfort", - "price": 357.25, - "sku": "JTGNGKVN", - "stock": 79, - "image": "https://placehold.co/400x400/333/fff?text=Product", - "featured": false, - "category": "cate_1766159437170_0", - "brand": "bran_1766159437170_0", - "created": "2025-12-19T15:50:38.852Z", - "updated": "2025-12-19T15:50:38.852Z" -} \ No newline at end of file diff --git a/collections/products/prod_1766159437170_17.json b/collections/products/prod_1766159437170_17.json deleted file mode 100644 index 7d8af46..0000000 --- a/collections/products/prod_1766159437170_17.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "Rustic Steel Fish", - "description": "Introducing the Oman-inspired Tuna, blending indelible style with local craftsmanship", - "price": 365.39, - "sku": "Z62YCHBD", - "stock": 29, - "image": "https://placehold.co/400x400/333/fff?text=Product", - "featured": false, - "category": "cate_1766159437170_1", - "brand": "bran_1766159437170_0", - "created": "2025-12-19T15:50:38.852Z", - "updated": "2025-12-19T15:50:38.852Z" -} \ No newline at end of file diff --git a/collections/products/prod_1766159437170_18.json b/collections/products/prod_1766159437170_18.json deleted file mode 100644 index 2239ba2..0000000 --- a/collections/products/prod_1766159437170_18.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "Frozen Ceramic Table", - "description": "Experience the salmon brilliance of our Hat, perfect for unusual environments", - "price": 28.29, - "sku": "D9JMZUFW", - "stock": 36, - "image": "https://placehold.co/400x400/333/fff?text=Product", - "featured": false, - "category": "cate_1766159437170_1", - "brand": "bran_1766159437170_1", - "created": "2025-12-19T15:50:38.852Z", - "updated": "2025-12-19T15:50:38.852Z" -} \ No newline at end of file diff --git a/collections/products/prod_1766159437170_19.json b/collections/products/prod_1766159437170_19.json deleted file mode 100644 index bf2e300..0000000 --- a/collections/products/prod_1766159437170_19.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "Gorgeous Wooden Keyboard", - "description": "Innovative Tuna featuring drab technology and Concrete construction", - "price": 453.39, - "sku": "IYBRJL4J", - "stock": 7, - "image": "https://placehold.co/400x400/333/fff?text=Product", - "featured": false, - "category": "cate_1766159437170_0", - "brand": "bran_1766159437170_1", - "created": "2025-12-19T15:50:38.852Z", - "updated": "2025-12-19T15:50:38.852Z" -} \ No newline at end of file diff --git a/collections/products/prod_1766159437170_2.json b/collections/products/prod_1766159437170_2.json deleted file mode 100644 index 4586c25..0000000 --- a/collections/products/prod_1766159437170_2.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "Fresh Wooden Bike", - "description": "The black Computer combines Timor-Leste aesthetics with Chromium-based durability", - "price": 245.75, - "sku": "VISMLT98", - "stock": 22, - "image": "https://placehold.co/400x400/333/fff?text=Product", - "featured": false, - "category": "cate_1766159437170_1", - "brand": "bran_1766159437170_1", - "created": "2025-12-19T15:50:38.852Z", - "updated": "2025-12-19T15:50:38.852Z" -} \ No newline at end of file diff --git a/collections/products/prod_1766159437170_3.json b/collections/products/prod_1766159437170_3.json deleted file mode 100644 index d7feb37..0000000 --- a/collections/products/prod_1766159437170_3.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "Awesome Gold Bike", - "description": "Luxurious Cheese designed with Bamboo for frugal performance", - "price": 431.19, - "sku": "ITDJYQBX", - "stock": 45, - "image": "https://placehold.co/400x400/333/fff?text=Product", - "featured": false, - "category": "cate_1766159437170_0", - "brand": "bran_1766159437170_1", - "created": "2025-12-19T15:50:38.852Z", - "updated": "2025-12-19T15:50:38.852Z" -} \ No newline at end of file diff --git a/collections/products/prod_1766159437170_4.json b/collections/products/prod_1766159437170_4.json deleted file mode 100644 index 1c7a246..0000000 --- a/collections/products/prod_1766159437170_4.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "Rustic Wooden Bacon", - "description": "The sleek and altruistic Keyboard comes with turquoise LED lighting for smart functionality", - "price": 162.79, - "sku": "RY3ODAVK", - "stock": 86, - "image": "https://placehold.co/400x400/333/fff?text=Product", - "featured": false, - "category": "cate_1766159437170_1", - "brand": "bran_1766159437170_1", - "created": "2025-12-19T15:50:38.852Z", - "updated": "2025-12-19T15:50:38.852Z" -} \ No newline at end of file diff --git a/collections/products/prod_1766159437170_5.json b/collections/products/prod_1766159437170_5.json deleted file mode 100644 index c06372e..0000000 --- a/collections/products/prod_1766159437170_5.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "Handmade Aluminum Tuna", - "description": "The olive Shoes combines Suriname aesthetics with Fluorine-based durability", - "price": 485.99, - "sku": "0HPIE5BY", - "stock": 6, - "image": "https://placehold.co/400x400/333/fff?text=Product", - "featured": false, - "category": "cate_1766159437170_0", - "brand": "bran_1766159437170_0", - "created": "2025-12-19T15:50:38.852Z", - "updated": "2025-12-19T15:50:38.852Z" -} \ No newline at end of file diff --git a/collections/products/prod_1766159437170_6.json b/collections/products/prod_1766159437170_6.json deleted file mode 100644 index 9c950a6..0000000 --- a/collections/products/prod_1766159437170_6.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "Luxurious Metal Fish", - "description": "Professional-grade Computer perfect for evil training and recreational use", - "price": 425.69, - "sku": "FCFNTRE5", - "stock": 47, - "image": "https://placehold.co/400x400/333/fff?text=Product", - "featured": false, - "category": "cate_1766159437170_1", - "brand": "bran_1766159437170_0", - "created": "2025-12-19T15:50:38.852Z", - "updated": "2025-12-19T15:50:38.852Z" -} \ No newline at end of file diff --git a/collections/products/prod_1766159437170_7.json b/collections/products/prod_1766159437170_7.json deleted file mode 100644 index 6d9818c..0000000 --- a/collections/products/prod_1766159437170_7.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "Tasty Bamboo Soap", - "description": "Featuring Nihonium-enhanced technology, our Chicken offers unparalleled noteworthy performance", - "price": 141.09, - "sku": "YKCZVSRB", - "stock": 10, - "image": "https://placehold.co/400x400/333/fff?text=Product", - "featured": false, - "category": "cate_1766159437170_0", - "brand": "bran_1766159437170_0", - "created": "2025-12-19T15:50:38.852Z", - "updated": "2025-12-19T15:50:38.852Z" -} \ No newline at end of file diff --git a/collections/products/prod_1766159437170_8.json b/collections/products/prod_1766159437170_8.json deleted file mode 100644 index f705490..0000000 --- a/collections/products/prod_1766159437170_8.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "Licensed Marble Chips", - "description": "Introducing the Papua New Guinea-inspired Soap, blending shy style with local craftsmanship", - "price": 365.75, - "sku": "F39I9YOB", - "stock": 59, - "image": "https://placehold.co/400x400/333/fff?text=Product", - "featured": true, - "category": "cate_1766159437170_1", - "brand": "bran_1766159437170_0", - "created": "2025-12-19T15:50:38.852Z", - "updated": "2025-12-19T15:50:38.852Z" -} \ No newline at end of file diff --git a/collections/products/prod_1766159437170_9.json b/collections/products/prod_1766159437170_9.json deleted file mode 100644 index 1fd3f34..0000000 --- a/collections/products/prod_1766159437170_9.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "Licensed Concrete Soap", - "description": "The sleek and parallel Salad comes with yellow LED lighting for smart functionality", - "price": 407.35, - "sku": "WIWBJJRU", - "stock": 51, - "image": "https://placehold.co/400x400/333/fff?text=Product", - "featured": false, - "category": "cate_1766159437170_0", - "brand": "bran_1766159437170_0", - "created": "2025-12-19T15:50:38.852Z", - "updated": "2025-12-19T15:50:38.852Z" -} \ No newline at end of file diff --git a/collections/reviews/.gitkeep b/collections/reviews/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/collections/reviews/revi_1766159437170_0.json b/collections/reviews/revi_1766159437170_0.json deleted file mode 100644 index 76015e2..0000000 --- a/collections/reviews/revi_1766159437170_0.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "rating": 2, - "title": "Amazing quality", - "content": "Ars creta admiratio admoveo absum deripio sollers temptatio sumo. Coepi sublime stipes tabernus aequus. Curia depulso statua creator.", - "date": "2025-10-09T12:41:57.044Z", - "verified": true, - "product": "prod_1766159437170_13", - "customer": "cust_1766159437170_2", - "created": "2025-12-19T15:50:41.546Z", - "updated": "2025-12-19T15:50:41.546Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159437170_1.json b/collections/reviews/revi_1766159437170_1.json deleted file mode 100644 index 11cd392..0000000 --- a/collections/reviews/revi_1766159437170_1.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "rating": 5, - "title": "Would recommend", - "content": "Alius repellendus sophismata bestia demonstro spiculum compono. Ut aegrotatio virga veritas caries. Debilito conor carpo subnecto deleo arcus.", - "date": "2025-07-10T06:30:59.205Z", - "verified": true, - "product": "prod_1766159437170_5", - "customer": "cust_1766159437170_4", - "created": "2025-12-19T15:50:41.546Z", - "updated": "2025-12-19T15:50:41.546Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159437170_10.json b/collections/reviews/revi_1766159437170_10.json deleted file mode 100644 index 1ced81b..0000000 --- a/collections/reviews/revi_1766159437170_10.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "rating": 4, - "title": "Fast shipping", - "content": "Autem conduco urbs delibero circumvenio. Est celebrer beneficium tabella bis caterva comitatus absconditus. Concedo termes validus amo comptus necessitatibus abstergo aegre cetera porro.", - "date": "2025-07-30T11:11:26.064Z", - "verified": true, - "product": "prod_1766159437170_9", - "customer": "cust_1766159437170_4", - "created": "2025-12-19T15:50:41.546Z", - "updated": "2025-12-19T15:50:41.546Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159437170_11.json b/collections/reviews/revi_1766159437170_11.json deleted file mode 100644 index 5ab9b18..0000000 --- a/collections/reviews/revi_1766159437170_11.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "rating": 3, - "title": "Perfect fit", - "content": "Deporto pauper tamquam thorax tergeo pecus cognomen vulgaris balbus. Arcesso ratione verto talis calculus tenax congregatio. Deinde amet congregatio magni tepidus.", - "date": "2025-11-30T00:28:10.049Z", - "verified": true, - "product": "prod_1766159437170_1", - "customer": "cust_1766159437170_2", - "created": "2025-12-19T15:50:41.546Z", - "updated": "2025-12-19T15:50:41.546Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159437170_12.json b/collections/reviews/revi_1766159437170_12.json deleted file mode 100644 index e11e8b2..0000000 --- a/collections/reviews/revi_1766159437170_12.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "rating": 5, - "title": "Perfect fit", - "content": "Cerno turpis cruciamentum eius error. Quod vinitor tui complectus concido amita brevis. Cometes derideo explicabo cubicularis valde testimonium cur.", - "date": "2025-12-05T20:25:57.058Z", - "verified": false, - "product": "prod_1766159437170_17", - "customer": "cust_1766159437170_1", - "created": "2025-12-19T15:50:41.546Z", - "updated": "2025-12-19T15:50:41.546Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159437170_13.json b/collections/reviews/revi_1766159437170_13.json deleted file mode 100644 index 0ec0b06..0000000 --- a/collections/reviews/revi_1766159437170_13.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "rating": 3, - "title": "Would recommend", - "content": "Officia subvenio vulpes defungo calamitas confugo. Atque angustus libero cruentus volubilis subiungo. Abbas amor decimus inflammatio credo thorax voluptatem uterque.", - "date": "2025-09-19T13:37:00.366Z", - "verified": true, - "product": "prod_1766159437170_13", - "customer": "cust_1766159437170_4", - "created": "2025-12-19T15:50:41.546Z", - "updated": "2025-12-19T15:50:41.546Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159437170_14.json b/collections/reviews/revi_1766159437170_14.json deleted file mode 100644 index 0dce95c..0000000 --- a/collections/reviews/revi_1766159437170_14.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "rating": 2, - "title": "Could be better", - "content": "Alioqui arbustum ea beatus cornu delectatio ratione theatrum demonstro cras. Cervus itaque basium comes. Commodi communis claustrum cognatus cubicularis canis patrocinor.", - "date": "2025-10-02T10:43:39.645Z", - "verified": true, - "product": "prod_1766159437170_4", - "customer": "cust_1766159437170_4", - "created": "2025-12-19T15:50:41.546Z", - "updated": "2025-12-19T15:50:41.546Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159437170_15.json b/collections/reviews/revi_1766159437170_15.json deleted file mode 100644 index 94acea5..0000000 --- a/collections/reviews/revi_1766159437170_15.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "rating": 3, - "title": "Could be better", - "content": "Vobis capitulus nam adulescens demo atque conduco. Autem villa tumultus tertius circumvenio. Alioqui magni absque somnus careo bis trepide aut attero spiculum.", - "date": "2025-09-07T02:14:20.353Z", - "verified": false, - "product": "prod_1766159437170_15", - "customer": "cust_1766159437170_4", - "created": "2025-12-19T15:50:41.546Z", - "updated": "2025-12-19T15:50:41.546Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159437170_2.json b/collections/reviews/revi_1766159437170_2.json deleted file mode 100644 index 7feaa81..0000000 --- a/collections/reviews/revi_1766159437170_2.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "rating": 4, - "title": "Good value for money", - "content": "Aer crinis theca bellicus color vociferor uter pel cupiditate. Terreo tolero arbitro deprecator commemoro cubo. Caute beatus saepe suspendo amissio triumphus.", - "date": "2025-12-08T12:18:22.382Z", - "verified": true, - "product": "prod_1766159437170_12", - "customer": "cust_1766159437170_2", - "created": "2025-12-19T15:50:41.546Z", - "updated": "2025-12-19T15:50:41.546Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159437170_3.json b/collections/reviews/revi_1766159437170_3.json deleted file mode 100644 index 8118105..0000000 --- a/collections/reviews/revi_1766159437170_3.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "rating": 5, - "title": "Could be better", - "content": "Cometes circumvenio decretum minus. Sono curia comprehendo tollo cariosus. Coniecto atavus clamo talus tandem cultura velit congregatio varius validus.", - "date": "2025-10-25T22:59:13.020Z", - "verified": false, - "product": "prod_1766159437170_12", - "customer": "cust_1766159437170_2", - "created": "2025-12-19T15:50:41.546Z", - "updated": "2025-12-19T15:50:41.546Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159437170_4.json b/collections/reviews/revi_1766159437170_4.json deleted file mode 100644 index 0534622..0000000 --- a/collections/reviews/revi_1766159437170_4.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "rating": 4, - "title": "Fast shipping", - "content": "Deleniti trepide versus videlicet crustulum tantillus claustrum tantillus verus verbum. Speciosus omnis sapiente ulterius abscido. Iste atrox thalassinus textilis totus rem atavus.", - "date": "2025-12-11T15:31:15.204Z", - "verified": false, - "product": "prod_1766159437170_19", - "customer": "cust_1766159437170_3", - "created": "2025-12-19T15:50:41.546Z", - "updated": "2025-12-19T15:50:41.546Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159437170_5.json b/collections/reviews/revi_1766159437170_5.json deleted file mode 100644 index 4b88bfe..0000000 --- a/collections/reviews/revi_1766159437170_5.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "rating": 2, - "title": "Great product!", - "content": "Valde accedo aeneus inventore vallum. Audentia cunabula solus. Defero quod trado vindico volutabrum villa.", - "date": "2025-07-19T14:48:26.923Z", - "verified": true, - "product": "prod_1766159437170_14", - "customer": "cust_1766159437170_1", - "created": "2025-12-19T15:50:41.546Z", - "updated": "2025-12-19T15:50:41.546Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159437170_6.json b/collections/reviews/revi_1766159437170_6.json deleted file mode 100644 index e6e6f40..0000000 --- a/collections/reviews/revi_1766159437170_6.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "rating": 3, - "title": "Perfect fit", - "content": "Tripudio uberrime audacia victus. Somnus tepesco tepesco aspicio creptio vestigium. Curvo solum sui cubo deripio utroque sursum sto umquam.", - "date": "2025-11-09T14:58:20.266Z", - "verified": true, - "product": "prod_1766159437170_11", - "customer": "cust_1766159437170_5", - "created": "2025-12-19T15:50:41.546Z", - "updated": "2025-12-19T15:50:41.546Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159437170_7.json b/collections/reviews/revi_1766159437170_7.json deleted file mode 100644 index eb04be1..0000000 --- a/collections/reviews/revi_1766159437170_7.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "rating": 1, - "title": "Would recommend", - "content": "Textilis ventito aufero. Cupiditate vorax carbo eius occaecati bellum comedo textilis. Sunt arbustum conqueror.", - "date": "2025-07-02T19:23:40.022Z", - "verified": true, - "product": "prod_1766159437170_11", - "customer": "cust_1766159437170_1", - "created": "2025-12-19T15:50:41.546Z", - "updated": "2025-12-19T15:50:41.546Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159437170_8.json b/collections/reviews/revi_1766159437170_8.json deleted file mode 100644 index 8a63dd0..0000000 --- a/collections/reviews/revi_1766159437170_8.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "rating": 3, - "title": "Exactly as described", - "content": "Animadverto curso tabella voluptatem terminatio. Terra degenero velum vesco credo arbor. Benigne defluo tonsor succedo casso valeo vitium caterva praesentium.", - "date": "2025-07-22T16:38:13.043Z", - "verified": true, - "product": "prod_1766159437170_17", - "customer": "cust_1766159437170_4", - "created": "2025-12-19T15:50:41.546Z", - "updated": "2025-12-19T15:50:41.546Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159437170_9.json b/collections/reviews/revi_1766159437170_9.json deleted file mode 100644 index 8c0f70e..0000000 --- a/collections/reviews/revi_1766159437170_9.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "rating": 4, - "title": "Could be better", - "content": "Reprehenderit clementia commodo undique cursim cogito absorbeo vicissitudo adimpleo. Tergeo delibero numquam considero libero dolor. Tactus solitudo substantia pecto carus nemo stella ocer cras solio.", - "date": "2025-08-03T18:40:46.814Z", - "verified": false, - "product": "prod_1766159437170_15", - "customer": "cust_1766159437170_1", - "created": "2025-12-19T15:50:41.546Z", - "updated": "2025-12-19T15:50:41.546Z" -} \ No newline at end of file