@be-logixpair/api 0.0.64 → 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 +74 -53
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -667296,12 +667296,19 @@ declare const appRouter: BuiltRouter<{
|
|
|
667296
667296
|
}>>;
|
|
667297
667297
|
create: MutationProcedure<{
|
|
667298
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
|
+
}[];
|
|
667299
667309
|
is_active?: boolean | undefined;
|
|
667300
667310
|
id_header_organization_address?: string | number | bigint | null | undefined;
|
|
667301
|
-
ids_connect_organization_address?: (string | number | bigint)[] | null | undefined;
|
|
667302
667311
|
id_header_organization_address_capability?: string | number | bigint | null | undefined;
|
|
667303
|
-
ids_connect_organization_address_capability?: (string | number | bigint)[] | null | undefined;
|
|
667304
|
-
is_main?: boolean | null | undefined;
|
|
667305
667312
|
};
|
|
667306
667313
|
output: {
|
|
667307
667314
|
data: ({
|
|
@@ -667338,70 +667345,79 @@ declare const appRouter: BuiltRouter<{
|
|
|
667338
667345
|
}>;
|
|
667339
667346
|
update: MutationProcedure<{
|
|
667340
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
|
+
}[];
|
|
667341
667358
|
is_system?: (string | boolean)[] | null | undefined;
|
|
667342
667359
|
id?: string | number | bigint | null | undefined;
|
|
667343
667360
|
logic_code?: string | null | undefined;
|
|
667344
667361
|
is_active?: boolean | undefined;
|
|
667345
667362
|
id_header_organization_address?: string | number | bigint | null | undefined;
|
|
667346
|
-
ids_connect_organization_address?: (string | number | bigint)[] | null | undefined;
|
|
667347
667363
|
id_header_organization_address_capability?: string | number | bigint | null | undefined;
|
|
667348
|
-
ids_connect_organization_address_capability?: (string | number | bigint)[] | null | undefined;
|
|
667349
|
-
is_main?: boolean | 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: ({
|