@be-logixpair/api 0.0.63 → 0.0.65
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 +116 -53
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -666367,6 +666367,27 @@ declare const appRouter: BuiltRouter<{
|
|
|
666367
666367
|
has_seaport: boolean | null;
|
|
666368
666368
|
has_outport: boolean | null;
|
|
666369
666369
|
} | null;
|
|
666370
|
+
organization_address_capability_pivot: {
|
|
666371
|
+
organization_address_capability: {
|
|
666372
|
+
is_active: boolean | null;
|
|
666373
|
+
id: string;
|
|
666374
|
+
logic_code: string | null;
|
|
666375
|
+
name: string | null;
|
|
666376
|
+
created_at: Date | null;
|
|
666377
|
+
created_by: string | null;
|
|
666378
|
+
updated_at: Date | null;
|
|
666379
|
+
updated_by: string | null;
|
|
666380
|
+
code: string | null;
|
|
666381
|
+
} | null;
|
|
666382
|
+
id: string;
|
|
666383
|
+
created_at: Date | null;
|
|
666384
|
+
created_by: string | null;
|
|
666385
|
+
updated_at: Date | null;
|
|
666386
|
+
updated_by: string | null;
|
|
666387
|
+
is_main: boolean | null;
|
|
666388
|
+
id_address: string | null;
|
|
666389
|
+
id_address_capability: string | null;
|
|
666390
|
+
}[];
|
|
666370
666391
|
is_active: boolean | null;
|
|
666371
666392
|
id_country: string | null;
|
|
666372
666393
|
id_state: string | null;
|
|
@@ -666529,6 +666550,27 @@ declare const appRouter: BuiltRouter<{
|
|
|
666529
666550
|
has_seaport: boolean | null;
|
|
666530
666551
|
has_outport: boolean | null;
|
|
666531
666552
|
} | null;
|
|
666553
|
+
organization_address_capability_pivot: {
|
|
666554
|
+
organization_address_capability: {
|
|
666555
|
+
is_active: boolean | null;
|
|
666556
|
+
id: string;
|
|
666557
|
+
logic_code: string | null;
|
|
666558
|
+
name: string | null;
|
|
666559
|
+
created_at: Date | null;
|
|
666560
|
+
created_by: string | null;
|
|
666561
|
+
updated_at: Date | null;
|
|
666562
|
+
updated_by: string | null;
|
|
666563
|
+
code: string | null;
|
|
666564
|
+
} | null;
|
|
666565
|
+
id: string;
|
|
666566
|
+
created_at: Date | null;
|
|
666567
|
+
created_by: string | null;
|
|
666568
|
+
updated_at: Date | null;
|
|
666569
|
+
updated_by: string | null;
|
|
666570
|
+
is_main: boolean | null;
|
|
666571
|
+
id_address: string | null;
|
|
666572
|
+
id_address_capability: string | null;
|
|
666573
|
+
}[];
|
|
666532
666574
|
is_active: boolean | null;
|
|
666533
666575
|
id_country: string | null;
|
|
666534
666576
|
id_state: string | null;
|
|
@@ -667254,12 +667296,19 @@ declare const appRouter: BuiltRouter<{
|
|
|
667254
667296
|
}>>;
|
|
667255
667297
|
create: MutationProcedure<{
|
|
667256
667298
|
input: {
|
|
667299
|
+
connect_organization_address: {
|
|
667300
|
+
is_active?: boolean | undefined;
|
|
667301
|
+
id?: string | number | bigint | null | undefined;
|
|
667302
|
+
is_main?: boolean | null | undefined;
|
|
667303
|
+
}[];
|
|
667304
|
+
connect_organization_address_capability: {
|
|
667305
|
+
is_active?: boolean | undefined;
|
|
667306
|
+
id?: string | number | bigint | null | undefined;
|
|
667307
|
+
is_main?: boolean | null | undefined;
|
|
667308
|
+
}[];
|
|
667257
667309
|
is_active?: boolean | undefined;
|
|
667258
667310
|
id_header_organization_address?: string | number | bigint | null | undefined;
|
|
667259
|
-
ids_connect_organization_address?: (string | number | bigint)[] | null | undefined;
|
|
667260
667311
|
id_header_organization_address_capability?: string | number | bigint | null | undefined;
|
|
667261
|
-
ids_connect_organization_address_capability?: (string | number | bigint)[] | null | undefined;
|
|
667262
|
-
is_main?: boolean | null | undefined;
|
|
667263
667312
|
};
|
|
667264
667313
|
output: {
|
|
667265
667314
|
data: ({
|
|
@@ -667296,70 +667345,79 @@ declare const appRouter: BuiltRouter<{
|
|
|
667296
667345
|
}>;
|
|
667297
667346
|
update: MutationProcedure<{
|
|
667298
667347
|
input: {
|
|
667348
|
+
connect_organization_address: {
|
|
667349
|
+
is_active?: boolean | undefined;
|
|
667350
|
+
id?: string | number | bigint | null | undefined;
|
|
667351
|
+
is_main?: boolean | null | undefined;
|
|
667352
|
+
}[];
|
|
667353
|
+
connect_organization_address_capability: {
|
|
667354
|
+
is_active?: boolean | undefined;
|
|
667355
|
+
id?: string | number | bigint | null | undefined;
|
|
667356
|
+
is_main?: boolean | null | undefined;
|
|
667357
|
+
}[];
|
|
667299
667358
|
is_system?: (string | boolean)[] | null | undefined;
|
|
667300
667359
|
id?: string | number | bigint | null | undefined;
|
|
667301
667360
|
logic_code?: string | null | undefined;
|
|
667302
667361
|
is_active?: boolean | undefined;
|
|
667303
667362
|
id_header_organization_address?: string | number | bigint | null | undefined;
|
|
667304
|
-
ids_connect_organization_address?: (string | number | bigint)[] | null | undefined;
|
|
667305
667363
|
id_header_organization_address_capability?: string | number | bigint | null | undefined;
|
|
667306
|
-
ids_connect_organization_address_capability?: (string | number | bigint)[] | null | undefined;
|
|
667307
|
-
is_main?: boolean | null | undefined;
|
|
667308
667364
|
};
|
|
667309
667365
|
output: {
|
|
667310
|
-
data: {
|
|
667311
|
-
|
|
667312
|
-
|
|
667313
|
-
|
|
667314
|
-
|
|
667315
|
-
|
|
667316
|
-
|
|
667317
|
-
|
|
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;
|
|
667318
667400
|
id: string;
|
|
667319
|
-
logic_code: string | null;
|
|
667320
|
-
id_organization: string | null;
|
|
667321
667401
|
created_at: Date | null;
|
|
667322
667402
|
created_by: string | null;
|
|
667323
667403
|
updated_at: Date | null;
|
|
667324
667404
|
updated_by: string | null;
|
|
667325
|
-
|
|
667326
|
-
|
|
667327
|
-
|
|
667328
|
-
|
|
667329
|
-
|
|
667330
|
-
fax: string | null;
|
|
667331
|
-
} | null;
|
|
667332
|
-
organization_address_capability: {
|
|
667333
|
-
is_active: boolean | null;
|
|
667405
|
+
is_main: boolean | null;
|
|
667406
|
+
id_address: string | null;
|
|
667407
|
+
id_address_capability: string | null;
|
|
667408
|
+
} | undefined;
|
|
667409
|
+
log?: {
|
|
667334
667410
|
id: string;
|
|
667335
|
-
|
|
667336
|
-
|
|
667337
|
-
|
|
667338
|
-
|
|
667339
|
-
|
|
667340
|
-
|
|
667341
|
-
|
|
667342
|
-
|
|
667343
|
-
|
|
667344
|
-
|
|
667345
|
-
created_by: string | null;
|
|
667346
|
-
updated_at: Date | null;
|
|
667347
|
-
updated_by: string | null;
|
|
667348
|
-
is_main: boolean | null;
|
|
667349
|
-
id_address: string | null;
|
|
667350
|
-
id_address_capability: string | null;
|
|
667351
|
-
} | undefined;
|
|
667352
|
-
log: {
|
|
667353
|
-
id: string;
|
|
667354
|
-
id_log_type: string | null;
|
|
667355
|
-
url: string | null;
|
|
667356
|
-
params: SimpleJson;
|
|
667357
|
-
action: string | null;
|
|
667358
|
-
action_by: string | null;
|
|
667359
|
-
action_id: string | null;
|
|
667360
|
-
action_at: Date | null;
|
|
667361
|
-
id_organization_address_capability_pivot: string | null;
|
|
667362
|
-
} | 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;
|
|
667363
667421
|
};
|
|
667364
667422
|
meta: object;
|
|
667365
667423
|
}>;
|
|
@@ -667367,6 +667425,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
667367
667425
|
input: {
|
|
667368
667426
|
id?: string | number | bigint | null | undefined;
|
|
667369
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;
|
|
667370
667433
|
};
|
|
667371
667434
|
output: {
|
|
667372
667435
|
data: ({
|