chore: clean repository (full-reset)

This commit is contained in:
GitApp 2025-12-19 16:03:13 +00:00
parent 7354812442
commit 59b2b57b5a
104 changed files with 0 additions and 1173 deletions

View File

View File

@ -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
}
}

View File

@ -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"
}
}
}

View File

@ -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"
}
}
}
}

View File

@ -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"
}
}
}

View File

@ -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"
}
}
}
}

View File

@ -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"
}
}
}
}

View File

@ -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"
}
}
}
}

View File

@ -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"
}
}
}
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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"
}

Some files were not shown because too many files have changed in this diff Show More