@be-logixpair/api 0.0.77 → 0.0.78
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 +71 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -713305,7 +713305,7 @@ declare const appRouter: BuiltRouter<{
|
|
|
713305
713305
|
action_at: Date | null;
|
|
713306
713306
|
id_uom_type: string | null;
|
|
713307
713307
|
} | undefined;
|
|
713308
|
-
};
|
|
713308
|
+
} | undefined;
|
|
713309
713309
|
meta: object;
|
|
713310
713310
|
}>;
|
|
713311
713311
|
update: MutationProcedure<{
|
|
@@ -713341,7 +713341,7 @@ declare const appRouter: BuiltRouter<{
|
|
|
713341
713341
|
action_at: Date | null;
|
|
713342
713342
|
id_uom_type: string | null;
|
|
713343
713343
|
} | undefined;
|
|
713344
|
-
};
|
|
713344
|
+
} | undefined;
|
|
713345
713345
|
meta: object;
|
|
713346
713346
|
}>;
|
|
713347
713347
|
delete: MutationProcedure<{
|
|
@@ -713366,6 +713366,75 @@ declare const appRouter: BuiltRouter<{
|
|
|
713366
713366
|
};
|
|
713367
713367
|
meta: object;
|
|
713368
713368
|
}>;
|
|
713369
|
+
upsertBatch: MutationProcedure<{
|
|
713370
|
+
input: {
|
|
713371
|
+
create: {
|
|
713372
|
+
is_active?: boolean | undefined;
|
|
713373
|
+
code?: string | null | undefined;
|
|
713374
|
+
name?: string | null | undefined;
|
|
713375
|
+
}[];
|
|
713376
|
+
update: {
|
|
713377
|
+
is_system?: (string | boolean)[] | null | undefined;
|
|
713378
|
+
id?: string | number | bigint | null | undefined;
|
|
713379
|
+
id_string?: string | null | undefined;
|
|
713380
|
+
logic_code?: string | null | undefined;
|
|
713381
|
+
is_active?: boolean | undefined;
|
|
713382
|
+
code?: string | null | undefined;
|
|
713383
|
+
name?: string | null | undefined;
|
|
713384
|
+
}[];
|
|
713385
|
+
};
|
|
713386
|
+
output: {
|
|
713387
|
+
createdData: ({
|
|
713388
|
+
data: {
|
|
713389
|
+
is_active: boolean | null;
|
|
713390
|
+
id: string;
|
|
713391
|
+
logic_code: string | null;
|
|
713392
|
+
name: string | null;
|
|
713393
|
+
code: string | null;
|
|
713394
|
+
created_at: Date | null;
|
|
713395
|
+
created_by: string | null;
|
|
713396
|
+
updated_at: Date | null;
|
|
713397
|
+
updated_by: string | null;
|
|
713398
|
+
} | undefined;
|
|
713399
|
+
log: {
|
|
713400
|
+
id: string;
|
|
713401
|
+
id_log_type: string | null;
|
|
713402
|
+
url: string | null;
|
|
713403
|
+
params: SimpleJson;
|
|
713404
|
+
action: string | null;
|
|
713405
|
+
action_by: string | null;
|
|
713406
|
+
action_id: string | null;
|
|
713407
|
+
action_at: Date | null;
|
|
713408
|
+
id_uom_type: string | null;
|
|
713409
|
+
} | undefined;
|
|
713410
|
+
} | undefined)[];
|
|
713411
|
+
updatedData: ({
|
|
713412
|
+
data: {
|
|
713413
|
+
is_active: boolean | null;
|
|
713414
|
+
id: string;
|
|
713415
|
+
logic_code: string | null;
|
|
713416
|
+
name: string | null;
|
|
713417
|
+
code: string | null;
|
|
713418
|
+
created_at: Date | null;
|
|
713419
|
+
created_by: string | null;
|
|
713420
|
+
updated_at: Date | null;
|
|
713421
|
+
updated_by: string | null;
|
|
713422
|
+
} | undefined;
|
|
713423
|
+
log: {
|
|
713424
|
+
id: string;
|
|
713425
|
+
id_log_type: string | null;
|
|
713426
|
+
url: string | null;
|
|
713427
|
+
params: SimpleJson;
|
|
713428
|
+
action: string | null;
|
|
713429
|
+
action_by: string | null;
|
|
713430
|
+
action_id: string | null;
|
|
713431
|
+
action_at: Date | null;
|
|
713432
|
+
id_uom_type: string | null;
|
|
713433
|
+
} | undefined;
|
|
713434
|
+
} | undefined)[];
|
|
713435
|
+
} | undefined;
|
|
713436
|
+
meta: object;
|
|
713437
|
+
}>;
|
|
713369
713438
|
}>>;
|
|
713370
713439
|
}>>;
|
|
713371
713440
|
serviceLevels: BuiltRouter<{
|