@be-logixpair/api 0.0.2 → 0.0.3

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +59 -6
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -624,8 +624,8 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
624
624
  log: {
625
625
  id: number;
626
626
  url: string | null;
627
- id_country: number | null;
628
627
  id_log_type: number | null;
628
+ id_country: number | null;
629
629
  action: string | null;
630
630
  params: JsonValue | null;
631
631
  action_by: string | null;
@@ -666,8 +666,8 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
666
666
  log: {
667
667
  id: number;
668
668
  url: string | null;
669
- id_country: number | null;
670
669
  id_log_type: number | null;
670
+ id_country: number | null;
671
671
  action: string | null;
672
672
  params: JsonValue | null;
673
673
  action_by: string | null;
@@ -784,8 +784,8 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
784
784
  log: {
785
785
  id: number;
786
786
  url: string | null;
787
- id_state: number | null;
788
787
  id_log_type: number | null;
788
+ id_state: number | null;
789
789
  action: string | null;
790
790
  params: JsonValue | null;
791
791
  action_by: string | null;
@@ -820,8 +820,8 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
820
820
  log: {
821
821
  id: number;
822
822
  url: string | null;
823
- id_state: number | null;
824
823
  id_log_type: number | null;
824
+ id_state: number | null;
825
825
  action: string | null;
826
826
  params: JsonValue | null;
827
827
  action_by: string | null;
@@ -977,8 +977,8 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
977
977
  log: {
978
978
  id: number;
979
979
  url: string | null;
980
- id_state: number | null;
981
980
  id_log_type: number | null;
981
+ id_state: number | null;
982
982
  action: string | null;
983
983
  params: JsonValue | null;
984
984
  action_by: string | null;
@@ -1122,8 +1122,8 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
1122
1122
  log: {
1123
1123
  id: number;
1124
1124
  url: string | null;
1125
- id_country: number | null;
1126
1125
  id_log_type: number | null;
1126
+ id_country: number | null;
1127
1127
  action: string | null;
1128
1128
  params: JsonValue | null;
1129
1129
  action_by: string | null;
@@ -1213,6 +1213,59 @@ declare const appRouter: import("@trpc/server").TRPCBuiltRouter<{
1213
1213
  };
1214
1214
  meta: object;
1215
1215
  }>;
1216
+ getHistories: import("@trpc/server").TRPCMutationProcedure<{
1217
+ input: {
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
+ };
1247
+ meta: object;
1248
+ }>;
1249
+ getHistoryDetail: import("@trpc/server").TRPCMutationProcedure<{
1250
+ input: {
1251
+ id?: number | null | undefined;
1252
+ id_string?: string | null | undefined;
1253
+ };
1254
+ output: {
1255
+ data: {
1256
+ id: number;
1257
+ url: string | null;
1258
+ id_log_type: number | null;
1259
+ action: string | null;
1260
+ params: JsonValue | null;
1261
+ action_by: string | null;
1262
+ action_id: string | null;
1263
+ action_at: Date | null;
1264
+ id_time_zone: number | null;
1265
+ } | undefined;
1266
+ };
1267
+ meta: object;
1268
+ }>;
1216
1269
  create: import("@trpc/server").TRPCMutationProcedure<{
1217
1270
  input: {
1218
1271
  is_active?: boolean | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-logixpair/api",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {