@valentine-efagene/qshelter-common 2.0.136 → 2.0.138
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/generated/client/commonInputTypes.d.ts +43 -43
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +4 -1
- package/dist/generated/client/internal/prismaNamespace.js +4 -1
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +4 -1
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +4 -1
- package/dist/generated/client/models/DocumentationPlan.d.ts +1 -40
- package/dist/generated/client/models/DocumentationPlanStep.d.ts +34 -1
- package/dist/generated/client/models/DocumentationStep.d.ts +64 -1
- package/dist/src/prisma/tenant.js +6 -2
- package/package.json +1 -1
- package/prisma/migrations/20260119180401_add_document_name_remove_required_doc_types/migration.sql +14 -0
- package/prisma/schema.prisma +9 -7
|
@@ -346,6 +346,12 @@ export type IntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
346
346
|
_min?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
347
347
|
_max?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
348
348
|
};
|
|
349
|
+
export type EnumStepTypeFilter<$PrismaModel = never> = {
|
|
350
|
+
equals?: $Enums.StepType | Prisma.EnumStepTypeFieldRefInput<$PrismaModel>;
|
|
351
|
+
in?: $Enums.StepType[];
|
|
352
|
+
notIn?: $Enums.StepType[];
|
|
353
|
+
not?: Prisma.NestedEnumStepTypeFilter<$PrismaModel> | $Enums.StepType;
|
|
354
|
+
};
|
|
349
355
|
export type JsonNullableFilter<$PrismaModel = never> = Prisma.PatchUndefined<Prisma.Either<Required<JsonNullableFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonNullableFilterBase<$PrismaModel>>, 'path'>>, Required<JsonNullableFilterBase<$PrismaModel>>> | Prisma.OptionalFlat<Omit<Required<JsonNullableFilterBase<$PrismaModel>>, 'path'>>;
|
|
350
356
|
export type JsonNullableFilterBase<$PrismaModel = never> = {
|
|
351
357
|
equals?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
|
|
@@ -363,32 +369,6 @@ export type JsonNullableFilterBase<$PrismaModel = never> = {
|
|
|
363
369
|
gte?: runtime.InputJsonValue;
|
|
364
370
|
not?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
|
|
365
371
|
};
|
|
366
|
-
export type JsonNullableWithAggregatesFilter<$PrismaModel = never> = Prisma.PatchUndefined<Prisma.Either<Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, 'path'>>, Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>> | Prisma.OptionalFlat<Omit<Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, 'path'>>;
|
|
367
|
-
export type JsonNullableWithAggregatesFilterBase<$PrismaModel = never> = {
|
|
368
|
-
equals?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
|
|
369
|
-
path?: string;
|
|
370
|
-
mode?: Prisma.QueryMode | Prisma.EnumQueryModeFieldRefInput<$PrismaModel>;
|
|
371
|
-
string_contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
372
|
-
string_starts_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
373
|
-
string_ends_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
374
|
-
array_starts_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
375
|
-
array_ends_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
376
|
-
array_contains?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
377
|
-
lt?: runtime.InputJsonValue;
|
|
378
|
-
lte?: runtime.InputJsonValue;
|
|
379
|
-
gt?: runtime.InputJsonValue;
|
|
380
|
-
gte?: runtime.InputJsonValue;
|
|
381
|
-
not?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
|
|
382
|
-
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
383
|
-
_min?: Prisma.NestedJsonNullableFilter<$PrismaModel>;
|
|
384
|
-
_max?: Prisma.NestedJsonNullableFilter<$PrismaModel>;
|
|
385
|
-
};
|
|
386
|
-
export type EnumStepTypeFilter<$PrismaModel = never> = {
|
|
387
|
-
equals?: $Enums.StepType | Prisma.EnumStepTypeFieldRefInput<$PrismaModel>;
|
|
388
|
-
in?: $Enums.StepType[];
|
|
389
|
-
notIn?: $Enums.StepType[];
|
|
390
|
-
not?: Prisma.NestedEnumStepTypeFilter<$PrismaModel> | $Enums.StepType;
|
|
391
|
-
};
|
|
392
372
|
export type EnumGateActorNullableFilter<$PrismaModel = never> = {
|
|
393
373
|
equals?: $Enums.GateActor | Prisma.EnumGateActorFieldRefInput<$PrismaModel> | null;
|
|
394
374
|
in?: $Enums.GateActor[] | null;
|
|
@@ -416,6 +396,26 @@ export type EnumStepTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
416
396
|
_min?: Prisma.NestedEnumStepTypeFilter<$PrismaModel>;
|
|
417
397
|
_max?: Prisma.NestedEnumStepTypeFilter<$PrismaModel>;
|
|
418
398
|
};
|
|
399
|
+
export type JsonNullableWithAggregatesFilter<$PrismaModel = never> = Prisma.PatchUndefined<Prisma.Either<Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, 'path'>>, Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>> | Prisma.OptionalFlat<Omit<Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, 'path'>>;
|
|
400
|
+
export type JsonNullableWithAggregatesFilterBase<$PrismaModel = never> = {
|
|
401
|
+
equals?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
|
|
402
|
+
path?: string;
|
|
403
|
+
mode?: Prisma.QueryMode | Prisma.EnumQueryModeFieldRefInput<$PrismaModel>;
|
|
404
|
+
string_contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
405
|
+
string_starts_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
406
|
+
string_ends_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
407
|
+
array_starts_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
408
|
+
array_ends_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
409
|
+
array_contains?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
410
|
+
lt?: runtime.InputJsonValue;
|
|
411
|
+
lte?: runtime.InputJsonValue;
|
|
412
|
+
gt?: runtime.InputJsonValue;
|
|
413
|
+
gte?: runtime.InputJsonValue;
|
|
414
|
+
not?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
|
|
415
|
+
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
416
|
+
_min?: Prisma.NestedJsonNullableFilter<$PrismaModel>;
|
|
417
|
+
_max?: Prisma.NestedJsonNullableFilter<$PrismaModel>;
|
|
418
|
+
};
|
|
419
419
|
export type EnumGateActorNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
420
420
|
equals?: $Enums.GateActor | Prisma.EnumGateActorFieldRefInput<$PrismaModel> | null;
|
|
421
421
|
in?: $Enums.GateActor[] | null;
|
|
@@ -1420,23 +1420,6 @@ export type NestedIntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
1420
1420
|
_min?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
1421
1421
|
_max?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
1422
1422
|
};
|
|
1423
|
-
export type NestedJsonNullableFilter<$PrismaModel = never> = Prisma.PatchUndefined<Prisma.Either<Required<NestedJsonNullableFilterBase<$PrismaModel>>, Exclude<keyof Required<NestedJsonNullableFilterBase<$PrismaModel>>, 'path'>>, Required<NestedJsonNullableFilterBase<$PrismaModel>>> | Prisma.OptionalFlat<Omit<Required<NestedJsonNullableFilterBase<$PrismaModel>>, 'path'>>;
|
|
1424
|
-
export type NestedJsonNullableFilterBase<$PrismaModel = never> = {
|
|
1425
|
-
equals?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
|
|
1426
|
-
path?: string;
|
|
1427
|
-
mode?: Prisma.QueryMode | Prisma.EnumQueryModeFieldRefInput<$PrismaModel>;
|
|
1428
|
-
string_contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
1429
|
-
string_starts_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
1430
|
-
string_ends_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
1431
|
-
array_starts_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
1432
|
-
array_ends_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
1433
|
-
array_contains?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
1434
|
-
lt?: runtime.InputJsonValue;
|
|
1435
|
-
lte?: runtime.InputJsonValue;
|
|
1436
|
-
gt?: runtime.InputJsonValue;
|
|
1437
|
-
gte?: runtime.InputJsonValue;
|
|
1438
|
-
not?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
|
|
1439
|
-
};
|
|
1440
1423
|
export type NestedEnumStepTypeFilter<$PrismaModel = never> = {
|
|
1441
1424
|
equals?: $Enums.StepType | Prisma.EnumStepTypeFieldRefInput<$PrismaModel>;
|
|
1442
1425
|
in?: $Enums.StepType[];
|
|
@@ -1470,6 +1453,23 @@ export type NestedEnumStepTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
1470
1453
|
_min?: Prisma.NestedEnumStepTypeFilter<$PrismaModel>;
|
|
1471
1454
|
_max?: Prisma.NestedEnumStepTypeFilter<$PrismaModel>;
|
|
1472
1455
|
};
|
|
1456
|
+
export type NestedJsonNullableFilter<$PrismaModel = never> = Prisma.PatchUndefined<Prisma.Either<Required<NestedJsonNullableFilterBase<$PrismaModel>>, Exclude<keyof Required<NestedJsonNullableFilterBase<$PrismaModel>>, 'path'>>, Required<NestedJsonNullableFilterBase<$PrismaModel>>> | Prisma.OptionalFlat<Omit<Required<NestedJsonNullableFilterBase<$PrismaModel>>, 'path'>>;
|
|
1457
|
+
export type NestedJsonNullableFilterBase<$PrismaModel = never> = {
|
|
1458
|
+
equals?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
|
|
1459
|
+
path?: string;
|
|
1460
|
+
mode?: Prisma.QueryMode | Prisma.EnumQueryModeFieldRefInput<$PrismaModel>;
|
|
1461
|
+
string_contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
1462
|
+
string_starts_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
1463
|
+
string_ends_with?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
1464
|
+
array_starts_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
1465
|
+
array_ends_with?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
1466
|
+
array_contains?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | null;
|
|
1467
|
+
lt?: runtime.InputJsonValue;
|
|
1468
|
+
lte?: runtime.InputJsonValue;
|
|
1469
|
+
gt?: runtime.InputJsonValue;
|
|
1470
|
+
gte?: runtime.InputJsonValue;
|
|
1471
|
+
not?: runtime.InputJsonValue | Prisma.JsonFieldRefInput<$PrismaModel> | Prisma.JsonNullValueFilter;
|
|
1472
|
+
};
|
|
1473
1473
|
export type NestedEnumGateActorNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
1474
1474
|
equals?: $Enums.GateActor | Prisma.EnumGateActorFieldRefInput<$PrismaModel> | null;
|
|
1475
1475
|
in?: $Enums.GateActor[] | null;
|