@contember/schema 2.0.0 → 2.1.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/development/src/schema/input.cjs.map +1 -1
- package/dist/development/src/schema/input.js.map +1 -1
- package/dist/development/src/schema/model.cjs +1 -0
- package/dist/development/src/schema/model.cjs.map +1 -1
- package/dist/development/src/schema/model.js +1 -0
- package/dist/development/src/schema/model.js.map +1 -1
- package/dist/production/src/schema/input.cjs.map +1 -1
- package/dist/production/src/schema/input.js.map +1 -1
- package/dist/production/src/schema/model.cjs +1 -0
- package/dist/production/src/schema/model.cjs.map +1 -1
- package/dist/production/src/schema/model.js +1 -0
- package/dist/production/src/schema/model.js.map +1 -1
- package/dist/types/schema/input.d.ts +7 -4
- package/dist/types/schema/input.d.ts.map +1 -1
- package/dist/types/schema/model.d.ts +4 -1
- package/dist/types/schema/model.d.ts.map +1 -1
- package/dist/types/schema/settings.d.ts +1 -0
- package/dist/types/schema/settings.d.ts.map +1 -1
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/schema/input.ts +20 -4
- package/src/schema/model.ts +4 -1
- package/src/schema/settings.ts +1 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"input.cjs","sources":["../../../../../packages/schema/src/schema/input.ts"],"sourcesContent":["import { Value } from './value'\n\nexport namespace Input {\n\texport type PrimaryValue<E = never> = Value.PrimaryValue<E>\n\texport type ColumnValue<E = never> = Value.FieldValue<E>\n\n\texport enum UpdateRelationOperation {\n\t\tconnect = 'connect',\n\t\tdisconnect = 'disconnect',\n\t\tcreate = 'create',\n\t\tconnectOrCreate = 'connectOrCreate',\n\t\tupdate = 'update',\n\t\tupsert = 'upsert',\n\t\tdelete = 'delete',\n\t}\n\n\texport enum CreateRelationOperation {\n\t\tconnect = 'connect',\n\t\tcreate = 'create',\n\t\tconnectOrCreate = 'connectOrCreate',\n\t}\n\n\texport interface ConnectRelationInput<E = never> {\n\t\tconnect: UniqueWhere<E>\n\t}\n\n\texport interface CreateRelationInput<E = never> {\n\t\tcreate: CreateDataInput<E>\n\t}\n\n\texport interface ConnectOrCreateInput<E = never> {\n\t\tconnect: UniqueWhere<E>\n\t\tcreate: CreateDataInput<E>\n\t}\n\n\texport interface ConnectOrCreateRelationInput<E = never> {\n\t\tconnectOrCreate: ConnectOrCreateInput<E>\n\t}\n\n\texport interface DisconnectSpecifiedRelationInput<E = never> {\n\t\tdisconnect: UniqueWhere<E>\n\t}\n\n\texport interface DeleteSpecifiedRelationInput<E = never> {\n\t\tdelete: UniqueWhere<E>\n\t}\n\n\texport interface UpdateSpecifiedRelationInput<E = never> {\n\t\tupdate: { by: UniqueWhere<E>; data: UpdateDataInput<E> }\n\t}\n\n\texport interface UpsertSpecifiedRelationInput<E = never> {\n\t\tupsert: { by: UniqueWhere<E>; update: UpdateDataInput<E>; create: CreateDataInput<E> }\n\t}\n\n\texport interface DisconnectRelationInput {\n\t\tdisconnect: true\n\t}\n\n\texport interface UpdateRelationInput<E = never> {\n\t\tupdate: UpdateDataInput<E>\n\t}\n\n\texport interface DeleteRelationInput {\n\t\tdelete: true\n\t}\n\n\texport interface UpsertRelationInput<E = never> {\n\t\tupsert: { update: UpdateDataInput<E>; create: CreateDataInput<E> }\n\t}\n\n\texport interface CreateDataInput<E = never> {\n\t\t[column: string]: Value.FieldValue<E> | CreateOneRelationInput<E> | CreateManyRelationInput<E>\n\t}\n\n\texport type CreateOneRelationInput<E = never> = { alias?: string } & (\n\t\t| ConnectRelationInput<E>\n\t\t| CreateRelationInput<E>\n\t\t| ConnectOrCreateRelationInput<E>\n\t)\n\n\texport type CreateManyRelationInput<E = never> = Array<CreateOneRelationInput<E>>\n\n\texport interface UpdateDataInput<E = never> {\n\t\t[column: string]: Value.FieldValue<E> | UpdateOneRelationInput<E> | UpdateManyRelationInput<E>\n\t}\n\n\texport interface UpdateInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t\tdata: UpdateDataInput<E>\n\t}\n\n\texport interface UpsertInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t\tupdate: UpdateDataInput<E>\n\t\tcreate: CreateDataInput<E>\n\t}\n\n\texport interface CreateInput<E = never> {\n\t\tdata: CreateDataInput<E>\n\t}\n\n\texport interface DeleteInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t}\n\n\texport interface UniqueQueryInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t}\n\n\texport interface ListQueryInput<E = never> {\n\t\tfilter?: OptionalWhere<E>\n\t\torderBy?: OrderBy[]\n\t\toffset?: number\n\t\tlimit?: number\n\t}\n\n\texport interface PaginationQueryInput<E = never> {\n\t\tfilter?: OptionalWhere<E>\n\t\torderBy?: OrderBy[]\n\t\tskip?: number\n\t\tfirst?: number\n\t}\n\n\t/** @deprecated */\n\texport type SelectQueryInput<E = never> = PaginationQueryInput<E>\n\n\texport type UpdateOneRelationInput<E = never> =\n\t\t| CreateRelationInput<E>\n\t\t| ConnectRelationInput<E>\n\t\t| ConnectOrCreateRelationInput<E>\n\t\t| DeleteRelationInput\n\t\t| DisconnectRelationInput\n\t\t| UpdateRelationInput<E>\n\t\t| UpsertRelationInput<E>\n\n\texport type UpdateManyRelationInputItem<E = never> = { alias?: string } & (\n\t\t| CreateRelationInput<E>\n\t\t| ConnectRelationInput<E>\n\t\t| ConnectOrCreateRelationInput<E>\n\t\t| DeleteSpecifiedRelationInput<E>\n\t\t| DisconnectSpecifiedRelationInput<E>\n\t\t| UpdateSpecifiedRelationInput<E>\n\t\t| UpsertSpecifiedRelationInput<E>\n\t)\n\n\texport type UpdateManyRelationInput<E = never> = Array<UpdateManyRelationInputItem<E>>\n\n\texport enum OrderDirection {\n\t\tasc = 'asc',\n\t\tascNullsFirst = 'ascNullsFirst',\n\t\tdesc = 'desc',\n\t\tdescNullsLast = 'descNullsLast',\n\n\t\t/* eslint-disable @typescript-eslint/no-duplicate-enum-values */\n\t\t/** @deprecated use ascNullsFirst*/\n\t\tascNullFirst = 'ascNullsFirst',\n\t\t/* eslint-enable @typescript-eslint/no-duplicate-enum-values */\n\t}\n\n\t// generics required by admin\n\texport type FieldOrderBy<T = OrderDirection> = T | OrderBy<T>\n\n\texport interface OrderByFields<T = OrderDirection> {\n\t\t[fieldName: string]: FieldOrderBy<T>\n\t}\n\n\texport type OrderBy<T = OrderDirection> = OrderByFields<T> & { _random?: boolean; _randomSeeded?: number }\n\n\texport type Condition<T = Value.FieldValue> = {\n\t\treadonly and?: readonly Condition<T>[]\n\t\treadonly or?: readonly Condition<T>[]\n\t\treadonly not?: Condition<T>\n\t\
|
|
1
|
+
{"version":3,"file":"input.cjs","sources":["../../../../../packages/schema/src/schema/input.ts"],"sourcesContent":["import { Value } from './value'\n\nexport namespace Input {\n\texport type PrimaryValue<E = never> = Value.PrimaryValue<E>\n\texport type ColumnValue<E = never> = Value.FieldValue<E>\n\n\texport enum UpdateRelationOperation {\n\t\tconnect = 'connect',\n\t\tdisconnect = 'disconnect',\n\t\tcreate = 'create',\n\t\tconnectOrCreate = 'connectOrCreate',\n\t\tupdate = 'update',\n\t\tupsert = 'upsert',\n\t\tdelete = 'delete',\n\t}\n\n\texport enum CreateRelationOperation {\n\t\tconnect = 'connect',\n\t\tcreate = 'create',\n\t\tconnectOrCreate = 'connectOrCreate',\n\t}\n\n\texport interface ConnectRelationInput<E = never> {\n\t\tconnect: UniqueWhere<E>\n\t}\n\n\texport interface CreateRelationInput<E = never> {\n\t\tcreate: CreateDataInput<E>\n\t}\n\n\texport interface ConnectOrCreateInput<E = never> {\n\t\tconnect: UniqueWhere<E>\n\t\tcreate: CreateDataInput<E>\n\t}\n\n\texport interface ConnectOrCreateRelationInput<E = never> {\n\t\tconnectOrCreate: ConnectOrCreateInput<E>\n\t}\n\n\texport interface DisconnectSpecifiedRelationInput<E = never> {\n\t\tdisconnect: UniqueWhere<E>\n\t}\n\n\texport interface DeleteSpecifiedRelationInput<E = never> {\n\t\tdelete: UniqueWhere<E>\n\t}\n\n\texport interface UpdateSpecifiedRelationInput<E = never> {\n\t\tupdate: { by: UniqueWhere<E>; data: UpdateDataInput<E> }\n\t}\n\n\texport interface UpsertSpecifiedRelationInput<E = never> {\n\t\tupsert: { by: UniqueWhere<E>; update: UpdateDataInput<E>; create: CreateDataInput<E> }\n\t}\n\n\texport interface DisconnectRelationInput {\n\t\tdisconnect: true\n\t}\n\n\texport interface UpdateRelationInput<E = never> {\n\t\tupdate: UpdateDataInput<E>\n\t}\n\n\texport interface DeleteRelationInput {\n\t\tdelete: true\n\t}\n\n\texport interface UpsertRelationInput<E = never> {\n\t\tupsert: { update: UpdateDataInput<E>; create: CreateDataInput<E> }\n\t}\n\n\texport interface CreateDataInput<E = never> {\n\t\t[column: string]: Value.FieldValue<E> | CreateOneRelationInput<E> | CreateManyRelationInput<E>\n\t}\n\n\texport type CreateOneRelationInput<E = never> = { alias?: string } & (\n\t\t| ConnectRelationInput<E>\n\t\t| CreateRelationInput<E>\n\t\t| ConnectOrCreateRelationInput<E>\n\t)\n\n\texport type CreateManyRelationInput<E = never> = Array<CreateOneRelationInput<E>>\n\n\texport interface UpdateDataInput<E = never> {\n\t\t[column: string]: Value.FieldValue<E> | UpdateOneRelationInput<E> | UpdateManyRelationInput<E>\n\t}\n\n\texport interface UpdateInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t\tdata: UpdateDataInput<E>\n\t}\n\n\texport interface UpsertInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t\tupdate: UpdateDataInput<E>\n\t\tcreate: CreateDataInput<E>\n\t}\n\n\texport interface CreateInput<E = never> {\n\t\tdata: CreateDataInput<E>\n\t}\n\n\texport interface DeleteInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t}\n\n\texport interface UniqueQueryInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t}\n\n\texport interface ListQueryInput<E = never> {\n\t\tfilter?: OptionalWhere<E>\n\t\torderBy?: OrderBy[]\n\t\toffset?: number\n\t\tlimit?: number\n\t}\n\n\texport interface PaginationQueryInput<E = never> {\n\t\tfilter?: OptionalWhere<E>\n\t\torderBy?: OrderBy[]\n\t\tskip?: number\n\t\tfirst?: number\n\t}\n\n\t/** @deprecated */\n\texport type SelectQueryInput<E = never> = PaginationQueryInput<E>\n\n\texport type UpdateOneRelationInput<E = never> =\n\t\t| CreateRelationInput<E>\n\t\t| ConnectRelationInput<E>\n\t\t| ConnectOrCreateRelationInput<E>\n\t\t| DeleteRelationInput\n\t\t| DisconnectRelationInput\n\t\t| UpdateRelationInput<E>\n\t\t| UpsertRelationInput<E>\n\n\texport type UpdateManyRelationInputItem<E = never> = { alias?: string } & (\n\t\t| CreateRelationInput<E>\n\t\t| ConnectRelationInput<E>\n\t\t| ConnectOrCreateRelationInput<E>\n\t\t| DeleteSpecifiedRelationInput<E>\n\t\t| DisconnectSpecifiedRelationInput<E>\n\t\t| UpdateSpecifiedRelationInput<E>\n\t\t| UpsertSpecifiedRelationInput<E>\n\t)\n\n\texport type UpdateManyRelationInput<E = never> = Array<UpdateManyRelationInputItem<E>>\n\n\texport enum OrderDirection {\n\t\tasc = 'asc',\n\t\tascNullsFirst = 'ascNullsFirst',\n\t\tdesc = 'desc',\n\t\tdescNullsLast = 'descNullsLast',\n\n\t\t/* eslint-disable @typescript-eslint/no-duplicate-enum-values */\n\t\t/** @deprecated use ascNullsFirst*/\n\t\tascNullFirst = 'ascNullsFirst',\n\t\t/* eslint-enable @typescript-eslint/no-duplicate-enum-values */\n\t}\n\n\t// generics required by admin\n\texport type FieldOrderBy<T = OrderDirection> = T | OrderBy<T>\n\n\texport interface OrderByFields<T = OrderDirection> {\n\t\t[fieldName: string]: FieldOrderBy<T>\n\t}\n\n\texport type OrderBy<T = OrderDirection> = OrderByFields<T> & { _random?: boolean; _randomSeeded?: number }\n\n\texport type Condition<T = Value.FieldValue> = {\n\t\t// boolean\n\t\treadonly and?: readonly Condition<T>[]\n\t\treadonly or?: readonly Condition<T>[]\n\t\treadonly not?: Condition<T>\n\n\t\t// null\n\t\treadonly isNull?: boolean\n\n\t\t// basic\n\t\treadonly eq?: T\n\t\treadonly notEq?: T\n\t\treadonly in?: readonly T[]\n\t\treadonly notIn?: readonly T[]\n\t\treadonly lt?: T\n\t\treadonly lte?: T\n\t\treadonly gt?: T\n\t\treadonly gte?: T\n\n\t\t// array\n\t\treadonly minLength?: number\n\t\treadonly maxLength?: number\n\t\treadonly includes?: T\n\n\t\t// string only\n\t\treadonly contains?: string\n\t\treadonly startsWith?: string\n\t\treadonly endsWith?: string\n\t\treadonly containsCI?: string\n\t\treadonly startsWithCI?: string\n\t\treadonly endsWithCI?: string\n\n\t\t// special\n\t\treadonly never?: true\n\t\treadonly always?: true\n\n\t\t// deprecated\n\t\treadonly null?: boolean\n\t}\n\n\texport type UniqueWhere<E = never> = {\n\t\treadonly [field: string]: Value.PrimaryValue<E> | UniqueWhere<E>\n\t}\n\n\texport type ComposedWhere<C, Opt = never> = {\n\t\treadonly and?: (readonly (Where<C, Opt> | Opt)[]) | Opt\n\t\treadonly or?: (readonly (Where<C, Opt> | Opt)[]) | Opt\n\t\treadonly not?: Where<C, Opt> | Opt\n\t}\n\n\texport interface FieldWhere<C = Condition, Opt = never> {\n\t\treadonly [name: string]: Opt | C | Where<C, Opt> | readonly (Where<C, Opt> | Opt)[] //last one if for ComposedWhere\n\t}\n\n\texport type Where<C = Condition, Opt = never> = ComposedWhere<C, Opt> & FieldWhere<C, Opt>\n\n\texport type OptionalWhere<E = never> = Where<Condition<Value.FieldValue<E>>, null | undefined>\n\texport type OptionalFieldWhere<E = never> = FieldWhere<Condition<Value.FieldValue<E>>, null | undefined>\n\n\texport enum FieldMeta {\n\t\treadable = 'readable',\n\t\tupdatable = 'updatable',\n\t}\n}\n"],"names":["Input","UpdateRelationOperation","CreateRelationOperation","OrderDirection","FieldMeta"],"mappings":";;AAEiBA,QAAAA,QAAAA;AAAAA,CAAV,CAAUA,WAAV;AAIC,GAAA,CAAKC,6BAAL;AACNA,6BAAA,SAAU,IAAA;AACVA,6BAAA,YAAa,IAAA;AACbA,6BAAA,QAAS,IAAA;AACTA,6BAAA,iBAAkB,IAAA;AAClBA,6BAAA,QAAS,IAAA;AACTA,6BAAA,QAAS,IAAA;AACTA,6BAAA,QAAS,IAAA;AAAA,EAPE,GAAAD,OAAA,4BAAAA,OAAA,0BAAA,CAAA,EAAA;AAUL,GAAA,CAAKE,6BAAL;AACNA,6BAAA,SAAU,IAAA;AACVA,6BAAA,QAAS,IAAA;AACTA,6BAAA,iBAAkB,IAAA;AAAA,EAHP,GAAAF,OAAA,4BAAAA,OAAA,0BAAA,CAAA,EAAA;AAwIL,GAAA,CAAKG,oBAAL;AACNA,oBAAA,KAAM,IAAA;AACNA,oBAAA,eAAgB,IAAA;AAChBA,oBAAA,MAAO,IAAA;AACPA,oBAAA,eAAgB,IAAA;AAIhBA,oBAAA,cAAe,IAAA;AAAA,EARJ,GAAAH,OAAA,mBAAAA,OAAA,iBAAA,CAAA,EAAA;AAgFL,GAAA,CAAKI,eAAL;AACNA,eAAA,UAAW,IAAA;AACXA,eAAA,WAAY,IAAA;AAAA,EAFD,GAAAJ,OAAA,cAAAA,OAAA,YAAA,CAAA,EAAA;AAAA,GAtOIA,QAAA,UAAAA,gBAAA,CAAA,EAAA;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"input.js","sources":["../../../../../packages/schema/src/schema/input.ts"],"sourcesContent":["import { Value } from './value'\n\nexport namespace Input {\n\texport type PrimaryValue<E = never> = Value.PrimaryValue<E>\n\texport type ColumnValue<E = never> = Value.FieldValue<E>\n\n\texport enum UpdateRelationOperation {\n\t\tconnect = 'connect',\n\t\tdisconnect = 'disconnect',\n\t\tcreate = 'create',\n\t\tconnectOrCreate = 'connectOrCreate',\n\t\tupdate = 'update',\n\t\tupsert = 'upsert',\n\t\tdelete = 'delete',\n\t}\n\n\texport enum CreateRelationOperation {\n\t\tconnect = 'connect',\n\t\tcreate = 'create',\n\t\tconnectOrCreate = 'connectOrCreate',\n\t}\n\n\texport interface ConnectRelationInput<E = never> {\n\t\tconnect: UniqueWhere<E>\n\t}\n\n\texport interface CreateRelationInput<E = never> {\n\t\tcreate: CreateDataInput<E>\n\t}\n\n\texport interface ConnectOrCreateInput<E = never> {\n\t\tconnect: UniqueWhere<E>\n\t\tcreate: CreateDataInput<E>\n\t}\n\n\texport interface ConnectOrCreateRelationInput<E = never> {\n\t\tconnectOrCreate: ConnectOrCreateInput<E>\n\t}\n\n\texport interface DisconnectSpecifiedRelationInput<E = never> {\n\t\tdisconnect: UniqueWhere<E>\n\t}\n\n\texport interface DeleteSpecifiedRelationInput<E = never> {\n\t\tdelete: UniqueWhere<E>\n\t}\n\n\texport interface UpdateSpecifiedRelationInput<E = never> {\n\t\tupdate: { by: UniqueWhere<E>; data: UpdateDataInput<E> }\n\t}\n\n\texport interface UpsertSpecifiedRelationInput<E = never> {\n\t\tupsert: { by: UniqueWhere<E>; update: UpdateDataInput<E>; create: CreateDataInput<E> }\n\t}\n\n\texport interface DisconnectRelationInput {\n\t\tdisconnect: true\n\t}\n\n\texport interface UpdateRelationInput<E = never> {\n\t\tupdate: UpdateDataInput<E>\n\t}\n\n\texport interface DeleteRelationInput {\n\t\tdelete: true\n\t}\n\n\texport interface UpsertRelationInput<E = never> {\n\t\tupsert: { update: UpdateDataInput<E>; create: CreateDataInput<E> }\n\t}\n\n\texport interface CreateDataInput<E = never> {\n\t\t[column: string]: Value.FieldValue<E> | CreateOneRelationInput<E> | CreateManyRelationInput<E>\n\t}\n\n\texport type CreateOneRelationInput<E = never> = { alias?: string } & (\n\t\t| ConnectRelationInput<E>\n\t\t| CreateRelationInput<E>\n\t\t| ConnectOrCreateRelationInput<E>\n\t)\n\n\texport type CreateManyRelationInput<E = never> = Array<CreateOneRelationInput<E>>\n\n\texport interface UpdateDataInput<E = never> {\n\t\t[column: string]: Value.FieldValue<E> | UpdateOneRelationInput<E> | UpdateManyRelationInput<E>\n\t}\n\n\texport interface UpdateInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t\tdata: UpdateDataInput<E>\n\t}\n\n\texport interface UpsertInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t\tupdate: UpdateDataInput<E>\n\t\tcreate: CreateDataInput<E>\n\t}\n\n\texport interface CreateInput<E = never> {\n\t\tdata: CreateDataInput<E>\n\t}\n\n\texport interface DeleteInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t}\n\n\texport interface UniqueQueryInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t}\n\n\texport interface ListQueryInput<E = never> {\n\t\tfilter?: OptionalWhere<E>\n\t\torderBy?: OrderBy[]\n\t\toffset?: number\n\t\tlimit?: number\n\t}\n\n\texport interface PaginationQueryInput<E = never> {\n\t\tfilter?: OptionalWhere<E>\n\t\torderBy?: OrderBy[]\n\t\tskip?: number\n\t\tfirst?: number\n\t}\n\n\t/** @deprecated */\n\texport type SelectQueryInput<E = never> = PaginationQueryInput<E>\n\n\texport type UpdateOneRelationInput<E = never> =\n\t\t| CreateRelationInput<E>\n\t\t| ConnectRelationInput<E>\n\t\t| ConnectOrCreateRelationInput<E>\n\t\t| DeleteRelationInput\n\t\t| DisconnectRelationInput\n\t\t| UpdateRelationInput<E>\n\t\t| UpsertRelationInput<E>\n\n\texport type UpdateManyRelationInputItem<E = never> = { alias?: string } & (\n\t\t| CreateRelationInput<E>\n\t\t| ConnectRelationInput<E>\n\t\t| ConnectOrCreateRelationInput<E>\n\t\t| DeleteSpecifiedRelationInput<E>\n\t\t| DisconnectSpecifiedRelationInput<E>\n\t\t| UpdateSpecifiedRelationInput<E>\n\t\t| UpsertSpecifiedRelationInput<E>\n\t)\n\n\texport type UpdateManyRelationInput<E = never> = Array<UpdateManyRelationInputItem<E>>\n\n\texport enum OrderDirection {\n\t\tasc = 'asc',\n\t\tascNullsFirst = 'ascNullsFirst',\n\t\tdesc = 'desc',\n\t\tdescNullsLast = 'descNullsLast',\n\n\t\t/* eslint-disable @typescript-eslint/no-duplicate-enum-values */\n\t\t/** @deprecated use ascNullsFirst*/\n\t\tascNullFirst = 'ascNullsFirst',\n\t\t/* eslint-enable @typescript-eslint/no-duplicate-enum-values */\n\t}\n\n\t// generics required by admin\n\texport type FieldOrderBy<T = OrderDirection> = T | OrderBy<T>\n\n\texport interface OrderByFields<T = OrderDirection> {\n\t\t[fieldName: string]: FieldOrderBy<T>\n\t}\n\n\texport type OrderBy<T = OrderDirection> = OrderByFields<T> & { _random?: boolean; _randomSeeded?: number }\n\n\texport type Condition<T = Value.FieldValue> = {\n\t\treadonly and?: readonly Condition<T>[]\n\t\treadonly or?: readonly Condition<T>[]\n\t\treadonly not?: Condition<T>\n\t\
|
|
1
|
+
{"version":3,"file":"input.js","sources":["../../../../../packages/schema/src/schema/input.ts"],"sourcesContent":["import { Value } from './value'\n\nexport namespace Input {\n\texport type PrimaryValue<E = never> = Value.PrimaryValue<E>\n\texport type ColumnValue<E = never> = Value.FieldValue<E>\n\n\texport enum UpdateRelationOperation {\n\t\tconnect = 'connect',\n\t\tdisconnect = 'disconnect',\n\t\tcreate = 'create',\n\t\tconnectOrCreate = 'connectOrCreate',\n\t\tupdate = 'update',\n\t\tupsert = 'upsert',\n\t\tdelete = 'delete',\n\t}\n\n\texport enum CreateRelationOperation {\n\t\tconnect = 'connect',\n\t\tcreate = 'create',\n\t\tconnectOrCreate = 'connectOrCreate',\n\t}\n\n\texport interface ConnectRelationInput<E = never> {\n\t\tconnect: UniqueWhere<E>\n\t}\n\n\texport interface CreateRelationInput<E = never> {\n\t\tcreate: CreateDataInput<E>\n\t}\n\n\texport interface ConnectOrCreateInput<E = never> {\n\t\tconnect: UniqueWhere<E>\n\t\tcreate: CreateDataInput<E>\n\t}\n\n\texport interface ConnectOrCreateRelationInput<E = never> {\n\t\tconnectOrCreate: ConnectOrCreateInput<E>\n\t}\n\n\texport interface DisconnectSpecifiedRelationInput<E = never> {\n\t\tdisconnect: UniqueWhere<E>\n\t}\n\n\texport interface DeleteSpecifiedRelationInput<E = never> {\n\t\tdelete: UniqueWhere<E>\n\t}\n\n\texport interface UpdateSpecifiedRelationInput<E = never> {\n\t\tupdate: { by: UniqueWhere<E>; data: UpdateDataInput<E> }\n\t}\n\n\texport interface UpsertSpecifiedRelationInput<E = never> {\n\t\tupsert: { by: UniqueWhere<E>; update: UpdateDataInput<E>; create: CreateDataInput<E> }\n\t}\n\n\texport interface DisconnectRelationInput {\n\t\tdisconnect: true\n\t}\n\n\texport interface UpdateRelationInput<E = never> {\n\t\tupdate: UpdateDataInput<E>\n\t}\n\n\texport interface DeleteRelationInput {\n\t\tdelete: true\n\t}\n\n\texport interface UpsertRelationInput<E = never> {\n\t\tupsert: { update: UpdateDataInput<E>; create: CreateDataInput<E> }\n\t}\n\n\texport interface CreateDataInput<E = never> {\n\t\t[column: string]: Value.FieldValue<E> | CreateOneRelationInput<E> | CreateManyRelationInput<E>\n\t}\n\n\texport type CreateOneRelationInput<E = never> = { alias?: string } & (\n\t\t| ConnectRelationInput<E>\n\t\t| CreateRelationInput<E>\n\t\t| ConnectOrCreateRelationInput<E>\n\t)\n\n\texport type CreateManyRelationInput<E = never> = Array<CreateOneRelationInput<E>>\n\n\texport interface UpdateDataInput<E = never> {\n\t\t[column: string]: Value.FieldValue<E> | UpdateOneRelationInput<E> | UpdateManyRelationInput<E>\n\t}\n\n\texport interface UpdateInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t\tdata: UpdateDataInput<E>\n\t}\n\n\texport interface UpsertInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t\tupdate: UpdateDataInput<E>\n\t\tcreate: CreateDataInput<E>\n\t}\n\n\texport interface CreateInput<E = never> {\n\t\tdata: CreateDataInput<E>\n\t}\n\n\texport interface DeleteInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t}\n\n\texport interface UniqueQueryInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t}\n\n\texport interface ListQueryInput<E = never> {\n\t\tfilter?: OptionalWhere<E>\n\t\torderBy?: OrderBy[]\n\t\toffset?: number\n\t\tlimit?: number\n\t}\n\n\texport interface PaginationQueryInput<E = never> {\n\t\tfilter?: OptionalWhere<E>\n\t\torderBy?: OrderBy[]\n\t\tskip?: number\n\t\tfirst?: number\n\t}\n\n\t/** @deprecated */\n\texport type SelectQueryInput<E = never> = PaginationQueryInput<E>\n\n\texport type UpdateOneRelationInput<E = never> =\n\t\t| CreateRelationInput<E>\n\t\t| ConnectRelationInput<E>\n\t\t| ConnectOrCreateRelationInput<E>\n\t\t| DeleteRelationInput\n\t\t| DisconnectRelationInput\n\t\t| UpdateRelationInput<E>\n\t\t| UpsertRelationInput<E>\n\n\texport type UpdateManyRelationInputItem<E = never> = { alias?: string } & (\n\t\t| CreateRelationInput<E>\n\t\t| ConnectRelationInput<E>\n\t\t| ConnectOrCreateRelationInput<E>\n\t\t| DeleteSpecifiedRelationInput<E>\n\t\t| DisconnectSpecifiedRelationInput<E>\n\t\t| UpdateSpecifiedRelationInput<E>\n\t\t| UpsertSpecifiedRelationInput<E>\n\t)\n\n\texport type UpdateManyRelationInput<E = never> = Array<UpdateManyRelationInputItem<E>>\n\n\texport enum OrderDirection {\n\t\tasc = 'asc',\n\t\tascNullsFirst = 'ascNullsFirst',\n\t\tdesc = 'desc',\n\t\tdescNullsLast = 'descNullsLast',\n\n\t\t/* eslint-disable @typescript-eslint/no-duplicate-enum-values */\n\t\t/** @deprecated use ascNullsFirst*/\n\t\tascNullFirst = 'ascNullsFirst',\n\t\t/* eslint-enable @typescript-eslint/no-duplicate-enum-values */\n\t}\n\n\t// generics required by admin\n\texport type FieldOrderBy<T = OrderDirection> = T | OrderBy<T>\n\n\texport interface OrderByFields<T = OrderDirection> {\n\t\t[fieldName: string]: FieldOrderBy<T>\n\t}\n\n\texport type OrderBy<T = OrderDirection> = OrderByFields<T> & { _random?: boolean; _randomSeeded?: number }\n\n\texport type Condition<T = Value.FieldValue> = {\n\t\t// boolean\n\t\treadonly and?: readonly Condition<T>[]\n\t\treadonly or?: readonly Condition<T>[]\n\t\treadonly not?: Condition<T>\n\n\t\t// null\n\t\treadonly isNull?: boolean\n\n\t\t// basic\n\t\treadonly eq?: T\n\t\treadonly notEq?: T\n\t\treadonly in?: readonly T[]\n\t\treadonly notIn?: readonly T[]\n\t\treadonly lt?: T\n\t\treadonly lte?: T\n\t\treadonly gt?: T\n\t\treadonly gte?: T\n\n\t\t// array\n\t\treadonly minLength?: number\n\t\treadonly maxLength?: number\n\t\treadonly includes?: T\n\n\t\t// string only\n\t\treadonly contains?: string\n\t\treadonly startsWith?: string\n\t\treadonly endsWith?: string\n\t\treadonly containsCI?: string\n\t\treadonly startsWithCI?: string\n\t\treadonly endsWithCI?: string\n\n\t\t// special\n\t\treadonly never?: true\n\t\treadonly always?: true\n\n\t\t// deprecated\n\t\treadonly null?: boolean\n\t}\n\n\texport type UniqueWhere<E = never> = {\n\t\treadonly [field: string]: Value.PrimaryValue<E> | UniqueWhere<E>\n\t}\n\n\texport type ComposedWhere<C, Opt = never> = {\n\t\treadonly and?: (readonly (Where<C, Opt> | Opt)[]) | Opt\n\t\treadonly or?: (readonly (Where<C, Opt> | Opt)[]) | Opt\n\t\treadonly not?: Where<C, Opt> | Opt\n\t}\n\n\texport interface FieldWhere<C = Condition, Opt = never> {\n\t\treadonly [name: string]: Opt | C | Where<C, Opt> | readonly (Where<C, Opt> | Opt)[] //last one if for ComposedWhere\n\t}\n\n\texport type Where<C = Condition, Opt = never> = ComposedWhere<C, Opt> & FieldWhere<C, Opt>\n\n\texport type OptionalWhere<E = never> = Where<Condition<Value.FieldValue<E>>, null | undefined>\n\texport type OptionalFieldWhere<E = never> = FieldWhere<Condition<Value.FieldValue<E>>, null | undefined>\n\n\texport enum FieldMeta {\n\t\treadable = 'readable',\n\t\tupdatable = 'updatable',\n\t}\n}\n"],"names":["Input","UpdateRelationOperation","CreateRelationOperation","OrderDirection","FieldMeta"],"mappings":"AAEiB,IAAA;AAAA,CAAV,CAAUA,WAAV;AAIC,GAAA,CAAKC,6BAAL;AACNA,6BAAA,SAAU,IAAA;AACVA,6BAAA,YAAa,IAAA;AACbA,6BAAA,QAAS,IAAA;AACTA,6BAAA,iBAAkB,IAAA;AAClBA,6BAAA,QAAS,IAAA;AACTA,6BAAA,QAAS,IAAA;AACTA,6BAAA,QAAS,IAAA;AAAA,EAPE,GAAAD,OAAA,4BAAAA,OAAA,0BAAA,CAAA,EAAA;AAUL,GAAA,CAAKE,6BAAL;AACNA,6BAAA,SAAU,IAAA;AACVA,6BAAA,QAAS,IAAA;AACTA,6BAAA,iBAAkB,IAAA;AAAA,EAHP,GAAAF,OAAA,4BAAAA,OAAA,0BAAA,CAAA,EAAA;AAwIL,GAAA,CAAKG,oBAAL;AACNA,oBAAA,KAAM,IAAA;AACNA,oBAAA,eAAgB,IAAA;AAChBA,oBAAA,MAAO,IAAA;AACPA,oBAAA,eAAgB,IAAA;AAIhBA,oBAAA,cAAe,IAAA;AAAA,EARJ,GAAAH,OAAA,mBAAAA,OAAA,iBAAA,CAAA,EAAA;AAgFL,GAAA,CAAKI,eAAL;AACNA,eAAA,UAAW,IAAA;AACXA,eAAA,WAAY,IAAA;AAAA,EAFD,GAAAJ,OAAA,cAAAA,OAAA,YAAA,CAAA,EAAA;AAAA,GAtOI,UAAA,QAAA,CAAA,EAAA;"}
|
|
@@ -12,6 +12,7 @@ exports.Model = void 0;
|
|
|
12
12
|
ColumnType2["Enum"] = "Enum";
|
|
13
13
|
ColumnType2["DateTime"] = "DateTime";
|
|
14
14
|
ColumnType2["Date"] = "Date";
|
|
15
|
+
ColumnType2["Time"] = "Time";
|
|
15
16
|
ColumnType2["Json"] = "Json";
|
|
16
17
|
})(Model2.ColumnType || (Model2.ColumnType = {}));
|
|
17
18
|
((RelationType2) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"model.cjs","sources":["../../../../../packages/schema/src/schema/model.ts"],"sourcesContent":["import { Input } from './input'\n\nexport namespace Model {\n\n\texport type Entity = {\n\t\treadonly name: string\n\t\treadonly primary: string\n\t\treadonly primaryColumn: string\n\t\treadonly tableName: string\n\t\treadonly fields: { readonly [name: string]: AnyField }\n\t\treadonly unique: UniqueConstraints\n\t\treadonly indexes: Indexes\n\t\treadonly view?: View\n\t\treadonly eventLog: EventLogConfig\n\t\treadonly orderBy?: readonly OrderBy[]\n\t}\n\n\texport type View = {\n\t\treadonly sql: string\n\t\treadonly dependencies?: readonly string[]\n\t}\n\n\texport type EventLogConfig = {\n\t\treadonly enabled: boolean\n\t}\n\n\texport type FieldType = RelationType | ColumnType\n\texport type Field<T extends FieldType> = {\n\t\treadonly type: T\n\t}\n\n\texport type AnyField = AnyColumn | AnyRelation\n\texport type AnyColumn<T extends ColumnType = ColumnType> = Column<T>\n\n\texport enum ColumnType {\n\t\tUuid = 'Uuid',\n\t\tString = 'String',\n\t\tInt = 'Integer',\n\t\tDouble = 'Double',\n\t\tBool = 'Bool',\n\t\tEnum = 'Enum',\n\t\tDateTime = 'DateTime',\n\t\tDate = 'Date',\n\t\tJson = 'Json',\n\t}\n\n\texport type Column<T extends ColumnType> = ColumnTypeDefinition<T> & {\n\t\treadonly name: string\n\t\treadonly columnName: string\n\t}\n\n\texport type ColumnTypeDefinition<T extends ColumnType = ColumnType> =\n\t\t& Field<T>\n\t\t& {\n\t\t\treadonly columnType: string\n\t\t\treadonly typeAlias?: string\n\t\t\treadonly nullable: boolean\n\t\t\treadonly default?:
|
|
1
|
+
{"version":3,"file":"model.cjs","sources":["../../../../../packages/schema/src/schema/model.ts"],"sourcesContent":["import { Input } from './input'\nimport { JSONValue } from './json'\n\nexport namespace Model {\n\n\texport type Entity = {\n\t\treadonly name: string\n\t\treadonly primary: string\n\t\treadonly primaryColumn: string\n\t\treadonly tableName: string\n\t\treadonly fields: { readonly [name: string]: AnyField }\n\t\treadonly unique: UniqueConstraints\n\t\treadonly indexes: Indexes\n\t\treadonly view?: View\n\t\treadonly eventLog: EventLogConfig\n\t\treadonly orderBy?: readonly OrderBy[]\n\t}\n\n\texport type View = {\n\t\treadonly sql: string\n\t\treadonly dependencies?: readonly string[]\n\t}\n\n\texport type EventLogConfig = {\n\t\treadonly enabled: boolean\n\t}\n\n\texport type FieldType = RelationType | ColumnType\n\texport type Field<T extends FieldType> = {\n\t\treadonly type: T\n\t}\n\n\texport type AnyField = AnyColumn | AnyRelation\n\texport type AnyColumn<T extends ColumnType = ColumnType> = Column<T>\n\n\texport enum ColumnType {\n\t\tUuid = 'Uuid',\n\t\tString = 'String',\n\t\tInt = 'Integer',\n\t\tDouble = 'Double',\n\t\tBool = 'Bool',\n\t\tEnum = 'Enum',\n\t\tDateTime = 'DateTime',\n\t\tDate = 'Date',\n\t\tTime = 'Time',\n\t\tJson = 'Json',\n\t}\n\n\texport type Column<T extends ColumnType> = ColumnTypeDefinition<T> & {\n\t\treadonly name: string\n\t\treadonly columnName: string\n\t}\n\n\texport type ColumnTypeDefinition<T extends ColumnType = ColumnType> =\n\t\t& Field<T>\n\t\t& {\n\t\t\treadonly columnType: string\n\t\t\treadonly list?: boolean\n\t\t\treadonly typeAlias?: string\n\t\t\treadonly nullable: boolean\n\t\t\treadonly default?: JSONValue\n\t\t\treadonly sequence?: {\n\t\t\t\treadonly precedence: 'ALWAYS' | 'BY DEFAULT'\n\t\t\t\treadonly start?: number\n\t\t\t}\n\t\t}\n\n\n\texport enum RelationType {\n\t\tOneHasOne = 'OneHasOne',\n\t\tOneHasMany = 'OneHasMany',\n\t\tManyHasOne = 'ManyHasOne',\n\t\tManyHasMany = 'ManyHasMany',\n\t}\n\n\texport type AnyInverseRelation =\n\t\t| OneHasManyRelation\n\t\t| OneHasOneInverseRelation\n\t\t| ManyHasManyInverseRelation\n\n\t/** @deprecated */\n\texport type AnyInversedRelation = AnyInverseRelation\n\n\texport type AnyOwningRelation =\n\t\t| ManyHasOneRelation\n\t\t| OneHasOneOwningRelation\n\t\t| ManyHasManyOwningRelation\n\n\texport type AnyRelation = AnyInverseRelation | AnyOwningRelation\n\n\texport type Relation<T extends RelationType = RelationType>=\n\t\t& Field<T>\n\t\t& {\n\t\t\treadonly name: string\n\t\t\treadonly type: T\n\t\t\treadonly target: string\n\t\t}\n\n\texport type InverseRelation =\n\t\t& Relation\n\t\t& {\n\t\t\treadonly ownedBy: string\n\t\t}\n\n\t/** @deprecated */\n\texport type InversedRelation = InverseRelation\n\n\texport type OwningRelation =\n\t\t& Relation\n\t\t& {\n\t\t\treadonly inversedBy?: string\n\t\t}\n\n\t/** @deprecated */\n\texport type OwnerRelation = OwningRelation\n\n\texport enum OnDelete {\n\t\tcascade = 'cascade',\n\t\trestrict = 'restrict',\n\t\tsetNull = 'set null',\n\t}\n\n\texport type JoiningColumn = {\n\t\treadonly columnName: string\n\t\treadonly onDelete: OnDelete\n\t}\n\n\texport type JoiningColumnRelation = {\n\t\treadonly joiningColumn: JoiningColumn\n\t}\n\n\texport type NullableRelation = {\n\t\treadonly nullable: boolean\n\t}\n\n\texport type JoiningTable = {\n\t\treadonly tableName: string\n\t\treadonly joiningColumn: JoiningColumn\n\t\treadonly inverseJoiningColumn: JoiningColumn\n\t\treadonly eventLog: EventLogConfig\n\t}\n\n\texport type JoiningTableRelation = {\n\t\treadonly joiningTable: JoiningTable\n\t}\n\n\texport import OrderDirection = Input.OrderDirection\n\texport type OrderBy = {\n\t\treadonly path: readonly string[]\n\t\treadonly direction: OrderDirection\n\t}\n\n\texport type OrderableRelation = {\n\t\treadonly orderBy?: readonly OrderBy[]\n\t}\n\n\texport type OneHasManyRelation =\n\t\t& Relation<RelationType.OneHasMany>\n\t\t& InverseRelation\n\t\t& OrderableRelation\n\n\texport type ManyHasOneRelation =\n\t\t& Relation<RelationType.ManyHasOne>\n\t\t& OwningRelation\n\t\t& JoiningColumnRelation\n\t\t& NullableRelation\n\n\texport type OneHasOneInverseRelation =\n\t\t& Relation<RelationType.OneHasOne>\n\t\t& InverseRelation\n\t\t& NullableRelation\n\t/** @deprecated */\n\texport type OneHasOneInversedRelation = OneHasOneInverseRelation\n\n\texport type OneHasOneOwningRelation =\n\t\t& Relation<RelationType.OneHasOne>\n\t\t& OwningRelation\n\t\t& JoiningColumnRelation\n\t\t& NullableRelation\n\t\t& {\n\t\t\treadonly orphanRemoval?: true\n\t\t}\n\t/** @deprecated */\n\texport type OneHasOneOwnerRelation = OneHasOneOwningRelation\n\n\texport type ManyHasManyInverseRelation =\n\t\t& Relation<RelationType.ManyHasMany>\n\t\t& InverseRelation\n\t\t& OrderableRelation\n\t/** @deprecated */\n\texport type ManyHasManyInversedRelation = ManyHasManyInverseRelation\n\n\texport type ManyHasManyOwningRelation =\n\t\t& Relation<RelationType.ManyHasMany>\n\t\t& OwningRelation\n\t\t& JoiningTableRelation\n\t\t& OrderableRelation\n\t/** @deprecated */\n\texport type ManyHasManyOwnerRelation = ManyHasManyOwningRelation\n\n\texport type Schema = {\n\t\treadonly enums: { readonly [name: string]: readonly string[] }\n\t\treadonly entities: { readonly [name: string]: Entity }\n\t}\n\n\texport type UniqueConstraints = readonly UniqueConstraint[]\n\n\texport type ConstraintTiming = 'deferrable' | 'deferred'\n\texport type UniqueConstraint = {\n\t\treadonly fields: readonly string[]\n\t\treadonly timing?: ConstraintTiming // empty means not deferrable\n\t\treadonly name?: string\n\t}\n\n\texport type Indexes = readonly Index[]\n\n\texport type Index = {\n\t\treadonly fields: readonly string[]\n\t\treadonly name?: string\n\t}\n\n\n\texport interface ColumnContext {\n\t\tentity: Model.Entity\n\t\tcolumn: Model.AnyColumn\n\t}\n\n\texport type AnyHasManyRelationContext =\n\t\t| ManyHasManyInverseContext\n\t\t| ManyHasManyOwningContext\n\t\t| OneHasManyContext\n\n\texport type AnyHasOneRelationContext =\n\t\t| ManyHasOneContext\n\t\t| OneHasOneOwningContext\n\t\t| OneHasOneInverseContext\n\n\texport type AnyRelationContext =\n\t\t| AnyHasManyRelationContext\n\t\t| AnyHasOneRelationContext\n\n\texport type AnyFieldContext =\n\t\t| ColumnContext\n\t\t| AnyRelationContext\n\n\texport interface ManyHasManyInverseContext {\n\t\ttype: 'manyHasManyInverse'\n\t\tentity: Model.Entity\n\t\trelation: Model.ManyHasManyInverseRelation\n\t\ttargetEntity: Model.Entity\n\t\ttargetRelation: Model.ManyHasManyOwningRelation\n\t}\n\n\texport interface ManyHasManyOwningContext {\n\t\ttype: 'manyHasManyOwning'\n\t\tentity: Model.Entity\n\t\trelation: Model.ManyHasManyOwningRelation\n\t\ttargetEntity: Model.Entity\n\t\ttargetRelation: Model.ManyHasManyInverseRelation | null\n\t}\n\n\texport interface ManyHasOneContext {\n\t\ttype: 'manyHasOne'\n\t\tentity: Model.Entity\n\t\trelation: Model.ManyHasOneRelation\n\t\ttargetEntity: Model.Entity\n\t\ttargetRelation: Model.OneHasManyRelation | null\n\t}\n\n\texport interface OneHasManyContext {\n\t\ttype: 'oneHasMany'\n\t\tentity: Model.Entity\n\t\trelation: Model.OneHasManyRelation\n\t\ttargetEntity: Model.Entity\n\t\ttargetRelation: Model.ManyHasOneRelation\n\t}\n\n\texport interface OneHasOneInverseContext {\n\t\ttype: 'oneHasOneInverse'\n\t\tentity: Model.Entity\n\t\trelation: Model.OneHasOneInverseRelation\n\t\ttargetEntity: Model.Entity\n\t\ttargetRelation: Model.OneHasOneOwningRelation\n\t}\n\n\texport interface OneHasOneOwningContext {\n\t\ttype: 'oneHasOneOwning'\n\t\tentity: Model.Entity\n\t\trelation: Model.OneHasOneOwningRelation\n\t\ttargetEntity: Model.Entity\n\t\ttargetRelation: Model.OneHasOneInverseRelation | null\n\t}\n\n\n\texport interface ColumnVisitor<T> {\n\t\tvisitColumn(context: ColumnContext): T\n\t}\n\n\texport interface RelationVisitor<T> {\n\t\tvisitRelation(context: AnyRelationContext): T\n\t}\n\n\texport type FieldVisitor<T> =\n\t\t& ColumnVisitor<T>\n\t\t& (\n\t\t\t| RelationVisitor<T>\n\t\t\t| RelationByTypeVisitor<T>\n\t\t\t| RelationByGenericTypeVisitor<T>\n\t\t)\n\n\texport interface RelationByTypeVisitor<T> {\n\t\tvisitManyHasOne(context: ManyHasOneContext): T\n\n\t\tvisitOneHasMany(context: OneHasManyContext): T\n\n\t\tvisitOneHasOneOwning(context: OneHasOneOwningContext): T\n\n\t\tvisitOneHasOneInverse(context: OneHasOneInverseContext): T\n\n\t\tvisitManyHasManyOwning(context: ManyHasManyOwningContext): T\n\n\t\tvisitManyHasManyInverse(context: ManyHasManyInverseContext): T\n\t}\n\n\texport interface RelationByGenericTypeVisitor<T> {\n\t\tvisitHasMany(context: AnyHasManyRelationContext): T\n\n\t\tvisitHasOne(context: AnyHasOneRelationContext): T\n\t}\n}\n"],"names":["Model","ColumnType","RelationType","OnDelete","Input"],"mappings":";;;AAGiBA,QAAAA,QAAAA;AAAAA,CAAV,CAAUA,WAAV;AAgCC,GAAA,CAAKC,gBAAL;AACNA,gBAAA,MAAO,IAAA;AACPA,gBAAA,QAAS,IAAA;AACTA,gBAAA,KAAM,IAAA;AACNA,gBAAA,QAAS,IAAA;AACTA,gBAAA,MAAO,IAAA;AACPA,gBAAA,MAAO,IAAA;AACPA,gBAAA,UAAW,IAAA;AACXA,gBAAA,MAAO,IAAA;AACPA,gBAAA,MAAO,IAAA;AACPA,gBAAA,MAAO,IAAA;AAAA,EAVI,GAAAD,OAAA,eAAAA,OAAA,aAAA,CAAA,EAAA;AAiCL,GAAA,CAAKE,kBAAL;AACNA,kBAAA,WAAY,IAAA;AACZA,kBAAA,YAAa,IAAA;AACbA,kBAAA,YAAa,IAAA;AACbA,kBAAA,aAAc,IAAA;AAAA,EAJH,GAAAF,OAAA,iBAAAA,OAAA,eAAA,CAAA,EAAA;AAgDL,GAAA,CAAKG,cAAL;AACNA,cAAA,SAAU,IAAA;AACVA,cAAA,UAAW,IAAA;AACXA,cAAA,SAAU,IAAA;AAAA,EAHC,GAAAH,OAAA,aAAAA,OAAA,WAAA,CAAA,EAAA;AA8BEA,SAAA,iBAAiBI,MAAAA,MAAM;AAAA,GA/IrBJ,QAAA,UAAAA,gBAAA,CAAA,EAAA;"}
|
|
@@ -10,6 +10,7 @@ var Model;
|
|
|
10
10
|
ColumnType2["Enum"] = "Enum";
|
|
11
11
|
ColumnType2["DateTime"] = "DateTime";
|
|
12
12
|
ColumnType2["Date"] = "Date";
|
|
13
|
+
ColumnType2["Time"] = "Time";
|
|
13
14
|
ColumnType2["Json"] = "Json";
|
|
14
15
|
})(Model2.ColumnType || (Model2.ColumnType = {}));
|
|
15
16
|
((RelationType2) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"model.js","sources":["../../../../../packages/schema/src/schema/model.ts"],"sourcesContent":["import { Input } from './input'\n\nexport namespace Model {\n\n\texport type Entity = {\n\t\treadonly name: string\n\t\treadonly primary: string\n\t\treadonly primaryColumn: string\n\t\treadonly tableName: string\n\t\treadonly fields: { readonly [name: string]: AnyField }\n\t\treadonly unique: UniqueConstraints\n\t\treadonly indexes: Indexes\n\t\treadonly view?: View\n\t\treadonly eventLog: EventLogConfig\n\t\treadonly orderBy?: readonly OrderBy[]\n\t}\n\n\texport type View = {\n\t\treadonly sql: string\n\t\treadonly dependencies?: readonly string[]\n\t}\n\n\texport type EventLogConfig = {\n\t\treadonly enabled: boolean\n\t}\n\n\texport type FieldType = RelationType | ColumnType\n\texport type Field<T extends FieldType> = {\n\t\treadonly type: T\n\t}\n\n\texport type AnyField = AnyColumn | AnyRelation\n\texport type AnyColumn<T extends ColumnType = ColumnType> = Column<T>\n\n\texport enum ColumnType {\n\t\tUuid = 'Uuid',\n\t\tString = 'String',\n\t\tInt = 'Integer',\n\t\tDouble = 'Double',\n\t\tBool = 'Bool',\n\t\tEnum = 'Enum',\n\t\tDateTime = 'DateTime',\n\t\tDate = 'Date',\n\t\tJson = 'Json',\n\t}\n\n\texport type Column<T extends ColumnType> = ColumnTypeDefinition<T> & {\n\t\treadonly name: string\n\t\treadonly columnName: string\n\t}\n\n\texport type ColumnTypeDefinition<T extends ColumnType = ColumnType> =\n\t\t& Field<T>\n\t\t& {\n\t\t\treadonly columnType: string\n\t\t\treadonly typeAlias?: string\n\t\t\treadonly nullable: boolean\n\t\t\treadonly default?:
|
|
1
|
+
{"version":3,"file":"model.js","sources":["../../../../../packages/schema/src/schema/model.ts"],"sourcesContent":["import { Input } from './input'\nimport { JSONValue } from './json'\n\nexport namespace Model {\n\n\texport type Entity = {\n\t\treadonly name: string\n\t\treadonly primary: string\n\t\treadonly primaryColumn: string\n\t\treadonly tableName: string\n\t\treadonly fields: { readonly [name: string]: AnyField }\n\t\treadonly unique: UniqueConstraints\n\t\treadonly indexes: Indexes\n\t\treadonly view?: View\n\t\treadonly eventLog: EventLogConfig\n\t\treadonly orderBy?: readonly OrderBy[]\n\t}\n\n\texport type View = {\n\t\treadonly sql: string\n\t\treadonly dependencies?: readonly string[]\n\t}\n\n\texport type EventLogConfig = {\n\t\treadonly enabled: boolean\n\t}\n\n\texport type FieldType = RelationType | ColumnType\n\texport type Field<T extends FieldType> = {\n\t\treadonly type: T\n\t}\n\n\texport type AnyField = AnyColumn | AnyRelation\n\texport type AnyColumn<T extends ColumnType = ColumnType> = Column<T>\n\n\texport enum ColumnType {\n\t\tUuid = 'Uuid',\n\t\tString = 'String',\n\t\tInt = 'Integer',\n\t\tDouble = 'Double',\n\t\tBool = 'Bool',\n\t\tEnum = 'Enum',\n\t\tDateTime = 'DateTime',\n\t\tDate = 'Date',\n\t\tTime = 'Time',\n\t\tJson = 'Json',\n\t}\n\n\texport type Column<T extends ColumnType> = ColumnTypeDefinition<T> & {\n\t\treadonly name: string\n\t\treadonly columnName: string\n\t}\n\n\texport type ColumnTypeDefinition<T extends ColumnType = ColumnType> =\n\t\t& Field<T>\n\t\t& {\n\t\t\treadonly columnType: string\n\t\t\treadonly list?: boolean\n\t\t\treadonly typeAlias?: string\n\t\t\treadonly nullable: boolean\n\t\t\treadonly default?: JSONValue\n\t\t\treadonly sequence?: {\n\t\t\t\treadonly precedence: 'ALWAYS' | 'BY DEFAULT'\n\t\t\t\treadonly start?: number\n\t\t\t}\n\t\t}\n\n\n\texport enum RelationType {\n\t\tOneHasOne = 'OneHasOne',\n\t\tOneHasMany = 'OneHasMany',\n\t\tManyHasOne = 'ManyHasOne',\n\t\tManyHasMany = 'ManyHasMany',\n\t}\n\n\texport type AnyInverseRelation =\n\t\t| OneHasManyRelation\n\t\t| OneHasOneInverseRelation\n\t\t| ManyHasManyInverseRelation\n\n\t/** @deprecated */\n\texport type AnyInversedRelation = AnyInverseRelation\n\n\texport type AnyOwningRelation =\n\t\t| ManyHasOneRelation\n\t\t| OneHasOneOwningRelation\n\t\t| ManyHasManyOwningRelation\n\n\texport type AnyRelation = AnyInverseRelation | AnyOwningRelation\n\n\texport type Relation<T extends RelationType = RelationType>=\n\t\t& Field<T>\n\t\t& {\n\t\t\treadonly name: string\n\t\t\treadonly type: T\n\t\t\treadonly target: string\n\t\t}\n\n\texport type InverseRelation =\n\t\t& Relation\n\t\t& {\n\t\t\treadonly ownedBy: string\n\t\t}\n\n\t/** @deprecated */\n\texport type InversedRelation = InverseRelation\n\n\texport type OwningRelation =\n\t\t& Relation\n\t\t& {\n\t\t\treadonly inversedBy?: string\n\t\t}\n\n\t/** @deprecated */\n\texport type OwnerRelation = OwningRelation\n\n\texport enum OnDelete {\n\t\tcascade = 'cascade',\n\t\trestrict = 'restrict',\n\t\tsetNull = 'set null',\n\t}\n\n\texport type JoiningColumn = {\n\t\treadonly columnName: string\n\t\treadonly onDelete: OnDelete\n\t}\n\n\texport type JoiningColumnRelation = {\n\t\treadonly joiningColumn: JoiningColumn\n\t}\n\n\texport type NullableRelation = {\n\t\treadonly nullable: boolean\n\t}\n\n\texport type JoiningTable = {\n\t\treadonly tableName: string\n\t\treadonly joiningColumn: JoiningColumn\n\t\treadonly inverseJoiningColumn: JoiningColumn\n\t\treadonly eventLog: EventLogConfig\n\t}\n\n\texport type JoiningTableRelation = {\n\t\treadonly joiningTable: JoiningTable\n\t}\n\n\texport import OrderDirection = Input.OrderDirection\n\texport type OrderBy = {\n\t\treadonly path: readonly string[]\n\t\treadonly direction: OrderDirection\n\t}\n\n\texport type OrderableRelation = {\n\t\treadonly orderBy?: readonly OrderBy[]\n\t}\n\n\texport type OneHasManyRelation =\n\t\t& Relation<RelationType.OneHasMany>\n\t\t& InverseRelation\n\t\t& OrderableRelation\n\n\texport type ManyHasOneRelation =\n\t\t& Relation<RelationType.ManyHasOne>\n\t\t& OwningRelation\n\t\t& JoiningColumnRelation\n\t\t& NullableRelation\n\n\texport type OneHasOneInverseRelation =\n\t\t& Relation<RelationType.OneHasOne>\n\t\t& InverseRelation\n\t\t& NullableRelation\n\t/** @deprecated */\n\texport type OneHasOneInversedRelation = OneHasOneInverseRelation\n\n\texport type OneHasOneOwningRelation =\n\t\t& Relation<RelationType.OneHasOne>\n\t\t& OwningRelation\n\t\t& JoiningColumnRelation\n\t\t& NullableRelation\n\t\t& {\n\t\t\treadonly orphanRemoval?: true\n\t\t}\n\t/** @deprecated */\n\texport type OneHasOneOwnerRelation = OneHasOneOwningRelation\n\n\texport type ManyHasManyInverseRelation =\n\t\t& Relation<RelationType.ManyHasMany>\n\t\t& InverseRelation\n\t\t& OrderableRelation\n\t/** @deprecated */\n\texport type ManyHasManyInversedRelation = ManyHasManyInverseRelation\n\n\texport type ManyHasManyOwningRelation =\n\t\t& Relation<RelationType.ManyHasMany>\n\t\t& OwningRelation\n\t\t& JoiningTableRelation\n\t\t& OrderableRelation\n\t/** @deprecated */\n\texport type ManyHasManyOwnerRelation = ManyHasManyOwningRelation\n\n\texport type Schema = {\n\t\treadonly enums: { readonly [name: string]: readonly string[] }\n\t\treadonly entities: { readonly [name: string]: Entity }\n\t}\n\n\texport type UniqueConstraints = readonly UniqueConstraint[]\n\n\texport type ConstraintTiming = 'deferrable' | 'deferred'\n\texport type UniqueConstraint = {\n\t\treadonly fields: readonly string[]\n\t\treadonly timing?: ConstraintTiming // empty means not deferrable\n\t\treadonly name?: string\n\t}\n\n\texport type Indexes = readonly Index[]\n\n\texport type Index = {\n\t\treadonly fields: readonly string[]\n\t\treadonly name?: string\n\t}\n\n\n\texport interface ColumnContext {\n\t\tentity: Model.Entity\n\t\tcolumn: Model.AnyColumn\n\t}\n\n\texport type AnyHasManyRelationContext =\n\t\t| ManyHasManyInverseContext\n\t\t| ManyHasManyOwningContext\n\t\t| OneHasManyContext\n\n\texport type AnyHasOneRelationContext =\n\t\t| ManyHasOneContext\n\t\t| OneHasOneOwningContext\n\t\t| OneHasOneInverseContext\n\n\texport type AnyRelationContext =\n\t\t| AnyHasManyRelationContext\n\t\t| AnyHasOneRelationContext\n\n\texport type AnyFieldContext =\n\t\t| ColumnContext\n\t\t| AnyRelationContext\n\n\texport interface ManyHasManyInverseContext {\n\t\ttype: 'manyHasManyInverse'\n\t\tentity: Model.Entity\n\t\trelation: Model.ManyHasManyInverseRelation\n\t\ttargetEntity: Model.Entity\n\t\ttargetRelation: Model.ManyHasManyOwningRelation\n\t}\n\n\texport interface ManyHasManyOwningContext {\n\t\ttype: 'manyHasManyOwning'\n\t\tentity: Model.Entity\n\t\trelation: Model.ManyHasManyOwningRelation\n\t\ttargetEntity: Model.Entity\n\t\ttargetRelation: Model.ManyHasManyInverseRelation | null\n\t}\n\n\texport interface ManyHasOneContext {\n\t\ttype: 'manyHasOne'\n\t\tentity: Model.Entity\n\t\trelation: Model.ManyHasOneRelation\n\t\ttargetEntity: Model.Entity\n\t\ttargetRelation: Model.OneHasManyRelation | null\n\t}\n\n\texport interface OneHasManyContext {\n\t\ttype: 'oneHasMany'\n\t\tentity: Model.Entity\n\t\trelation: Model.OneHasManyRelation\n\t\ttargetEntity: Model.Entity\n\t\ttargetRelation: Model.ManyHasOneRelation\n\t}\n\n\texport interface OneHasOneInverseContext {\n\t\ttype: 'oneHasOneInverse'\n\t\tentity: Model.Entity\n\t\trelation: Model.OneHasOneInverseRelation\n\t\ttargetEntity: Model.Entity\n\t\ttargetRelation: Model.OneHasOneOwningRelation\n\t}\n\n\texport interface OneHasOneOwningContext {\n\t\ttype: 'oneHasOneOwning'\n\t\tentity: Model.Entity\n\t\trelation: Model.OneHasOneOwningRelation\n\t\ttargetEntity: Model.Entity\n\t\ttargetRelation: Model.OneHasOneInverseRelation | null\n\t}\n\n\n\texport interface ColumnVisitor<T> {\n\t\tvisitColumn(context: ColumnContext): T\n\t}\n\n\texport interface RelationVisitor<T> {\n\t\tvisitRelation(context: AnyRelationContext): T\n\t}\n\n\texport type FieldVisitor<T> =\n\t\t& ColumnVisitor<T>\n\t\t& (\n\t\t\t| RelationVisitor<T>\n\t\t\t| RelationByTypeVisitor<T>\n\t\t\t| RelationByGenericTypeVisitor<T>\n\t\t)\n\n\texport interface RelationByTypeVisitor<T> {\n\t\tvisitManyHasOne(context: ManyHasOneContext): T\n\n\t\tvisitOneHasMany(context: OneHasManyContext): T\n\n\t\tvisitOneHasOneOwning(context: OneHasOneOwningContext): T\n\n\t\tvisitOneHasOneInverse(context: OneHasOneInverseContext): T\n\n\t\tvisitManyHasManyOwning(context: ManyHasManyOwningContext): T\n\n\t\tvisitManyHasManyInverse(context: ManyHasManyInverseContext): T\n\t}\n\n\texport interface RelationByGenericTypeVisitor<T> {\n\t\tvisitHasMany(context: AnyHasManyRelationContext): T\n\n\t\tvisitHasOne(context: AnyHasOneRelationContext): T\n\t}\n}\n"],"names":["Model","ColumnType","RelationType","OnDelete"],"mappings":";AAGiB,IAAA;AAAA,CAAV,CAAUA,WAAV;AAgCC,GAAA,CAAKC,gBAAL;AACNA,gBAAA,MAAO,IAAA;AACPA,gBAAA,QAAS,IAAA;AACTA,gBAAA,KAAM,IAAA;AACNA,gBAAA,QAAS,IAAA;AACTA,gBAAA,MAAO,IAAA;AACPA,gBAAA,MAAO,IAAA;AACPA,gBAAA,UAAW,IAAA;AACXA,gBAAA,MAAO,IAAA;AACPA,gBAAA,MAAO,IAAA;AACPA,gBAAA,MAAO,IAAA;AAAA,EAVI,GAAAD,OAAA,eAAAA,OAAA,aAAA,CAAA,EAAA;AAiCL,GAAA,CAAKE,kBAAL;AACNA,kBAAA,WAAY,IAAA;AACZA,kBAAA,YAAa,IAAA;AACbA,kBAAA,YAAa,IAAA;AACbA,kBAAA,aAAc,IAAA;AAAA,EAJH,GAAAF,OAAA,iBAAAA,OAAA,eAAA,CAAA,EAAA;AAgDL,GAAA,CAAKG,cAAL;AACNA,cAAA,SAAU,IAAA;AACVA,cAAA,UAAW,IAAA;AACXA,cAAA,SAAU,IAAA;AAAA,EAHC,GAAAH,OAAA,aAAAA,OAAA,WAAA,CAAA,EAAA;AA8BEA,SAAA,iBAAiB,MAAM;AAAA,GA/IrB,UAAA,QAAA,CAAA,EAAA;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"input.cjs","sources":["../../../../../packages/schema/src/schema/input.ts"],"sourcesContent":["import { Value } from './value'\n\nexport namespace Input {\n\texport type PrimaryValue<E = never> = Value.PrimaryValue<E>\n\texport type ColumnValue<E = never> = Value.FieldValue<E>\n\n\texport enum UpdateRelationOperation {\n\t\tconnect = 'connect',\n\t\tdisconnect = 'disconnect',\n\t\tcreate = 'create',\n\t\tconnectOrCreate = 'connectOrCreate',\n\t\tupdate = 'update',\n\t\tupsert = 'upsert',\n\t\tdelete = 'delete',\n\t}\n\n\texport enum CreateRelationOperation {\n\t\tconnect = 'connect',\n\t\tcreate = 'create',\n\t\tconnectOrCreate = 'connectOrCreate',\n\t}\n\n\texport interface ConnectRelationInput<E = never> {\n\t\tconnect: UniqueWhere<E>\n\t}\n\n\texport interface CreateRelationInput<E = never> {\n\t\tcreate: CreateDataInput<E>\n\t}\n\n\texport interface ConnectOrCreateInput<E = never> {\n\t\tconnect: UniqueWhere<E>\n\t\tcreate: CreateDataInput<E>\n\t}\n\n\texport interface ConnectOrCreateRelationInput<E = never> {\n\t\tconnectOrCreate: ConnectOrCreateInput<E>\n\t}\n\n\texport interface DisconnectSpecifiedRelationInput<E = never> {\n\t\tdisconnect: UniqueWhere<E>\n\t}\n\n\texport interface DeleteSpecifiedRelationInput<E = never> {\n\t\tdelete: UniqueWhere<E>\n\t}\n\n\texport interface UpdateSpecifiedRelationInput<E = never> {\n\t\tupdate: { by: UniqueWhere<E>; data: UpdateDataInput<E> }\n\t}\n\n\texport interface UpsertSpecifiedRelationInput<E = never> {\n\t\tupsert: { by: UniqueWhere<E>; update: UpdateDataInput<E>; create: CreateDataInput<E> }\n\t}\n\n\texport interface DisconnectRelationInput {\n\t\tdisconnect: true\n\t}\n\n\texport interface UpdateRelationInput<E = never> {\n\t\tupdate: UpdateDataInput<E>\n\t}\n\n\texport interface DeleteRelationInput {\n\t\tdelete: true\n\t}\n\n\texport interface UpsertRelationInput<E = never> {\n\t\tupsert: { update: UpdateDataInput<E>; create: CreateDataInput<E> }\n\t}\n\n\texport interface CreateDataInput<E = never> {\n\t\t[column: string]: Value.FieldValue<E> | CreateOneRelationInput<E> | CreateManyRelationInput<E>\n\t}\n\n\texport type CreateOneRelationInput<E = never> = { alias?: string } & (\n\t\t| ConnectRelationInput<E>\n\t\t| CreateRelationInput<E>\n\t\t| ConnectOrCreateRelationInput<E>\n\t)\n\n\texport type CreateManyRelationInput<E = never> = Array<CreateOneRelationInput<E>>\n\n\texport interface UpdateDataInput<E = never> {\n\t\t[column: string]: Value.FieldValue<E> | UpdateOneRelationInput<E> | UpdateManyRelationInput<E>\n\t}\n\n\texport interface UpdateInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t\tdata: UpdateDataInput<E>\n\t}\n\n\texport interface UpsertInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t\tupdate: UpdateDataInput<E>\n\t\tcreate: CreateDataInput<E>\n\t}\n\n\texport interface CreateInput<E = never> {\n\t\tdata: CreateDataInput<E>\n\t}\n\n\texport interface DeleteInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t}\n\n\texport interface UniqueQueryInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t}\n\n\texport interface ListQueryInput<E = never> {\n\t\tfilter?: OptionalWhere<E>\n\t\torderBy?: OrderBy[]\n\t\toffset?: number\n\t\tlimit?: number\n\t}\n\n\texport interface PaginationQueryInput<E = never> {\n\t\tfilter?: OptionalWhere<E>\n\t\torderBy?: OrderBy[]\n\t\tskip?: number\n\t\tfirst?: number\n\t}\n\n\t/** @deprecated */\n\texport type SelectQueryInput<E = never> = PaginationQueryInput<E>\n\n\texport type UpdateOneRelationInput<E = never> =\n\t\t| CreateRelationInput<E>\n\t\t| ConnectRelationInput<E>\n\t\t| ConnectOrCreateRelationInput<E>\n\t\t| DeleteRelationInput\n\t\t| DisconnectRelationInput\n\t\t| UpdateRelationInput<E>\n\t\t| UpsertRelationInput<E>\n\n\texport type UpdateManyRelationInputItem<E = never> = { alias?: string } & (\n\t\t| CreateRelationInput<E>\n\t\t| ConnectRelationInput<E>\n\t\t| ConnectOrCreateRelationInput<E>\n\t\t| DeleteSpecifiedRelationInput<E>\n\t\t| DisconnectSpecifiedRelationInput<E>\n\t\t| UpdateSpecifiedRelationInput<E>\n\t\t| UpsertSpecifiedRelationInput<E>\n\t)\n\n\texport type UpdateManyRelationInput<E = never> = Array<UpdateManyRelationInputItem<E>>\n\n\texport enum OrderDirection {\n\t\tasc = 'asc',\n\t\tascNullsFirst = 'ascNullsFirst',\n\t\tdesc = 'desc',\n\t\tdescNullsLast = 'descNullsLast',\n\n\t\t/* eslint-disable @typescript-eslint/no-duplicate-enum-values */\n\t\t/** @deprecated use ascNullsFirst*/\n\t\tascNullFirst = 'ascNullsFirst',\n\t\t/* eslint-enable @typescript-eslint/no-duplicate-enum-values */\n\t}\n\n\t// generics required by admin\n\texport type FieldOrderBy<T = OrderDirection> = T | OrderBy<T>\n\n\texport interface OrderByFields<T = OrderDirection> {\n\t\t[fieldName: string]: FieldOrderBy<T>\n\t}\n\n\texport type OrderBy<T = OrderDirection> = OrderByFields<T> & { _random?: boolean; _randomSeeded?: number }\n\n\texport type Condition<T = Value.FieldValue> = {\n\t\treadonly and?: readonly Condition<T>[]\n\t\treadonly or?: readonly Condition<T>[]\n\t\treadonly not?: Condition<T>\n\t\
|
|
1
|
+
{"version":3,"file":"input.cjs","sources":["../../../../../packages/schema/src/schema/input.ts"],"sourcesContent":["import { Value } from './value'\n\nexport namespace Input {\n\texport type PrimaryValue<E = never> = Value.PrimaryValue<E>\n\texport type ColumnValue<E = never> = Value.FieldValue<E>\n\n\texport enum UpdateRelationOperation {\n\t\tconnect = 'connect',\n\t\tdisconnect = 'disconnect',\n\t\tcreate = 'create',\n\t\tconnectOrCreate = 'connectOrCreate',\n\t\tupdate = 'update',\n\t\tupsert = 'upsert',\n\t\tdelete = 'delete',\n\t}\n\n\texport enum CreateRelationOperation {\n\t\tconnect = 'connect',\n\t\tcreate = 'create',\n\t\tconnectOrCreate = 'connectOrCreate',\n\t}\n\n\texport interface ConnectRelationInput<E = never> {\n\t\tconnect: UniqueWhere<E>\n\t}\n\n\texport interface CreateRelationInput<E = never> {\n\t\tcreate: CreateDataInput<E>\n\t}\n\n\texport interface ConnectOrCreateInput<E = never> {\n\t\tconnect: UniqueWhere<E>\n\t\tcreate: CreateDataInput<E>\n\t}\n\n\texport interface ConnectOrCreateRelationInput<E = never> {\n\t\tconnectOrCreate: ConnectOrCreateInput<E>\n\t}\n\n\texport interface DisconnectSpecifiedRelationInput<E = never> {\n\t\tdisconnect: UniqueWhere<E>\n\t}\n\n\texport interface DeleteSpecifiedRelationInput<E = never> {\n\t\tdelete: UniqueWhere<E>\n\t}\n\n\texport interface UpdateSpecifiedRelationInput<E = never> {\n\t\tupdate: { by: UniqueWhere<E>; data: UpdateDataInput<E> }\n\t}\n\n\texport interface UpsertSpecifiedRelationInput<E = never> {\n\t\tupsert: { by: UniqueWhere<E>; update: UpdateDataInput<E>; create: CreateDataInput<E> }\n\t}\n\n\texport interface DisconnectRelationInput {\n\t\tdisconnect: true\n\t}\n\n\texport interface UpdateRelationInput<E = never> {\n\t\tupdate: UpdateDataInput<E>\n\t}\n\n\texport interface DeleteRelationInput {\n\t\tdelete: true\n\t}\n\n\texport interface UpsertRelationInput<E = never> {\n\t\tupsert: { update: UpdateDataInput<E>; create: CreateDataInput<E> }\n\t}\n\n\texport interface CreateDataInput<E = never> {\n\t\t[column: string]: Value.FieldValue<E> | CreateOneRelationInput<E> | CreateManyRelationInput<E>\n\t}\n\n\texport type CreateOneRelationInput<E = never> = { alias?: string } & (\n\t\t| ConnectRelationInput<E>\n\t\t| CreateRelationInput<E>\n\t\t| ConnectOrCreateRelationInput<E>\n\t)\n\n\texport type CreateManyRelationInput<E = never> = Array<CreateOneRelationInput<E>>\n\n\texport interface UpdateDataInput<E = never> {\n\t\t[column: string]: Value.FieldValue<E> | UpdateOneRelationInput<E> | UpdateManyRelationInput<E>\n\t}\n\n\texport interface UpdateInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t\tdata: UpdateDataInput<E>\n\t}\n\n\texport interface UpsertInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t\tupdate: UpdateDataInput<E>\n\t\tcreate: CreateDataInput<E>\n\t}\n\n\texport interface CreateInput<E = never> {\n\t\tdata: CreateDataInput<E>\n\t}\n\n\texport interface DeleteInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t}\n\n\texport interface UniqueQueryInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t}\n\n\texport interface ListQueryInput<E = never> {\n\t\tfilter?: OptionalWhere<E>\n\t\torderBy?: OrderBy[]\n\t\toffset?: number\n\t\tlimit?: number\n\t}\n\n\texport interface PaginationQueryInput<E = never> {\n\t\tfilter?: OptionalWhere<E>\n\t\torderBy?: OrderBy[]\n\t\tskip?: number\n\t\tfirst?: number\n\t}\n\n\t/** @deprecated */\n\texport type SelectQueryInput<E = never> = PaginationQueryInput<E>\n\n\texport type UpdateOneRelationInput<E = never> =\n\t\t| CreateRelationInput<E>\n\t\t| ConnectRelationInput<E>\n\t\t| ConnectOrCreateRelationInput<E>\n\t\t| DeleteRelationInput\n\t\t| DisconnectRelationInput\n\t\t| UpdateRelationInput<E>\n\t\t| UpsertRelationInput<E>\n\n\texport type UpdateManyRelationInputItem<E = never> = { alias?: string } & (\n\t\t| CreateRelationInput<E>\n\t\t| ConnectRelationInput<E>\n\t\t| ConnectOrCreateRelationInput<E>\n\t\t| DeleteSpecifiedRelationInput<E>\n\t\t| DisconnectSpecifiedRelationInput<E>\n\t\t| UpdateSpecifiedRelationInput<E>\n\t\t| UpsertSpecifiedRelationInput<E>\n\t)\n\n\texport type UpdateManyRelationInput<E = never> = Array<UpdateManyRelationInputItem<E>>\n\n\texport enum OrderDirection {\n\t\tasc = 'asc',\n\t\tascNullsFirst = 'ascNullsFirst',\n\t\tdesc = 'desc',\n\t\tdescNullsLast = 'descNullsLast',\n\n\t\t/* eslint-disable @typescript-eslint/no-duplicate-enum-values */\n\t\t/** @deprecated use ascNullsFirst*/\n\t\tascNullFirst = 'ascNullsFirst',\n\t\t/* eslint-enable @typescript-eslint/no-duplicate-enum-values */\n\t}\n\n\t// generics required by admin\n\texport type FieldOrderBy<T = OrderDirection> = T | OrderBy<T>\n\n\texport interface OrderByFields<T = OrderDirection> {\n\t\t[fieldName: string]: FieldOrderBy<T>\n\t}\n\n\texport type OrderBy<T = OrderDirection> = OrderByFields<T> & { _random?: boolean; _randomSeeded?: number }\n\n\texport type Condition<T = Value.FieldValue> = {\n\t\t// boolean\n\t\treadonly and?: readonly Condition<T>[]\n\t\treadonly or?: readonly Condition<T>[]\n\t\treadonly not?: Condition<T>\n\n\t\t// null\n\t\treadonly isNull?: boolean\n\n\t\t// basic\n\t\treadonly eq?: T\n\t\treadonly notEq?: T\n\t\treadonly in?: readonly T[]\n\t\treadonly notIn?: readonly T[]\n\t\treadonly lt?: T\n\t\treadonly lte?: T\n\t\treadonly gt?: T\n\t\treadonly gte?: T\n\n\t\t// array\n\t\treadonly minLength?: number\n\t\treadonly maxLength?: number\n\t\treadonly includes?: T\n\n\t\t// string only\n\t\treadonly contains?: string\n\t\treadonly startsWith?: string\n\t\treadonly endsWith?: string\n\t\treadonly containsCI?: string\n\t\treadonly startsWithCI?: string\n\t\treadonly endsWithCI?: string\n\n\t\t// special\n\t\treadonly never?: true\n\t\treadonly always?: true\n\n\t\t// deprecated\n\t\treadonly null?: boolean\n\t}\n\n\texport type UniqueWhere<E = never> = {\n\t\treadonly [field: string]: Value.PrimaryValue<E> | UniqueWhere<E>\n\t}\n\n\texport type ComposedWhere<C, Opt = never> = {\n\t\treadonly and?: (readonly (Where<C, Opt> | Opt)[]) | Opt\n\t\treadonly or?: (readonly (Where<C, Opt> | Opt)[]) | Opt\n\t\treadonly not?: Where<C, Opt> | Opt\n\t}\n\n\texport interface FieldWhere<C = Condition, Opt = never> {\n\t\treadonly [name: string]: Opt | C | Where<C, Opt> | readonly (Where<C, Opt> | Opt)[] //last one if for ComposedWhere\n\t}\n\n\texport type Where<C = Condition, Opt = never> = ComposedWhere<C, Opt> & FieldWhere<C, Opt>\n\n\texport type OptionalWhere<E = never> = Where<Condition<Value.FieldValue<E>>, null | undefined>\n\texport type OptionalFieldWhere<E = never> = FieldWhere<Condition<Value.FieldValue<E>>, null | undefined>\n\n\texport enum FieldMeta {\n\t\treadable = 'readable',\n\t\tupdatable = 'updatable',\n\t}\n}\n"],"names":["Input","UpdateRelationOperation","CreateRelationOperation","OrderDirection","FieldMeta"],"mappings":";;AAEiBA,QAAAA,QAAAA;AAAAA,CAAV,CAAUA,WAAV;AAIC,GAAA,CAAKC,6BAAL;AACNA,6BAAA,SAAU,IAAA;AACVA,6BAAA,YAAa,IAAA;AACbA,6BAAA,QAAS,IAAA;AACTA,6BAAA,iBAAkB,IAAA;AAClBA,6BAAA,QAAS,IAAA;AACTA,6BAAA,QAAS,IAAA;AACTA,6BAAA,QAAS,IAAA;AAAA,EAPE,GAAAD,OAAA,4BAAAA,OAAA,0BAAA,CAAA,EAAA;AAUL,GAAA,CAAKE,6BAAL;AACNA,6BAAA,SAAU,IAAA;AACVA,6BAAA,QAAS,IAAA;AACTA,6BAAA,iBAAkB,IAAA;AAAA,EAHP,GAAAF,OAAA,4BAAAA,OAAA,0BAAA,CAAA,EAAA;AAwIL,GAAA,CAAKG,oBAAL;AACNA,oBAAA,KAAM,IAAA;AACNA,oBAAA,eAAgB,IAAA;AAChBA,oBAAA,MAAO,IAAA;AACPA,oBAAA,eAAgB,IAAA;AAIhBA,oBAAA,cAAe,IAAA;AAAA,EARJ,GAAAH,OAAA,mBAAAA,OAAA,iBAAA,CAAA,EAAA;AAgFL,GAAA,CAAKI,eAAL;AACNA,eAAA,UAAW,IAAA;AACXA,eAAA,WAAY,IAAA;AAAA,EAFD,GAAAJ,OAAA,cAAAA,OAAA,YAAA,CAAA,EAAA;AAAA,GAtOIA,QAAA,UAAAA,gBAAA,CAAA,EAAA;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"input.js","sources":["../../../../../packages/schema/src/schema/input.ts"],"sourcesContent":["import { Value } from './value'\n\nexport namespace Input {\n\texport type PrimaryValue<E = never> = Value.PrimaryValue<E>\n\texport type ColumnValue<E = never> = Value.FieldValue<E>\n\n\texport enum UpdateRelationOperation {\n\t\tconnect = 'connect',\n\t\tdisconnect = 'disconnect',\n\t\tcreate = 'create',\n\t\tconnectOrCreate = 'connectOrCreate',\n\t\tupdate = 'update',\n\t\tupsert = 'upsert',\n\t\tdelete = 'delete',\n\t}\n\n\texport enum CreateRelationOperation {\n\t\tconnect = 'connect',\n\t\tcreate = 'create',\n\t\tconnectOrCreate = 'connectOrCreate',\n\t}\n\n\texport interface ConnectRelationInput<E = never> {\n\t\tconnect: UniqueWhere<E>\n\t}\n\n\texport interface CreateRelationInput<E = never> {\n\t\tcreate: CreateDataInput<E>\n\t}\n\n\texport interface ConnectOrCreateInput<E = never> {\n\t\tconnect: UniqueWhere<E>\n\t\tcreate: CreateDataInput<E>\n\t}\n\n\texport interface ConnectOrCreateRelationInput<E = never> {\n\t\tconnectOrCreate: ConnectOrCreateInput<E>\n\t}\n\n\texport interface DisconnectSpecifiedRelationInput<E = never> {\n\t\tdisconnect: UniqueWhere<E>\n\t}\n\n\texport interface DeleteSpecifiedRelationInput<E = never> {\n\t\tdelete: UniqueWhere<E>\n\t}\n\n\texport interface UpdateSpecifiedRelationInput<E = never> {\n\t\tupdate: { by: UniqueWhere<E>; data: UpdateDataInput<E> }\n\t}\n\n\texport interface UpsertSpecifiedRelationInput<E = never> {\n\t\tupsert: { by: UniqueWhere<E>; update: UpdateDataInput<E>; create: CreateDataInput<E> }\n\t}\n\n\texport interface DisconnectRelationInput {\n\t\tdisconnect: true\n\t}\n\n\texport interface UpdateRelationInput<E = never> {\n\t\tupdate: UpdateDataInput<E>\n\t}\n\n\texport interface DeleteRelationInput {\n\t\tdelete: true\n\t}\n\n\texport interface UpsertRelationInput<E = never> {\n\t\tupsert: { update: UpdateDataInput<E>; create: CreateDataInput<E> }\n\t}\n\n\texport interface CreateDataInput<E = never> {\n\t\t[column: string]: Value.FieldValue<E> | CreateOneRelationInput<E> | CreateManyRelationInput<E>\n\t}\n\n\texport type CreateOneRelationInput<E = never> = { alias?: string } & (\n\t\t| ConnectRelationInput<E>\n\t\t| CreateRelationInput<E>\n\t\t| ConnectOrCreateRelationInput<E>\n\t)\n\n\texport type CreateManyRelationInput<E = never> = Array<CreateOneRelationInput<E>>\n\n\texport interface UpdateDataInput<E = never> {\n\t\t[column: string]: Value.FieldValue<E> | UpdateOneRelationInput<E> | UpdateManyRelationInput<E>\n\t}\n\n\texport interface UpdateInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t\tdata: UpdateDataInput<E>\n\t}\n\n\texport interface UpsertInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t\tupdate: UpdateDataInput<E>\n\t\tcreate: CreateDataInput<E>\n\t}\n\n\texport interface CreateInput<E = never> {\n\t\tdata: CreateDataInput<E>\n\t}\n\n\texport interface DeleteInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t}\n\n\texport interface UniqueQueryInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t}\n\n\texport interface ListQueryInput<E = never> {\n\t\tfilter?: OptionalWhere<E>\n\t\torderBy?: OrderBy[]\n\t\toffset?: number\n\t\tlimit?: number\n\t}\n\n\texport interface PaginationQueryInput<E = never> {\n\t\tfilter?: OptionalWhere<E>\n\t\torderBy?: OrderBy[]\n\t\tskip?: number\n\t\tfirst?: number\n\t}\n\n\t/** @deprecated */\n\texport type SelectQueryInput<E = never> = PaginationQueryInput<E>\n\n\texport type UpdateOneRelationInput<E = never> =\n\t\t| CreateRelationInput<E>\n\t\t| ConnectRelationInput<E>\n\t\t| ConnectOrCreateRelationInput<E>\n\t\t| DeleteRelationInput\n\t\t| DisconnectRelationInput\n\t\t| UpdateRelationInput<E>\n\t\t| UpsertRelationInput<E>\n\n\texport type UpdateManyRelationInputItem<E = never> = { alias?: string } & (\n\t\t| CreateRelationInput<E>\n\t\t| ConnectRelationInput<E>\n\t\t| ConnectOrCreateRelationInput<E>\n\t\t| DeleteSpecifiedRelationInput<E>\n\t\t| DisconnectSpecifiedRelationInput<E>\n\t\t| UpdateSpecifiedRelationInput<E>\n\t\t| UpsertSpecifiedRelationInput<E>\n\t)\n\n\texport type UpdateManyRelationInput<E = never> = Array<UpdateManyRelationInputItem<E>>\n\n\texport enum OrderDirection {\n\t\tasc = 'asc',\n\t\tascNullsFirst = 'ascNullsFirst',\n\t\tdesc = 'desc',\n\t\tdescNullsLast = 'descNullsLast',\n\n\t\t/* eslint-disable @typescript-eslint/no-duplicate-enum-values */\n\t\t/** @deprecated use ascNullsFirst*/\n\t\tascNullFirst = 'ascNullsFirst',\n\t\t/* eslint-enable @typescript-eslint/no-duplicate-enum-values */\n\t}\n\n\t// generics required by admin\n\texport type FieldOrderBy<T = OrderDirection> = T | OrderBy<T>\n\n\texport interface OrderByFields<T = OrderDirection> {\n\t\t[fieldName: string]: FieldOrderBy<T>\n\t}\n\n\texport type OrderBy<T = OrderDirection> = OrderByFields<T> & { _random?: boolean; _randomSeeded?: number }\n\n\texport type Condition<T = Value.FieldValue> = {\n\t\treadonly and?: readonly Condition<T>[]\n\t\treadonly or?: readonly Condition<T>[]\n\t\treadonly not?: Condition<T>\n\t\
|
|
1
|
+
{"version":3,"file":"input.js","sources":["../../../../../packages/schema/src/schema/input.ts"],"sourcesContent":["import { Value } from './value'\n\nexport namespace Input {\n\texport type PrimaryValue<E = never> = Value.PrimaryValue<E>\n\texport type ColumnValue<E = never> = Value.FieldValue<E>\n\n\texport enum UpdateRelationOperation {\n\t\tconnect = 'connect',\n\t\tdisconnect = 'disconnect',\n\t\tcreate = 'create',\n\t\tconnectOrCreate = 'connectOrCreate',\n\t\tupdate = 'update',\n\t\tupsert = 'upsert',\n\t\tdelete = 'delete',\n\t}\n\n\texport enum CreateRelationOperation {\n\t\tconnect = 'connect',\n\t\tcreate = 'create',\n\t\tconnectOrCreate = 'connectOrCreate',\n\t}\n\n\texport interface ConnectRelationInput<E = never> {\n\t\tconnect: UniqueWhere<E>\n\t}\n\n\texport interface CreateRelationInput<E = never> {\n\t\tcreate: CreateDataInput<E>\n\t}\n\n\texport interface ConnectOrCreateInput<E = never> {\n\t\tconnect: UniqueWhere<E>\n\t\tcreate: CreateDataInput<E>\n\t}\n\n\texport interface ConnectOrCreateRelationInput<E = never> {\n\t\tconnectOrCreate: ConnectOrCreateInput<E>\n\t}\n\n\texport interface DisconnectSpecifiedRelationInput<E = never> {\n\t\tdisconnect: UniqueWhere<E>\n\t}\n\n\texport interface DeleteSpecifiedRelationInput<E = never> {\n\t\tdelete: UniqueWhere<E>\n\t}\n\n\texport interface UpdateSpecifiedRelationInput<E = never> {\n\t\tupdate: { by: UniqueWhere<E>; data: UpdateDataInput<E> }\n\t}\n\n\texport interface UpsertSpecifiedRelationInput<E = never> {\n\t\tupsert: { by: UniqueWhere<E>; update: UpdateDataInput<E>; create: CreateDataInput<E> }\n\t}\n\n\texport interface DisconnectRelationInput {\n\t\tdisconnect: true\n\t}\n\n\texport interface UpdateRelationInput<E = never> {\n\t\tupdate: UpdateDataInput<E>\n\t}\n\n\texport interface DeleteRelationInput {\n\t\tdelete: true\n\t}\n\n\texport interface UpsertRelationInput<E = never> {\n\t\tupsert: { update: UpdateDataInput<E>; create: CreateDataInput<E> }\n\t}\n\n\texport interface CreateDataInput<E = never> {\n\t\t[column: string]: Value.FieldValue<E> | CreateOneRelationInput<E> | CreateManyRelationInput<E>\n\t}\n\n\texport type CreateOneRelationInput<E = never> = { alias?: string } & (\n\t\t| ConnectRelationInput<E>\n\t\t| CreateRelationInput<E>\n\t\t| ConnectOrCreateRelationInput<E>\n\t)\n\n\texport type CreateManyRelationInput<E = never> = Array<CreateOneRelationInput<E>>\n\n\texport interface UpdateDataInput<E = never> {\n\t\t[column: string]: Value.FieldValue<E> | UpdateOneRelationInput<E> | UpdateManyRelationInput<E>\n\t}\n\n\texport interface UpdateInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t\tdata: UpdateDataInput<E>\n\t}\n\n\texport interface UpsertInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t\tupdate: UpdateDataInput<E>\n\t\tcreate: CreateDataInput<E>\n\t}\n\n\texport interface CreateInput<E = never> {\n\t\tdata: CreateDataInput<E>\n\t}\n\n\texport interface DeleteInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t}\n\n\texport interface UniqueQueryInput<E = never> {\n\t\tby: UniqueWhere<E>\n\t\tfilter?: OptionalWhere<E>\n\t}\n\n\texport interface ListQueryInput<E = never> {\n\t\tfilter?: OptionalWhere<E>\n\t\torderBy?: OrderBy[]\n\t\toffset?: number\n\t\tlimit?: number\n\t}\n\n\texport interface PaginationQueryInput<E = never> {\n\t\tfilter?: OptionalWhere<E>\n\t\torderBy?: OrderBy[]\n\t\tskip?: number\n\t\tfirst?: number\n\t}\n\n\t/** @deprecated */\n\texport type SelectQueryInput<E = never> = PaginationQueryInput<E>\n\n\texport type UpdateOneRelationInput<E = never> =\n\t\t| CreateRelationInput<E>\n\t\t| ConnectRelationInput<E>\n\t\t| ConnectOrCreateRelationInput<E>\n\t\t| DeleteRelationInput\n\t\t| DisconnectRelationInput\n\t\t| UpdateRelationInput<E>\n\t\t| UpsertRelationInput<E>\n\n\texport type UpdateManyRelationInputItem<E = never> = { alias?: string } & (\n\t\t| CreateRelationInput<E>\n\t\t| ConnectRelationInput<E>\n\t\t| ConnectOrCreateRelationInput<E>\n\t\t| DeleteSpecifiedRelationInput<E>\n\t\t| DisconnectSpecifiedRelationInput<E>\n\t\t| UpdateSpecifiedRelationInput<E>\n\t\t| UpsertSpecifiedRelationInput<E>\n\t)\n\n\texport type UpdateManyRelationInput<E = never> = Array<UpdateManyRelationInputItem<E>>\n\n\texport enum OrderDirection {\n\t\tasc = 'asc',\n\t\tascNullsFirst = 'ascNullsFirst',\n\t\tdesc = 'desc',\n\t\tdescNullsLast = 'descNullsLast',\n\n\t\t/* eslint-disable @typescript-eslint/no-duplicate-enum-values */\n\t\t/** @deprecated use ascNullsFirst*/\n\t\tascNullFirst = 'ascNullsFirst',\n\t\t/* eslint-enable @typescript-eslint/no-duplicate-enum-values */\n\t}\n\n\t// generics required by admin\n\texport type FieldOrderBy<T = OrderDirection> = T | OrderBy<T>\n\n\texport interface OrderByFields<T = OrderDirection> {\n\t\t[fieldName: string]: FieldOrderBy<T>\n\t}\n\n\texport type OrderBy<T = OrderDirection> = OrderByFields<T> & { _random?: boolean; _randomSeeded?: number }\n\n\texport type Condition<T = Value.FieldValue> = {\n\t\t// boolean\n\t\treadonly and?: readonly Condition<T>[]\n\t\treadonly or?: readonly Condition<T>[]\n\t\treadonly not?: Condition<T>\n\n\t\t// null\n\t\treadonly isNull?: boolean\n\n\t\t// basic\n\t\treadonly eq?: T\n\t\treadonly notEq?: T\n\t\treadonly in?: readonly T[]\n\t\treadonly notIn?: readonly T[]\n\t\treadonly lt?: T\n\t\treadonly lte?: T\n\t\treadonly gt?: T\n\t\treadonly gte?: T\n\n\t\t// array\n\t\treadonly minLength?: number\n\t\treadonly maxLength?: number\n\t\treadonly includes?: T\n\n\t\t// string only\n\t\treadonly contains?: string\n\t\treadonly startsWith?: string\n\t\treadonly endsWith?: string\n\t\treadonly containsCI?: string\n\t\treadonly startsWithCI?: string\n\t\treadonly endsWithCI?: string\n\n\t\t// special\n\t\treadonly never?: true\n\t\treadonly always?: true\n\n\t\t// deprecated\n\t\treadonly null?: boolean\n\t}\n\n\texport type UniqueWhere<E = never> = {\n\t\treadonly [field: string]: Value.PrimaryValue<E> | UniqueWhere<E>\n\t}\n\n\texport type ComposedWhere<C, Opt = never> = {\n\t\treadonly and?: (readonly (Where<C, Opt> | Opt)[]) | Opt\n\t\treadonly or?: (readonly (Where<C, Opt> | Opt)[]) | Opt\n\t\treadonly not?: Where<C, Opt> | Opt\n\t}\n\n\texport interface FieldWhere<C = Condition, Opt = never> {\n\t\treadonly [name: string]: Opt | C | Where<C, Opt> | readonly (Where<C, Opt> | Opt)[] //last one if for ComposedWhere\n\t}\n\n\texport type Where<C = Condition, Opt = never> = ComposedWhere<C, Opt> & FieldWhere<C, Opt>\n\n\texport type OptionalWhere<E = never> = Where<Condition<Value.FieldValue<E>>, null | undefined>\n\texport type OptionalFieldWhere<E = never> = FieldWhere<Condition<Value.FieldValue<E>>, null | undefined>\n\n\texport enum FieldMeta {\n\t\treadable = 'readable',\n\t\tupdatable = 'updatable',\n\t}\n}\n"],"names":["Input","UpdateRelationOperation","CreateRelationOperation","OrderDirection","FieldMeta"],"mappings":"AAEiB,IAAA;AAAA,CAAV,CAAUA,WAAV;AAIC,GAAA,CAAKC,6BAAL;AACNA,6BAAA,SAAU,IAAA;AACVA,6BAAA,YAAa,IAAA;AACbA,6BAAA,QAAS,IAAA;AACTA,6BAAA,iBAAkB,IAAA;AAClBA,6BAAA,QAAS,IAAA;AACTA,6BAAA,QAAS,IAAA;AACTA,6BAAA,QAAS,IAAA;AAAA,EAPE,GAAAD,OAAA,4BAAAA,OAAA,0BAAA,CAAA,EAAA;AAUL,GAAA,CAAKE,6BAAL;AACNA,6BAAA,SAAU,IAAA;AACVA,6BAAA,QAAS,IAAA;AACTA,6BAAA,iBAAkB,IAAA;AAAA,EAHP,GAAAF,OAAA,4BAAAA,OAAA,0BAAA,CAAA,EAAA;AAwIL,GAAA,CAAKG,oBAAL;AACNA,oBAAA,KAAM,IAAA;AACNA,oBAAA,eAAgB,IAAA;AAChBA,oBAAA,MAAO,IAAA;AACPA,oBAAA,eAAgB,IAAA;AAIhBA,oBAAA,cAAe,IAAA;AAAA,EARJ,GAAAH,OAAA,mBAAAA,OAAA,iBAAA,CAAA,EAAA;AAgFL,GAAA,CAAKI,eAAL;AACNA,eAAA,UAAW,IAAA;AACXA,eAAA,WAAY,IAAA;AAAA,EAFD,GAAAJ,OAAA,cAAAA,OAAA,YAAA,CAAA,EAAA;AAAA,GAtOI,UAAA,QAAA,CAAA,EAAA;"}
|
|
@@ -12,6 +12,7 @@ exports.Model = void 0;
|
|
|
12
12
|
ColumnType2["Enum"] = "Enum";
|
|
13
13
|
ColumnType2["DateTime"] = "DateTime";
|
|
14
14
|
ColumnType2["Date"] = "Date";
|
|
15
|
+
ColumnType2["Time"] = "Time";
|
|
15
16
|
ColumnType2["Json"] = "Json";
|
|
16
17
|
})(Model2.ColumnType || (Model2.ColumnType = {}));
|
|
17
18
|
((RelationType2) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"model.cjs","sources":["../../../../../packages/schema/src/schema/model.ts"],"sourcesContent":["import { Input } from './input'\n\nexport namespace Model {\n\n\texport type Entity = {\n\t\treadonly name: string\n\t\treadonly primary: string\n\t\treadonly primaryColumn: string\n\t\treadonly tableName: string\n\t\treadonly fields: { readonly [name: string]: AnyField }\n\t\treadonly unique: UniqueConstraints\n\t\treadonly indexes: Indexes\n\t\treadonly view?: View\n\t\treadonly eventLog: EventLogConfig\n\t\treadonly orderBy?: readonly OrderBy[]\n\t}\n\n\texport type View = {\n\t\treadonly sql: string\n\t\treadonly dependencies?: readonly string[]\n\t}\n\n\texport type EventLogConfig = {\n\t\treadonly enabled: boolean\n\t}\n\n\texport type FieldType = RelationType | ColumnType\n\texport type Field<T extends FieldType> = {\n\t\treadonly type: T\n\t}\n\n\texport type AnyField = AnyColumn | AnyRelation\n\texport type AnyColumn<T extends ColumnType = ColumnType> = Column<T>\n\n\texport enum ColumnType {\n\t\tUuid = 'Uuid',\n\t\tString = 'String',\n\t\tInt = 'Integer',\n\t\tDouble = 'Double',\n\t\tBool = 'Bool',\n\t\tEnum = 'Enum',\n\t\tDateTime = 'DateTime',\n\t\tDate = 'Date',\n\t\tJson = 'Json',\n\t}\n\n\texport type Column<T extends ColumnType> = ColumnTypeDefinition<T> & {\n\t\treadonly name: string\n\t\treadonly columnName: string\n\t}\n\n\texport type ColumnTypeDefinition<T extends ColumnType = ColumnType> =\n\t\t& Field<T>\n\t\t& {\n\t\t\treadonly columnType: string\n\t\t\treadonly typeAlias?: string\n\t\t\treadonly nullable: boolean\n\t\t\treadonly default?:
|
|
1
|
+
{"version":3,"file":"model.cjs","sources":["../../../../../packages/schema/src/schema/model.ts"],"sourcesContent":["import { Input } from './input'\nimport { JSONValue } from './json'\n\nexport namespace Model {\n\n\texport type Entity = {\n\t\treadonly name: string\n\t\treadonly primary: string\n\t\treadonly primaryColumn: string\n\t\treadonly tableName: string\n\t\treadonly fields: { readonly [name: string]: AnyField }\n\t\treadonly unique: UniqueConstraints\n\t\treadonly indexes: Indexes\n\t\treadonly view?: View\n\t\treadonly eventLog: EventLogConfig\n\t\treadonly orderBy?: readonly OrderBy[]\n\t}\n\n\texport type View = {\n\t\treadonly sql: string\n\t\treadonly dependencies?: readonly string[]\n\t}\n\n\texport type EventLogConfig = {\n\t\treadonly enabled: boolean\n\t}\n\n\texport type FieldType = RelationType | ColumnType\n\texport type Field<T extends FieldType> = {\n\t\treadonly type: T\n\t}\n\n\texport type AnyField = AnyColumn | AnyRelation\n\texport type AnyColumn<T extends ColumnType = ColumnType> = Column<T>\n\n\texport enum ColumnType {\n\t\tUuid = 'Uuid',\n\t\tString = 'String',\n\t\tInt = 'Integer',\n\t\tDouble = 'Double',\n\t\tBool = 'Bool',\n\t\tEnum = 'Enum',\n\t\tDateTime = 'DateTime',\n\t\tDate = 'Date',\n\t\tTime = 'Time',\n\t\tJson = 'Json',\n\t}\n\n\texport type Column<T extends ColumnType> = ColumnTypeDefinition<T> & {\n\t\treadonly name: string\n\t\treadonly columnName: string\n\t}\n\n\texport type ColumnTypeDefinition<T extends ColumnType = ColumnType> =\n\t\t& Field<T>\n\t\t& {\n\t\t\treadonly columnType: string\n\t\t\treadonly list?: boolean\n\t\t\treadonly typeAlias?: string\n\t\t\treadonly nullable: boolean\n\t\t\treadonly default?: JSONValue\n\t\t\treadonly sequence?: {\n\t\t\t\treadonly precedence: 'ALWAYS' | 'BY DEFAULT'\n\t\t\t\treadonly start?: number\n\t\t\t}\n\t\t}\n\n\n\texport enum RelationType {\n\t\tOneHasOne = 'OneHasOne',\n\t\tOneHasMany = 'OneHasMany',\n\t\tManyHasOne = 'ManyHasOne',\n\t\tManyHasMany = 'ManyHasMany',\n\t}\n\n\texport type AnyInverseRelation =\n\t\t| OneHasManyRelation\n\t\t| OneHasOneInverseRelation\n\t\t| ManyHasManyInverseRelation\n\n\t/** @deprecated */\n\texport type AnyInversedRelation = AnyInverseRelation\n\n\texport type AnyOwningRelation =\n\t\t| ManyHasOneRelation\n\t\t| OneHasOneOwningRelation\n\t\t| ManyHasManyOwningRelation\n\n\texport type AnyRelation = AnyInverseRelation | AnyOwningRelation\n\n\texport type Relation<T extends RelationType = RelationType>=\n\t\t& Field<T>\n\t\t& {\n\t\t\treadonly name: string\n\t\t\treadonly type: T\n\t\t\treadonly target: string\n\t\t}\n\n\texport type InverseRelation =\n\t\t& Relation\n\t\t& {\n\t\t\treadonly ownedBy: string\n\t\t}\n\n\t/** @deprecated */\n\texport type InversedRelation = InverseRelation\n\n\texport type OwningRelation =\n\t\t& Relation\n\t\t& {\n\t\t\treadonly inversedBy?: string\n\t\t}\n\n\t/** @deprecated */\n\texport type OwnerRelation = OwningRelation\n\n\texport enum OnDelete {\n\t\tcascade = 'cascade',\n\t\trestrict = 'restrict',\n\t\tsetNull = 'set null',\n\t}\n\n\texport type JoiningColumn = {\n\t\treadonly columnName: string\n\t\treadonly onDelete: OnDelete\n\t}\n\n\texport type JoiningColumnRelation = {\n\t\treadonly joiningColumn: JoiningColumn\n\t}\n\n\texport type NullableRelation = {\n\t\treadonly nullable: boolean\n\t}\n\n\texport type JoiningTable = {\n\t\treadonly tableName: string\n\t\treadonly joiningColumn: JoiningColumn\n\t\treadonly inverseJoiningColumn: JoiningColumn\n\t\treadonly eventLog: EventLogConfig\n\t}\n\n\texport type JoiningTableRelation = {\n\t\treadonly joiningTable: JoiningTable\n\t}\n\n\texport import OrderDirection = Input.OrderDirection\n\texport type OrderBy = {\n\t\treadonly path: readonly string[]\n\t\treadonly direction: OrderDirection\n\t}\n\n\texport type OrderableRelation = {\n\t\treadonly orderBy?: readonly OrderBy[]\n\t}\n\n\texport type OneHasManyRelation =\n\t\t& Relation<RelationType.OneHasMany>\n\t\t& InverseRelation\n\t\t& OrderableRelation\n\n\texport type ManyHasOneRelation =\n\t\t& Relation<RelationType.ManyHasOne>\n\t\t& OwningRelation\n\t\t& JoiningColumnRelation\n\t\t& NullableRelation\n\n\texport type OneHasOneInverseRelation =\n\t\t& Relation<RelationType.OneHasOne>\n\t\t& InverseRelation\n\t\t& NullableRelation\n\t/** @deprecated */\n\texport type OneHasOneInversedRelation = OneHasOneInverseRelation\n\n\texport type OneHasOneOwningRelation =\n\t\t& Relation<RelationType.OneHasOne>\n\t\t& OwningRelation\n\t\t& JoiningColumnRelation\n\t\t& NullableRelation\n\t\t& {\n\t\t\treadonly orphanRemoval?: true\n\t\t}\n\t/** @deprecated */\n\texport type OneHasOneOwnerRelation = OneHasOneOwningRelation\n\n\texport type ManyHasManyInverseRelation =\n\t\t& Relation<RelationType.ManyHasMany>\n\t\t& InverseRelation\n\t\t& OrderableRelation\n\t/** @deprecated */\n\texport type ManyHasManyInversedRelation = ManyHasManyInverseRelation\n\n\texport type ManyHasManyOwningRelation =\n\t\t& Relation<RelationType.ManyHasMany>\n\t\t& OwningRelation\n\t\t& JoiningTableRelation\n\t\t& OrderableRelation\n\t/** @deprecated */\n\texport type ManyHasManyOwnerRelation = ManyHasManyOwningRelation\n\n\texport type Schema = {\n\t\treadonly enums: { readonly [name: string]: readonly string[] }\n\t\treadonly entities: { readonly [name: string]: Entity }\n\t}\n\n\texport type UniqueConstraints = readonly UniqueConstraint[]\n\n\texport type ConstraintTiming = 'deferrable' | 'deferred'\n\texport type UniqueConstraint = {\n\t\treadonly fields: readonly string[]\n\t\treadonly timing?: ConstraintTiming // empty means not deferrable\n\t\treadonly name?: string\n\t}\n\n\texport type Indexes = readonly Index[]\n\n\texport type Index = {\n\t\treadonly fields: readonly string[]\n\t\treadonly name?: string\n\t}\n\n\n\texport interface ColumnContext {\n\t\tentity: Model.Entity\n\t\tcolumn: Model.AnyColumn\n\t}\n\n\texport type AnyHasManyRelationContext =\n\t\t| ManyHasManyInverseContext\n\t\t| ManyHasManyOwningContext\n\t\t| OneHasManyContext\n\n\texport type AnyHasOneRelationContext =\n\t\t| ManyHasOneContext\n\t\t| OneHasOneOwningContext\n\t\t| OneHasOneInverseContext\n\n\texport type AnyRelationContext =\n\t\t| AnyHasManyRelationContext\n\t\t| AnyHasOneRelationContext\n\n\texport type AnyFieldContext =\n\t\t| ColumnContext\n\t\t| AnyRelationContext\n\n\texport interface ManyHasManyInverseContext {\n\t\ttype: 'manyHasManyInverse'\n\t\tentity: Model.Entity\n\t\trelation: Model.ManyHasManyInverseRelation\n\t\ttargetEntity: Model.Entity\n\t\ttargetRelation: Model.ManyHasManyOwningRelation\n\t}\n\n\texport interface ManyHasManyOwningContext {\n\t\ttype: 'manyHasManyOwning'\n\t\tentity: Model.Entity\n\t\trelation: Model.ManyHasManyOwningRelation\n\t\ttargetEntity: Model.Entity\n\t\ttargetRelation: Model.ManyHasManyInverseRelation | null\n\t}\n\n\texport interface ManyHasOneContext {\n\t\ttype: 'manyHasOne'\n\t\tentity: Model.Entity\n\t\trelation: Model.ManyHasOneRelation\n\t\ttargetEntity: Model.Entity\n\t\ttargetRelation: Model.OneHasManyRelation | null\n\t}\n\n\texport interface OneHasManyContext {\n\t\ttype: 'oneHasMany'\n\t\tentity: Model.Entity\n\t\trelation: Model.OneHasManyRelation\n\t\ttargetEntity: Model.Entity\n\t\ttargetRelation: Model.ManyHasOneRelation\n\t}\n\n\texport interface OneHasOneInverseContext {\n\t\ttype: 'oneHasOneInverse'\n\t\tentity: Model.Entity\n\t\trelation: Model.OneHasOneInverseRelation\n\t\ttargetEntity: Model.Entity\n\t\ttargetRelation: Model.OneHasOneOwningRelation\n\t}\n\n\texport interface OneHasOneOwningContext {\n\t\ttype: 'oneHasOneOwning'\n\t\tentity: Model.Entity\n\t\trelation: Model.OneHasOneOwningRelation\n\t\ttargetEntity: Model.Entity\n\t\ttargetRelation: Model.OneHasOneInverseRelation | null\n\t}\n\n\n\texport interface ColumnVisitor<T> {\n\t\tvisitColumn(context: ColumnContext): T\n\t}\n\n\texport interface RelationVisitor<T> {\n\t\tvisitRelation(context: AnyRelationContext): T\n\t}\n\n\texport type FieldVisitor<T> =\n\t\t& ColumnVisitor<T>\n\t\t& (\n\t\t\t| RelationVisitor<T>\n\t\t\t| RelationByTypeVisitor<T>\n\t\t\t| RelationByGenericTypeVisitor<T>\n\t\t)\n\n\texport interface RelationByTypeVisitor<T> {\n\t\tvisitManyHasOne(context: ManyHasOneContext): T\n\n\t\tvisitOneHasMany(context: OneHasManyContext): T\n\n\t\tvisitOneHasOneOwning(context: OneHasOneOwningContext): T\n\n\t\tvisitOneHasOneInverse(context: OneHasOneInverseContext): T\n\n\t\tvisitManyHasManyOwning(context: ManyHasManyOwningContext): T\n\n\t\tvisitManyHasManyInverse(context: ManyHasManyInverseContext): T\n\t}\n\n\texport interface RelationByGenericTypeVisitor<T> {\n\t\tvisitHasMany(context: AnyHasManyRelationContext): T\n\n\t\tvisitHasOne(context: AnyHasOneRelationContext): T\n\t}\n}\n"],"names":["Model","ColumnType","RelationType","OnDelete","Input"],"mappings":";;;AAGiBA,QAAAA,QAAAA;AAAAA,CAAV,CAAUA,WAAV;AAgCC,GAAA,CAAKC,gBAAL;AACNA,gBAAA,MAAO,IAAA;AACPA,gBAAA,QAAS,IAAA;AACTA,gBAAA,KAAM,IAAA;AACNA,gBAAA,QAAS,IAAA;AACTA,gBAAA,MAAO,IAAA;AACPA,gBAAA,MAAO,IAAA;AACPA,gBAAA,UAAW,IAAA;AACXA,gBAAA,MAAO,IAAA;AACPA,gBAAA,MAAO,IAAA;AACPA,gBAAA,MAAO,IAAA;AAAA,EAVI,GAAAD,OAAA,eAAAA,OAAA,aAAA,CAAA,EAAA;AAiCL,GAAA,CAAKE,kBAAL;AACNA,kBAAA,WAAY,IAAA;AACZA,kBAAA,YAAa,IAAA;AACbA,kBAAA,YAAa,IAAA;AACbA,kBAAA,aAAc,IAAA;AAAA,EAJH,GAAAF,OAAA,iBAAAA,OAAA,eAAA,CAAA,EAAA;AAgDL,GAAA,CAAKG,cAAL;AACNA,cAAA,SAAU,IAAA;AACVA,cAAA,UAAW,IAAA;AACXA,cAAA,SAAU,IAAA;AAAA,EAHC,GAAAH,OAAA,aAAAA,OAAA,WAAA,CAAA,EAAA;AA8BEA,SAAA,iBAAiBI,MAAAA,MAAM;AAAA,GA/IrBJ,QAAA,UAAAA,gBAAA,CAAA,EAAA;"}
|
|
@@ -10,6 +10,7 @@ var Model;
|
|
|
10
10
|
ColumnType2["Enum"] = "Enum";
|
|
11
11
|
ColumnType2["DateTime"] = "DateTime";
|
|
12
12
|
ColumnType2["Date"] = "Date";
|
|
13
|
+
ColumnType2["Time"] = "Time";
|
|
13
14
|
ColumnType2["Json"] = "Json";
|
|
14
15
|
})(Model2.ColumnType || (Model2.ColumnType = {}));
|
|
15
16
|
((RelationType2) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"model.js","sources":["../../../../../packages/schema/src/schema/model.ts"],"sourcesContent":["import { Input } from './input'\n\nexport namespace Model {\n\n\texport type Entity = {\n\t\treadonly name: string\n\t\treadonly primary: string\n\t\treadonly primaryColumn: string\n\t\treadonly tableName: string\n\t\treadonly fields: { readonly [name: string]: AnyField }\n\t\treadonly unique: UniqueConstraints\n\t\treadonly indexes: Indexes\n\t\treadonly view?: View\n\t\treadonly eventLog: EventLogConfig\n\t\treadonly orderBy?: readonly OrderBy[]\n\t}\n\n\texport type View = {\n\t\treadonly sql: string\n\t\treadonly dependencies?: readonly string[]\n\t}\n\n\texport type EventLogConfig = {\n\t\treadonly enabled: boolean\n\t}\n\n\texport type FieldType = RelationType | ColumnType\n\texport type Field<T extends FieldType> = {\n\t\treadonly type: T\n\t}\n\n\texport type AnyField = AnyColumn | AnyRelation\n\texport type AnyColumn<T extends ColumnType = ColumnType> = Column<T>\n\n\texport enum ColumnType {\n\t\tUuid = 'Uuid',\n\t\tString = 'String',\n\t\tInt = 'Integer',\n\t\tDouble = 'Double',\n\t\tBool = 'Bool',\n\t\tEnum = 'Enum',\n\t\tDateTime = 'DateTime',\n\t\tDate = 'Date',\n\t\tJson = 'Json',\n\t}\n\n\texport type Column<T extends ColumnType> = ColumnTypeDefinition<T> & {\n\t\treadonly name: string\n\t\treadonly columnName: string\n\t}\n\n\texport type ColumnTypeDefinition<T extends ColumnType = ColumnType> =\n\t\t& Field<T>\n\t\t& {\n\t\t\treadonly columnType: string\n\t\t\treadonly typeAlias?: string\n\t\t\treadonly nullable: boolean\n\t\t\treadonly default?:
|
|
1
|
+
{"version":3,"file":"model.js","sources":["../../../../../packages/schema/src/schema/model.ts"],"sourcesContent":["import { Input } from './input'\nimport { JSONValue } from './json'\n\nexport namespace Model {\n\n\texport type Entity = {\n\t\treadonly name: string\n\t\treadonly primary: string\n\t\treadonly primaryColumn: string\n\t\treadonly tableName: string\n\t\treadonly fields: { readonly [name: string]: AnyField }\n\t\treadonly unique: UniqueConstraints\n\t\treadonly indexes: Indexes\n\t\treadonly view?: View\n\t\treadonly eventLog: EventLogConfig\n\t\treadonly orderBy?: readonly OrderBy[]\n\t}\n\n\texport type View = {\n\t\treadonly sql: string\n\t\treadonly dependencies?: readonly string[]\n\t}\n\n\texport type EventLogConfig = {\n\t\treadonly enabled: boolean\n\t}\n\n\texport type FieldType = RelationType | ColumnType\n\texport type Field<T extends FieldType> = {\n\t\treadonly type: T\n\t}\n\n\texport type AnyField = AnyColumn | AnyRelation\n\texport type AnyColumn<T extends ColumnType = ColumnType> = Column<T>\n\n\texport enum ColumnType {\n\t\tUuid = 'Uuid',\n\t\tString = 'String',\n\t\tInt = 'Integer',\n\t\tDouble = 'Double',\n\t\tBool = 'Bool',\n\t\tEnum = 'Enum',\n\t\tDateTime = 'DateTime',\n\t\tDate = 'Date',\n\t\tTime = 'Time',\n\t\tJson = 'Json',\n\t}\n\n\texport type Column<T extends ColumnType> = ColumnTypeDefinition<T> & {\n\t\treadonly name: string\n\t\treadonly columnName: string\n\t}\n\n\texport type ColumnTypeDefinition<T extends ColumnType = ColumnType> =\n\t\t& Field<T>\n\t\t& {\n\t\t\treadonly columnType: string\n\t\t\treadonly list?: boolean\n\t\t\treadonly typeAlias?: string\n\t\t\treadonly nullable: boolean\n\t\t\treadonly default?: JSONValue\n\t\t\treadonly sequence?: {\n\t\t\t\treadonly precedence: 'ALWAYS' | 'BY DEFAULT'\n\t\t\t\treadonly start?: number\n\t\t\t}\n\t\t}\n\n\n\texport enum RelationType {\n\t\tOneHasOne = 'OneHasOne',\n\t\tOneHasMany = 'OneHasMany',\n\t\tManyHasOne = 'ManyHasOne',\n\t\tManyHasMany = 'ManyHasMany',\n\t}\n\n\texport type AnyInverseRelation =\n\t\t| OneHasManyRelation\n\t\t| OneHasOneInverseRelation\n\t\t| ManyHasManyInverseRelation\n\n\t/** @deprecated */\n\texport type AnyInversedRelation = AnyInverseRelation\n\n\texport type AnyOwningRelation =\n\t\t| ManyHasOneRelation\n\t\t| OneHasOneOwningRelation\n\t\t| ManyHasManyOwningRelation\n\n\texport type AnyRelation = AnyInverseRelation | AnyOwningRelation\n\n\texport type Relation<T extends RelationType = RelationType>=\n\t\t& Field<T>\n\t\t& {\n\t\t\treadonly name: string\n\t\t\treadonly type: T\n\t\t\treadonly target: string\n\t\t}\n\n\texport type InverseRelation =\n\t\t& Relation\n\t\t& {\n\t\t\treadonly ownedBy: string\n\t\t}\n\n\t/** @deprecated */\n\texport type InversedRelation = InverseRelation\n\n\texport type OwningRelation =\n\t\t& Relation\n\t\t& {\n\t\t\treadonly inversedBy?: string\n\t\t}\n\n\t/** @deprecated */\n\texport type OwnerRelation = OwningRelation\n\n\texport enum OnDelete {\n\t\tcascade = 'cascade',\n\t\trestrict = 'restrict',\n\t\tsetNull = 'set null',\n\t}\n\n\texport type JoiningColumn = {\n\t\treadonly columnName: string\n\t\treadonly onDelete: OnDelete\n\t}\n\n\texport type JoiningColumnRelation = {\n\t\treadonly joiningColumn: JoiningColumn\n\t}\n\n\texport type NullableRelation = {\n\t\treadonly nullable: boolean\n\t}\n\n\texport type JoiningTable = {\n\t\treadonly tableName: string\n\t\treadonly joiningColumn: JoiningColumn\n\t\treadonly inverseJoiningColumn: JoiningColumn\n\t\treadonly eventLog: EventLogConfig\n\t}\n\n\texport type JoiningTableRelation = {\n\t\treadonly joiningTable: JoiningTable\n\t}\n\n\texport import OrderDirection = Input.OrderDirection\n\texport type OrderBy = {\n\t\treadonly path: readonly string[]\n\t\treadonly direction: OrderDirection\n\t}\n\n\texport type OrderableRelation = {\n\t\treadonly orderBy?: readonly OrderBy[]\n\t}\n\n\texport type OneHasManyRelation =\n\t\t& Relation<RelationType.OneHasMany>\n\t\t& InverseRelation\n\t\t& OrderableRelation\n\n\texport type ManyHasOneRelation =\n\t\t& Relation<RelationType.ManyHasOne>\n\t\t& OwningRelation\n\t\t& JoiningColumnRelation\n\t\t& NullableRelation\n\n\texport type OneHasOneInverseRelation =\n\t\t& Relation<RelationType.OneHasOne>\n\t\t& InverseRelation\n\t\t& NullableRelation\n\t/** @deprecated */\n\texport type OneHasOneInversedRelation = OneHasOneInverseRelation\n\n\texport type OneHasOneOwningRelation =\n\t\t& Relation<RelationType.OneHasOne>\n\t\t& OwningRelation\n\t\t& JoiningColumnRelation\n\t\t& NullableRelation\n\t\t& {\n\t\t\treadonly orphanRemoval?: true\n\t\t}\n\t/** @deprecated */\n\texport type OneHasOneOwnerRelation = OneHasOneOwningRelation\n\n\texport type ManyHasManyInverseRelation =\n\t\t& Relation<RelationType.ManyHasMany>\n\t\t& InverseRelation\n\t\t& OrderableRelation\n\t/** @deprecated */\n\texport type ManyHasManyInversedRelation = ManyHasManyInverseRelation\n\n\texport type ManyHasManyOwningRelation =\n\t\t& Relation<RelationType.ManyHasMany>\n\t\t& OwningRelation\n\t\t& JoiningTableRelation\n\t\t& OrderableRelation\n\t/** @deprecated */\n\texport type ManyHasManyOwnerRelation = ManyHasManyOwningRelation\n\n\texport type Schema = {\n\t\treadonly enums: { readonly [name: string]: readonly string[] }\n\t\treadonly entities: { readonly [name: string]: Entity }\n\t}\n\n\texport type UniqueConstraints = readonly UniqueConstraint[]\n\n\texport type ConstraintTiming = 'deferrable' | 'deferred'\n\texport type UniqueConstraint = {\n\t\treadonly fields: readonly string[]\n\t\treadonly timing?: ConstraintTiming // empty means not deferrable\n\t\treadonly name?: string\n\t}\n\n\texport type Indexes = readonly Index[]\n\n\texport type Index = {\n\t\treadonly fields: readonly string[]\n\t\treadonly name?: string\n\t}\n\n\n\texport interface ColumnContext {\n\t\tentity: Model.Entity\n\t\tcolumn: Model.AnyColumn\n\t}\n\n\texport type AnyHasManyRelationContext =\n\t\t| ManyHasManyInverseContext\n\t\t| ManyHasManyOwningContext\n\t\t| OneHasManyContext\n\n\texport type AnyHasOneRelationContext =\n\t\t| ManyHasOneContext\n\t\t| OneHasOneOwningContext\n\t\t| OneHasOneInverseContext\n\n\texport type AnyRelationContext =\n\t\t| AnyHasManyRelationContext\n\t\t| AnyHasOneRelationContext\n\n\texport type AnyFieldContext =\n\t\t| ColumnContext\n\t\t| AnyRelationContext\n\n\texport interface ManyHasManyInverseContext {\n\t\ttype: 'manyHasManyInverse'\n\t\tentity: Model.Entity\n\t\trelation: Model.ManyHasManyInverseRelation\n\t\ttargetEntity: Model.Entity\n\t\ttargetRelation: Model.ManyHasManyOwningRelation\n\t}\n\n\texport interface ManyHasManyOwningContext {\n\t\ttype: 'manyHasManyOwning'\n\t\tentity: Model.Entity\n\t\trelation: Model.ManyHasManyOwningRelation\n\t\ttargetEntity: Model.Entity\n\t\ttargetRelation: Model.ManyHasManyInverseRelation | null\n\t}\n\n\texport interface ManyHasOneContext {\n\t\ttype: 'manyHasOne'\n\t\tentity: Model.Entity\n\t\trelation: Model.ManyHasOneRelation\n\t\ttargetEntity: Model.Entity\n\t\ttargetRelation: Model.OneHasManyRelation | null\n\t}\n\n\texport interface OneHasManyContext {\n\t\ttype: 'oneHasMany'\n\t\tentity: Model.Entity\n\t\trelation: Model.OneHasManyRelation\n\t\ttargetEntity: Model.Entity\n\t\ttargetRelation: Model.ManyHasOneRelation\n\t}\n\n\texport interface OneHasOneInverseContext {\n\t\ttype: 'oneHasOneInverse'\n\t\tentity: Model.Entity\n\t\trelation: Model.OneHasOneInverseRelation\n\t\ttargetEntity: Model.Entity\n\t\ttargetRelation: Model.OneHasOneOwningRelation\n\t}\n\n\texport interface OneHasOneOwningContext {\n\t\ttype: 'oneHasOneOwning'\n\t\tentity: Model.Entity\n\t\trelation: Model.OneHasOneOwningRelation\n\t\ttargetEntity: Model.Entity\n\t\ttargetRelation: Model.OneHasOneInverseRelation | null\n\t}\n\n\n\texport interface ColumnVisitor<T> {\n\t\tvisitColumn(context: ColumnContext): T\n\t}\n\n\texport interface RelationVisitor<T> {\n\t\tvisitRelation(context: AnyRelationContext): T\n\t}\n\n\texport type FieldVisitor<T> =\n\t\t& ColumnVisitor<T>\n\t\t& (\n\t\t\t| RelationVisitor<T>\n\t\t\t| RelationByTypeVisitor<T>\n\t\t\t| RelationByGenericTypeVisitor<T>\n\t\t)\n\n\texport interface RelationByTypeVisitor<T> {\n\t\tvisitManyHasOne(context: ManyHasOneContext): T\n\n\t\tvisitOneHasMany(context: OneHasManyContext): T\n\n\t\tvisitOneHasOneOwning(context: OneHasOneOwningContext): T\n\n\t\tvisitOneHasOneInverse(context: OneHasOneInverseContext): T\n\n\t\tvisitManyHasManyOwning(context: ManyHasManyOwningContext): T\n\n\t\tvisitManyHasManyInverse(context: ManyHasManyInverseContext): T\n\t}\n\n\texport interface RelationByGenericTypeVisitor<T> {\n\t\tvisitHasMany(context: AnyHasManyRelationContext): T\n\n\t\tvisitHasOne(context: AnyHasOneRelationContext): T\n\t}\n}\n"],"names":["Model","ColumnType","RelationType","OnDelete"],"mappings":";AAGiB,IAAA;AAAA,CAAV,CAAUA,WAAV;AAgCC,GAAA,CAAKC,gBAAL;AACNA,gBAAA,MAAO,IAAA;AACPA,gBAAA,QAAS,IAAA;AACTA,gBAAA,KAAM,IAAA;AACNA,gBAAA,QAAS,IAAA;AACTA,gBAAA,MAAO,IAAA;AACPA,gBAAA,MAAO,IAAA;AACPA,gBAAA,UAAW,IAAA;AACXA,gBAAA,MAAO,IAAA;AACPA,gBAAA,MAAO,IAAA;AACPA,gBAAA,MAAO,IAAA;AAAA,EAVI,GAAAD,OAAA,eAAAA,OAAA,aAAA,CAAA,EAAA;AAiCL,GAAA,CAAKE,kBAAL;AACNA,kBAAA,WAAY,IAAA;AACZA,kBAAA,YAAa,IAAA;AACbA,kBAAA,YAAa,IAAA;AACbA,kBAAA,aAAc,IAAA;AAAA,EAJH,GAAAF,OAAA,iBAAAA,OAAA,eAAA,CAAA,EAAA;AAgDL,GAAA,CAAKG,cAAL;AACNA,cAAA,SAAU,IAAA;AACVA,cAAA,UAAW,IAAA;AACXA,cAAA,SAAU,IAAA;AAAA,EAHC,GAAAH,OAAA,aAAAA,OAAA,WAAA,CAAA,EAAA;AA8BEA,SAAA,iBAAiB,MAAM;AAAA,GA/IrB,UAAA,QAAA,CAAA,EAAA;"}
|
|
@@ -134,24 +134,27 @@ export declare namespace Input {
|
|
|
134
134
|
readonly and?: readonly Condition<T>[];
|
|
135
135
|
readonly or?: readonly Condition<T>[];
|
|
136
136
|
readonly not?: Condition<T>;
|
|
137
|
+
readonly isNull?: boolean;
|
|
137
138
|
readonly eq?: T;
|
|
138
139
|
readonly notEq?: T;
|
|
139
|
-
readonly null?: boolean;
|
|
140
|
-
readonly isNull?: boolean;
|
|
141
140
|
readonly in?: readonly T[];
|
|
142
141
|
readonly notIn?: readonly T[];
|
|
143
142
|
readonly lt?: T;
|
|
144
143
|
readonly lte?: T;
|
|
145
144
|
readonly gt?: T;
|
|
146
145
|
readonly gte?: T;
|
|
147
|
-
readonly
|
|
148
|
-
readonly
|
|
146
|
+
readonly minLength?: number;
|
|
147
|
+
readonly maxLength?: number;
|
|
148
|
+
readonly includes?: T;
|
|
149
149
|
readonly contains?: string;
|
|
150
150
|
readonly startsWith?: string;
|
|
151
151
|
readonly endsWith?: string;
|
|
152
152
|
readonly containsCI?: string;
|
|
153
153
|
readonly startsWithCI?: string;
|
|
154
154
|
readonly endsWithCI?: string;
|
|
155
|
+
readonly never?: true;
|
|
156
|
+
readonly always?: true;
|
|
157
|
+
readonly null?: boolean;
|
|
155
158
|
};
|
|
156
159
|
type UniqueWhere<E = never> = {
|
|
157
160
|
readonly [field: string]: Value.PrimaryValue<E> | UniqueWhere<E>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"input.d.ts","sourceRoot":"","sources":["../../../src/schema/input.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"input.d.ts","sourceRoot":"","sources":["../../../src/schema/input.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Input } from './input';
|
|
2
|
+
import { JSONValue } from './json';
|
|
2
3
|
export declare namespace Model {
|
|
3
4
|
type Entity = {
|
|
4
5
|
readonly name: string;
|
|
@@ -36,6 +37,7 @@ export declare namespace Model {
|
|
|
36
37
|
Enum = "Enum",
|
|
37
38
|
DateTime = "DateTime",
|
|
38
39
|
Date = "Date",
|
|
40
|
+
Time = "Time",
|
|
39
41
|
Json = "Json"
|
|
40
42
|
}
|
|
41
43
|
type Column<T extends ColumnType> = ColumnTypeDefinition<T> & {
|
|
@@ -44,9 +46,10 @@ export declare namespace Model {
|
|
|
44
46
|
};
|
|
45
47
|
type ColumnTypeDefinition<T extends ColumnType = ColumnType> = Field<T> & {
|
|
46
48
|
readonly columnType: string;
|
|
49
|
+
readonly list?: boolean;
|
|
47
50
|
readonly typeAlias?: string;
|
|
48
51
|
readonly nullable: boolean;
|
|
49
|
-
readonly default?:
|
|
52
|
+
readonly default?: JSONValue;
|
|
50
53
|
readonly sequence?: {
|
|
51
54
|
readonly precedence: 'ALWAYS' | 'BY DEFAULT';
|
|
52
55
|
readonly start?: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"model.d.ts","sourceRoot":"","sources":["../../../src/schema/model.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;
|
|
1
|
+
{"version":3,"file":"model.d.ts","sourceRoot":"","sources":["../../../src/schema/model.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"settings.d.ts","sourceRoot":"","sources":["../../../src/schema/settings.ts"],"names":[],"mappings":"AAAA,yBAAiB,QAAQ,CAAC;IACzB,KAAY,cAAc,GAAG;QAC5B,QAAQ,CAAC,uBAAuB,CAAC,EAAE,MAAM,CAAA;KACzC,CAAA;IAED,KAAY,eAAe,GAAG;QAC7B,QAAQ,CAAC,iBAAiB,CAAC,EAAE,OAAO,CAAA;QACpC,QAAQ,CAAC,oBAAoB,CAAC,EAAE,OAAO,CAAA;QACvC,QAAQ,CAAC,wBAAwB,CAAC,EAAE,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"settings.d.ts","sourceRoot":"","sources":["../../../src/schema/settings.ts"],"names":[],"mappings":"AAAA,yBAAiB,QAAQ,CAAC;IACzB,KAAY,cAAc,GAAG;QAC5B,QAAQ,CAAC,uBAAuB,CAAC,EAAE,MAAM,CAAA;KACzC,CAAA;IAED,KAAY,eAAe,GAAG;QAC7B,QAAQ,CAAC,iBAAiB,CAAC,EAAE,OAAO,CAAA;QACpC,QAAQ,CAAC,oBAAoB,CAAC,EAAE,OAAO,CAAA;QACvC,QAAQ,CAAC,wBAAwB,CAAC,EAAE,OAAO,CAAA;QAC3C,QAAQ,CAAC,WAAW,CAAC,EAAE,CAAC,GAAG,CAAC,CAAA;KAC5B,CAAA;IAED,KAAY,MAAM,GAAG;QACpB,QAAQ,CAAC,MAAM,CAAC,EAAE,cAAc,CAAA;QAChC,QAAQ,CAAC,OAAO,CAAC,EAAE,eAAe,CAAA;QAElC;;WAEG;QACH,QAAQ,CAAC,wBAAwB,CAAC,EAAE,OAAO,CAAA;KAC3C,CAAA;CACD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../../node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../../node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../../node_modules/typescript/lib/lib.esnext.string.d.ts","../../../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../../node_modules/typescript/lib/lib.esnext.object.d.ts","../../../../node_modules/typescript/lib/lib.esnext.regexp.d.ts","../../../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../node_modules/@types/react/global.d.ts","../../../../node_modules/csstype/index.d.ts","../../../../node_modules/@types/prop-types/index.d.ts","../../../../node_modules/@types/react/index.d.ts","../../../../node_modules/@types/react/jsx-runtime.d.ts","../../src/ProjectRole.ts","../../src/schema/value.ts","../../src/schema/input.ts","../../src/schema/json.ts","../../src/schema/acl.ts","../../src/schema/actions.ts","../../src/schema/actionsPayload.ts","../../src/schema/model.ts","../../src/schema/result.ts","../../src/schema/settings.ts","../../src/schema/validation.ts","../../src/schema/index.ts","../../src/index.ts","../../../../node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../../../../node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../../../../node_modules/@types/node/assert.d.ts","../../../../node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/buffer/index.d.ts","../../../../node_modules/undici-types/header.d.ts","../../../../node_modules/undici-types/readable.d.ts","../../../../node_modules/undici-types/file.d.ts","../../../../node_modules/undici-types/fetch.d.ts","../../../../node_modules/undici-types/formdata.d.ts","../../../../node_modules/undici-types/connector.d.ts","../../../../node_modules/undici-types/client.d.ts","../../../../node_modules/undici-types/errors.d.ts","../../../../node_modules/undici-types/dispatcher.d.ts","../../../../node_modules/undici-types/global-dispatcher.d.ts","../../../../node_modules/undici-types/global-origin.d.ts","../../../../node_modules/undici-types/pool-stats.d.ts","../../../../node_modules/undici-types/pool.d.ts","../../../../node_modules/undici-types/handlers.d.ts","../../../../node_modules/undici-types/balanced-pool.d.ts","../../../../node_modules/undici-types/agent.d.ts","../../../../node_modules/undici-types/mock-interceptor.d.ts","../../../../node_modules/undici-types/mock-agent.d.ts","../../../../node_modules/undici-types/mock-client.d.ts","../../../../node_modules/undici-types/mock-pool.d.ts","../../../../node_modules/undici-types/mock-errors.d.ts","../../../../node_modules/undici-types/proxy-agent.d.ts","../../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../../node_modules/undici-types/retry-handler.d.ts","../../../../node_modules/undici-types/retry-agent.d.ts","../../../../node_modules/undici-types/api.d.ts","../../../../node_modules/undici-types/interceptors.d.ts","../../../../node_modules/undici-types/util.d.ts","../../../../node_modules/undici-types/cookies.d.ts","../../../../node_modules/undici-types/patch.d.ts","../../../../node_modules/undici-types/websocket.d.ts","../../../../node_modules/undici-types/eventsource.d.ts","../../../../node_modules/undici-types/filereader.d.ts","../../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../../node_modules/undici-types/content-type.d.ts","../../../../node_modules/undici-types/cache.d.ts","../../../../node_modules/undici-types/index.d.ts","../../../../node_modules/@types/node/globals.d.ts","../../../../node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/@types/node/buffer.d.ts","../../../../node_modules/@types/node/child_process.d.ts","../../../../node_modules/@types/node/cluster.d.ts","../../../../node_modules/@types/node/console.d.ts","../../../../node_modules/@types/node/constants.d.ts","../../../../node_modules/@types/node/crypto.d.ts","../../../../node_modules/@types/node/dgram.d.ts","../../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/@types/node/dns.d.ts","../../../../node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/@types/node/domain.d.ts","../../../../node_modules/@types/node/dom-events.d.ts","../../../../node_modules/@types/node/events.d.ts","../../../../node_modules/@types/node/fs.d.ts","../../../../node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/@types/node/http.d.ts","../../../../node_modules/@types/node/http2.d.ts","../../../../node_modules/@types/node/https.d.ts","../../../../node_modules/@types/node/inspector.d.ts","../../../../node_modules/@types/node/module.d.ts","../../../../node_modules/@types/node/net.d.ts","../../../../node_modules/@types/node/os.d.ts","../../../../node_modules/@types/node/path.d.ts","../../../../node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/@types/node/process.d.ts","../../../../node_modules/@types/node/punycode.d.ts","../../../../node_modules/@types/node/querystring.d.ts","../../../../node_modules/@types/node/readline.d.ts","../../../../node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/@types/node/repl.d.ts","../../../../node_modules/@types/node/sea.d.ts","../../../../node_modules/@types/node/stream.d.ts","../../../../node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/@types/node/stream/web.d.ts","../../../../node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/@types/node/test.d.ts","../../../../node_modules/@types/node/timers.d.ts","../../../../node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/@types/node/tls.d.ts","../../../../node_modules/@types/node/trace_events.d.ts","../../../../node_modules/@types/node/tty.d.ts","../../../../node_modules/@types/node/url.d.ts","../../../../node_modules/@types/node/util.d.ts","../../../../node_modules/@types/node/v8.d.ts","../../../../node_modules/@types/node/vm.d.ts","../../../../node_modules/@types/node/wasi.d.ts","../../../../node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/@types/node/zlib.d.ts","../../../../node_modules/@types/node/globals.global.d.ts","../../../../node_modules/@types/node/ts5.6/index.d.ts","../../../../node_modules/@types/accepts/index.d.ts","../../../../node_modules/@types/aria-query/index.d.ts","../../../../node_modules/@babel/types/lib/index.d.ts","../../../../node_modules/@types/babel__generator/index.d.ts","../../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../../node_modules/@types/babel__template/index.d.ts","../../../../node_modules/@types/babel__traverse/index.d.ts","../../../../node_modules/@types/babel__core/index.d.ts","../../../../node_modules/@types/bcryptjs/index.d.ts","../../../../node_modules/@types/connect/index.d.ts","../../../../node_modules/@types/body-parser/index.d.ts","../../../../node_modules/@types/ws/index.d.ts","../../../../node_modules/bun-types/fetch.d.ts","../../../../node_modules/bun-types/globals.d.ts","../../../../node_modules/bun-types/bun.d.ts","../../../../node_modules/bun-types/overrides.d.ts","../../../../node_modules/bun-types/ffi.d.ts","../../../../node_modules/bun-types/test.d.ts","../../../../node_modules/bun-types/html-rewriter.d.ts","../../../../node_modules/bun-types/jsc.d.ts","../../../../node_modules/bun-types/sqlite.d.ts","../../../../node_modules/bun-types/wasm.d.ts","../../../../node_modules/bun-types/deprecated.d.ts","../../../../node_modules/bun-types/index.d.ts","../../../../node_modules/@types/bun/index.d.ts","../../../../node_modules/@types/content-disposition/index.d.ts","../../../../node_modules/@types/mime/index.d.ts","../../../../node_modules/@types/send/index.d.ts","../../../../node_modules/@types/qs/index.d.ts","../../../../node_modules/@types/range-parser/index.d.ts","../../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../../node_modules/@types/http-errors/index.d.ts","../../../../node_modules/@types/serve-static/index.d.ts","../../../../node_modules/@types/express/index.d.ts","../../../../node_modules/@types/keygrip/index.d.ts","../../../../node_modules/@types/cookies/index.d.ts","../../../../node_modules/@types/estree/index.d.ts","../../../../node_modules/@types/jsonfile/index.d.ts","../../../../node_modules/@types/jsonfile/utils.d.ts","../../../../node_modules/@types/fs-extra/index.d.ts","../../../../node_modules/@types/http-assert/index.d.ts","../../../../node_modules/@types/is-hotkey/index.d.ts","../../../../node_modules/@types/js-levenshtein/index.d.ts","../../../../node_modules/@types/js-yaml/index.d.ts","../../../../node_modules/@types/json-schema/index.d.ts","../../../../node_modules/@types/koa-compose/index.d.ts","../../../../node_modules/@types/koa/index.d.ts","../../../../node_modules/@types/koa-bodyparser/index.d.ts","../../../../node_modules/@types/koa-compress/index.d.ts","../../../../node_modules/@types/koa__cors/index.d.ts","../../../../node_modules/@types/mime-types/index.d.ts","../../../../node_modules/@types/mustache/index.d.ts","../../../../node_modules/form-data/index.d.ts","../../../../node_modules/@types/node-fetch/externals.d.ts","../../../../node_modules/@types/node-fetch/index.d.ts","../../../../node_modules/@types/nodemailer/lib/dkim/index.d.ts","../../../../node_modules/@types/nodemailer/lib/mailer/mail-message.d.ts","../../../../node_modules/@types/nodemailer/lib/xoauth2/index.d.ts","../../../../node_modules/@types/nodemailer/lib/mailer/index.d.ts","../../../../node_modules/@types/nodemailer/lib/mime-node/index.d.ts","../../../../node_modules/@types/nodemailer/lib/smtp-connection/index.d.ts","../../../../node_modules/@types/nodemailer/lib/shared/index.d.ts","../../../../node_modules/@types/nodemailer/lib/json-transport/index.d.ts","../../../../node_modules/@types/nodemailer/lib/sendmail-transport/index.d.ts","../../../../node_modules/@types/nodemailer/lib/ses-transport/index.d.ts","../../../../node_modules/@types/nodemailer/lib/smtp-pool/index.d.ts","../../../../node_modules/@types/nodemailer/lib/smtp-transport/index.d.ts","../../../../node_modules/@types/nodemailer/lib/stream-transport/index.d.ts","../../../../node_modules/@types/nodemailer/index.d.ts","../../../../node_modules/@types/npm-package-arg/index.d.ts","../../../../node_modules/@types/pg/node_modules/pg-types/index.d.ts","../../../../node_modules/pg-protocol/dist/messages.d.ts","../../../../node_modules/pg-protocol/dist/serializer.d.ts","../../../../node_modules/pg-protocol/dist/parser.d.ts","../../../../node_modules/pg-protocol/dist/index.d.ts","../../../../node_modules/@types/pg/index.d.ts","../../../../node_modules/kleur/kleur.d.ts","../../../../node_modules/@types/prompts/index.d.ts","../../../../node_modules/@types/react-dom/index.d.ts","../../../../node_modules/@types/semver/classes/semver.d.ts","../../../../node_modules/@types/semver/functions/parse.d.ts","../../../../node_modules/@types/semver/functions/valid.d.ts","../../../../node_modules/@types/semver/functions/clean.d.ts","../../../../node_modules/@types/semver/functions/inc.d.ts","../../../../node_modules/@types/semver/functions/diff.d.ts","../../../../node_modules/@types/semver/functions/major.d.ts","../../../../node_modules/@types/semver/functions/minor.d.ts","../../../../node_modules/@types/semver/functions/patch.d.ts","../../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../../node_modules/@types/semver/functions/compare.d.ts","../../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../../node_modules/@types/semver/functions/sort.d.ts","../../../../node_modules/@types/semver/functions/rsort.d.ts","../../../../node_modules/@types/semver/functions/gt.d.ts","../../../../node_modules/@types/semver/functions/lt.d.ts","../../../../node_modules/@types/semver/functions/eq.d.ts","../../../../node_modules/@types/semver/functions/neq.d.ts","../../../../node_modules/@types/semver/functions/gte.d.ts","../../../../node_modules/@types/semver/functions/lte.d.ts","../../../../node_modules/@types/semver/functions/cmp.d.ts","../../../../node_modules/@types/semver/functions/coerce.d.ts","../../../../node_modules/@types/semver/classes/comparator.d.ts","../../../../node_modules/@types/semver/classes/range.d.ts","../../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../../node_modules/@types/semver/ranges/valid.d.ts","../../../../node_modules/@types/semver/ranges/outside.d.ts","../../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../../node_modules/@types/semver/ranges/subset.d.ts","../../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../../node_modules/@types/semver/index.d.ts","../../../../node_modules/@types/uuid/index.d.ts"],"fileIdsList":[[94,137,190,202,210],[94,137,202,210],[94,137,152,187,202,210],[94,137,190,191,192,193,194,202,210],[94,137,190,192,202,210],[94,137,152,187,197,202,210],[94,137,202,210,211],[94,137,152,187,197,202,210,221,222],[94,137,149,152,187,202,210,215,216,217],[94,137,198,202,210,216,218,220],[94,137,150,187,202,210,225,226],[94,137,150,179,187,202,210],[94,137,202,210,234],[94,137,185,187,202,210,234],[94,136,137,149,152,153,157,163,179,187,188,202,210,213,219,222,223,228,233],[94,137,152,179,187,202,210,240,241],[94,95,137,202,210],[94,136,137,202,210],[94,137,142,171,202,210],[94,137,138,143,149,150,157,168,179,202,210],[94,137,138,139,149,157,202,210],[94,137,140,180,202,210],[94,137,141,142,150,158,202,210],[94,137,142,168,176,202,210],[94,137,143,145,149,157,202,210],[94,136,137,144,202,210],[94,137,145,146,202,210],[94,137,149,202,210],[94,137,147,149,202,210],[94,136,137,149,202,210],[94,137,149,150,151,168,179,202,210],[94,137,149,150,151,164,168,171,202,203,210],[94,134,137,184,202,210],[94,137,145,149,152,157,168,179,202,210],[94,137,149,150,152,153,157,168,176,179,202,210],[94,137,152,154,168,176,179,202,210],[94,137,149,155,202,210],[94,137,156,179,184,202,210],[94,137,145,149,157,168,202,210],[94,137,158,202,210],[94,137,159,202,210],[94,136,137,160,202,210],[94,95,96,136,137,138,139,140,141,142,143,144,145,146,147,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,202,203,210],[94,137,162,202,210],[94,137,163,202,210],[94,137,149,164,165,202,210],[94,137,164,166,180,182,202,210],[94,137,149,168,169,170,171,202,210],[94,137,168,170,202,210],[94,137,168,169,202,210],[94,137,171,202,210],[94,137,172,202,210],[94,95,137,168,202,210],[94,137,149,174,175,202,210],[94,137,174,175,202,210],[94,137,142,157,168,176,202,203,210],[94,137,177,202,210],[137,202,210],[93,94,95,96,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,202,210],[94,137,157,178,202,210],[94,137,152,163,179,202,210],[94,137,142,180,202,210],[94,137,168,181,202,210],[94,137,156,182,202,210],[94,137,183,202,210],[94,137,142,149,151,160,168,179,182,184,202,210],[94,137,168,185,202,210],[94,137,187,202,210,244,246,250,251,252,253,254,255],[94,137,168,187,202,210],[94,137,149,187,202,210,244,246,247,249,256],[94,137,149,157,168,179,187,202,210,243,244,245,247,248,249,256],[94,137,168,187,202,210,246,247],[94,137,168,187,202,210,246],[94,137,187,202,210,244,246,247,249,256],[94,137,168,187,202,210,248],[94,137,149,157,168,176,187,202,203,210,245,247,249],[94,137,149,187,202,210,244,246,247,248,249,256],[94,137,149,168,187,202,210,244,245,246,247,248,249,256],[94,137,149,168,187,202,210,244,246,247,249,256],[94,137,152,168,187,202,210,249],[94,137,149,168,176,187,202,203,210,258,259,262,263],[94,137,168,187,202,210,264],[78,94,137,202,210],[75,76,77,94,137,202,210],[94,137,202,210,267,306],[94,137,202,210,267,291,306],[94,137,202,210,306],[94,137,202,210,267],[94,137,202,210,267,292,306],[94,137,202,210,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305],[94,137,202,210,292,306],[94,137,150,168,187,202,210,214],[94,137,152,187,202,210,215,219],[94,137,149,152,154,168,176,179,185,187,202,203,210],[94,137,142,176,180,203,210],[94,137,202],[94,134,137,202,210],[94,134,137,142,160,168,171,180,184,199,200,202,210],[94,137,187,199,200,201,202,203,204,205,206,207,208,209,210],[94,137,151,176,202,210],[94,137,202,205,210],[94,137,152,168,187,202,210],[94,137,187,202,210,259,260,261],[94,137,187,202,210],[94,137,168,187,202,210,259],[94,106,110,137,179,202,210],[94,106,137,168,179,202,210],[94,101,137,202,210],[94,103,106,137,176,179,202,203,210],[94,137,157,176,202,203,210],[94,101,137,187,202,210],[94,103,106,137,157,179,202,210],[94,98,99,102,105,137,149,168,179,202,210],[94,106,113,137,202,210],[94,98,104,137,202,210],[94,106,127,128,137,202,210],[94,102,106,137,171,179,187,202,210],[94,127,137,187,202,210],[94,100,101,137,187,202,210],[94,106,137,202,210],[94,100,101,102,103,104,105,106,107,108,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,128,129,130,131,132,133,137,202,210],[94,106,121,137,202,210],[94,106,113,114,137,202,210],[94,104,106,114,115,137,202,210],[94,105,137,202,210],[94,98,101,106,137,202,210],[94,106,110,114,115,137,202,210],[94,110,137,202,210],[94,104,106,109,137,179,202,210],[94,98,103,106,113,137,202,210],[94,137,168,202,210],[94,101,106,127,137,184,187,202,210],[79,94,137,202,210],[79,80,91,94,137,202,210],[79,82,83,94,137,202,210],[79,83,94,137,202,210],[79,81,82,83,84,85,86,87,88,89,90,94,137,202,210],[79,81,94,137,202,210],[79,82,94,137,202,210]],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"abee51ebffafd50c07d76be5848a34abfe4d791b5745ef1e5648718722fab924","impliedFormat":1},{"version":"9e8ca8ed051c2697578c023d9c29d6df689a083561feba5c14aedee895853999","affectsGlobalScope":true,"impliedFormat":1},{"version":"69e65d976bf166ce4a9e6f6c18f94d2424bf116e90837ace179610dbccad9b42","affectsGlobalScope":true,"impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"45d8ccb3dfd57355eb29749919142d4321a0aa4df6acdfc54e30433d7176600a","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a94697425a99354df73d9c8291e2ecd4dddd370aed4023c2d6dee6cccb32666","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3f9fc0ec0b96a9e642f11eda09c0be83a61c7b336977f8b9fdb1e9788e925fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true,"impliedFormat":1},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"15c1c3d7b2e46e0025417ed6d5f03f419e57e6751f87925ca19dc88297053fe6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d540251809289a05349b70ab5f4b7b99f922af66ab3c39ba56a475dcf95d5ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0b11f3ca66aa33124202c80b70cd203219c3d4460cfc165e0707aa9ec710fc53","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a3f5a0129cc80cf439ab71164334d649b47059a4f5afca90282362407d0c87f","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"61d6a2092f48af66dbfb220e31eea8b10bc02b6932d6e529005fd2d7b3281290","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"36a2e4c9a67439aca5f91bb304611d5ae6e20d420503e96c230cf8fcdc948d94","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"65ff5a0aefd7817a03c1ad04fee85c9cdd3ec415cc3c9efec85d8008d4d5e4ee","impliedFormat":1},{"version":"aea201321e7df78b294c9c39c61503ed81fb73b1b1703240013b557dfa25b016","affectsGlobalScope":true,"impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","impliedFormat":1},{"version":"b0d74cce9e676c2b6c48208ef6c1fabad459205f23e4dde2338c7829dff709ba","signature":"466df547af9cf3861658b08baf3ecbd41c0eaad2101378fadfa54ab24db103e6"},{"version":"72c7269d60a743e28df9b1e5c3afbe833f95fa7821ee24b1a3cd090898ff368d","signature":"67070445e9cb6a031953839e5f673d751255409d0ecd2ce8a8bd8f09bb4a07f2"},{"version":"c0a90d64d66fadc57cfd56d0369d34854e5bb6f5c1e16e0232429254a3f4816e","signature":"8e86b98b3e0df46d3f83c303661824d1965ddd63e674fc0b6849f7869f5b86f0"},{"version":"8400bff5f2de1f00f071ac265cf7fab8d6f3aeead7550e8973982c8822667b97","signature":"b1296831e111197bd9ebd73f0d15ad0fe2e11fcc51a6302edb23ffd93794db36"},{"version":"a2bada59581ed4ef95f7d521f60655995d399aaacd6e6d2aa8db527a6fcf91f2","signature":"2a3c0a7b4dd551ceb2f73212408e6ce4f2ee39e937908d091dc36e0bc3ff3816"},{"version":"fb65bb7426501402feebb61da84888967f80b47136af89809077412c244356ac","signature":"ec0b1ad8de385d526b4e16c7ab8da4b84c1fb15a680d4c82b0e0b5f70e9f80c5"},{"version":"d2e93f537b86ee2f10c76708520a173188e8fb081045da7eb60e28de88b384ca","signature":"462c0b72a4911d6356ebbfed5dedd9682edf2bd60bcf6ea025539f1cd8c64bf4"},{"version":"2212f5a8c38109c0dc45f77f74be21ca4d1b75ca39625b233fc0d87759a835b3","signature":"5c3f0890ecc492ada4fa62824b8db132adbf9757e918cdc7421a586474b7cb16"},{"version":"73f344593733ca1af0ba8ffc6295b418bf5b4ad1a373a1480a884b7b1e283c9c","signature":"f42116e2e8ad600dc90bdf8ceade9dcf593c35812d8aaba9c03a3f1dbb87330e"},{"version":"f72a2a4c2f3980a4ba702820fc629768b287c955211fce86b4cb28ffe933e21b","signature":"0f9bf85206211db137cc12ffeb6c442d5d05a7686859860204f148618832a3cb"},{"version":"c88218c1acee8645370add51cceb22b3b8e9af4e069fade9f606ddf8a13f977e","signature":"dff2fee737ebe5174f549c9f28e114c0cabac4b5fe4e364654465ba528979ba4"},{"version":"6dd63c3f324b584c843826db188b8dec1d55b4940817f7abac84ceda4b17e977","signature":"ad1f130d5fb49665e218d5366db67ead55593335a2c02733ae5f8466a99def53"},{"version":"c2e2372d5768b6d90e82087d5ef0feebbb2449c153b80c45c2e323e0d2b2f22a","signature":"92404f0f42ffd8d939cf6fb1a911235e931981f94dcab0e85f9ae5faf876ea3c"},{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true,"impliedFormat":1},{"version":"2d1319e6b5d0efd8c5eae07eb864a00102151e8b9afddd2d45db52e9aae002c4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2db0dd3aaa2ed285950273ce96ae8a450b45423aa9da2d10e194570f1233fa6b","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"4d2b0eb911816f66abe4970898f97a2cfc902bcd743cbfa5017fad79f7ef90d8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"24b8685c62562f5d98615c5a0c1d05f297cf5065f15246edfe99e81ec4c0e011","impliedFormat":1},{"version":"93507c745e8f29090efb99399c3f77bec07db17acd75634249dc92f961573387","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"4eedea23b8a843ec0fd51a384fb6b9fe1bc89198f713d0465c2c8392a9d51271","affectsGlobalScope":true,"impliedFormat":1},{"version":"3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36","impliedFormat":1},{"version":"d674383111e06b6741c4ad2db962131b5b0fa4d0294b998566c635e86195a453","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3e58c4c18a031cbb17abec7a4ad0bd5ae9fc70c1f4ba1e7fb921ad87c504aca","impliedFormat":1},{"version":"a3e8bafb2af8e850c644f4be7f5156cf7d23b7bfdc3b786bd4d10ed40329649c","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"c521f961c1606c94dc831992e659f426b6def6e2e6e327ee25d3c642eb393f95","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0c0d1d13be149f790a75b381b413490f98558649428bb916fd2d71a3f47a134","impliedFormat":1},{"version":"3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","impliedFormat":1},{"version":"5a369483ac4cfbdf0331c248deeb36140e6907db5e1daed241546b4a2055f82c","impliedFormat":1},{"version":"e8f5b5cc36615c17d330eaf8eebbc0d6bdd942c25991f96ef122f246f4ff722f","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"f0de0233242682db9ac13efa0ddbb456a41abe6f291211b40ba3aa766b03e9b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"596572d40c1f13d8b57920d6d1a77c5ec6fe4952dc157f416f04a801cd3e2678","impliedFormat":1},{"version":"ad23fd126ff06e72728dd7bfc84326a8ca8cec2b9d2dac0193d42a777df0e7d8","impliedFormat":1},{"version":"a55fd4d49da86d2cc19de575beb1515184e55f5f3165e1482ff02fd99f900b5c","impliedFormat":1},{"version":"93bd413918fa921c8729cef45302b24d8b6c7855d72d5bf82d3972595ae8dcbf","impliedFormat":1},{"version":"4ff41188773cbf465807dd2f7059c7494cbee5115608efc297383832a1150c43","impliedFormat":1},{"version":"dccdf1677e531e33f8ac961a68bc537418c9a414797c1ea7e91307501cdc3f5e","impliedFormat":1},{"version":"7edec695cdb707c7146ac34c44ca364469c7ea504344b3206c686e79f61b61a2","affectsGlobalScope":true,"impliedFormat":1},{"version":"d206b4baf4ddcc15d9d69a9a2f4999a72a2c6adeaa8af20fa7a9960816287555","impliedFormat":1},{"version":"93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","impliedFormat":1},{"version":"d1b1295af3667779be43eb6d4fbaa342e656aa2c4b77a4ad3cf42ec55baeea00","impliedFormat":1},{"version":"70731d10d5311bd4cf710ef7f6539b62660f4b0bfdbb3f9fbe1d25fe6366a7fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"a20f1e119615bf7632729fd89b6c0b5ffdc2df3b512d6304146294528e3ebe19","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"137c2894e8f3e9672d401cc0a305dc7b1db7c69511cf6d3970fb53302f9eae09","impliedFormat":1},{"version":"dd9492e12a57068f08d70cb5eb5ceb39fa5bcf23be01af574270aeee95b982af","impliedFormat":1},{"version":"e432b0e3761ca9ba734bdd41e19a75fec1454ca8e9769bfdf8b31011854cf06a","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"78955c9259da94920609be3e589fc9253268b3fffa822e1e31d28ee2ce0b8a74","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"73aa178e8fb1449ef3666093d8dca25f96302a80ee45f8ff027df8e4792bf9fd","affectsGlobalScope":true,"impliedFormat":1},{"version":"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb","impliedFormat":1},{"version":"fdedf82878e4c744bc2a1c1e802ae407d63474da51f14a54babe039018e53d8f","affectsGlobalScope":true,"impliedFormat":1},{"version":"08353b04a3501d84fc8d7b49de99f6c1cc26026e6d9d697a18315f3bfe92ed03","affectsGlobalScope":true,"impliedFormat":1},{"version":"578d8bb6dcb2a1c03c4c3f8eb71abc9677e1a5c788b7f24848e3138ce17f3400","impliedFormat":1},{"version":"4f029899f9bae07e225c43aef893590541b2b43267383bf5e32e3a884d219ed5","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"710ad93f8de29dc15e5892aa735e72348b62f40a6d1220f2849837d332f92885","affectsGlobalScope":true,"impliedFormat":1},{"version":"1f1da5d682cdb628890e4a8578fb9e8ab332e6a1a4b3a13fce08b7b4d45d192a","affectsGlobalScope":true,"impliedFormat":1},{"version":"efeedd8bbc5c0d53e760d8b120a010470722982e6ae14de8d1bcff66ebc2ae71","impliedFormat":1},{"version":"b718a94332858862943630649a310d6f8e9a09f86ae7215d8554e75bbbfd7817","impliedFormat":1},{"version":"d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c","impliedFormat":1},{"version":"616075a6ac578cf5a013ee12964188b4412823796ce0b202c6f1d2e4ca8480d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"483bb10b755f3572526fd76d9481221e8dc30568edcc1a9cc73479d8874bd16d","impliedFormat":1},{"version":"87f287f296f3ff07dbd14ea7853c2400d995dccd7bd83206196d6c0974774e96","impliedFormat":1},{"version":"ae77d81a5541a8abb938a0efedf9ac4bea36fb3a24cc28cfa11c598863aba571","impliedFormat":1},{"version":"03f1d83d61696326ea29c8a1c15cbaccf61e92598d53f2ccae06078531f42448","impliedFormat":1},{"version":"2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","impliedFormat":1},{"version":"3a9313fe5ace558b8b18e85f931da10b259e738775f411c061e5f15787b138eb","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"9e0cf651e8e2c5b9bebbabdff2f7c6f8cedd91b1d9afcc0a854cdff053a88f1b","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"a3d3f704c5339a36da3ca8c62b29072f87e86c783b8452d235992142ec71aa2d","impliedFormat":1},{"version":"104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","impliedFormat":1},{"version":"cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","impliedFormat":1},{"version":"eb15edfcef078300657e1d5d678e1944b3518c2dd8f26792fdba2fe29f73d32b","impliedFormat":1},{"version":"720f5d028d71bc22ed4a5311a6ea884329db475d994f805ea86470111eccc1a1","impliedFormat":1},{"version":"8c4df6bbce66d5c39a40a642ce426ec1b2daf16e5be2e4c88751dab596745ab6","affectsGlobalScope":true,"impliedFormat":1},{"version":"fd5e0d9b6792c4789055b2e44381f89d1328c7afa9e03755571f683b0732ed2b","affectsGlobalScope":true,"impliedFormat":1},{"version":"3de9f829f53966384023e023185c0515d18b747f0001924a1919751e6ac5308d","affectsGlobalScope":true,"impliedFormat":1},{"version":"75e5eba775a6a65a949380d689933849e190fef8a12867eb6fe884141af09d30","impliedFormat":1},{"version":"8a5b54c46c65f2f4f7d594dfd9a9bc4fb719d7a2a65d4f582aa7240ca5145a03","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b8af6e8cf44313406800b820bffc49e83a8ec4598772db25954d03a86c96818","affectsGlobalScope":true,"impliedFormat":1},{"version":"95d4d18508a76d6a7036029d974d27e5ffddd742650f967dca22cf035518ca28","impliedFormat":1},{"version":"c3b50cb839f257e949470080b12c737ce0e585d198690dffc8cc4dd91821b083","impliedFormat":1},{"version":"d2e66d9477edaa0e4dea79d699f0855a5a7419915da740e28fbfdb322c6a60a6","affectsGlobalScope":true,"impliedFormat":1},{"version":"ca69bbf884a17e7a485bb4fcd129386874050916b275e414af14b2170b4ea728","affectsGlobalScope":true,"impliedFormat":1},{"version":"b52c121cd491cfdbea04c3a77d23e193c23cb411e7598a04ba13a4592842fe2f","impliedFormat":1},{"version":"37be812b06e518320ba82e2aff3ac2ca37370a9df917db708f081b9043fa3315","impliedFormat":1},{"version":"0504070e7eaba788f5d0d5926782ed177f1db01cee28363c488fae94950c0bbc","impliedFormat":1},{"version":"d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","impliedFormat":1},{"version":"b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","impliedFormat":1},{"version":"f0c3a51c7314523b169d4756b2df6e3e59a3f0d9bc4848248362edaf75b5d315","impliedFormat":1},{"version":"2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed","impliedFormat":1},{"version":"a899915e1fc41c6130d906ae77067b63ff2d678bb842b4c7a0741dca7f55c218","affectsGlobalScope":true,"impliedFormat":1},{"version":"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","impliedFormat":1},{"version":"0e13570a7e86c6d83dd92e81758a930f63747483e2cd34ef36fcdb47d1f9726a","impliedFormat":1},{"version":"5c45abf1e13e4463eacfd5dedda06855da8748a6a6cb3334f582b52e219acc04","impliedFormat":1},{"version":"6847334317c1bc1e6fc4b679b0095bbd2b6ee3b85fe3f26fc26bac462f68ef5e","impliedFormat":1},{"version":"2224f3072e3cc07906eeed5c71746779511fba2dd224addc5489bcdb489bdee5","impliedFormat":1},{"version":"785b9d575b49124ce01b46f5b9402157c7611e6532effa562ac6aebec0074dfc","impliedFormat":1},{"version":"211440ce81e87b3491cdf07155881344b0a61566df6e749acff0be7e8b9d1a07","impliedFormat":1},{"version":"5d9a0b6e6be8dbb259f64037bce02f34692e8c1519f5cd5d467d7fa4490dced4","impliedFormat":1},{"version":"880da0e0f3ebca42f9bd1bc2d3e5e7df33f2619d85f18ee0ed4bd16d1800bc32","impliedFormat":1},{"version":"fbf802b3a028f5eb22ad406ee5fc7c368f0acfd3a2a6d0f805120766f5717ec8","impliedFormat":1},{"version":"0112a7f3c11fc4792e70f5d0d5c9f80ee6a1c5c548723714433da6a03307e87b","impliedFormat":1},{"version":"a8d630427635fa316e57fa4949132acde9cf23aa067220bffea30612497824cc","impliedFormat":1},{"version":"7a1dd1e9c8bf5e23129495b10718b280340c7500570e0cfe5cffcdee51e13e48","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"7e8d3f08435ad2cefe67f58182618bfc9a0a29db08cf2544b94cbcae754a9bd9","impliedFormat":1},{"version":"8cf9b9045a614f883b623c2f1a631ec6a93321747e933330b2eec0ee47164a34","impliedFormat":1},{"version":"cee62e64fc4bdfb3798ab8e21486fadd2027ce4128349989acc63905366f91c5","impliedFormat":1},{"version":"f4b436d9b250c7e7087edef00fc0ecf9a62cbbbfe0f1d1c4f3888f1355c17eeb","impliedFormat":1},{"version":"643976e0b3d579304eafdb817bffc5b33bd8f99636ba9f5ee7a8d33288c1ae94","impliedFormat":1},{"version":"169cc96316cacf8b489aaab4ac6bcef7b33e8779a8902bce57c737b4aa372d16","impliedFormat":1},{"version":"b58c81d4cc365d3986aee6c2a86592edc50f141b796899079196ffb103047390","impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","impliedFormat":1},{"version":"b70c7ea83a7d0de17a791d9b5283f664033a96362c42cc4d2b2e0bdaa65ef7d1","impliedFormat":1},{"version":"6825eb4d1c8beb77e9ed6681c830326a15ebf52b171f83ffbca1b1574c90a3b0","impliedFormat":1},{"version":"1741975791f9be7f803a826457273094096e8bba7a50f8fa960d5ed2328cdbcc","impliedFormat":1},{"version":"6ec0d1c15d14d63d08ccb10d09d839bf8a724f6b4b9ed134a3ab5042c54a7721","impliedFormat":1},{"version":"043a3b03dcb40d6b87d36ad26378c80086905232ee5602f067eaaed21baa42ef","impliedFormat":1},{"version":"b61028c5e29a0691e91a03fa2c4501ea7ed27f8fa536286dc2887a39a38b6c44","impliedFormat":1},{"version":"2c3bcb8a4ea2fcb4208a06672af7540dd65bf08298d742f041ffa6cbe487cf80","impliedFormat":1},{"version":"1cce0460d75645fc40044c729da9a16c2e0dabe11a58b5e4bfd62ac840a1835d","impliedFormat":1},{"version":"c784a9f75a6f27cf8c43cc9a12c66d68d3beb2e7376e1babfae5ae4998ffbc4a","impliedFormat":1},{"version":"feb4c51948d875fdbbaa402dad77ee40cf1752b179574094b613d8ad98921ce1","impliedFormat":1},{"version":"a6d3984b706cefe5f4a83c1d3f0918ff603475a2a3afa9d247e4114f18b1f1ef","impliedFormat":1},{"version":"b457d606cabde6ea3b0bc32c23dc0de1c84bb5cb06d9e101f7076440fc244727","impliedFormat":1},{"version":"9d59919309a2d462b249abdefba8ca36b06e8e480a77b36c0d657f83a63af465","impliedFormat":1},{"version":"9faa2661daa32d2369ec31e583df91fd556f74bcbd036dab54184303dee4f311","impliedFormat":1},{"version":"ba2e5b6da441b8cf9baddc30520c59dc3ab47ad3674f6cb51f64e7e1f662df12","impliedFormat":1},{"version":"da3d9c69fe4d916969f59b6553ac79b49e8dea8d35084733c396a3555d155f56","impliedFormat":1},{"version":"a589f9f052276a3fc00b75e62f73b93ea568fce3e935b86ed7052945f99d9dc2","impliedFormat":1},{"version":"17230b34bb564a3a2e36f9d3985372ccab4ad1722df2c43f7c5c2b553f68e5db","impliedFormat":1},{"version":"6e5c9272f6b3783be7bdddaf207cccdb8e033be3d14c5beacc03ae9d27d50929","impliedFormat":1},{"version":"9b4f7ff9681448c72abe38ea8eefd7ffe0c3aefe495137f02012a08801373f71","impliedFormat":1},{"version":"0dfe35191a04e8f9dc7caeb9f52f2ee07402736563d12cbccd15fb5f31ac877f","impliedFormat":1},{"version":"1fcf48177cd64f25c193ecc0bf33995d54ea527e29f7faf8cf666f54f3fa0375","impliedFormat":1},{"version":"6ab263df6465e2ed8f1d02922bae18bb5b407020767de021449a4c509859b22e","impliedFormat":1},{"version":"6805621d9f970cda51ab1516e051febe5f3ec0e45b371c7ad98ac2700d13d57c","impliedFormat":1},{"version":"17ed71200119e86ccef2d96b73b02ce8854b76ad6bd21b5021d4269bec527b5f","impliedFormat":1},{"version":"cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","impliedFormat":1},{"version":"9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","impliedFormat":1},{"version":"c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","impliedFormat":1},{"version":"8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","impliedFormat":1},{"version":"86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","impliedFormat":1},{"version":"42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","impliedFormat":1},{"version":"ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","impliedFormat":1},{"version":"83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","impliedFormat":1},{"version":"1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","impliedFormat":1},{"version":"0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","impliedFormat":1},{"version":"cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","impliedFormat":1},{"version":"c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","impliedFormat":1},{"version":"f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","impliedFormat":1},{"version":"0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","impliedFormat":1},{"version":"7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","impliedFormat":1},{"version":"bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","impliedFormat":1},{"version":"52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","impliedFormat":1},{"version":"770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","impliedFormat":1},{"version":"d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","impliedFormat":1},{"version":"799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","impliedFormat":1},{"version":"2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","impliedFormat":1},{"version":"9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","impliedFormat":1},{"version":"397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","impliedFormat":1},{"version":"a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","impliedFormat":1},{"version":"a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","impliedFormat":1},{"version":"c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","impliedFormat":1},{"version":"4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","impliedFormat":1},{"version":"f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","impliedFormat":1},{"version":"cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","impliedFormat":1},{"version":"b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","impliedFormat":1},{"version":"c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","impliedFormat":1},{"version":"14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","impliedFormat":1},{"version":"a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","impliedFormat":1},{"version":"f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","impliedFormat":1},{"version":"3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","impliedFormat":1},{"version":"662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","impliedFormat":1},{"version":"c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","impliedFormat":1},{"version":"2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"7d8ddf0f021c53099e34ee831a06c394d50371816caa98684812f089b4c6b3d4","impliedFormat":1},{"version":"f874ea4d0091b0a44362a5f74d26caab2e66dec306c2bf7e8965f5106e784c3b","impliedFormat":1}],"root":[[80,92]],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":4,"module":99,"noEmitOnError":true,"noImplicitOverride":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":7,"useDefineForClassFields":true},"referencedMap":[[192,1],[190,2],[188,3],[189,2],[195,4],[191,1],[193,5],[194,1],[196,2],[198,6],[212,7],[197,3],[213,2],[223,8],[224,2],[218,9],[221,10],[227,11],[228,2],[219,2],[229,2],[230,2],[231,2],[232,2],[225,12],[226,2],[222,2],[235,13],[233,13],[236,14],[234,15],[237,13],[238,2],[214,2],[239,2],[241,2],[242,16],[95,17],[96,17],[136,18],[137,19],[138,20],[139,21],[140,22],[141,23],[142,24],[143,25],[144,26],[145,27],[146,27],[148,28],[147,29],[149,30],[150,31],[151,32],[135,33],[186,2],[152,34],[153,35],[154,36],[155,37],[156,38],[157,39],[158,40],[159,41],[160,42],[161,43],[162,44],[163,45],[164,46],[165,46],[166,47],[167,2],[168,48],[170,49],[169,50],[171,51],[172,52],[173,53],[174,54],[175,55],[176,56],[177,57],[94,58],[93,2],[187,59],[178,60],[179,61],[180,62],[181,63],[182,64],[183,65],[184,66],[185,67],[256,68],[243,69],[250,70],[246,71],[244,72],[247,73],[251,74],[252,70],[249,75],[248,76],[253,77],[254,78],[255,79],[245,80],[257,2],[263,81],[258,2],[265,82],[77,2],[216,2],[217,2],[266,83],[75,2],[78,84],[79,83],[291,85],[292,86],[267,87],[270,87],[289,85],[290,85],[280,85],[279,88],[277,85],[272,85],[285,85],[283,85],[287,85],[271,85],[284,85],[288,85],[273,85],[274,85],[286,85],[268,85],[275,85],[276,85],[278,85],[282,85],[293,89],[281,85],[269,85],[306,90],[305,2],[300,89],[302,91],[301,89],[294,89],[295,89],[297,89],[299,89],[303,91],[304,91],[296,91],[298,91],[215,92],[220,93],[307,2],[199,94],[97,2],[202,95],[210,96],[200,97],[204,2],[201,98],[206,2],[211,99],[207,2],[203,100],[208,2],[205,101],[209,2],[76,2],[240,102],[264,2],[262,103],[259,104],[261,105],[260,2],[73,2],[74,2],[12,2],[13,2],[15,2],[14,2],[2,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[23,2],[3,2],[24,2],[4,2],[25,2],[29,2],[26,2],[27,2],[28,2],[30,2],[31,2],[32,2],[5,2],[33,2],[34,2],[35,2],[36,2],[6,2],[40,2],[37,2],[38,2],[39,2],[41,2],[7,2],[42,2],[47,2],[48,2],[43,2],[44,2],[45,2],[46,2],[8,2],[52,2],[49,2],[50,2],[51,2],[53,2],[9,2],[54,2],[55,2],[56,2],[59,2],[57,2],[58,2],[60,2],[61,2],[10,2],[62,2],[1,2],[63,2],[64,2],[11,2],[69,2],[66,2],[65,2],[72,2],[70,2],[68,2],[71,2],[67,2],[113,106],[123,107],[112,106],[133,108],[104,109],[103,110],[132,104],[126,111],[131,112],[106,113],[120,114],[105,115],[129,116],[101,117],[100,104],[130,118],[102,119],[107,120],[108,2],[111,120],[98,2],[134,121],[124,122],[115,123],[116,124],[118,125],[114,126],[117,127],[127,104],[109,128],[110,129],[119,130],[99,131],[122,122],[121,120],[125,2],[128,132],[80,133],[92,134],[84,135],[85,136],[86,135],[91,137],[82,138],[83,133],[87,139],[88,138],[89,133],[90,136],[81,133]],"latestChangedDtsFile":"./index.d.ts","version":"5.6.3"}
|
|
1
|
+
{"fileNames":["../../../../node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../../node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../../node_modules/typescript/lib/lib.esnext.string.d.ts","../../../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../../node_modules/typescript/lib/lib.esnext.object.d.ts","../../../../node_modules/typescript/lib/lib.esnext.regexp.d.ts","../../../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../node_modules/@types/react/global.d.ts","../../../../node_modules/csstype/index.d.ts","../../../../node_modules/@types/prop-types/index.d.ts","../../../../node_modules/@types/react/index.d.ts","../../../../node_modules/@types/react/jsx-runtime.d.ts","../../src/ProjectRole.ts","../../src/schema/value.ts","../../src/schema/input.ts","../../src/schema/json.ts","../../src/schema/acl.ts","../../src/schema/actions.ts","../../src/schema/actionsPayload.ts","../../src/schema/model.ts","../../src/schema/result.ts","../../src/schema/settings.ts","../../src/schema/validation.ts","../../src/schema/index.ts","../../src/index.ts","../../../../node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../../../../node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../../../../node_modules/@types/node/assert.d.ts","../../../../node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/buffer/index.d.ts","../../../../node_modules/undici-types/header.d.ts","../../../../node_modules/undici-types/readable.d.ts","../../../../node_modules/undici-types/file.d.ts","../../../../node_modules/undici-types/fetch.d.ts","../../../../node_modules/undici-types/formdata.d.ts","../../../../node_modules/undici-types/connector.d.ts","../../../../node_modules/undici-types/client.d.ts","../../../../node_modules/undici-types/errors.d.ts","../../../../node_modules/undici-types/dispatcher.d.ts","../../../../node_modules/undici-types/global-dispatcher.d.ts","../../../../node_modules/undici-types/global-origin.d.ts","../../../../node_modules/undici-types/pool-stats.d.ts","../../../../node_modules/undici-types/pool.d.ts","../../../../node_modules/undici-types/handlers.d.ts","../../../../node_modules/undici-types/balanced-pool.d.ts","../../../../node_modules/undici-types/agent.d.ts","../../../../node_modules/undici-types/mock-interceptor.d.ts","../../../../node_modules/undici-types/mock-agent.d.ts","../../../../node_modules/undici-types/mock-client.d.ts","../../../../node_modules/undici-types/mock-pool.d.ts","../../../../node_modules/undici-types/mock-errors.d.ts","../../../../node_modules/undici-types/proxy-agent.d.ts","../../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../../node_modules/undici-types/retry-handler.d.ts","../../../../node_modules/undici-types/retry-agent.d.ts","../../../../node_modules/undici-types/api.d.ts","../../../../node_modules/undici-types/interceptors.d.ts","../../../../node_modules/undici-types/util.d.ts","../../../../node_modules/undici-types/cookies.d.ts","../../../../node_modules/undici-types/patch.d.ts","../../../../node_modules/undici-types/websocket.d.ts","../../../../node_modules/undici-types/eventsource.d.ts","../../../../node_modules/undici-types/filereader.d.ts","../../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../../node_modules/undici-types/content-type.d.ts","../../../../node_modules/undici-types/cache.d.ts","../../../../node_modules/undici-types/index.d.ts","../../../../node_modules/@types/node/globals.d.ts","../../../../node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/@types/node/buffer.d.ts","../../../../node_modules/@types/node/child_process.d.ts","../../../../node_modules/@types/node/cluster.d.ts","../../../../node_modules/@types/node/console.d.ts","../../../../node_modules/@types/node/constants.d.ts","../../../../node_modules/@types/node/crypto.d.ts","../../../../node_modules/@types/node/dgram.d.ts","../../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/@types/node/dns.d.ts","../../../../node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/@types/node/domain.d.ts","../../../../node_modules/@types/node/dom-events.d.ts","../../../../node_modules/@types/node/events.d.ts","../../../../node_modules/@types/node/fs.d.ts","../../../../node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/@types/node/http.d.ts","../../../../node_modules/@types/node/http2.d.ts","../../../../node_modules/@types/node/https.d.ts","../../../../node_modules/@types/node/inspector.d.ts","../../../../node_modules/@types/node/module.d.ts","../../../../node_modules/@types/node/net.d.ts","../../../../node_modules/@types/node/os.d.ts","../../../../node_modules/@types/node/path.d.ts","../../../../node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/@types/node/process.d.ts","../../../../node_modules/@types/node/punycode.d.ts","../../../../node_modules/@types/node/querystring.d.ts","../../../../node_modules/@types/node/readline.d.ts","../../../../node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/@types/node/repl.d.ts","../../../../node_modules/@types/node/sea.d.ts","../../../../node_modules/@types/node/stream.d.ts","../../../../node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/@types/node/stream/web.d.ts","../../../../node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/@types/node/test.d.ts","../../../../node_modules/@types/node/timers.d.ts","../../../../node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/@types/node/tls.d.ts","../../../../node_modules/@types/node/trace_events.d.ts","../../../../node_modules/@types/node/tty.d.ts","../../../../node_modules/@types/node/url.d.ts","../../../../node_modules/@types/node/util.d.ts","../../../../node_modules/@types/node/v8.d.ts","../../../../node_modules/@types/node/vm.d.ts","../../../../node_modules/@types/node/wasi.d.ts","../../../../node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/@types/node/zlib.d.ts","../../../../node_modules/@types/node/globals.global.d.ts","../../../../node_modules/@types/node/ts5.6/index.d.ts","../../../../node_modules/@types/accepts/index.d.ts","../../../../node_modules/@types/aria-query/index.d.ts","../../../../node_modules/@babel/types/lib/index.d.ts","../../../../node_modules/@types/babel__generator/index.d.ts","../../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../../node_modules/@types/babel__template/index.d.ts","../../../../node_modules/@types/babel__traverse/index.d.ts","../../../../node_modules/@types/babel__core/index.d.ts","../../../../node_modules/@types/bcryptjs/index.d.ts","../../../../node_modules/@types/connect/index.d.ts","../../../../node_modules/@types/body-parser/index.d.ts","../../../../node_modules/@types/ws/index.d.ts","../../../../node_modules/bun-types/fetch.d.ts","../../../../node_modules/bun-types/globals.d.ts","../../../../node_modules/bun-types/bun.d.ts","../../../../node_modules/bun-types/overrides.d.ts","../../../../node_modules/bun-types/ffi.d.ts","../../../../node_modules/bun-types/test.d.ts","../../../../node_modules/bun-types/html-rewriter.d.ts","../../../../node_modules/bun-types/jsc.d.ts","../../../../node_modules/bun-types/sqlite.d.ts","../../../../node_modules/bun-types/wasm.d.ts","../../../../node_modules/bun-types/deprecated.d.ts","../../../../node_modules/bun-types/index.d.ts","../../../../node_modules/@types/bun/index.d.ts","../../../../node_modules/@types/content-disposition/index.d.ts","../../../../node_modules/@types/mime/index.d.ts","../../../../node_modules/@types/send/index.d.ts","../../../../node_modules/@types/qs/index.d.ts","../../../../node_modules/@types/range-parser/index.d.ts","../../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../../node_modules/@types/http-errors/index.d.ts","../../../../node_modules/@types/serve-static/index.d.ts","../../../../node_modules/@types/express/index.d.ts","../../../../node_modules/@types/keygrip/index.d.ts","../../../../node_modules/@types/cookies/index.d.ts","../../../../node_modules/@types/estree/index.d.ts","../../../../node_modules/@types/jsonfile/index.d.ts","../../../../node_modules/@types/jsonfile/utils.d.ts","../../../../node_modules/@types/fs-extra/index.d.ts","../../../../node_modules/@types/http-assert/index.d.ts","../../../../node_modules/@types/is-hotkey/index.d.ts","../../../../node_modules/@types/js-levenshtein/index.d.ts","../../../../node_modules/@types/js-yaml/index.d.ts","../../../../node_modules/@types/json-schema/index.d.ts","../../../../node_modules/@types/koa-compose/index.d.ts","../../../../node_modules/@types/koa/index.d.ts","../../../../node_modules/@types/koa-bodyparser/index.d.ts","../../../../node_modules/@types/koa-compress/index.d.ts","../../../../node_modules/@types/koa__cors/index.d.ts","../../../../node_modules/@types/mime-types/index.d.ts","../../../../node_modules/@types/mustache/index.d.ts","../../../../node_modules/form-data/index.d.ts","../../../../node_modules/@types/node-fetch/externals.d.ts","../../../../node_modules/@types/node-fetch/index.d.ts","../../../../node_modules/@types/nodemailer/lib/dkim/index.d.ts","../../../../node_modules/@types/nodemailer/lib/mailer/mail-message.d.ts","../../../../node_modules/@types/nodemailer/lib/xoauth2/index.d.ts","../../../../node_modules/@types/nodemailer/lib/mailer/index.d.ts","../../../../node_modules/@types/nodemailer/lib/mime-node/index.d.ts","../../../../node_modules/@types/nodemailer/lib/smtp-connection/index.d.ts","../../../../node_modules/@types/nodemailer/lib/shared/index.d.ts","../../../../node_modules/@types/nodemailer/lib/json-transport/index.d.ts","../../../../node_modules/@types/nodemailer/lib/sendmail-transport/index.d.ts","../../../../node_modules/@types/nodemailer/lib/ses-transport/index.d.ts","../../../../node_modules/@types/nodemailer/lib/smtp-pool/index.d.ts","../../../../node_modules/@types/nodemailer/lib/smtp-transport/index.d.ts","../../../../node_modules/@types/nodemailer/lib/stream-transport/index.d.ts","../../../../node_modules/@types/nodemailer/index.d.ts","../../../../node_modules/@types/npm-package-arg/index.d.ts","../../../../node_modules/@types/pg/node_modules/pg-types/index.d.ts","../../../../node_modules/pg-protocol/dist/messages.d.ts","../../../../node_modules/pg-protocol/dist/serializer.d.ts","../../../../node_modules/pg-protocol/dist/parser.d.ts","../../../../node_modules/pg-protocol/dist/index.d.ts","../../../../node_modules/@types/pg/index.d.ts","../../../../node_modules/kleur/kleur.d.ts","../../../../node_modules/@types/prompts/index.d.ts","../../../../node_modules/@types/react-dom/index.d.ts","../../../../node_modules/@types/semver/classes/semver.d.ts","../../../../node_modules/@types/semver/functions/parse.d.ts","../../../../node_modules/@types/semver/functions/valid.d.ts","../../../../node_modules/@types/semver/functions/clean.d.ts","../../../../node_modules/@types/semver/functions/inc.d.ts","../../../../node_modules/@types/semver/functions/diff.d.ts","../../../../node_modules/@types/semver/functions/major.d.ts","../../../../node_modules/@types/semver/functions/minor.d.ts","../../../../node_modules/@types/semver/functions/patch.d.ts","../../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../../node_modules/@types/semver/functions/compare.d.ts","../../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../../node_modules/@types/semver/functions/sort.d.ts","../../../../node_modules/@types/semver/functions/rsort.d.ts","../../../../node_modules/@types/semver/functions/gt.d.ts","../../../../node_modules/@types/semver/functions/lt.d.ts","../../../../node_modules/@types/semver/functions/eq.d.ts","../../../../node_modules/@types/semver/functions/neq.d.ts","../../../../node_modules/@types/semver/functions/gte.d.ts","../../../../node_modules/@types/semver/functions/lte.d.ts","../../../../node_modules/@types/semver/functions/cmp.d.ts","../../../../node_modules/@types/semver/functions/coerce.d.ts","../../../../node_modules/@types/semver/classes/comparator.d.ts","../../../../node_modules/@types/semver/classes/range.d.ts","../../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../../node_modules/@types/semver/ranges/valid.d.ts","../../../../node_modules/@types/semver/ranges/outside.d.ts","../../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../../node_modules/@types/semver/ranges/subset.d.ts","../../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../../node_modules/@types/semver/index.d.ts"],"fileIdsList":[[94,137,190,202,210],[94,137,202,210],[94,137,152,187,202,210],[94,137,190,191,192,193,194,202,210],[94,137,190,192,202,210],[94,137,152,187,197,202,210],[94,137,202,210,211],[94,137,152,187,197,202,210,221,222],[94,137,149,152,187,202,210,215,216,217],[94,137,198,202,210,216,218,220],[94,137,150,187,202,210,225,226],[94,137,150,179,187,202,210],[94,137,202,210,234],[94,137,185,187,202,210,234],[94,136,137,149,152,153,157,163,179,187,188,202,210,213,219,222,223,228,233],[94,137,152,179,187,202,210,240,241],[94,95,137,202,210],[94,136,137,202,210],[94,137,142,171,202,210],[94,137,138,143,149,150,157,168,179,202,210],[94,137,138,139,149,157,202,210],[94,137,140,180,202,210],[94,137,141,142,150,158,202,210],[94,137,142,168,176,202,210],[94,137,143,145,149,157,202,210],[94,136,137,144,202,210],[94,137,145,146,202,210],[94,137,149,202,210],[94,137,147,149,202,210],[94,136,137,149,202,210],[94,137,149,150,151,168,179,202,210],[94,137,149,150,151,164,168,171,202,203,210],[94,134,137,184,202,210],[94,137,145,149,152,157,168,179,202,210],[94,137,149,150,152,153,157,168,176,179,202,210],[94,137,152,154,168,176,179,202,210],[94,137,149,155,202,210],[94,137,156,179,184,202,210],[94,137,145,149,157,168,202,210],[94,137,158,202,210],[94,137,159,202,210],[94,136,137,160,202,210],[94,95,96,136,137,138,139,140,141,142,143,144,145,146,147,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,202,203,210],[94,137,162,202,210],[94,137,163,202,210],[94,137,149,164,165,202,210],[94,137,164,166,180,182,202,210],[94,137,149,168,169,170,171,202,210],[94,137,168,170,202,210],[94,137,168,169,202,210],[94,137,171,202,210],[94,137,172,202,210],[94,95,137,168,202,210],[94,137,149,174,175,202,210],[94,137,174,175,202,210],[94,137,142,157,168,176,202,203,210],[94,137,177,202,210],[137,202,210],[93,94,95,96,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,202,210],[94,137,157,178,202,210],[94,137,152,163,179,202,210],[94,137,142,180,202,210],[94,137,168,181,202,210],[94,137,156,182,202,210],[94,137,183,202,210],[94,137,142,149,151,160,168,179,182,184,202,210],[94,137,168,185,202,210],[94,137,187,202,210,244,246,250,251,252,253,254,255],[94,137,168,187,202,210],[94,137,149,187,202,210,244,246,247,249,256],[94,137,149,157,168,179,187,202,210,243,244,245,247,248,249,256],[94,137,168,187,202,210,246,247],[94,137,168,187,202,210,246],[94,137,187,202,210,244,246,247,249,256],[94,137,168,187,202,210,248],[94,137,149,157,168,176,187,202,203,210,245,247,249],[94,137,149,187,202,210,244,246,247,248,249,256],[94,137,149,168,187,202,210,244,245,246,247,248,249,256],[94,137,149,168,187,202,210,244,246,247,249,256],[94,137,152,168,187,202,210,249],[94,137,149,168,176,187,202,203,210,258,259,262,263],[94,137,168,187,202,210,264],[78,94,137,202,210],[75,76,77,94,137,202,210],[94,137,202,210,267,306],[94,137,202,210,267,291,306],[94,137,202,210,306],[94,137,202,210,267],[94,137,202,210,267,292,306],[94,137,202,210,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305],[94,137,202,210,292,306],[94,137,150,168,187,202,210,214],[94,137,152,187,202,210,215,219],[94,137,149,152,154,168,176,179,185,187,202,203,210],[94,137,142,176,180,203,210],[94,137,202],[94,134,137,202,210],[94,134,137,142,160,168,171,180,184,199,200,202,210],[94,137,187,199,200,201,202,203,204,205,206,207,208,209,210],[94,137,151,176,202,210],[94,137,202,205,210],[94,137,152,168,187,202,210],[94,137,187,202,210,259,260,261],[94,137,187,202,210],[94,137,168,187,202,210,259],[94,106,110,137,179,202,210],[94,106,137,168,179,202,210],[94,101,137,202,210],[94,103,106,137,176,179,202,203,210],[94,137,157,176,202,203,210],[94,101,137,187,202,210],[94,103,106,137,157,179,202,210],[94,98,99,102,105,137,149,168,179,202,210],[94,106,113,137,202,210],[94,98,104,137,202,210],[94,106,127,128,137,202,210],[94,102,106,137,171,179,187,202,210],[94,127,137,187,202,210],[94,100,101,137,187,202,210],[94,106,137,202,210],[94,100,101,102,103,104,105,106,107,108,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,128,129,130,131,132,133,137,202,210],[94,106,121,137,202,210],[94,106,113,114,137,202,210],[94,104,106,114,115,137,202,210],[94,105,137,202,210],[94,98,101,106,137,202,210],[94,106,110,114,115,137,202,210],[94,110,137,202,210],[94,104,106,109,137,179,202,210],[94,98,103,106,113,137,202,210],[94,137,168,202,210],[94,101,106,127,137,184,187,202,210],[79,94,137,202,210],[79,80,91,94,137,202,210],[79,82,83,94,137,202,210],[79,83,94,137,202,210],[79,81,82,83,84,85,86,87,88,89,90,94,137,202,210],[79,81,94,137,202,210]],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"abee51ebffafd50c07d76be5848a34abfe4d791b5745ef1e5648718722fab924","impliedFormat":1},{"version":"9e8ca8ed051c2697578c023d9c29d6df689a083561feba5c14aedee895853999","affectsGlobalScope":true,"impliedFormat":1},{"version":"69e65d976bf166ce4a9e6f6c18f94d2424bf116e90837ace179610dbccad9b42","affectsGlobalScope":true,"impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"45d8ccb3dfd57355eb29749919142d4321a0aa4df6acdfc54e30433d7176600a","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a94697425a99354df73d9c8291e2ecd4dddd370aed4023c2d6dee6cccb32666","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3f9fc0ec0b96a9e642f11eda09c0be83a61c7b336977f8b9fdb1e9788e925fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true,"impliedFormat":1},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"15c1c3d7b2e46e0025417ed6d5f03f419e57e6751f87925ca19dc88297053fe6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d540251809289a05349b70ab5f4b7b99f922af66ab3c39ba56a475dcf95d5ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0b11f3ca66aa33124202c80b70cd203219c3d4460cfc165e0707aa9ec710fc53","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a3f5a0129cc80cf439ab71164334d649b47059a4f5afca90282362407d0c87f","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"61d6a2092f48af66dbfb220e31eea8b10bc02b6932d6e529005fd2d7b3281290","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"36a2e4c9a67439aca5f91bb304611d5ae6e20d420503e96c230cf8fcdc948d94","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"65ff5a0aefd7817a03c1ad04fee85c9cdd3ec415cc3c9efec85d8008d4d5e4ee","impliedFormat":1},{"version":"aea201321e7df78b294c9c39c61503ed81fb73b1b1703240013b557dfa25b016","affectsGlobalScope":true,"impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","impliedFormat":1},{"version":"b0d74cce9e676c2b6c48208ef6c1fabad459205f23e4dde2338c7829dff709ba","signature":"466df547af9cf3861658b08baf3ecbd41c0eaad2101378fadfa54ab24db103e6"},{"version":"72c7269d60a743e28df9b1e5c3afbe833f95fa7821ee24b1a3cd090898ff368d","signature":"67070445e9cb6a031953839e5f673d751255409d0ecd2ce8a8bd8f09bb4a07f2"},{"version":"77f540a9fcb61ade39b8b027e650afdf88bb4c6f9a3e6cc4cc1bdce8418c748e","signature":"91789a99e4f308f5f34ac7dd87445c81ff6ecd2d1255c991b3961a91ae7adb9d"},{"version":"8400bff5f2de1f00f071ac265cf7fab8d6f3aeead7550e8973982c8822667b97","signature":"b1296831e111197bd9ebd73f0d15ad0fe2e11fcc51a6302edb23ffd93794db36"},{"version":"a2bada59581ed4ef95f7d521f60655995d399aaacd6e6d2aa8db527a6fcf91f2","signature":"2a3c0a7b4dd551ceb2f73212408e6ce4f2ee39e937908d091dc36e0bc3ff3816"},{"version":"fb65bb7426501402feebb61da84888967f80b47136af89809077412c244356ac","signature":"ec0b1ad8de385d526b4e16c7ab8da4b84c1fb15a680d4c82b0e0b5f70e9f80c5"},{"version":"d2e93f537b86ee2f10c76708520a173188e8fb081045da7eb60e28de88b384ca","signature":"462c0b72a4911d6356ebbfed5dedd9682edf2bd60bcf6ea025539f1cd8c64bf4"},{"version":"5e33308025bad5d98217ee8ada41b0554d12b8878304a3ceb7e4695102e9e550","signature":"854059300b5203b0981a384addb3f333c8bd1797c027fb5b8d5b82b0a47d7974"},{"version":"73f344593733ca1af0ba8ffc6295b418bf5b4ad1a373a1480a884b7b1e283c9c","signature":"f42116e2e8ad600dc90bdf8ceade9dcf593c35812d8aaba9c03a3f1dbb87330e"},{"version":"e69edd6b0cdca3f611af48c8aac743fd929c35cbb026c7630cddccdbdf5e56a4","signature":"54410f2253354330ff63801044c8d826de679724d9b60d5d3053d3af6aee993f"},{"version":"c88218c1acee8645370add51cceb22b3b8e9af4e069fade9f606ddf8a13f977e","signature":"dff2fee737ebe5174f549c9f28e114c0cabac4b5fe4e364654465ba528979ba4"},{"version":"6dd63c3f324b584c843826db188b8dec1d55b4940817f7abac84ceda4b17e977","signature":"ad1f130d5fb49665e218d5366db67ead55593335a2c02733ae5f8466a99def53"},{"version":"c2e2372d5768b6d90e82087d5ef0feebbb2449c153b80c45c2e323e0d2b2f22a","signature":"92404f0f42ffd8d939cf6fb1a911235e931981f94dcab0e85f9ae5faf876ea3c"},{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true,"impliedFormat":1},{"version":"2d1319e6b5d0efd8c5eae07eb864a00102151e8b9afddd2d45db52e9aae002c4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2db0dd3aaa2ed285950273ce96ae8a450b45423aa9da2d10e194570f1233fa6b","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"4d2b0eb911816f66abe4970898f97a2cfc902bcd743cbfa5017fad79f7ef90d8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"24b8685c62562f5d98615c5a0c1d05f297cf5065f15246edfe99e81ec4c0e011","impliedFormat":1},{"version":"93507c745e8f29090efb99399c3f77bec07db17acd75634249dc92f961573387","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"4eedea23b8a843ec0fd51a384fb6b9fe1bc89198f713d0465c2c8392a9d51271","affectsGlobalScope":true,"impliedFormat":1},{"version":"3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36","impliedFormat":1},{"version":"d674383111e06b6741c4ad2db962131b5b0fa4d0294b998566c635e86195a453","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3e58c4c18a031cbb17abec7a4ad0bd5ae9fc70c1f4ba1e7fb921ad87c504aca","impliedFormat":1},{"version":"a3e8bafb2af8e850c644f4be7f5156cf7d23b7bfdc3b786bd4d10ed40329649c","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"c521f961c1606c94dc831992e659f426b6def6e2e6e327ee25d3c642eb393f95","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0c0d1d13be149f790a75b381b413490f98558649428bb916fd2d71a3f47a134","impliedFormat":1},{"version":"3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","impliedFormat":1},{"version":"5a369483ac4cfbdf0331c248deeb36140e6907db5e1daed241546b4a2055f82c","impliedFormat":1},{"version":"e8f5b5cc36615c17d330eaf8eebbc0d6bdd942c25991f96ef122f246f4ff722f","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"f0de0233242682db9ac13efa0ddbb456a41abe6f291211b40ba3aa766b03e9b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"596572d40c1f13d8b57920d6d1a77c5ec6fe4952dc157f416f04a801cd3e2678","impliedFormat":1},{"version":"ad23fd126ff06e72728dd7bfc84326a8ca8cec2b9d2dac0193d42a777df0e7d8","impliedFormat":1},{"version":"a55fd4d49da86d2cc19de575beb1515184e55f5f3165e1482ff02fd99f900b5c","impliedFormat":1},{"version":"93bd413918fa921c8729cef45302b24d8b6c7855d72d5bf82d3972595ae8dcbf","impliedFormat":1},{"version":"4ff41188773cbf465807dd2f7059c7494cbee5115608efc297383832a1150c43","impliedFormat":1},{"version":"dccdf1677e531e33f8ac961a68bc537418c9a414797c1ea7e91307501cdc3f5e","impliedFormat":1},{"version":"7edec695cdb707c7146ac34c44ca364469c7ea504344b3206c686e79f61b61a2","affectsGlobalScope":true,"impliedFormat":1},{"version":"d206b4baf4ddcc15d9d69a9a2f4999a72a2c6adeaa8af20fa7a9960816287555","impliedFormat":1},{"version":"93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","impliedFormat":1},{"version":"d1b1295af3667779be43eb6d4fbaa342e656aa2c4b77a4ad3cf42ec55baeea00","impliedFormat":1},{"version":"70731d10d5311bd4cf710ef7f6539b62660f4b0bfdbb3f9fbe1d25fe6366a7fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"a20f1e119615bf7632729fd89b6c0b5ffdc2df3b512d6304146294528e3ebe19","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"137c2894e8f3e9672d401cc0a305dc7b1db7c69511cf6d3970fb53302f9eae09","impliedFormat":1},{"version":"dd9492e12a57068f08d70cb5eb5ceb39fa5bcf23be01af574270aeee95b982af","impliedFormat":1},{"version":"e432b0e3761ca9ba734bdd41e19a75fec1454ca8e9769bfdf8b31011854cf06a","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"78955c9259da94920609be3e589fc9253268b3fffa822e1e31d28ee2ce0b8a74","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"73aa178e8fb1449ef3666093d8dca25f96302a80ee45f8ff027df8e4792bf9fd","affectsGlobalScope":true,"impliedFormat":1},{"version":"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb","impliedFormat":1},{"version":"fdedf82878e4c744bc2a1c1e802ae407d63474da51f14a54babe039018e53d8f","affectsGlobalScope":true,"impliedFormat":1},{"version":"08353b04a3501d84fc8d7b49de99f6c1cc26026e6d9d697a18315f3bfe92ed03","affectsGlobalScope":true,"impliedFormat":1},{"version":"578d8bb6dcb2a1c03c4c3f8eb71abc9677e1a5c788b7f24848e3138ce17f3400","impliedFormat":1},{"version":"4f029899f9bae07e225c43aef893590541b2b43267383bf5e32e3a884d219ed5","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"710ad93f8de29dc15e5892aa735e72348b62f40a6d1220f2849837d332f92885","affectsGlobalScope":true,"impliedFormat":1},{"version":"1f1da5d682cdb628890e4a8578fb9e8ab332e6a1a4b3a13fce08b7b4d45d192a","affectsGlobalScope":true,"impliedFormat":1},{"version":"efeedd8bbc5c0d53e760d8b120a010470722982e6ae14de8d1bcff66ebc2ae71","impliedFormat":1},{"version":"b718a94332858862943630649a310d6f8e9a09f86ae7215d8554e75bbbfd7817","impliedFormat":1},{"version":"d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c","impliedFormat":1},{"version":"616075a6ac578cf5a013ee12964188b4412823796ce0b202c6f1d2e4ca8480d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"483bb10b755f3572526fd76d9481221e8dc30568edcc1a9cc73479d8874bd16d","impliedFormat":1},{"version":"87f287f296f3ff07dbd14ea7853c2400d995dccd7bd83206196d6c0974774e96","impliedFormat":1},{"version":"ae77d81a5541a8abb938a0efedf9ac4bea36fb3a24cc28cfa11c598863aba571","impliedFormat":1},{"version":"03f1d83d61696326ea29c8a1c15cbaccf61e92598d53f2ccae06078531f42448","impliedFormat":1},{"version":"2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","impliedFormat":1},{"version":"3a9313fe5ace558b8b18e85f931da10b259e738775f411c061e5f15787b138eb","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"9e0cf651e8e2c5b9bebbabdff2f7c6f8cedd91b1d9afcc0a854cdff053a88f1b","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"a3d3f704c5339a36da3ca8c62b29072f87e86c783b8452d235992142ec71aa2d","impliedFormat":1},{"version":"104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","impliedFormat":1},{"version":"cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","impliedFormat":1},{"version":"eb15edfcef078300657e1d5d678e1944b3518c2dd8f26792fdba2fe29f73d32b","impliedFormat":1},{"version":"720f5d028d71bc22ed4a5311a6ea884329db475d994f805ea86470111eccc1a1","impliedFormat":1},{"version":"8c4df6bbce66d5c39a40a642ce426ec1b2daf16e5be2e4c88751dab596745ab6","affectsGlobalScope":true,"impliedFormat":1},{"version":"fd5e0d9b6792c4789055b2e44381f89d1328c7afa9e03755571f683b0732ed2b","affectsGlobalScope":true,"impliedFormat":1},{"version":"3de9f829f53966384023e023185c0515d18b747f0001924a1919751e6ac5308d","affectsGlobalScope":true,"impliedFormat":1},{"version":"75e5eba775a6a65a949380d689933849e190fef8a12867eb6fe884141af09d30","impliedFormat":1},{"version":"8a5b54c46c65f2f4f7d594dfd9a9bc4fb719d7a2a65d4f582aa7240ca5145a03","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b8af6e8cf44313406800b820bffc49e83a8ec4598772db25954d03a86c96818","affectsGlobalScope":true,"impliedFormat":1},{"version":"95d4d18508a76d6a7036029d974d27e5ffddd742650f967dca22cf035518ca28","impliedFormat":1},{"version":"c3b50cb839f257e949470080b12c737ce0e585d198690dffc8cc4dd91821b083","impliedFormat":1},{"version":"d2e66d9477edaa0e4dea79d699f0855a5a7419915da740e28fbfdb322c6a60a6","affectsGlobalScope":true,"impliedFormat":1},{"version":"ca69bbf884a17e7a485bb4fcd129386874050916b275e414af14b2170b4ea728","affectsGlobalScope":true,"impliedFormat":1},{"version":"b52c121cd491cfdbea04c3a77d23e193c23cb411e7598a04ba13a4592842fe2f","impliedFormat":1},{"version":"37be812b06e518320ba82e2aff3ac2ca37370a9df917db708f081b9043fa3315","impliedFormat":1},{"version":"0504070e7eaba788f5d0d5926782ed177f1db01cee28363c488fae94950c0bbc","impliedFormat":1},{"version":"d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","impliedFormat":1},{"version":"b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","impliedFormat":1},{"version":"f0c3a51c7314523b169d4756b2df6e3e59a3f0d9bc4848248362edaf75b5d315","impliedFormat":1},{"version":"2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed","impliedFormat":1},{"version":"a899915e1fc41c6130d906ae77067b63ff2d678bb842b4c7a0741dca7f55c218","affectsGlobalScope":true,"impliedFormat":1},{"version":"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","impliedFormat":1},{"version":"0e13570a7e86c6d83dd92e81758a930f63747483e2cd34ef36fcdb47d1f9726a","impliedFormat":1},{"version":"5c45abf1e13e4463eacfd5dedda06855da8748a6a6cb3334f582b52e219acc04","impliedFormat":1},{"version":"6847334317c1bc1e6fc4b679b0095bbd2b6ee3b85fe3f26fc26bac462f68ef5e","impliedFormat":1},{"version":"2224f3072e3cc07906eeed5c71746779511fba2dd224addc5489bcdb489bdee5","impliedFormat":1},{"version":"785b9d575b49124ce01b46f5b9402157c7611e6532effa562ac6aebec0074dfc","impliedFormat":1},{"version":"211440ce81e87b3491cdf07155881344b0a61566df6e749acff0be7e8b9d1a07","impliedFormat":1},{"version":"5d9a0b6e6be8dbb259f64037bce02f34692e8c1519f5cd5d467d7fa4490dced4","impliedFormat":1},{"version":"880da0e0f3ebca42f9bd1bc2d3e5e7df33f2619d85f18ee0ed4bd16d1800bc32","impliedFormat":1},{"version":"fbf802b3a028f5eb22ad406ee5fc7c368f0acfd3a2a6d0f805120766f5717ec8","impliedFormat":1},{"version":"0112a7f3c11fc4792e70f5d0d5c9f80ee6a1c5c548723714433da6a03307e87b","impliedFormat":1},{"version":"a8d630427635fa316e57fa4949132acde9cf23aa067220bffea30612497824cc","impliedFormat":1},{"version":"7a1dd1e9c8bf5e23129495b10718b280340c7500570e0cfe5cffcdee51e13e48","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"7e8d3f08435ad2cefe67f58182618bfc9a0a29db08cf2544b94cbcae754a9bd9","impliedFormat":1},{"version":"8cf9b9045a614f883b623c2f1a631ec6a93321747e933330b2eec0ee47164a34","impliedFormat":1},{"version":"cee62e64fc4bdfb3798ab8e21486fadd2027ce4128349989acc63905366f91c5","impliedFormat":1},{"version":"f4b436d9b250c7e7087edef00fc0ecf9a62cbbbfe0f1d1c4f3888f1355c17eeb","impliedFormat":1},{"version":"643976e0b3d579304eafdb817bffc5b33bd8f99636ba9f5ee7a8d33288c1ae94","impliedFormat":1},{"version":"169cc96316cacf8b489aaab4ac6bcef7b33e8779a8902bce57c737b4aa372d16","impliedFormat":1},{"version":"b58c81d4cc365d3986aee6c2a86592edc50f141b796899079196ffb103047390","impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","impliedFormat":1},{"version":"b70c7ea83a7d0de17a791d9b5283f664033a96362c42cc4d2b2e0bdaa65ef7d1","impliedFormat":1},{"version":"6825eb4d1c8beb77e9ed6681c830326a15ebf52b171f83ffbca1b1574c90a3b0","impliedFormat":1},{"version":"1741975791f9be7f803a826457273094096e8bba7a50f8fa960d5ed2328cdbcc","impliedFormat":1},{"version":"6ec0d1c15d14d63d08ccb10d09d839bf8a724f6b4b9ed134a3ab5042c54a7721","impliedFormat":1},{"version":"043a3b03dcb40d6b87d36ad26378c80086905232ee5602f067eaaed21baa42ef","impliedFormat":1},{"version":"b61028c5e29a0691e91a03fa2c4501ea7ed27f8fa536286dc2887a39a38b6c44","impliedFormat":1},{"version":"2c3bcb8a4ea2fcb4208a06672af7540dd65bf08298d742f041ffa6cbe487cf80","impliedFormat":1},{"version":"1cce0460d75645fc40044c729da9a16c2e0dabe11a58b5e4bfd62ac840a1835d","impliedFormat":1},{"version":"c784a9f75a6f27cf8c43cc9a12c66d68d3beb2e7376e1babfae5ae4998ffbc4a","impliedFormat":1},{"version":"feb4c51948d875fdbbaa402dad77ee40cf1752b179574094b613d8ad98921ce1","impliedFormat":1},{"version":"a6d3984b706cefe5f4a83c1d3f0918ff603475a2a3afa9d247e4114f18b1f1ef","impliedFormat":1},{"version":"b457d606cabde6ea3b0bc32c23dc0de1c84bb5cb06d9e101f7076440fc244727","impliedFormat":1},{"version":"9d59919309a2d462b249abdefba8ca36b06e8e480a77b36c0d657f83a63af465","impliedFormat":1},{"version":"9faa2661daa32d2369ec31e583df91fd556f74bcbd036dab54184303dee4f311","impliedFormat":1},{"version":"ba2e5b6da441b8cf9baddc30520c59dc3ab47ad3674f6cb51f64e7e1f662df12","impliedFormat":1},{"version":"da3d9c69fe4d916969f59b6553ac79b49e8dea8d35084733c396a3555d155f56","impliedFormat":1},{"version":"a589f9f052276a3fc00b75e62f73b93ea568fce3e935b86ed7052945f99d9dc2","impliedFormat":1},{"version":"17230b34bb564a3a2e36f9d3985372ccab4ad1722df2c43f7c5c2b553f68e5db","impliedFormat":1},{"version":"6e5c9272f6b3783be7bdddaf207cccdb8e033be3d14c5beacc03ae9d27d50929","impliedFormat":1},{"version":"9b4f7ff9681448c72abe38ea8eefd7ffe0c3aefe495137f02012a08801373f71","impliedFormat":1},{"version":"0dfe35191a04e8f9dc7caeb9f52f2ee07402736563d12cbccd15fb5f31ac877f","impliedFormat":1},{"version":"1fcf48177cd64f25c193ecc0bf33995d54ea527e29f7faf8cf666f54f3fa0375","impliedFormat":1},{"version":"6ab263df6465e2ed8f1d02922bae18bb5b407020767de021449a4c509859b22e","impliedFormat":1},{"version":"6805621d9f970cda51ab1516e051febe5f3ec0e45b371c7ad98ac2700d13d57c","impliedFormat":1},{"version":"17ed71200119e86ccef2d96b73b02ce8854b76ad6bd21b5021d4269bec527b5f","impliedFormat":1},{"version":"cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","impliedFormat":1},{"version":"9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","impliedFormat":1},{"version":"c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","impliedFormat":1},{"version":"8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","impliedFormat":1},{"version":"86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","impliedFormat":1},{"version":"42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","impliedFormat":1},{"version":"ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","impliedFormat":1},{"version":"83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","impliedFormat":1},{"version":"1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","impliedFormat":1},{"version":"0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","impliedFormat":1},{"version":"cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","impliedFormat":1},{"version":"c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","impliedFormat":1},{"version":"f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","impliedFormat":1},{"version":"0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","impliedFormat":1},{"version":"7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","impliedFormat":1},{"version":"bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","impliedFormat":1},{"version":"52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","impliedFormat":1},{"version":"770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","impliedFormat":1},{"version":"d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","impliedFormat":1},{"version":"799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","impliedFormat":1},{"version":"2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","impliedFormat":1},{"version":"9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","impliedFormat":1},{"version":"397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","impliedFormat":1},{"version":"a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","impliedFormat":1},{"version":"a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","impliedFormat":1},{"version":"c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","impliedFormat":1},{"version":"4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","impliedFormat":1},{"version":"f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","impliedFormat":1},{"version":"cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","impliedFormat":1},{"version":"b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","impliedFormat":1},{"version":"c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","impliedFormat":1},{"version":"14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","impliedFormat":1},{"version":"a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","impliedFormat":1},{"version":"f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","impliedFormat":1},{"version":"3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","impliedFormat":1},{"version":"662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","impliedFormat":1},{"version":"c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","impliedFormat":1},{"version":"2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"7d8ddf0f021c53099e34ee831a06c394d50371816caa98684812f089b4c6b3d4","impliedFormat":1}],"root":[[80,92]],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":4,"module":99,"noEmitOnError":true,"noImplicitOverride":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":7,"useDefineForClassFields":true},"referencedMap":[[192,1],[190,2],[188,3],[189,2],[195,4],[191,1],[193,5],[194,1],[196,2],[198,6],[212,7],[197,3],[213,2],[223,8],[224,2],[218,9],[221,10],[227,11],[228,2],[219,2],[229,2],[230,2],[231,2],[232,2],[225,12],[226,2],[222,2],[235,13],[233,13],[236,14],[234,15],[237,13],[238,2],[214,2],[239,2],[241,2],[242,16],[95,17],[96,17],[136,18],[137,19],[138,20],[139,21],[140,22],[141,23],[142,24],[143,25],[144,26],[145,27],[146,27],[148,28],[147,29],[149,30],[150,31],[151,32],[135,33],[186,2],[152,34],[153,35],[154,36],[155,37],[156,38],[157,39],[158,40],[159,41],[160,42],[161,43],[162,44],[163,45],[164,46],[165,46],[166,47],[167,2],[168,48],[170,49],[169,50],[171,51],[172,52],[173,53],[174,54],[175,55],[176,56],[177,57],[94,58],[93,2],[187,59],[178,60],[179,61],[180,62],[181,63],[182,64],[183,65],[184,66],[185,67],[256,68],[243,69],[250,70],[246,71],[244,72],[247,73],[251,74],[252,70],[249,75],[248,76],[253,77],[254,78],[255,79],[245,80],[257,2],[263,81],[258,2],[265,82],[77,2],[216,2],[217,2],[266,83],[75,2],[78,84],[79,83],[291,85],[292,86],[267,87],[270,87],[289,85],[290,85],[280,85],[279,88],[277,85],[272,85],[285,85],[283,85],[287,85],[271,85],[284,85],[288,85],[273,85],[274,85],[286,85],[268,85],[275,85],[276,85],[278,85],[282,85],[293,89],[281,85],[269,85],[306,90],[305,2],[300,89],[302,91],[301,89],[294,89],[295,89],[297,89],[299,89],[303,91],[304,91],[296,91],[298,91],[215,92],[220,93],[199,94],[97,2],[202,95],[210,96],[200,97],[204,2],[201,98],[206,2],[211,99],[207,2],[203,100],[208,2],[205,101],[209,2],[76,2],[240,102],[264,2],[262,103],[259,104],[261,105],[260,2],[73,2],[74,2],[12,2],[13,2],[15,2],[14,2],[2,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[23,2],[3,2],[24,2],[4,2],[25,2],[29,2],[26,2],[27,2],[28,2],[30,2],[31,2],[32,2],[5,2],[33,2],[34,2],[35,2],[36,2],[6,2],[40,2],[37,2],[38,2],[39,2],[41,2],[7,2],[42,2],[47,2],[48,2],[43,2],[44,2],[45,2],[46,2],[8,2],[52,2],[49,2],[50,2],[51,2],[53,2],[9,2],[54,2],[55,2],[56,2],[59,2],[57,2],[58,2],[60,2],[61,2],[10,2],[62,2],[1,2],[63,2],[64,2],[11,2],[69,2],[66,2],[65,2],[72,2],[70,2],[68,2],[71,2],[67,2],[113,106],[123,107],[112,106],[133,108],[104,109],[103,110],[132,104],[126,111],[131,112],[106,113],[120,114],[105,115],[129,116],[101,117],[100,104],[130,118],[102,119],[107,120],[108,2],[111,120],[98,2],[134,121],[124,122],[115,123],[116,124],[118,125],[114,126],[117,127],[127,104],[109,128],[110,129],[119,130],[99,131],[122,122],[121,120],[125,2],[128,132],[80,133],[92,134],[84,135],[85,136],[86,135],[91,137],[82,138],[83,133],[87,135],[88,138],[89,133],[90,136],[81,133]],"latestChangedDtsFile":"./index.d.ts","version":"5.6.3"}
|
package/package.json
CHANGED
package/src/schema/input.ts
CHANGED
|
@@ -172,27 +172,43 @@ export namespace Input {
|
|
|
172
172
|
export type OrderBy<T = OrderDirection> = OrderByFields<T> & { _random?: boolean; _randomSeeded?: number }
|
|
173
173
|
|
|
174
174
|
export type Condition<T = Value.FieldValue> = {
|
|
175
|
+
// boolean
|
|
175
176
|
readonly and?: readonly Condition<T>[]
|
|
176
177
|
readonly or?: readonly Condition<T>[]
|
|
177
178
|
readonly not?: Condition<T>
|
|
179
|
+
|
|
180
|
+
// null
|
|
181
|
+
readonly isNull?: boolean
|
|
182
|
+
|
|
183
|
+
// basic
|
|
178
184
|
readonly eq?: T
|
|
179
185
|
readonly notEq?: T
|
|
180
|
-
readonly null?: boolean // deprecated
|
|
181
|
-
readonly isNull?: boolean
|
|
182
186
|
readonly in?: readonly T[]
|
|
183
187
|
readonly notIn?: readonly T[]
|
|
184
188
|
readonly lt?: T
|
|
185
189
|
readonly lte?: T
|
|
186
190
|
readonly gt?: T
|
|
187
191
|
readonly gte?: T
|
|
188
|
-
|
|
189
|
-
|
|
192
|
+
|
|
193
|
+
// array
|
|
194
|
+
readonly minLength?: number
|
|
195
|
+
readonly maxLength?: number
|
|
196
|
+
readonly includes?: T
|
|
197
|
+
|
|
198
|
+
// string only
|
|
190
199
|
readonly contains?: string
|
|
191
200
|
readonly startsWith?: string
|
|
192
201
|
readonly endsWith?: string
|
|
193
202
|
readonly containsCI?: string
|
|
194
203
|
readonly startsWithCI?: string
|
|
195
204
|
readonly endsWithCI?: string
|
|
205
|
+
|
|
206
|
+
// special
|
|
207
|
+
readonly never?: true
|
|
208
|
+
readonly always?: true
|
|
209
|
+
|
|
210
|
+
// deprecated
|
|
211
|
+
readonly null?: boolean
|
|
196
212
|
}
|
|
197
213
|
|
|
198
214
|
export type UniqueWhere<E = never> = {
|
package/src/schema/model.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Input } from './input'
|
|
2
|
+
import { JSONValue } from './json'
|
|
2
3
|
|
|
3
4
|
export namespace Model {
|
|
4
5
|
|
|
@@ -41,6 +42,7 @@ export namespace Model {
|
|
|
41
42
|
Enum = 'Enum',
|
|
42
43
|
DateTime = 'DateTime',
|
|
43
44
|
Date = 'Date',
|
|
45
|
+
Time = 'Time',
|
|
44
46
|
Json = 'Json',
|
|
45
47
|
}
|
|
46
48
|
|
|
@@ -53,9 +55,10 @@ export namespace Model {
|
|
|
53
55
|
& Field<T>
|
|
54
56
|
& {
|
|
55
57
|
readonly columnType: string
|
|
58
|
+
readonly list?: boolean
|
|
56
59
|
readonly typeAlias?: string
|
|
57
60
|
readonly nullable: boolean
|
|
58
|
-
readonly default?:
|
|
61
|
+
readonly default?: JSONValue
|
|
59
62
|
readonly sequence?: {
|
|
60
63
|
readonly precedence: 'ALWAYS' | 'BY DEFAULT'
|
|
61
64
|
readonly start?: number
|