This commit is contained in:
2026-04-17 18:42:35 -04:00
parent 82fee7a507
commit 0fe971ebe8
38 changed files with 4275 additions and 123 deletions

153
src/data/connectorsSeed.ts Normal file
View File

@@ -0,0 +1,153 @@
import type { Connector } from "@/types/compartments";
/**
* Seed rows for the Firestore `connectors` collection.
* Shape matches `Connector` in `@/types/compartments`.
*/
export const CONNECTORS_SEED: readonly Connector[] = [
{
createdAt: new Date(),
updatedAt: new Date(),
brand: "Belden",
type: "Keystone",
category: "Cat6",
color: "Black",
count: 51
},
{
brand: "Belden",
type: "Keystone",
category: "Cat6",
color: "Mixed",
count: 83,
createdAt: new Date(),
updatedAt: new Date(),
},
{
brand: "Goobay",
type: "Keystone",
category: "Cat6 Shielded",
color: "Silver",
count: 50,
createdAt: new Date(),
updatedAt: new Date(),
},
{
brand: "Panduit",
type: "Mini-Com",
category: "Cat6A",
color: "Green",
count: 6,
createdAt: new Date(),
updatedAt: new Date(),
},
{
brand: "Panduit",
type: "Mini-Com",
category: "Cat6",
color: "White",
count: 18,
createdAt: new Date(),
updatedAt: new Date(),
},
{
brand: "Panduit",
type: "Netkey",
category: "Cat6",
color: "Blue",
count: 24,
createdAt: new Date(),
updatedAt: new Date(),
},
{
brand: "Panduit",
type: "Netkey",
category: "Cat6",
color: "White",
count: 67,
createdAt: new Date(),
updatedAt: new Date(),
},
{
brand: "Panduit",
type: "Mini-Com",
category: "Cat6",
color: "Black",
count: 200,
createdAt: new Date(),
updatedAt: new Date(),
},
{
brand: "Panduit",
type: "Mini-Com",
category: "Cat5e",
color: "Black",
count: 150,
createdAt: new Date(),
updatedAt: new Date(),
},
{
brand: "Wavenet",
type: "Keystone",
category: "Cat5e",
color: "Blue",
count: 7,
createdAt: new Date(),
updatedAt: new Date(),
},
{
brand: "Wavenet",
type: "Keystone",
category: "Cat5e",
color: "Black",
count: 18,
createdAt: new Date(),
updatedAt: new Date(),
},
{
brand: "Wavenet",
type: "Keystone",
category: "Cat5e",
color: "White",
count: 25,
createdAt: new Date(),
updatedAt: new Date(),
},
{
brand: "Wavenet",
type: "Keystone",
category: "Cat6",
color: "Black",
count: 25,
createdAt: new Date(),
updatedAt: new Date(),
},
{
brand: "Wavenet",
type: "Keystone",
category: "Cat6",
color: "Yellow",
count: 34,
createdAt: new Date(),
updatedAt: new Date(),
},
{
brand: "Wavenet",
type: "Keystone",
category: "Cat6",
color: "White",
count: 50,
createdAt: new Date(),
updatedAt: new Date(),
},
{
brand: "Wavenet",
type: "Keystone",
category: "Cat6",
color: "Red",
count: 102,
createdAt: new Date(),
updatedAt: new Date(),
},
];