@be-logixpair/api 0.0.79 → 0.0.80
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 +223 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -690171,6 +690171,187 @@ declare const appRouter: BuiltRouter<{
|
|
|
690171
690171
|
} | undefined;
|
|
690172
690172
|
meta: object;
|
|
690173
690173
|
}>;
|
|
690174
|
+
upsertBatch: MutationProcedure<{
|
|
690175
|
+
input: {
|
|
690176
|
+
create?: {
|
|
690177
|
+
is_active?: string | boolean | null | undefined;
|
|
690178
|
+
id_forwarding_shipment?: string | number | bigint | null | undefined;
|
|
690179
|
+
id_forwarding_booking?: string | number | bigint | null | undefined;
|
|
690180
|
+
id_console_container?: string | number | bigint | null | undefined;
|
|
690181
|
+
id_package_type?: string | number | bigint | null | undefined;
|
|
690182
|
+
id_weight_unit?: string | number | bigint | null | undefined;
|
|
690183
|
+
id_volume_unit?: string | number | bigint | null | undefined;
|
|
690184
|
+
id_length_unit?: string | number | bigint | null | undefined;
|
|
690185
|
+
id_width_unit?: string | number | bigint | null | undefined;
|
|
690186
|
+
id_height_unit?: string | number | bigint | null | undefined;
|
|
690187
|
+
id_commodity?: string | number | bigint | null | undefined;
|
|
690188
|
+
id_dg_substance?: string | number | bigint | null | undefined;
|
|
690189
|
+
id_dg_class?: string | number | bigint | null | undefined;
|
|
690190
|
+
code?: string | null | undefined;
|
|
690191
|
+
po_number?: string | null | undefined;
|
|
690192
|
+
goods_description?: string | null | undefined;
|
|
690193
|
+
item_number?: string | null | undefined;
|
|
690194
|
+
pack?: string | number | null | undefined;
|
|
690195
|
+
packing_order?: string | number | null | undefined;
|
|
690196
|
+
weight?: string | null | undefined;
|
|
690197
|
+
volume?: string | null | undefined;
|
|
690198
|
+
length?: string | null | undefined;
|
|
690199
|
+
width?: string | null | undefined;
|
|
690200
|
+
height?: string | null | undefined;
|
|
690201
|
+
description?: string | null | undefined;
|
|
690202
|
+
harmonized_code?: string | null | undefined;
|
|
690203
|
+
harmonized_description?: string | null | undefined;
|
|
690204
|
+
dg_substance_name?: string | null | undefined;
|
|
690205
|
+
dg_class_name?: string | null | undefined;
|
|
690206
|
+
flash_point?: string | null | undefined;
|
|
690207
|
+
un_dg_contact?: string | null | undefined;
|
|
690208
|
+
}[] | undefined;
|
|
690209
|
+
update?: {
|
|
690210
|
+
is_system?: (string | boolean)[] | null | undefined;
|
|
690211
|
+
id?: string | number | bigint | null | undefined;
|
|
690212
|
+
id_string?: string | null | undefined;
|
|
690213
|
+
logic_code?: string | null | undefined;
|
|
690214
|
+
is_active?: string | boolean | null | undefined;
|
|
690215
|
+
id_forwarding_shipment?: string | number | bigint | null | undefined;
|
|
690216
|
+
id_forwarding_booking?: string | number | bigint | null | undefined;
|
|
690217
|
+
id_console_container?: string | number | bigint | null | undefined;
|
|
690218
|
+
id_package_type?: string | number | bigint | null | undefined;
|
|
690219
|
+
id_weight_unit?: string | number | bigint | null | undefined;
|
|
690220
|
+
id_volume_unit?: string | number | bigint | null | undefined;
|
|
690221
|
+
id_length_unit?: string | number | bigint | null | undefined;
|
|
690222
|
+
id_width_unit?: string | number | bigint | null | undefined;
|
|
690223
|
+
id_height_unit?: string | number | bigint | null | undefined;
|
|
690224
|
+
id_commodity?: string | number | bigint | null | undefined;
|
|
690225
|
+
id_dg_substance?: string | number | bigint | null | undefined;
|
|
690226
|
+
id_dg_class?: string | number | bigint | null | undefined;
|
|
690227
|
+
code?: string | null | undefined;
|
|
690228
|
+
po_number?: string | null | undefined;
|
|
690229
|
+
goods_description?: string | null | undefined;
|
|
690230
|
+
item_number?: string | null | undefined;
|
|
690231
|
+
pack?: string | number | null | undefined;
|
|
690232
|
+
packing_order?: string | number | null | undefined;
|
|
690233
|
+
weight?: string | null | undefined;
|
|
690234
|
+
volume?: string | null | undefined;
|
|
690235
|
+
length?: string | null | undefined;
|
|
690236
|
+
width?: string | null | undefined;
|
|
690237
|
+
height?: string | null | undefined;
|
|
690238
|
+
description?: string | null | undefined;
|
|
690239
|
+
harmonized_code?: string | null | undefined;
|
|
690240
|
+
harmonized_description?: string | null | undefined;
|
|
690241
|
+
dg_substance_name?: string | null | undefined;
|
|
690242
|
+
dg_class_name?: string | null | undefined;
|
|
690243
|
+
flash_point?: string | null | undefined;
|
|
690244
|
+
un_dg_contact?: string | null | undefined;
|
|
690245
|
+
}[] | undefined;
|
|
690246
|
+
};
|
|
690247
|
+
output: {
|
|
690248
|
+
createdData: ({
|
|
690249
|
+
data: {
|
|
690250
|
+
is_active: boolean | null;
|
|
690251
|
+
id: string;
|
|
690252
|
+
logic_code: string | null;
|
|
690253
|
+
code: string | null;
|
|
690254
|
+
created_at: Date | null;
|
|
690255
|
+
created_by: string | null;
|
|
690256
|
+
updated_at: Date | null;
|
|
690257
|
+
updated_by: string | null;
|
|
690258
|
+
length: Decimal | null;
|
|
690259
|
+
id_weight_unit: string | null;
|
|
690260
|
+
id_volume_unit: string | null;
|
|
690261
|
+
id_commodity: string | null;
|
|
690262
|
+
id_forwarding_booking: string | null;
|
|
690263
|
+
description: string | null;
|
|
690264
|
+
volume: Decimal | null;
|
|
690265
|
+
id_forwarding_shipment: string | null;
|
|
690266
|
+
id_console_container: string | null;
|
|
690267
|
+
id_package_type: string | null;
|
|
690268
|
+
id_length_unit: string | null;
|
|
690269
|
+
id_width_unit: string | null;
|
|
690270
|
+
id_height_unit: string | null;
|
|
690271
|
+
id_dg_substance: string | null;
|
|
690272
|
+
id_dg_class: string | null;
|
|
690273
|
+
po_number: string | null;
|
|
690274
|
+
goods_description: string | null;
|
|
690275
|
+
item_number: string | null;
|
|
690276
|
+
pack: number | null;
|
|
690277
|
+
packing_order: number | null;
|
|
690278
|
+
weight: Decimal | null;
|
|
690279
|
+
width: Decimal | null;
|
|
690280
|
+
height: Decimal | null;
|
|
690281
|
+
harmonized_code: string | null;
|
|
690282
|
+
harmonized_description: string | null;
|
|
690283
|
+
dg_substance_name: string | null;
|
|
690284
|
+
dg_class_name: string | null;
|
|
690285
|
+
flash_point: Decimal | null;
|
|
690286
|
+
un_dg_contact: string | null;
|
|
690287
|
+
};
|
|
690288
|
+
log: {
|
|
690289
|
+
id: string;
|
|
690290
|
+
id_log_type: string | null;
|
|
690291
|
+
url: string | null;
|
|
690292
|
+
params: SimpleJson;
|
|
690293
|
+
action: string | null;
|
|
690294
|
+
action_by: string | null;
|
|
690295
|
+
action_id: string | null;
|
|
690296
|
+
action_at: Date | null;
|
|
690297
|
+
id_forwarding_shipment_packing: string | null;
|
|
690298
|
+
} | undefined;
|
|
690299
|
+
} | undefined)[];
|
|
690300
|
+
updatedData: ({
|
|
690301
|
+
data: {
|
|
690302
|
+
is_active: boolean | null;
|
|
690303
|
+
id: string;
|
|
690304
|
+
logic_code: string | null;
|
|
690305
|
+
code: string | null;
|
|
690306
|
+
created_at: Date | null;
|
|
690307
|
+
created_by: string | null;
|
|
690308
|
+
updated_at: Date | null;
|
|
690309
|
+
updated_by: string | null;
|
|
690310
|
+
length: Decimal | null;
|
|
690311
|
+
id_weight_unit: string | null;
|
|
690312
|
+
id_volume_unit: string | null;
|
|
690313
|
+
id_commodity: string | null;
|
|
690314
|
+
id_forwarding_booking: string | null;
|
|
690315
|
+
description: string | null;
|
|
690316
|
+
volume: Decimal | null;
|
|
690317
|
+
id_forwarding_shipment: string | null;
|
|
690318
|
+
id_console_container: string | null;
|
|
690319
|
+
id_package_type: string | null;
|
|
690320
|
+
id_length_unit: string | null;
|
|
690321
|
+
id_width_unit: string | null;
|
|
690322
|
+
id_height_unit: string | null;
|
|
690323
|
+
id_dg_substance: string | null;
|
|
690324
|
+
id_dg_class: string | null;
|
|
690325
|
+
po_number: string | null;
|
|
690326
|
+
goods_description: string | null;
|
|
690327
|
+
item_number: string | null;
|
|
690328
|
+
pack: number | null;
|
|
690329
|
+
packing_order: number | null;
|
|
690330
|
+
weight: Decimal | null;
|
|
690331
|
+
width: Decimal | null;
|
|
690332
|
+
height: Decimal | null;
|
|
690333
|
+
harmonized_code: string | null;
|
|
690334
|
+
harmonized_description: string | null;
|
|
690335
|
+
dg_substance_name: string | null;
|
|
690336
|
+
dg_class_name: string | null;
|
|
690337
|
+
flash_point: Decimal | null;
|
|
690338
|
+
un_dg_contact: string | null;
|
|
690339
|
+
};
|
|
690340
|
+
log: {
|
|
690341
|
+
id: string;
|
|
690342
|
+
id_log_type: string | null;
|
|
690343
|
+
url: string | null;
|
|
690344
|
+
params: SimpleJson;
|
|
690345
|
+
action: string | null;
|
|
690346
|
+
action_by: string | null;
|
|
690347
|
+
action_id: string | null;
|
|
690348
|
+
action_at: Date | null;
|
|
690349
|
+
id_forwarding_shipment_packing: string | null;
|
|
690350
|
+
} | undefined;
|
|
690351
|
+
} | undefined)[];
|
|
690352
|
+
} | undefined;
|
|
690353
|
+
meta: object;
|
|
690354
|
+
}>;
|
|
690174
690355
|
delete: MutationProcedure<{
|
|
690175
690356
|
input: {
|
|
690176
690357
|
id?: string | number | bigint | null | undefined;
|
|
@@ -691936,6 +692117,27 @@ declare const appRouter: BuiltRouter<{
|
|
|
691936
692117
|
updated_by: string | null;
|
|
691937
692118
|
id_un_locode: string | null;
|
|
691938
692119
|
} | null;
|
|
692120
|
+
organization_addresses: {
|
|
692121
|
+
is_active: boolean | null;
|
|
692122
|
+
id: string;
|
|
692123
|
+
logic_code: string | null;
|
|
692124
|
+
id_country: string | null;
|
|
692125
|
+
id_state: string | null;
|
|
692126
|
+
id_city: string | null;
|
|
692127
|
+
id_postal_code: string | null;
|
|
692128
|
+
code: string | null;
|
|
692129
|
+
address: string | null;
|
|
692130
|
+
mobile_phone: string | null;
|
|
692131
|
+
created_at: Date | null;
|
|
692132
|
+
created_by: string | null;
|
|
692133
|
+
updated_at: Date | null;
|
|
692134
|
+
updated_by: string | null;
|
|
692135
|
+
id_un_locode: string | null;
|
|
692136
|
+
email: string | null;
|
|
692137
|
+
id_organization: string | null;
|
|
692138
|
+
phone: string | null;
|
|
692139
|
+
fax: string | null;
|
|
692140
|
+
}[];
|
|
691939
692141
|
un_locode: {
|
|
691940
692142
|
is_active: boolean | null;
|
|
691941
692143
|
id: string;
|
|
@@ -692431,6 +692633,27 @@ declare const appRouter: BuiltRouter<{
|
|
|
692431
692633
|
updated_by: string | null;
|
|
692432
692634
|
id_un_locode: string | null;
|
|
692433
692635
|
} | null;
|
|
692636
|
+
organization_addresses: {
|
|
692637
|
+
is_active: boolean | null;
|
|
692638
|
+
id: string;
|
|
692639
|
+
logic_code: string | null;
|
|
692640
|
+
id_country: string | null;
|
|
692641
|
+
id_state: string | null;
|
|
692642
|
+
id_city: string | null;
|
|
692643
|
+
id_postal_code: string | null;
|
|
692644
|
+
code: string | null;
|
|
692645
|
+
address: string | null;
|
|
692646
|
+
mobile_phone: string | null;
|
|
692647
|
+
created_at: Date | null;
|
|
692648
|
+
created_by: string | null;
|
|
692649
|
+
updated_at: Date | null;
|
|
692650
|
+
updated_by: string | null;
|
|
692651
|
+
id_un_locode: string | null;
|
|
692652
|
+
email: string | null;
|
|
692653
|
+
id_organization: string | null;
|
|
692654
|
+
phone: string | null;
|
|
692655
|
+
fax: string | null;
|
|
692656
|
+
}[];
|
|
692434
692657
|
un_locode: {
|
|
692435
692658
|
is_active: boolean | null;
|
|
692436
692659
|
id: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@be-logixpair/api",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.80",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"typescript": "^5.9.3"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@be-logixpair/sso-api": "^0.0.
|
|
45
|
+
"@be-logixpair/sso-api": "^0.0.7",
|
|
46
46
|
"dayjs": "^1.11.19",
|
|
47
47
|
"jose": "^6.1.3",
|
|
48
48
|
"zod": "^4.1.13"
|