@be-logixpair/api 0.0.64 → 0.0.66
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 +74 -53
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -667298,10 +667298,17 @@ declare const appRouter: BuiltRouter<{
|
|
|
667298
667298
|
input: {
|
|
667299
667299
|
is_active?: boolean | undefined;
|
|
667300
667300
|
id_header_organization_address?: string | number | bigint | null | undefined;
|
|
667301
|
-
|
|
667301
|
+
connect_organization_address?: {
|
|
667302
|
+
is_active?: boolean | undefined;
|
|
667303
|
+
id?: string | number | bigint | null | undefined;
|
|
667304
|
+
is_main?: boolean | null | undefined;
|
|
667305
|
+
}[] | null | undefined;
|
|
667302
667306
|
id_header_organization_address_capability?: string | number | bigint | null | undefined;
|
|
667303
|
-
|
|
667304
|
-
|
|
667307
|
+
connect_organization_address_capability?: {
|
|
667308
|
+
is_active?: boolean | undefined;
|
|
667309
|
+
id?: string | number | bigint | null | undefined;
|
|
667310
|
+
is_main?: boolean | null | undefined;
|
|
667311
|
+
}[] | null | undefined;
|
|
667305
667312
|
};
|
|
667306
667313
|
output: {
|
|
667307
667314
|
data: ({
|
|
@@ -667343,65 +667350,74 @@ declare const appRouter: BuiltRouter<{
|
|
|
667343
667350
|
logic_code?: string | null | undefined;
|
|
667344
667351
|
is_active?: boolean | undefined;
|
|
667345
667352
|
id_header_organization_address?: string | number | bigint | null | undefined;
|
|
667346
|
-
|
|
667353
|
+
connect_organization_address?: {
|
|
667354
|
+
is_active?: boolean | undefined;
|
|
667355
|
+
id?: string | number | bigint | null | undefined;
|
|
667356
|
+
is_main?: boolean | null | undefined;
|
|
667357
|
+
}[] | null | undefined;
|
|
667347
667358
|
id_header_organization_address_capability?: string | number | bigint | null | undefined;
|
|
667348
|
-
|
|
667349
|
-
|
|
667359
|
+
connect_organization_address_capability?: {
|
|
667360
|
+
is_active?: boolean | undefined;
|
|
667361
|
+
id?: string | number | bigint | null | undefined;
|
|
667362
|
+
is_main?: boolean | null | undefined;
|
|
667363
|
+
}[] | null | undefined;
|
|
667350
667364
|
};
|
|
667351
667365
|
output: {
|
|
667352
|
-
data: {
|
|
667353
|
-
|
|
667354
|
-
|
|
667355
|
-
|
|
667356
|
-
|
|
667357
|
-
|
|
667358
|
-
|
|
667359
|
-
|
|
667366
|
+
data: ({
|
|
667367
|
+
data?: {
|
|
667368
|
+
organization_address: {
|
|
667369
|
+
is_active: boolean | null;
|
|
667370
|
+
id_country: string | null;
|
|
667371
|
+
id_state: string | null;
|
|
667372
|
+
id_city: string | null;
|
|
667373
|
+
id_postal_code: string | null;
|
|
667374
|
+
id_un_locode: string | null;
|
|
667375
|
+
id: string;
|
|
667376
|
+
logic_code: string | null;
|
|
667377
|
+
id_organization: string | null;
|
|
667378
|
+
created_at: Date | null;
|
|
667379
|
+
created_by: string | null;
|
|
667380
|
+
updated_at: Date | null;
|
|
667381
|
+
updated_by: string | null;
|
|
667382
|
+
code: string | null;
|
|
667383
|
+
phone: string | null;
|
|
667384
|
+
email: string | null;
|
|
667385
|
+
address: string | null;
|
|
667386
|
+
mobile_phone: string | null;
|
|
667387
|
+
fax: string | null;
|
|
667388
|
+
} | null;
|
|
667389
|
+
organization_address_capability: {
|
|
667390
|
+
is_active: boolean | null;
|
|
667391
|
+
id: string;
|
|
667392
|
+
logic_code: string | null;
|
|
667393
|
+
name: string | null;
|
|
667394
|
+
created_at: Date | null;
|
|
667395
|
+
created_by: string | null;
|
|
667396
|
+
updated_at: Date | null;
|
|
667397
|
+
updated_by: string | null;
|
|
667398
|
+
code: string | null;
|
|
667399
|
+
} | null;
|
|
667360
667400
|
id: string;
|
|
667361
|
-
logic_code: string | null;
|
|
667362
|
-
id_organization: string | null;
|
|
667363
667401
|
created_at: Date | null;
|
|
667364
667402
|
created_by: string | null;
|
|
667365
667403
|
updated_at: Date | null;
|
|
667366
667404
|
updated_by: string | null;
|
|
667367
|
-
|
|
667368
|
-
|
|
667369
|
-
|
|
667370
|
-
|
|
667371
|
-
|
|
667372
|
-
fax: string | null;
|
|
667373
|
-
} | null;
|
|
667374
|
-
organization_address_capability: {
|
|
667375
|
-
is_active: boolean | null;
|
|
667405
|
+
is_main: boolean | null;
|
|
667406
|
+
id_address: string | null;
|
|
667407
|
+
id_address_capability: string | null;
|
|
667408
|
+
} | undefined;
|
|
667409
|
+
log?: {
|
|
667376
667410
|
id: string;
|
|
667377
|
-
|
|
667378
|
-
|
|
667379
|
-
|
|
667380
|
-
|
|
667381
|
-
|
|
667382
|
-
|
|
667383
|
-
|
|
667384
|
-
|
|
667385
|
-
|
|
667386
|
-
|
|
667387
|
-
created_by: string | null;
|
|
667388
|
-
updated_at: Date | null;
|
|
667389
|
-
updated_by: string | null;
|
|
667390
|
-
is_main: boolean | null;
|
|
667391
|
-
id_address: string | null;
|
|
667392
|
-
id_address_capability: string | null;
|
|
667393
|
-
} | undefined;
|
|
667394
|
-
log: {
|
|
667395
|
-
id: string;
|
|
667396
|
-
id_log_type: string | null;
|
|
667397
|
-
url: string | null;
|
|
667398
|
-
params: SimpleJson;
|
|
667399
|
-
action: string | null;
|
|
667400
|
-
action_by: string | null;
|
|
667401
|
-
action_id: string | null;
|
|
667402
|
-
action_at: Date | null;
|
|
667403
|
-
id_organization_address_capability_pivot: string | null;
|
|
667404
|
-
} | undefined;
|
|
667411
|
+
id_log_type: string | null;
|
|
667412
|
+
url: string | null;
|
|
667413
|
+
params: SimpleJson;
|
|
667414
|
+
action: string | null;
|
|
667415
|
+
action_by: string | null;
|
|
667416
|
+
action_id: string | null;
|
|
667417
|
+
action_at: Date | null;
|
|
667418
|
+
id_organization_address_capability_pivot: string | null;
|
|
667419
|
+
} | undefined;
|
|
667420
|
+
} | undefined)[] | undefined;
|
|
667405
667421
|
};
|
|
667406
667422
|
meta: object;
|
|
667407
667423
|
}>;
|
|
@@ -667409,6 +667425,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
667409
667425
|
input: {
|
|
667410
667426
|
id?: string | number | bigint | null | undefined;
|
|
667411
667427
|
ids?: (string | number | bigint)[] | null | undefined;
|
|
667428
|
+
is_active?: boolean | undefined;
|
|
667429
|
+
id_header_organization_address?: string | number | bigint | null | undefined;
|
|
667430
|
+
ids_connect_organization_address?: (string | number | bigint)[] | null | undefined;
|
|
667431
|
+
id_header_organization_address_capability?: string | number | bigint | null | undefined;
|
|
667432
|
+
ids_connect_organization_address_capability?: (string | number | bigint)[] | null | undefined;
|
|
667412
667433
|
};
|
|
667413
667434
|
output: {
|
|
667414
667435
|
data: ({
|