154 lines
2.8 KiB
TypeScript
154 lines
2.8 KiB
TypeScript
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(),
|
|
},
|
|
];
|