@be-logixpair/api 0.0.3 → 0.0.4
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/index.d.ts +59 -52
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1213,59 +1213,66 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1213
1213
|
};
|
|
1214
1214
|
meta: object;
|
|
1215
1215
|
}>;
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
search?: string | null | undefined;
|
|
1219
|
-
take?: number | null | undefined;
|
|
1220
|
-
skip?: number | null | undefined;
|
|
1221
|
-
is_active?: boolean[] | null | undefined;
|
|
1222
|
-
ids_include?: number[] | null | undefined;
|
|
1223
|
-
ids_exclude?: number[] | null | undefined;
|
|
1224
|
-
ids_string_include?: string[] | null | undefined;
|
|
1225
|
-
ids_string_exclude?: string[] | null | undefined;
|
|
1226
|
-
logic_codes_include?: string[] | null | undefined;
|
|
1227
|
-
logic_codes_exclude?: string[] | null | undefined;
|
|
1228
|
-
id_log_type?: number | null | undefined;
|
|
1229
|
-
ids_log_type?: number[] | null | undefined;
|
|
1230
|
-
id_time_zone?: number | null | undefined;
|
|
1231
|
-
ids_time_zone?: number[] | null | undefined;
|
|
1232
|
-
};
|
|
1233
|
-
output: {
|
|
1234
|
-
data: {
|
|
1235
|
-
id: number;
|
|
1236
|
-
url: string | null;
|
|
1237
|
-
id_log_type: number | null;
|
|
1238
|
-
action: string | null;
|
|
1239
|
-
params: JsonValue | null;
|
|
1240
|
-
action_by: string | null;
|
|
1241
|
-
action_id: string | null;
|
|
1242
|
-
action_at: Date | null;
|
|
1243
|
-
id_time_zone: number | null;
|
|
1244
|
-
}[] | undefined;
|
|
1245
|
-
total: number | undefined;
|
|
1246
|
-
};
|
|
1216
|
+
histories: import("@trpc/server").TRPCBuiltRouter<{
|
|
1217
|
+
ctx: Context$1;
|
|
1247
1218
|
meta: object;
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1219
|
+
errorShape: import("@trpc/server").TRPCDefaultErrorShape;
|
|
1220
|
+
transformer: false;
|
|
1221
|
+
}, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
|
|
1222
|
+
get: import("@trpc/server").TRPCMutationProcedure<{
|
|
1223
|
+
input: {
|
|
1224
|
+
search?: string | null | undefined;
|
|
1225
|
+
take?: number | null | undefined;
|
|
1226
|
+
skip?: number | null | undefined;
|
|
1227
|
+
is_active?: boolean[] | null | undefined;
|
|
1228
|
+
ids_include?: number[] | null | undefined;
|
|
1229
|
+
ids_exclude?: number[] | null | undefined;
|
|
1230
|
+
ids_string_include?: string[] | null | undefined;
|
|
1231
|
+
ids_string_exclude?: string[] | null | undefined;
|
|
1232
|
+
logic_codes_include?: string[] | null | undefined;
|
|
1233
|
+
logic_codes_exclude?: string[] | null | undefined;
|
|
1234
|
+
id_log_type?: number | null | undefined;
|
|
1235
|
+
ids_log_type?: number[] | null | undefined;
|
|
1236
|
+
id_time_zone?: number | null | undefined;
|
|
1237
|
+
ids_time_zone?: number[] | null | undefined;
|
|
1238
|
+
};
|
|
1239
|
+
output: {
|
|
1240
|
+
data: {
|
|
1241
|
+
id: number;
|
|
1242
|
+
url: string | null;
|
|
1243
|
+
id_log_type: number | null;
|
|
1244
|
+
action: string | null;
|
|
1245
|
+
params: JsonValue | null;
|
|
1246
|
+
action_by: string | null;
|
|
1247
|
+
action_id: string | null;
|
|
1248
|
+
action_at: Date | null;
|
|
1249
|
+
id_time_zone: number | null;
|
|
1250
|
+
}[] | undefined;
|
|
1251
|
+
total: number | undefined;
|
|
1252
|
+
};
|
|
1253
|
+
meta: object;
|
|
1254
|
+
}>;
|
|
1255
|
+
getDetail: import("@trpc/server").TRPCMutationProcedure<{
|
|
1256
|
+
input: {
|
|
1257
|
+
id?: number | null | undefined;
|
|
1258
|
+
id_string?: string | null | undefined;
|
|
1259
|
+
};
|
|
1260
|
+
output: {
|
|
1261
|
+
data: {
|
|
1262
|
+
id: number;
|
|
1263
|
+
url: string | null;
|
|
1264
|
+
id_log_type: number | null;
|
|
1265
|
+
action: string | null;
|
|
1266
|
+
params: JsonValue | null;
|
|
1267
|
+
action_by: string | null;
|
|
1268
|
+
action_id: string | null;
|
|
1269
|
+
action_at: Date | null;
|
|
1270
|
+
id_time_zone: number | null;
|
|
1271
|
+
} | undefined;
|
|
1272
|
+
};
|
|
1273
|
+
meta: object;
|
|
1274
|
+
}>;
|
|
1275
|
+
}>>;
|
|
1269
1276
|
create: import("@trpc/server").TRPCMutationProcedure<{
|
|
1270
1277
|
input: {
|
|
1271
1278
|
is_active?: boolean | undefined;
|