@be-logixpair/api 0.0.4 → 0.0.5
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 +26 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1237,7 +1237,18 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1237
1237
|
ids_time_zone?: number[] | null | undefined;
|
|
1238
1238
|
};
|
|
1239
1239
|
output: {
|
|
1240
|
-
data: {
|
|
1240
|
+
data: ({
|
|
1241
|
+
log_type: {
|
|
1242
|
+
id: number;
|
|
1243
|
+
name: string | null;
|
|
1244
|
+
is_active: boolean | null;
|
|
1245
|
+
created_at: Date | null;
|
|
1246
|
+
created_by: string | null;
|
|
1247
|
+
updated_at: Date | null;
|
|
1248
|
+
updated_by: string | null;
|
|
1249
|
+
logic_code: string | null;
|
|
1250
|
+
} | null;
|
|
1251
|
+
} & {
|
|
1241
1252
|
id: number;
|
|
1242
1253
|
url: string | null;
|
|
1243
1254
|
id_log_type: number | null;
|
|
@@ -1247,7 +1258,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1247
1258
|
action_id: string | null;
|
|
1248
1259
|
action_at: Date | null;
|
|
1249
1260
|
id_time_zone: number | null;
|
|
1250
|
-
}[] | undefined;
|
|
1261
|
+
})[] | undefined;
|
|
1251
1262
|
total: number | undefined;
|
|
1252
1263
|
};
|
|
1253
1264
|
meta: object;
|
|
@@ -1258,7 +1269,18 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1258
1269
|
id_string?: string | null | undefined;
|
|
1259
1270
|
};
|
|
1260
1271
|
output: {
|
|
1261
|
-
data: {
|
|
1272
|
+
data: ({
|
|
1273
|
+
log_type: {
|
|
1274
|
+
id: number;
|
|
1275
|
+
name: string | null;
|
|
1276
|
+
is_active: boolean | null;
|
|
1277
|
+
created_at: Date | null;
|
|
1278
|
+
created_by: string | null;
|
|
1279
|
+
updated_at: Date | null;
|
|
1280
|
+
updated_by: string | null;
|
|
1281
|
+
logic_code: string | null;
|
|
1282
|
+
} | null;
|
|
1283
|
+
} & {
|
|
1262
1284
|
id: number;
|
|
1263
1285
|
url: string | null;
|
|
1264
1286
|
id_log_type: number | null;
|
|
@@ -1268,7 +1290,7 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
|
|
|
1268
1290
|
action_id: string | null;
|
|
1269
1291
|
action_at: Date | null;
|
|
1270
1292
|
id_time_zone: number | null;
|
|
1271
|
-
} | undefined;
|
|
1293
|
+
}) | undefined;
|
|
1272
1294
|
};
|
|
1273
1295
|
meta: object;
|
|
1274
1296
|
}>;
|