Init: RoggioApp Architecture, Prisma Schema, API MVP
This commit is contained in:
+346
@@ -0,0 +1,346 @@
|
||||
|
||||
/* !!! This is code generated by Prisma. Do not edit directly. !!!
|
||||
/* eslint-disable */
|
||||
// biome-ignore-all lint: generated file
|
||||
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
const {
|
||||
Decimal,
|
||||
objectEnumValues,
|
||||
makeStrictEnum,
|
||||
Public,
|
||||
getRuntime,
|
||||
skip
|
||||
} = require('@prisma/client/runtime/index-browser.js')
|
||||
|
||||
|
||||
const Prisma = {}
|
||||
|
||||
exports.Prisma = Prisma
|
||||
exports.$Enums = {}
|
||||
|
||||
/**
|
||||
* Prisma Client JS version: 6.19.3
|
||||
* Query Engine version: a9055b89e58b4b5bfb59600785423b1db3d0e75d
|
||||
*/
|
||||
Prisma.prismaVersion = {
|
||||
client: "6.19.3",
|
||||
engine: "a9055b89e58b4b5bfb59600785423b1db3d0e75d"
|
||||
}
|
||||
|
||||
Prisma.PrismaClientKnownRequestError = () => {
|
||||
const runtimeName = getRuntime().prettyName;
|
||||
throw new Error(`PrismaClientKnownRequestError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
||||
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
||||
)};
|
||||
Prisma.PrismaClientUnknownRequestError = () => {
|
||||
const runtimeName = getRuntime().prettyName;
|
||||
throw new Error(`PrismaClientUnknownRequestError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
||||
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
||||
)}
|
||||
Prisma.PrismaClientRustPanicError = () => {
|
||||
const runtimeName = getRuntime().prettyName;
|
||||
throw new Error(`PrismaClientRustPanicError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
||||
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
||||
)}
|
||||
Prisma.PrismaClientInitializationError = () => {
|
||||
const runtimeName = getRuntime().prettyName;
|
||||
throw new Error(`PrismaClientInitializationError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
||||
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
||||
)}
|
||||
Prisma.PrismaClientValidationError = () => {
|
||||
const runtimeName = getRuntime().prettyName;
|
||||
throw new Error(`PrismaClientValidationError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
||||
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
||||
)}
|
||||
Prisma.Decimal = Decimal
|
||||
|
||||
/**
|
||||
* Re-export of sql-template-tag
|
||||
*/
|
||||
Prisma.sql = () => {
|
||||
const runtimeName = getRuntime().prettyName;
|
||||
throw new Error(`sqltag is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
||||
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
||||
)}
|
||||
Prisma.empty = () => {
|
||||
const runtimeName = getRuntime().prettyName;
|
||||
throw new Error(`empty is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
||||
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
||||
)}
|
||||
Prisma.join = () => {
|
||||
const runtimeName = getRuntime().prettyName;
|
||||
throw new Error(`join is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
||||
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
||||
)}
|
||||
Prisma.raw = () => {
|
||||
const runtimeName = getRuntime().prettyName;
|
||||
throw new Error(`raw is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
||||
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
||||
)}
|
||||
Prisma.validator = Public.validator
|
||||
|
||||
/**
|
||||
* Extensions
|
||||
*/
|
||||
Prisma.getExtensionContext = () => {
|
||||
const runtimeName = getRuntime().prettyName;
|
||||
throw new Error(`Extensions.getExtensionContext is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
||||
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
||||
)}
|
||||
Prisma.defineExtension = () => {
|
||||
const runtimeName = getRuntime().prettyName;
|
||||
throw new Error(`Extensions.defineExtension is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
||||
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
||||
)}
|
||||
|
||||
/**
|
||||
* Shorthand utilities for JSON filtering
|
||||
*/
|
||||
Prisma.DbNull = objectEnumValues.instances.DbNull
|
||||
Prisma.JsonNull = objectEnumValues.instances.JsonNull
|
||||
Prisma.AnyNull = objectEnumValues.instances.AnyNull
|
||||
|
||||
Prisma.NullTypes = {
|
||||
DbNull: objectEnumValues.classes.DbNull,
|
||||
JsonNull: objectEnumValues.classes.JsonNull,
|
||||
AnyNull: objectEnumValues.classes.AnyNull
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Enums
|
||||
*/
|
||||
|
||||
exports.Prisma.TransactionIsolationLevel = makeStrictEnum({
|
||||
ReadUncommitted: 'ReadUncommitted',
|
||||
ReadCommitted: 'ReadCommitted',
|
||||
RepeatableRead: 'RepeatableRead',
|
||||
Serializable: 'Serializable'
|
||||
});
|
||||
|
||||
exports.Prisma.UnitScalarFieldEnum = {
|
||||
id: 'id',
|
||||
name: 'name',
|
||||
description: 'description',
|
||||
parentId: 'parentId',
|
||||
traits: 'traits',
|
||||
createdAt: 'createdAt',
|
||||
updatedAt: 'updatedAt'
|
||||
};
|
||||
|
||||
exports.Prisma.PersonScalarFieldEnum = {
|
||||
id: 'id',
|
||||
firstName: 'firstName',
|
||||
lastName: 'lastName',
|
||||
email: 'email',
|
||||
phone: 'phone',
|
||||
ssoId: 'ssoId',
|
||||
traits: 'traits',
|
||||
createdAt: 'createdAt',
|
||||
updatedAt: 'updatedAt'
|
||||
};
|
||||
|
||||
exports.Prisma.GroupScalarFieldEnum = {
|
||||
id: 'id',
|
||||
name: 'name',
|
||||
traits: 'traits',
|
||||
createdAt: 'createdAt',
|
||||
updatedAt: 'updatedAt'
|
||||
};
|
||||
|
||||
exports.Prisma.GroupMembershipScalarFieldEnum = {
|
||||
id: 'id',
|
||||
personId: 'personId',
|
||||
groupId: 'groupId',
|
||||
role: 'role'
|
||||
};
|
||||
|
||||
exports.Prisma.EventScalarFieldEnum = {
|
||||
id: 'id',
|
||||
type: 'type',
|
||||
status: 'status',
|
||||
startTime: 'startTime',
|
||||
endTime: 'endTime',
|
||||
targetUnitId: 'targetUnitId',
|
||||
targetGroupId: 'targetGroupId',
|
||||
targetPersonId: 'targetPersonId',
|
||||
payload: 'payload',
|
||||
parentEventId: 'parentEventId',
|
||||
createdAt: 'createdAt',
|
||||
updatedAt: 'updatedAt'
|
||||
};
|
||||
|
||||
exports.Prisma.CitiesScalarFieldEnum = {
|
||||
id: 'id',
|
||||
name: 'name',
|
||||
state_id: 'state_id',
|
||||
state_code: 'state_code',
|
||||
country_id: 'country_id',
|
||||
country_code: 'country_code',
|
||||
type: 'type',
|
||||
level: 'level',
|
||||
parent_id: 'parent_id',
|
||||
latitude: 'latitude',
|
||||
longitude: 'longitude',
|
||||
native: 'native',
|
||||
population: 'population',
|
||||
timezone: 'timezone',
|
||||
translations: 'translations',
|
||||
created_at: 'created_at',
|
||||
updated_at: 'updated_at',
|
||||
flag: 'flag',
|
||||
wikiDataId: 'wikiDataId'
|
||||
};
|
||||
|
||||
exports.Prisma.CountriesScalarFieldEnum = {
|
||||
id: 'id',
|
||||
name: 'name',
|
||||
iso3: 'iso3',
|
||||
numeric_code: 'numeric_code',
|
||||
iso2: 'iso2',
|
||||
phonecode: 'phonecode',
|
||||
capital: 'capital',
|
||||
currency: 'currency',
|
||||
currency_name: 'currency_name',
|
||||
currency_symbol: 'currency_symbol',
|
||||
tld: 'tld',
|
||||
native: 'native',
|
||||
population: 'population',
|
||||
gdp: 'gdp',
|
||||
region: 'region',
|
||||
region_id: 'region_id',
|
||||
subregion: 'subregion',
|
||||
subregion_id: 'subregion_id',
|
||||
nationality: 'nationality',
|
||||
area_sq_km: 'area_sq_km',
|
||||
postal_code_format: 'postal_code_format',
|
||||
postal_code_regex: 'postal_code_regex',
|
||||
timezones: 'timezones',
|
||||
translations: 'translations',
|
||||
latitude: 'latitude',
|
||||
longitude: 'longitude',
|
||||
emoji: 'emoji',
|
||||
emojiU: 'emojiU',
|
||||
created_at: 'created_at',
|
||||
updated_at: 'updated_at',
|
||||
flag: 'flag',
|
||||
wikiDataId: 'wikiDataId'
|
||||
};
|
||||
|
||||
exports.Prisma.StatesScalarFieldEnum = {
|
||||
id: 'id',
|
||||
name: 'name',
|
||||
country_id: 'country_id',
|
||||
country_code: 'country_code',
|
||||
fips_code: 'fips_code',
|
||||
iso2: 'iso2',
|
||||
iso3166_2: 'iso3166_2',
|
||||
type: 'type',
|
||||
level: 'level',
|
||||
parent_id: 'parent_id',
|
||||
native: 'native',
|
||||
latitude: 'latitude',
|
||||
longitude: 'longitude',
|
||||
timezone: 'timezone',
|
||||
translations: 'translations',
|
||||
created_at: 'created_at',
|
||||
updated_at: 'updated_at',
|
||||
flag: 'flag',
|
||||
wikiDataId: 'wikiDataId',
|
||||
population: 'population'
|
||||
};
|
||||
|
||||
exports.Prisma.AddressScalarFieldEnum = {
|
||||
id: 'id',
|
||||
street: 'street',
|
||||
streetNo: 'streetNo',
|
||||
postalCode: 'postalCode',
|
||||
cityId: 'cityId',
|
||||
stateId: 'stateId',
|
||||
countryId: 'countryId',
|
||||
rawCity: 'rawCity',
|
||||
rawCountry: 'rawCountry',
|
||||
createdAt: 'createdAt',
|
||||
updatedAt: 'updatedAt'
|
||||
};
|
||||
|
||||
exports.Prisma.VaultDataScalarFieldEnum = {
|
||||
id: 'id',
|
||||
entityType: 'entityType',
|
||||
entityId: 'entityId',
|
||||
secureData: 'secureData',
|
||||
createdAt: 'createdAt'
|
||||
};
|
||||
|
||||
exports.Prisma.SortOrder = {
|
||||
asc: 'asc',
|
||||
desc: 'desc'
|
||||
};
|
||||
|
||||
exports.Prisma.JsonNullValueInput = {
|
||||
JsonNull: Prisma.JsonNull
|
||||
};
|
||||
|
||||
exports.Prisma.QueryMode = {
|
||||
default: 'default',
|
||||
insensitive: 'insensitive'
|
||||
};
|
||||
|
||||
exports.Prisma.JsonNullValueFilter = {
|
||||
DbNull: Prisma.DbNull,
|
||||
JsonNull: Prisma.JsonNull,
|
||||
AnyNull: Prisma.AnyNull
|
||||
};
|
||||
|
||||
exports.Prisma.NullsOrder = {
|
||||
first: 'first',
|
||||
last: 'last'
|
||||
};
|
||||
|
||||
|
||||
exports.Prisma.ModelName = {
|
||||
Unit: 'Unit',
|
||||
Person: 'Person',
|
||||
Group: 'Group',
|
||||
GroupMembership: 'GroupMembership',
|
||||
Event: 'Event',
|
||||
cities: 'cities',
|
||||
countries: 'countries',
|
||||
states: 'states',
|
||||
Address: 'Address',
|
||||
VaultData: 'VaultData'
|
||||
};
|
||||
|
||||
/**
|
||||
* This is a stub Prisma Client that will error at runtime if called.
|
||||
*/
|
||||
class PrismaClient {
|
||||
constructor() {
|
||||
return new Proxy(this, {
|
||||
get(target, prop) {
|
||||
let message
|
||||
const runtime = getRuntime()
|
||||
if (runtime.isEdge) {
|
||||
message = `PrismaClient is not configured to run in ${runtime.prettyName}. In order to run Prisma Client on edge runtime, either:
|
||||
- Use Prisma Accelerate: https://pris.ly/d/accelerate
|
||||
- Use Driver Adapters: https://pris.ly/d/driver-adapters
|
||||
`;
|
||||
} else {
|
||||
message = 'PrismaClient is unable to run in this browser environment, or has been bundled for the browser (running in `' + runtime.prettyName + '`).'
|
||||
}
|
||||
|
||||
message += `
|
||||
If this is unexpected, please open an issue: https://pris.ly/prisma-prisma-bug-report`
|
||||
|
||||
throw new Error(message)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
exports.PrismaClient = PrismaClient
|
||||
|
||||
Object.assign(exports, Prisma)
|
||||
Reference in New Issue
Block a user