@be-logixpair/api 0.0.39 → 0.0.40
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 +1511 -448
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -646886,6 +646886,1069 @@ declare const appRouter: BuiltRouter<{
|
|
|
646886
646886
|
errorShape: DefaultErrorShape;
|
|
646887
646887
|
transformer: false;
|
|
646888
646888
|
}, DecorateCreateRouterOptions<{
|
|
646889
|
+
masterData: BuiltRouter<{
|
|
646890
|
+
ctx: Context;
|
|
646891
|
+
meta: object;
|
|
646892
|
+
errorShape: DefaultErrorShape;
|
|
646893
|
+
transformer: false;
|
|
646894
|
+
}, DecorateCreateRouterOptions<{
|
|
646895
|
+
organizations: BuiltRouter<{
|
|
646896
|
+
ctx: Context;
|
|
646897
|
+
meta: object;
|
|
646898
|
+
errorShape: DefaultErrorShape;
|
|
646899
|
+
transformer: false;
|
|
646900
|
+
}, DecorateCreateRouterOptions<{
|
|
646901
|
+
get: MutationProcedure<{
|
|
646902
|
+
input: {
|
|
646903
|
+
search?: string | null | undefined;
|
|
646904
|
+
take?: number | null | undefined;
|
|
646905
|
+
skip?: number | null | undefined;
|
|
646906
|
+
is_active?: boolean[] | null | undefined;
|
|
646907
|
+
ids_include?: number[] | null | undefined;
|
|
646908
|
+
ids_exclude?: number[] | null | undefined;
|
|
646909
|
+
ids_string_include?: string[] | null | undefined;
|
|
646910
|
+
ids_string_exclude?: string[] | null | undefined;
|
|
646911
|
+
logic_codes_include?: string[] | null | undefined;
|
|
646912
|
+
logic_codes_exclude?: string[] | null | undefined;
|
|
646913
|
+
order_by?: {
|
|
646914
|
+
field: string;
|
|
646915
|
+
direction: "asc" | "desc";
|
|
646916
|
+
} | null | undefined;
|
|
646917
|
+
order_bys?: {
|
|
646918
|
+
field: string;
|
|
646919
|
+
direction: "asc" | "desc";
|
|
646920
|
+
}[] | null | undefined;
|
|
646921
|
+
id_business_category?: number | null | undefined;
|
|
646922
|
+
ids_business_category?: number[] | null | undefined;
|
|
646923
|
+
id_country?: number | null | undefined;
|
|
646924
|
+
ids_country?: number[] | null | undefined;
|
|
646925
|
+
id_state?: number | null | undefined;
|
|
646926
|
+
ids_state?: number[] | null | undefined;
|
|
646927
|
+
id_city?: number | null | undefined;
|
|
646928
|
+
ids_city?: number[] | null | undefined;
|
|
646929
|
+
id_postal_code?: number | null | undefined;
|
|
646930
|
+
ids_postal_code?: number[] | null | undefined;
|
|
646931
|
+
id_un_locode?: number | null | undefined;
|
|
646932
|
+
ids_un_locode?: number[] | null | undefined;
|
|
646933
|
+
id_controlling_branch?: number | null | undefined;
|
|
646934
|
+
ids_controlling_branch?: number[] | null | undefined;
|
|
646935
|
+
id_airline?: number | null | undefined;
|
|
646936
|
+
ids_airline?: number[] | null | undefined;
|
|
646937
|
+
id_shipping_line?: number | null | undefined;
|
|
646938
|
+
ids_shipping_line?: number[] | null | undefined;
|
|
646939
|
+
is_receipt_account?: boolean[] | null | undefined;
|
|
646940
|
+
is_payment_account?: boolean[] | null | undefined;
|
|
646941
|
+
is_shipper?: boolean[] | null | undefined;
|
|
646942
|
+
is_consignee?: boolean[] | null | undefined;
|
|
646943
|
+
is_forwarder?: boolean[] | null | undefined;
|
|
646944
|
+
is_controlling_customer?: boolean[] | null | undefined;
|
|
646945
|
+
is_controlling_agent?: boolean[] | null | undefined;
|
|
646946
|
+
};
|
|
646947
|
+
output: {
|
|
646948
|
+
data: ({
|
|
646949
|
+
organization_business_categories: {
|
|
646950
|
+
is_active: boolean | null;
|
|
646951
|
+
id: number;
|
|
646952
|
+
name: string | null;
|
|
646953
|
+
logic_code: string | null;
|
|
646954
|
+
created_at: Date | null;
|
|
646955
|
+
created_by: string | null;
|
|
646956
|
+
updated_at: Date | null;
|
|
646957
|
+
updated_by: string | null;
|
|
646958
|
+
code: string | null;
|
|
646959
|
+
} | null;
|
|
646960
|
+
country: {
|
|
646961
|
+
is_active: boolean | null;
|
|
646962
|
+
id: number;
|
|
646963
|
+
name: string | null;
|
|
646964
|
+
logic_code: string | null;
|
|
646965
|
+
created_at: Date | null;
|
|
646966
|
+
created_by: string | null;
|
|
646967
|
+
updated_at: Date | null;
|
|
646968
|
+
updated_by: string | null;
|
|
646969
|
+
id_currency: number | null;
|
|
646970
|
+
id_awb_currency: number | null;
|
|
646971
|
+
iso2_code: string | null;
|
|
646972
|
+
iso3_code: string | null;
|
|
646973
|
+
iso3_numeric: string | null;
|
|
646974
|
+
is_sanctioned: boolean | null;
|
|
646975
|
+
} | null;
|
|
646976
|
+
state: {
|
|
646977
|
+
is_active: boolean | null;
|
|
646978
|
+
id_country: number | null;
|
|
646979
|
+
id: number;
|
|
646980
|
+
name: string | null;
|
|
646981
|
+
logic_code: string | null;
|
|
646982
|
+
created_at: Date | null;
|
|
646983
|
+
created_by: string | null;
|
|
646984
|
+
updated_at: Date | null;
|
|
646985
|
+
updated_by: string | null;
|
|
646986
|
+
code: string | null;
|
|
646987
|
+
} | null;
|
|
646988
|
+
city: {
|
|
646989
|
+
is_active: boolean | null;
|
|
646990
|
+
id_country: number | null;
|
|
646991
|
+
id_state: number | null;
|
|
646992
|
+
id: number;
|
|
646993
|
+
name: string | null;
|
|
646994
|
+
logic_code: string | null;
|
|
646995
|
+
created_at: Date | null;
|
|
646996
|
+
created_by: string | null;
|
|
646997
|
+
updated_at: Date | null;
|
|
646998
|
+
updated_by: string | null;
|
|
646999
|
+
code: string | null;
|
|
647000
|
+
} | null;
|
|
647001
|
+
postal_code: {
|
|
647002
|
+
is_active: boolean | null;
|
|
647003
|
+
id_country: number | null;
|
|
647004
|
+
id: number;
|
|
647005
|
+
logic_code: string | null;
|
|
647006
|
+
created_at: Date | null;
|
|
647007
|
+
created_by: string | null;
|
|
647008
|
+
updated_at: Date | null;
|
|
647009
|
+
updated_by: string | null;
|
|
647010
|
+
code: string | null;
|
|
647011
|
+
} | null;
|
|
647012
|
+
un_locode: {
|
|
647013
|
+
is_active: boolean | null;
|
|
647014
|
+
id_country: number | null;
|
|
647015
|
+
id_state: number | null;
|
|
647016
|
+
id_city: number | null;
|
|
647017
|
+
id: number;
|
|
647018
|
+
logic_code: string | null;
|
|
647019
|
+
created_at: Date | null;
|
|
647020
|
+
created_by: string | null;
|
|
647021
|
+
updated_at: Date | null;
|
|
647022
|
+
updated_by: string | null;
|
|
647023
|
+
id_time_zone: number | null;
|
|
647024
|
+
un_code: string | null;
|
|
647025
|
+
iata_code: string | null;
|
|
647026
|
+
iata_region_code: string | null;
|
|
647027
|
+
latitude: Decimal | null;
|
|
647028
|
+
longitude: Decimal | null;
|
|
647029
|
+
port_name: string | null;
|
|
647030
|
+
proper_name: string | null;
|
|
647031
|
+
has_post: boolean | null;
|
|
647032
|
+
has_customs: boolean | null;
|
|
647033
|
+
has_unload: boolean | null;
|
|
647034
|
+
has_airport: boolean | null;
|
|
647035
|
+
has_railway: boolean | null;
|
|
647036
|
+
has_road: boolean | null;
|
|
647037
|
+
has_store: boolean | null;
|
|
647038
|
+
has_terminal: boolean | null;
|
|
647039
|
+
has_discharge: boolean | null;
|
|
647040
|
+
has_seaport: boolean | null;
|
|
647041
|
+
has_outport: boolean | null;
|
|
647042
|
+
} | null;
|
|
647043
|
+
controlling_branch: {
|
|
647044
|
+
is_active: boolean | null;
|
|
647045
|
+
id_business_category: number | null;
|
|
647046
|
+
id_country: number | null;
|
|
647047
|
+
id_state: number | null;
|
|
647048
|
+
id_city: number | null;
|
|
647049
|
+
id_postal_code: number | null;
|
|
647050
|
+
id_un_locode: number | null;
|
|
647051
|
+
id_controlling_branch: number | null;
|
|
647052
|
+
id_airline: number | null;
|
|
647053
|
+
id_shipping_line: number | null;
|
|
647054
|
+
is_receipt_account: boolean | null;
|
|
647055
|
+
is_payment_account: boolean | null;
|
|
647056
|
+
is_shipper: boolean | null;
|
|
647057
|
+
is_consignee: boolean | null;
|
|
647058
|
+
is_forwarder: boolean | null;
|
|
647059
|
+
is_controlling_customer: boolean | null;
|
|
647060
|
+
is_controlling_agent: boolean | null;
|
|
647061
|
+
id: number;
|
|
647062
|
+
name: string | null;
|
|
647063
|
+
logic_code: string | null;
|
|
647064
|
+
created_at: Date | null;
|
|
647065
|
+
created_by: string | null;
|
|
647066
|
+
updated_at: Date | null;
|
|
647067
|
+
updated_by: string | null;
|
|
647068
|
+
code: string | null;
|
|
647069
|
+
phone: string | null;
|
|
647070
|
+
email: string | null;
|
|
647071
|
+
website_url: string | null;
|
|
647072
|
+
company_number: string | null;
|
|
647073
|
+
company_tax_number: string | null;
|
|
647074
|
+
} | null;
|
|
647075
|
+
airline: {
|
|
647076
|
+
is_active: boolean | null;
|
|
647077
|
+
id_country: number | null;
|
|
647078
|
+
id_state: number | null;
|
|
647079
|
+
id_city: number | null;
|
|
647080
|
+
id_postal_code: number | null;
|
|
647081
|
+
id_un_locode: number | null;
|
|
647082
|
+
id: number;
|
|
647083
|
+
name: string | null;
|
|
647084
|
+
logic_code: string | null;
|
|
647085
|
+
created_at: Date | null;
|
|
647086
|
+
created_by: string | null;
|
|
647087
|
+
updated_at: Date | null;
|
|
647088
|
+
updated_by: string | null;
|
|
647089
|
+
code: string | null;
|
|
647090
|
+
airline_num_code: string | null;
|
|
647091
|
+
airline_three_code: string | null;
|
|
647092
|
+
airline_two_code: string | null;
|
|
647093
|
+
short_airline_name: string | null;
|
|
647094
|
+
full_airline_name_1: string | null;
|
|
647095
|
+
full_airline_name_2: string | null;
|
|
647096
|
+
address: string | null;
|
|
647097
|
+
is_cass_controlled: boolean | null;
|
|
647098
|
+
is_iata_member: boolean | null;
|
|
647099
|
+
is_ata_member: boolean | null;
|
|
647100
|
+
is_sita_member: boolean | null;
|
|
647101
|
+
is_arinc_member: boolean | null;
|
|
647102
|
+
is_signed_e_awb: boolean | null;
|
|
647103
|
+
} | null;
|
|
647104
|
+
shipping_line: {
|
|
647105
|
+
is_active: boolean | null;
|
|
647106
|
+
id_country: number | null;
|
|
647107
|
+
id_state: number | null;
|
|
647108
|
+
id_city: number | null;
|
|
647109
|
+
id_postal_code: number | null;
|
|
647110
|
+
id_un_locode: number | null;
|
|
647111
|
+
id: number;
|
|
647112
|
+
name: string | null;
|
|
647113
|
+
logic_code: string | null;
|
|
647114
|
+
created_at: Date | null;
|
|
647115
|
+
created_by: string | null;
|
|
647116
|
+
updated_at: Date | null;
|
|
647117
|
+
updated_by: string | null;
|
|
647118
|
+
code: string | null;
|
|
647119
|
+
address: string | null;
|
|
647120
|
+
scac: string | null;
|
|
647121
|
+
ocean_carrier_name: string | null;
|
|
647122
|
+
is_non_vessel_operator: boolean | null;
|
|
647123
|
+
is_shipping_line: boolean | null;
|
|
647124
|
+
} | null;
|
|
647125
|
+
} & {
|
|
647126
|
+
is_active: boolean | null;
|
|
647127
|
+
id_business_category: number | null;
|
|
647128
|
+
id_country: number | null;
|
|
647129
|
+
id_state: number | null;
|
|
647130
|
+
id_city: number | null;
|
|
647131
|
+
id_postal_code: number | null;
|
|
647132
|
+
id_un_locode: number | null;
|
|
647133
|
+
id_controlling_branch: number | null;
|
|
647134
|
+
id_airline: number | null;
|
|
647135
|
+
id_shipping_line: number | null;
|
|
647136
|
+
is_receipt_account: boolean | null;
|
|
647137
|
+
is_payment_account: boolean | null;
|
|
647138
|
+
is_shipper: boolean | null;
|
|
647139
|
+
is_consignee: boolean | null;
|
|
647140
|
+
is_forwarder: boolean | null;
|
|
647141
|
+
is_controlling_customer: boolean | null;
|
|
647142
|
+
is_controlling_agent: boolean | null;
|
|
647143
|
+
id: number;
|
|
647144
|
+
name: string | null;
|
|
647145
|
+
logic_code: string | null;
|
|
647146
|
+
created_at: Date | null;
|
|
647147
|
+
created_by: string | null;
|
|
647148
|
+
updated_at: Date | null;
|
|
647149
|
+
updated_by: string | null;
|
|
647150
|
+
code: string | null;
|
|
647151
|
+
phone: string | null;
|
|
647152
|
+
email: string | null;
|
|
647153
|
+
website_url: string | null;
|
|
647154
|
+
company_number: string | null;
|
|
647155
|
+
company_tax_number: string | null;
|
|
647156
|
+
})[] | undefined;
|
|
647157
|
+
total: number | undefined;
|
|
647158
|
+
};
|
|
647159
|
+
meta: object;
|
|
647160
|
+
}>;
|
|
647161
|
+
getDetail: MutationProcedure<{
|
|
647162
|
+
input: {
|
|
647163
|
+
id?: number | null | undefined;
|
|
647164
|
+
id_string?: string | null | undefined;
|
|
647165
|
+
};
|
|
647166
|
+
output: {
|
|
647167
|
+
data: {
|
|
647168
|
+
organization_business_categories: {
|
|
647169
|
+
is_active: boolean | null;
|
|
647170
|
+
id: number;
|
|
647171
|
+
name: string | null;
|
|
647172
|
+
logic_code: string | null;
|
|
647173
|
+
created_at: Date | null;
|
|
647174
|
+
created_by: string | null;
|
|
647175
|
+
updated_at: Date | null;
|
|
647176
|
+
updated_by: string | null;
|
|
647177
|
+
code: string | null;
|
|
647178
|
+
} | null;
|
|
647179
|
+
_count: {
|
|
647180
|
+
organization_business_categories: number;
|
|
647181
|
+
country: number;
|
|
647182
|
+
state: number;
|
|
647183
|
+
city: number;
|
|
647184
|
+
postal_code: number;
|
|
647185
|
+
un_locode: number;
|
|
647186
|
+
controlling_branch: number;
|
|
647187
|
+
airline: number;
|
|
647188
|
+
shipping_line: number;
|
|
647189
|
+
organization_forwarder_details: number;
|
|
647190
|
+
organization_account_receivable_details: number;
|
|
647191
|
+
organization_account_payable_details: number;
|
|
647192
|
+
organization_logs: number;
|
|
647193
|
+
organization_addresses: number;
|
|
647194
|
+
organization_staff_assignments: number;
|
|
647195
|
+
organization_attachments: number;
|
|
647196
|
+
forwarding_bookings_carrier: number;
|
|
647197
|
+
forwarding_bookings_creditor: number;
|
|
647198
|
+
forwarding_shipment_organizations: number;
|
|
647199
|
+
forwarding_shipments_control_customer: number;
|
|
647200
|
+
forwarding_shipments_control_agent: number;
|
|
647201
|
+
forwarding_shipment_pickup_deliveries_organization: number;
|
|
647202
|
+
forwarding_shipment_pickup_deliveries_whs_organization: number;
|
|
647203
|
+
forwarding_shipment_pickup_deliveries_vendor_organization: number;
|
|
647204
|
+
forwarding_shipment_billing_local_client: number;
|
|
647205
|
+
forwarding_shipment_billing_overseas_agent: number;
|
|
647206
|
+
forwarding_shipment_billing_details_cost_creditor: number;
|
|
647207
|
+
forwarding_shipment_billing_details_sell_debtor: number;
|
|
647208
|
+
forwarding_console_sending_agents: number;
|
|
647209
|
+
forwarding_console_receiving_agents: number;
|
|
647210
|
+
forwarding_console_creditors: number;
|
|
647211
|
+
forwarding_console_billing_details_cost_creditor: number;
|
|
647212
|
+
forwarding_console_billing_details_sell_debtor: number;
|
|
647213
|
+
organization_person_in_charges: number;
|
|
647214
|
+
organizations: number;
|
|
647215
|
+
};
|
|
647216
|
+
country: {
|
|
647217
|
+
is_active: boolean | null;
|
|
647218
|
+
id: number;
|
|
647219
|
+
name: string | null;
|
|
647220
|
+
logic_code: string | null;
|
|
647221
|
+
created_at: Date | null;
|
|
647222
|
+
created_by: string | null;
|
|
647223
|
+
updated_at: Date | null;
|
|
647224
|
+
updated_by: string | null;
|
|
647225
|
+
id_currency: number | null;
|
|
647226
|
+
id_awb_currency: number | null;
|
|
647227
|
+
iso2_code: string | null;
|
|
647228
|
+
iso3_code: string | null;
|
|
647229
|
+
iso3_numeric: string | null;
|
|
647230
|
+
is_sanctioned: boolean | null;
|
|
647231
|
+
} | null;
|
|
647232
|
+
state: {
|
|
647233
|
+
is_active: boolean | null;
|
|
647234
|
+
id_country: number | null;
|
|
647235
|
+
id: number;
|
|
647236
|
+
name: string | null;
|
|
647237
|
+
logic_code: string | null;
|
|
647238
|
+
created_at: Date | null;
|
|
647239
|
+
created_by: string | null;
|
|
647240
|
+
updated_at: Date | null;
|
|
647241
|
+
updated_by: string | null;
|
|
647242
|
+
code: string | null;
|
|
647243
|
+
} | null;
|
|
647244
|
+
city: {
|
|
647245
|
+
is_active: boolean | null;
|
|
647246
|
+
id_country: number | null;
|
|
647247
|
+
id_state: number | null;
|
|
647248
|
+
id: number;
|
|
647249
|
+
name: string | null;
|
|
647250
|
+
logic_code: string | null;
|
|
647251
|
+
created_at: Date | null;
|
|
647252
|
+
created_by: string | null;
|
|
647253
|
+
updated_at: Date | null;
|
|
647254
|
+
updated_by: string | null;
|
|
647255
|
+
code: string | null;
|
|
647256
|
+
} | null;
|
|
647257
|
+
postal_code: {
|
|
647258
|
+
is_active: boolean | null;
|
|
647259
|
+
id_country: number | null;
|
|
647260
|
+
id: number;
|
|
647261
|
+
logic_code: string | null;
|
|
647262
|
+
created_at: Date | null;
|
|
647263
|
+
created_by: string | null;
|
|
647264
|
+
updated_at: Date | null;
|
|
647265
|
+
updated_by: string | null;
|
|
647266
|
+
code: string | null;
|
|
647267
|
+
} | null;
|
|
647268
|
+
un_locode: {
|
|
647269
|
+
is_active: boolean | null;
|
|
647270
|
+
id_country: number | null;
|
|
647271
|
+
id_state: number | null;
|
|
647272
|
+
id_city: number | null;
|
|
647273
|
+
id: number;
|
|
647274
|
+
logic_code: string | null;
|
|
647275
|
+
created_at: Date | null;
|
|
647276
|
+
created_by: string | null;
|
|
647277
|
+
updated_at: Date | null;
|
|
647278
|
+
updated_by: string | null;
|
|
647279
|
+
id_time_zone: number | null;
|
|
647280
|
+
un_code: string | null;
|
|
647281
|
+
iata_code: string | null;
|
|
647282
|
+
iata_region_code: string | null;
|
|
647283
|
+
latitude: Decimal | null;
|
|
647284
|
+
longitude: Decimal | null;
|
|
647285
|
+
port_name: string | null;
|
|
647286
|
+
proper_name: string | null;
|
|
647287
|
+
has_post: boolean | null;
|
|
647288
|
+
has_customs: boolean | null;
|
|
647289
|
+
has_unload: boolean | null;
|
|
647290
|
+
has_airport: boolean | null;
|
|
647291
|
+
has_railway: boolean | null;
|
|
647292
|
+
has_road: boolean | null;
|
|
647293
|
+
has_store: boolean | null;
|
|
647294
|
+
has_terminal: boolean | null;
|
|
647295
|
+
has_discharge: boolean | null;
|
|
647296
|
+
has_seaport: boolean | null;
|
|
647297
|
+
has_outport: boolean | null;
|
|
647298
|
+
} | null;
|
|
647299
|
+
controlling_branch: {
|
|
647300
|
+
is_active: boolean | null;
|
|
647301
|
+
id_business_category: number | null;
|
|
647302
|
+
id_country: number | null;
|
|
647303
|
+
id_state: number | null;
|
|
647304
|
+
id_city: number | null;
|
|
647305
|
+
id_postal_code: number | null;
|
|
647306
|
+
id_un_locode: number | null;
|
|
647307
|
+
id_controlling_branch: number | null;
|
|
647308
|
+
id_airline: number | null;
|
|
647309
|
+
id_shipping_line: number | null;
|
|
647310
|
+
is_receipt_account: boolean | null;
|
|
647311
|
+
is_payment_account: boolean | null;
|
|
647312
|
+
is_shipper: boolean | null;
|
|
647313
|
+
is_consignee: boolean | null;
|
|
647314
|
+
is_forwarder: boolean | null;
|
|
647315
|
+
is_controlling_customer: boolean | null;
|
|
647316
|
+
is_controlling_agent: boolean | null;
|
|
647317
|
+
id: number;
|
|
647318
|
+
name: string | null;
|
|
647319
|
+
logic_code: string | null;
|
|
647320
|
+
created_at: Date | null;
|
|
647321
|
+
created_by: string | null;
|
|
647322
|
+
updated_at: Date | null;
|
|
647323
|
+
updated_by: string | null;
|
|
647324
|
+
code: string | null;
|
|
647325
|
+
phone: string | null;
|
|
647326
|
+
email: string | null;
|
|
647327
|
+
website_url: string | null;
|
|
647328
|
+
company_number: string | null;
|
|
647329
|
+
company_tax_number: string | null;
|
|
647330
|
+
} | null;
|
|
647331
|
+
airline: {
|
|
647332
|
+
is_active: boolean | null;
|
|
647333
|
+
id_country: number | null;
|
|
647334
|
+
id_state: number | null;
|
|
647335
|
+
id_city: number | null;
|
|
647336
|
+
id_postal_code: number | null;
|
|
647337
|
+
id_un_locode: number | null;
|
|
647338
|
+
id: number;
|
|
647339
|
+
name: string | null;
|
|
647340
|
+
logic_code: string | null;
|
|
647341
|
+
created_at: Date | null;
|
|
647342
|
+
created_by: string | null;
|
|
647343
|
+
updated_at: Date | null;
|
|
647344
|
+
updated_by: string | null;
|
|
647345
|
+
code: string | null;
|
|
647346
|
+
airline_num_code: string | null;
|
|
647347
|
+
airline_three_code: string | null;
|
|
647348
|
+
airline_two_code: string | null;
|
|
647349
|
+
short_airline_name: string | null;
|
|
647350
|
+
full_airline_name_1: string | null;
|
|
647351
|
+
full_airline_name_2: string | null;
|
|
647352
|
+
address: string | null;
|
|
647353
|
+
is_cass_controlled: boolean | null;
|
|
647354
|
+
is_iata_member: boolean | null;
|
|
647355
|
+
is_ata_member: boolean | null;
|
|
647356
|
+
is_sita_member: boolean | null;
|
|
647357
|
+
is_arinc_member: boolean | null;
|
|
647358
|
+
is_signed_e_awb: boolean | null;
|
|
647359
|
+
} | null;
|
|
647360
|
+
shipping_line: {
|
|
647361
|
+
is_active: boolean | null;
|
|
647362
|
+
id_country: number | null;
|
|
647363
|
+
id_state: number | null;
|
|
647364
|
+
id_city: number | null;
|
|
647365
|
+
id_postal_code: number | null;
|
|
647366
|
+
id_un_locode: number | null;
|
|
647367
|
+
id: number;
|
|
647368
|
+
name: string | null;
|
|
647369
|
+
logic_code: string | null;
|
|
647370
|
+
created_at: Date | null;
|
|
647371
|
+
created_by: string | null;
|
|
647372
|
+
updated_at: Date | null;
|
|
647373
|
+
updated_by: string | null;
|
|
647374
|
+
code: string | null;
|
|
647375
|
+
address: string | null;
|
|
647376
|
+
scac: string | null;
|
|
647377
|
+
ocean_carrier_name: string | null;
|
|
647378
|
+
is_non_vessel_operator: boolean | null;
|
|
647379
|
+
is_shipping_line: boolean | null;
|
|
647380
|
+
} | null;
|
|
647381
|
+
} & {
|
|
647382
|
+
is_active: boolean | null;
|
|
647383
|
+
id_business_category: number | null;
|
|
647384
|
+
id_country: number | null;
|
|
647385
|
+
id_state: number | null;
|
|
647386
|
+
id_city: number | null;
|
|
647387
|
+
id_postal_code: number | null;
|
|
647388
|
+
id_un_locode: number | null;
|
|
647389
|
+
id_controlling_branch: number | null;
|
|
647390
|
+
id_airline: number | null;
|
|
647391
|
+
id_shipping_line: number | null;
|
|
647392
|
+
is_receipt_account: boolean | null;
|
|
647393
|
+
is_payment_account: boolean | null;
|
|
647394
|
+
is_shipper: boolean | null;
|
|
647395
|
+
is_consignee: boolean | null;
|
|
647396
|
+
is_forwarder: boolean | null;
|
|
647397
|
+
is_controlling_customer: boolean | null;
|
|
647398
|
+
is_controlling_agent: boolean | null;
|
|
647399
|
+
id: number;
|
|
647400
|
+
name: string | null;
|
|
647401
|
+
logic_code: string | null;
|
|
647402
|
+
created_at: Date | null;
|
|
647403
|
+
created_by: string | null;
|
|
647404
|
+
updated_at: Date | null;
|
|
647405
|
+
updated_by: string | null;
|
|
647406
|
+
code: string | null;
|
|
647407
|
+
phone: string | null;
|
|
647408
|
+
email: string | null;
|
|
647409
|
+
website_url: string | null;
|
|
647410
|
+
company_number: string | null;
|
|
647411
|
+
company_tax_number: string | null;
|
|
647412
|
+
};
|
|
647413
|
+
};
|
|
647414
|
+
meta: object;
|
|
647415
|
+
}>;
|
|
647416
|
+
histories: BuiltRouter<{
|
|
647417
|
+
ctx: Context;
|
|
647418
|
+
meta: object;
|
|
647419
|
+
errorShape: DefaultErrorShape;
|
|
647420
|
+
transformer: false;
|
|
647421
|
+
}, DecorateCreateRouterOptions<{
|
|
647422
|
+
get: MutationProcedure<{
|
|
647423
|
+
input: {
|
|
647424
|
+
search?: string | null | undefined;
|
|
647425
|
+
take?: number | null | undefined;
|
|
647426
|
+
skip?: number | null | undefined;
|
|
647427
|
+
is_active?: boolean[] | null | undefined;
|
|
647428
|
+
ids_include?: number[] | null | undefined;
|
|
647429
|
+
ids_exclude?: number[] | null | undefined;
|
|
647430
|
+
ids_string_include?: string[] | null | undefined;
|
|
647431
|
+
ids_string_exclude?: string[] | null | undefined;
|
|
647432
|
+
logic_codes_include?: string[] | null | undefined;
|
|
647433
|
+
logic_codes_exclude?: string[] | null | undefined;
|
|
647434
|
+
order_by?: {
|
|
647435
|
+
field: string;
|
|
647436
|
+
direction: "asc" | "desc";
|
|
647437
|
+
} | null | undefined;
|
|
647438
|
+
order_bys?: {
|
|
647439
|
+
field: string;
|
|
647440
|
+
direction: "asc" | "desc";
|
|
647441
|
+
}[] | null | undefined;
|
|
647442
|
+
id_log_type?: number | null | undefined;
|
|
647443
|
+
ids_log_type?: number[] | null | undefined;
|
|
647444
|
+
id_organization?: number | null | undefined;
|
|
647445
|
+
ids_organization?: number[] | null | undefined;
|
|
647446
|
+
};
|
|
647447
|
+
output: {
|
|
647448
|
+
data: {
|
|
647449
|
+
log_type: {
|
|
647450
|
+
is_active: boolean | null;
|
|
647451
|
+
id: number;
|
|
647452
|
+
name: string | null;
|
|
647453
|
+
logic_code: string | null;
|
|
647454
|
+
created_at: Date | null;
|
|
647455
|
+
created_by: string | null;
|
|
647456
|
+
updated_at: Date | null;
|
|
647457
|
+
updated_by: string | null;
|
|
647458
|
+
} | null;
|
|
647459
|
+
id: bigint;
|
|
647460
|
+
id_log_type: number | null;
|
|
647461
|
+
id_organization: number | null;
|
|
647462
|
+
url: string | null;
|
|
647463
|
+
params: SimpleJson;
|
|
647464
|
+
action: string | null;
|
|
647465
|
+
action_by: string | null;
|
|
647466
|
+
action_id: string | null;
|
|
647467
|
+
action_at: Date | null;
|
|
647468
|
+
}[] | undefined;
|
|
647469
|
+
total: number | undefined;
|
|
647470
|
+
};
|
|
647471
|
+
meta: object;
|
|
647472
|
+
}>;
|
|
647473
|
+
getDetail: MutationProcedure<{
|
|
647474
|
+
input: {
|
|
647475
|
+
id?: number | null | undefined;
|
|
647476
|
+
id_string?: string | null | undefined;
|
|
647477
|
+
};
|
|
647478
|
+
output: {
|
|
647479
|
+
data: {
|
|
647480
|
+
log_type: {
|
|
647481
|
+
is_active: boolean | null;
|
|
647482
|
+
id: number;
|
|
647483
|
+
name: string | null;
|
|
647484
|
+
logic_code: string | null;
|
|
647485
|
+
created_at: Date | null;
|
|
647486
|
+
created_by: string | null;
|
|
647487
|
+
updated_at: Date | null;
|
|
647488
|
+
updated_by: string | null;
|
|
647489
|
+
} | null;
|
|
647490
|
+
id: bigint;
|
|
647491
|
+
id_log_type: number | null;
|
|
647492
|
+
id_organization: number | null;
|
|
647493
|
+
url: string | null;
|
|
647494
|
+
params: SimpleJson;
|
|
647495
|
+
action: string | null;
|
|
647496
|
+
action_by: string | null;
|
|
647497
|
+
action_id: string | null;
|
|
647498
|
+
action_at: Date | null;
|
|
647499
|
+
} | undefined;
|
|
647500
|
+
};
|
|
647501
|
+
meta: object;
|
|
647502
|
+
}>;
|
|
647503
|
+
}>>;
|
|
647504
|
+
create: MutationProcedure<{
|
|
647505
|
+
input: {
|
|
647506
|
+
is_active?: boolean | undefined;
|
|
647507
|
+
id_business_category?: number | null | undefined;
|
|
647508
|
+
id_country?: number | null | undefined;
|
|
647509
|
+
id_state?: number | null | undefined;
|
|
647510
|
+
id_city?: number | null | undefined;
|
|
647511
|
+
id_postal_code?: number | null | undefined;
|
|
647512
|
+
id_un_locode?: number | null | undefined;
|
|
647513
|
+
id_controlling_branch?: number | null | undefined;
|
|
647514
|
+
id_airline?: number | null | undefined;
|
|
647515
|
+
id_shipping_line?: number | null | undefined;
|
|
647516
|
+
code?: string | null | undefined;
|
|
647517
|
+
name?: string | null | undefined;
|
|
647518
|
+
phone?: string | null | undefined;
|
|
647519
|
+
email?: string | null | undefined;
|
|
647520
|
+
website_url?: string | null | undefined;
|
|
647521
|
+
company_number?: string | null | undefined;
|
|
647522
|
+
company_tax_number?: string | null | undefined;
|
|
647523
|
+
is_receipt_account?: boolean | null | undefined;
|
|
647524
|
+
is_payment_account?: boolean | null | undefined;
|
|
647525
|
+
is_shipper?: boolean | null | undefined;
|
|
647526
|
+
is_consignee?: boolean | null | undefined;
|
|
647527
|
+
is_forwarder?: boolean | null | undefined;
|
|
647528
|
+
is_controlling_customer?: boolean | null | undefined;
|
|
647529
|
+
is_controlling_agent?: boolean | null | undefined;
|
|
647530
|
+
};
|
|
647531
|
+
output: {
|
|
647532
|
+
data: {
|
|
647533
|
+
is_active: boolean | null;
|
|
647534
|
+
id_business_category: number | null;
|
|
647535
|
+
id_country: number | null;
|
|
647536
|
+
id_state: number | null;
|
|
647537
|
+
id_city: number | null;
|
|
647538
|
+
id_postal_code: number | null;
|
|
647539
|
+
id_un_locode: number | null;
|
|
647540
|
+
id_controlling_branch: number | null;
|
|
647541
|
+
id_airline: number | null;
|
|
647542
|
+
id_shipping_line: number | null;
|
|
647543
|
+
is_receipt_account: boolean | null;
|
|
647544
|
+
is_payment_account: boolean | null;
|
|
647545
|
+
is_shipper: boolean | null;
|
|
647546
|
+
is_consignee: boolean | null;
|
|
647547
|
+
is_forwarder: boolean | null;
|
|
647548
|
+
is_controlling_customer: boolean | null;
|
|
647549
|
+
is_controlling_agent: boolean | null;
|
|
647550
|
+
id: number;
|
|
647551
|
+
name: string | null;
|
|
647552
|
+
logic_code: string | null;
|
|
647553
|
+
created_at: Date | null;
|
|
647554
|
+
created_by: string | null;
|
|
647555
|
+
updated_at: Date | null;
|
|
647556
|
+
updated_by: string | null;
|
|
647557
|
+
code: string | null;
|
|
647558
|
+
phone: string | null;
|
|
647559
|
+
email: string | null;
|
|
647560
|
+
website_url: string | null;
|
|
647561
|
+
company_number: string | null;
|
|
647562
|
+
company_tax_number: string | null;
|
|
647563
|
+
} | undefined;
|
|
647564
|
+
log: {
|
|
647565
|
+
id: bigint;
|
|
647566
|
+
id_log_type: number | null;
|
|
647567
|
+
id_organization: number | null;
|
|
647568
|
+
url: string | null;
|
|
647569
|
+
params: SimpleJson;
|
|
647570
|
+
action: string | null;
|
|
647571
|
+
action_by: string | null;
|
|
647572
|
+
action_id: string | null;
|
|
647573
|
+
action_at: Date | null;
|
|
647574
|
+
} | undefined;
|
|
647575
|
+
};
|
|
647576
|
+
meta: object;
|
|
647577
|
+
}>;
|
|
647578
|
+
update: MutationProcedure<{
|
|
647579
|
+
input: {
|
|
647580
|
+
id?: number | null | undefined;
|
|
647581
|
+
id_string?: string | null | undefined;
|
|
647582
|
+
is_active?: boolean | undefined;
|
|
647583
|
+
id_business_category?: number | null | undefined;
|
|
647584
|
+
id_country?: number | null | undefined;
|
|
647585
|
+
id_state?: number | null | undefined;
|
|
647586
|
+
id_city?: number | null | undefined;
|
|
647587
|
+
id_postal_code?: number | null | undefined;
|
|
647588
|
+
id_un_locode?: number | null | undefined;
|
|
647589
|
+
id_controlling_branch?: number | null | undefined;
|
|
647590
|
+
id_airline?: number | null | undefined;
|
|
647591
|
+
id_shipping_line?: number | null | undefined;
|
|
647592
|
+
code?: string | null | undefined;
|
|
647593
|
+
name?: string | null | undefined;
|
|
647594
|
+
phone?: string | null | undefined;
|
|
647595
|
+
email?: string | null | undefined;
|
|
647596
|
+
website_url?: string | null | undefined;
|
|
647597
|
+
company_number?: string | null | undefined;
|
|
647598
|
+
company_tax_number?: string | null | undefined;
|
|
647599
|
+
is_receipt_account?: boolean | null | undefined;
|
|
647600
|
+
is_payment_account?: boolean | null | undefined;
|
|
647601
|
+
is_shipper?: boolean | null | undefined;
|
|
647602
|
+
is_consignee?: boolean | null | undefined;
|
|
647603
|
+
is_forwarder?: boolean | null | undefined;
|
|
647604
|
+
is_controlling_customer?: boolean | null | undefined;
|
|
647605
|
+
is_controlling_agent?: boolean | null | undefined;
|
|
647606
|
+
};
|
|
647607
|
+
output: {
|
|
647608
|
+
data: {
|
|
647609
|
+
is_active: boolean | null;
|
|
647610
|
+
id_business_category: number | null;
|
|
647611
|
+
id_country: number | null;
|
|
647612
|
+
id_state: number | null;
|
|
647613
|
+
id_city: number | null;
|
|
647614
|
+
id_postal_code: number | null;
|
|
647615
|
+
id_un_locode: number | null;
|
|
647616
|
+
id_controlling_branch: number | null;
|
|
647617
|
+
id_airline: number | null;
|
|
647618
|
+
id_shipping_line: number | null;
|
|
647619
|
+
is_receipt_account: boolean | null;
|
|
647620
|
+
is_payment_account: boolean | null;
|
|
647621
|
+
is_shipper: boolean | null;
|
|
647622
|
+
is_consignee: boolean | null;
|
|
647623
|
+
is_forwarder: boolean | null;
|
|
647624
|
+
is_controlling_customer: boolean | null;
|
|
647625
|
+
is_controlling_agent: boolean | null;
|
|
647626
|
+
id: number;
|
|
647627
|
+
name: string | null;
|
|
647628
|
+
logic_code: string | null;
|
|
647629
|
+
created_at: Date | null;
|
|
647630
|
+
created_by: string | null;
|
|
647631
|
+
updated_at: Date | null;
|
|
647632
|
+
updated_by: string | null;
|
|
647633
|
+
code: string | null;
|
|
647634
|
+
phone: string | null;
|
|
647635
|
+
email: string | null;
|
|
647636
|
+
website_url: string | null;
|
|
647637
|
+
company_number: string | null;
|
|
647638
|
+
company_tax_number: string | null;
|
|
647639
|
+
} | undefined;
|
|
647640
|
+
log: {
|
|
647641
|
+
id: bigint;
|
|
647642
|
+
id_log_type: number | null;
|
|
647643
|
+
id_organization: number | null;
|
|
647644
|
+
url: string | null;
|
|
647645
|
+
params: SimpleJson;
|
|
647646
|
+
action: string | null;
|
|
647647
|
+
action_by: string | null;
|
|
647648
|
+
action_id: string | null;
|
|
647649
|
+
action_at: Date | null;
|
|
647650
|
+
} | undefined;
|
|
647651
|
+
};
|
|
647652
|
+
meta: object;
|
|
647653
|
+
}>;
|
|
647654
|
+
delete: MutationProcedure<{
|
|
647655
|
+
input: {
|
|
647656
|
+
id?: number | null | undefined;
|
|
647657
|
+
ids?: number[] | null | undefined;
|
|
647658
|
+
id_string?: string | null | undefined;
|
|
647659
|
+
ids_string?: string[] | null | undefined;
|
|
647660
|
+
};
|
|
647661
|
+
output: {
|
|
647662
|
+
data: ({
|
|
647663
|
+
is_active: boolean | null;
|
|
647664
|
+
id_business_category: number | null;
|
|
647665
|
+
id_country: number | null;
|
|
647666
|
+
id_state: number | null;
|
|
647667
|
+
id_city: number | null;
|
|
647668
|
+
id_postal_code: number | null;
|
|
647669
|
+
id_un_locode: number | null;
|
|
647670
|
+
id_controlling_branch: number | null;
|
|
647671
|
+
id_airline: number | null;
|
|
647672
|
+
id_shipping_line: number | null;
|
|
647673
|
+
is_receipt_account: boolean | null;
|
|
647674
|
+
is_payment_account: boolean | null;
|
|
647675
|
+
is_shipper: boolean | null;
|
|
647676
|
+
is_consignee: boolean | null;
|
|
647677
|
+
is_forwarder: boolean | null;
|
|
647678
|
+
is_controlling_customer: boolean | null;
|
|
647679
|
+
is_controlling_agent: boolean | null;
|
|
647680
|
+
id: number;
|
|
647681
|
+
name: string | null;
|
|
647682
|
+
logic_code: string | null;
|
|
647683
|
+
created_at: Date | null;
|
|
647684
|
+
created_by: string | null;
|
|
647685
|
+
updated_at: Date | null;
|
|
647686
|
+
updated_by: string | null;
|
|
647687
|
+
code: string | null;
|
|
647688
|
+
phone: string | null;
|
|
647689
|
+
email: string | null;
|
|
647690
|
+
website_url: string | null;
|
|
647691
|
+
company_number: string | null;
|
|
647692
|
+
company_tax_number: string | null;
|
|
647693
|
+
} | undefined)[] | undefined;
|
|
647694
|
+
};
|
|
647695
|
+
meta: object;
|
|
647696
|
+
}>;
|
|
647697
|
+
businessCategories: BuiltRouter<{
|
|
647698
|
+
ctx: Context;
|
|
647699
|
+
meta: object;
|
|
647700
|
+
errorShape: DefaultErrorShape;
|
|
647701
|
+
transformer: false;
|
|
647702
|
+
}, DecorateCreateRouterOptions<{
|
|
647703
|
+
get: MutationProcedure<{
|
|
647704
|
+
input: {
|
|
647705
|
+
search?: string | null | undefined;
|
|
647706
|
+
take?: number | null | undefined;
|
|
647707
|
+
skip?: number | null | undefined;
|
|
647708
|
+
is_active?: boolean[] | null | undefined;
|
|
647709
|
+
ids_include?: number[] | null | undefined;
|
|
647710
|
+
ids_exclude?: number[] | null | undefined;
|
|
647711
|
+
ids_string_include?: string[] | null | undefined;
|
|
647712
|
+
ids_string_exclude?: string[] | null | undefined;
|
|
647713
|
+
logic_codes_include?: string[] | null | undefined;
|
|
647714
|
+
logic_codes_exclude?: string[] | null | undefined;
|
|
647715
|
+
order_by?: {
|
|
647716
|
+
field: string;
|
|
647717
|
+
direction: "asc" | "desc";
|
|
647718
|
+
} | null | undefined;
|
|
647719
|
+
order_bys?: {
|
|
647720
|
+
field: string;
|
|
647721
|
+
direction: "asc" | "desc";
|
|
647722
|
+
}[] | null | undefined;
|
|
647723
|
+
};
|
|
647724
|
+
output: {
|
|
647725
|
+
data: {
|
|
647726
|
+
is_active: boolean | null;
|
|
647727
|
+
id: number;
|
|
647728
|
+
name: string | null;
|
|
647729
|
+
logic_code: string | null;
|
|
647730
|
+
created_at: Date | null;
|
|
647731
|
+
created_by: string | null;
|
|
647732
|
+
updated_at: Date | null;
|
|
647733
|
+
updated_by: string | null;
|
|
647734
|
+
code: string | null;
|
|
647735
|
+
}[] | undefined;
|
|
647736
|
+
total: number | undefined;
|
|
647737
|
+
};
|
|
647738
|
+
meta: object;
|
|
647739
|
+
}>;
|
|
647740
|
+
getDetail: MutationProcedure<{
|
|
647741
|
+
input: {
|
|
647742
|
+
id?: number | null | undefined;
|
|
647743
|
+
id_string?: string | null | undefined;
|
|
647744
|
+
};
|
|
647745
|
+
output: {
|
|
647746
|
+
data: {
|
|
647747
|
+
_count: {
|
|
647748
|
+
organizations: number;
|
|
647749
|
+
organization_business_category_logs: number;
|
|
647750
|
+
};
|
|
647751
|
+
} & {
|
|
647752
|
+
is_active: boolean | null;
|
|
647753
|
+
id: number;
|
|
647754
|
+
name: string | null;
|
|
647755
|
+
logic_code: string | null;
|
|
647756
|
+
created_at: Date | null;
|
|
647757
|
+
created_by: string | null;
|
|
647758
|
+
updated_at: Date | null;
|
|
647759
|
+
updated_by: string | null;
|
|
647760
|
+
code: string | null;
|
|
647761
|
+
};
|
|
647762
|
+
};
|
|
647763
|
+
meta: object;
|
|
647764
|
+
}>;
|
|
647765
|
+
histories: BuiltRouter<{
|
|
647766
|
+
ctx: Context;
|
|
647767
|
+
meta: object;
|
|
647768
|
+
errorShape: DefaultErrorShape;
|
|
647769
|
+
transformer: false;
|
|
647770
|
+
}, DecorateCreateRouterOptions<{
|
|
647771
|
+
get: MutationProcedure<{
|
|
647772
|
+
input: {
|
|
647773
|
+
search?: string | null | undefined;
|
|
647774
|
+
take?: number | null | undefined;
|
|
647775
|
+
skip?: number | null | undefined;
|
|
647776
|
+
is_active?: boolean[] | null | undefined;
|
|
647777
|
+
ids_include?: number[] | null | undefined;
|
|
647778
|
+
ids_exclude?: number[] | null | undefined;
|
|
647779
|
+
ids_string_include?: string[] | null | undefined;
|
|
647780
|
+
ids_string_exclude?: string[] | null | undefined;
|
|
647781
|
+
logic_codes_include?: string[] | null | undefined;
|
|
647782
|
+
logic_codes_exclude?: string[] | null | undefined;
|
|
647783
|
+
order_by?: {
|
|
647784
|
+
field: string;
|
|
647785
|
+
direction: "asc" | "desc";
|
|
647786
|
+
} | null | undefined;
|
|
647787
|
+
order_bys?: {
|
|
647788
|
+
field: string;
|
|
647789
|
+
direction: "asc" | "desc";
|
|
647790
|
+
}[] | null | undefined;
|
|
647791
|
+
id_log_type?: number | null | undefined;
|
|
647792
|
+
ids_log_type?: number[] | null | undefined;
|
|
647793
|
+
id_organization_business_category?: number | null | undefined;
|
|
647794
|
+
ids_organization_business_category?: number[] | null | undefined;
|
|
647795
|
+
};
|
|
647796
|
+
output: {
|
|
647797
|
+
data: {
|
|
647798
|
+
log_type: {
|
|
647799
|
+
is_active: boolean | null;
|
|
647800
|
+
id: number;
|
|
647801
|
+
name: string | null;
|
|
647802
|
+
logic_code: string | null;
|
|
647803
|
+
created_at: Date | null;
|
|
647804
|
+
created_by: string | null;
|
|
647805
|
+
updated_at: Date | null;
|
|
647806
|
+
updated_by: string | null;
|
|
647807
|
+
} | null;
|
|
647808
|
+
id: bigint;
|
|
647809
|
+
id_log_type: number | null;
|
|
647810
|
+
url: string | null;
|
|
647811
|
+
params: SimpleJson;
|
|
647812
|
+
action: string | null;
|
|
647813
|
+
action_by: string | null;
|
|
647814
|
+
action_id: string | null;
|
|
647815
|
+
action_at: Date | null;
|
|
647816
|
+
id_organization_business_category: number | null;
|
|
647817
|
+
}[] | undefined;
|
|
647818
|
+
total: number | undefined;
|
|
647819
|
+
};
|
|
647820
|
+
meta: object;
|
|
647821
|
+
}>;
|
|
647822
|
+
getDetail: MutationProcedure<{
|
|
647823
|
+
input: {
|
|
647824
|
+
id?: number | null | undefined;
|
|
647825
|
+
id_string?: string | null | undefined;
|
|
647826
|
+
};
|
|
647827
|
+
output: {
|
|
647828
|
+
data: {
|
|
647829
|
+
log_type: {
|
|
647830
|
+
is_active: boolean | null;
|
|
647831
|
+
id: number;
|
|
647832
|
+
name: string | null;
|
|
647833
|
+
logic_code: string | null;
|
|
647834
|
+
created_at: Date | null;
|
|
647835
|
+
created_by: string | null;
|
|
647836
|
+
updated_at: Date | null;
|
|
647837
|
+
updated_by: string | null;
|
|
647838
|
+
} | null;
|
|
647839
|
+
id: bigint;
|
|
647840
|
+
id_log_type: number | null;
|
|
647841
|
+
url: string | null;
|
|
647842
|
+
params: SimpleJson;
|
|
647843
|
+
action: string | null;
|
|
647844
|
+
action_by: string | null;
|
|
647845
|
+
action_id: string | null;
|
|
647846
|
+
action_at: Date | null;
|
|
647847
|
+
id_organization_business_category: number | null;
|
|
647848
|
+
} | undefined;
|
|
647849
|
+
};
|
|
647850
|
+
meta: object;
|
|
647851
|
+
}>;
|
|
647852
|
+
}>>;
|
|
647853
|
+
create: MutationProcedure<{
|
|
647854
|
+
input: {
|
|
647855
|
+
is_active?: boolean | undefined;
|
|
647856
|
+
code?: string | null | undefined;
|
|
647857
|
+
name?: string | null | undefined;
|
|
647858
|
+
};
|
|
647859
|
+
output: {
|
|
647860
|
+
data: {
|
|
647861
|
+
is_active: boolean | null;
|
|
647862
|
+
id: number;
|
|
647863
|
+
length: Decimal | null;
|
|
647864
|
+
name: string | null;
|
|
647865
|
+
logic_code: string | null;
|
|
647866
|
+
created_at: Date | null;
|
|
647867
|
+
created_by: string | null;
|
|
647868
|
+
updated_at: Date | null;
|
|
647869
|
+
updated_by: string | null;
|
|
647870
|
+
code: string | null;
|
|
647871
|
+
id_dimension_unit: number | null;
|
|
647872
|
+
id_weight_unit: number | null;
|
|
647873
|
+
id_uom_type: number | null;
|
|
647874
|
+
height: Decimal | null;
|
|
647875
|
+
width: Decimal | null;
|
|
647876
|
+
weight: Decimal | null;
|
|
647877
|
+
is_keep_upright: boolean | null;
|
|
647878
|
+
} | undefined;
|
|
647879
|
+
log: {
|
|
647880
|
+
id: bigint;
|
|
647881
|
+
id_log_type: number | null;
|
|
647882
|
+
url: string | null;
|
|
647883
|
+
params: SimpleJson;
|
|
647884
|
+
action: string | null;
|
|
647885
|
+
action_by: string | null;
|
|
647886
|
+
action_id: string | null;
|
|
647887
|
+
action_at: Date | null;
|
|
647888
|
+
id_organization_business_category: number | null;
|
|
647889
|
+
} | undefined;
|
|
647890
|
+
};
|
|
647891
|
+
meta: object;
|
|
647892
|
+
}>;
|
|
647893
|
+
update: MutationProcedure<{
|
|
647894
|
+
input: {
|
|
647895
|
+
id?: number | null | undefined;
|
|
647896
|
+
id_string?: string | null | undefined;
|
|
647897
|
+
is_active?: boolean | undefined;
|
|
647898
|
+
code?: string | null | undefined;
|
|
647899
|
+
name?: string | null | undefined;
|
|
647900
|
+
};
|
|
647901
|
+
output: {
|
|
647902
|
+
data: {
|
|
647903
|
+
is_active: boolean | null;
|
|
647904
|
+
id: number;
|
|
647905
|
+
name: string | null;
|
|
647906
|
+
logic_code: string | null;
|
|
647907
|
+
created_at: Date | null;
|
|
647908
|
+
created_by: string | null;
|
|
647909
|
+
updated_at: Date | null;
|
|
647910
|
+
updated_by: string | null;
|
|
647911
|
+
code: string | null;
|
|
647912
|
+
} | undefined;
|
|
647913
|
+
log: {
|
|
647914
|
+
id: bigint;
|
|
647915
|
+
id_log_type: number | null;
|
|
647916
|
+
url: string | null;
|
|
647917
|
+
params: SimpleJson;
|
|
647918
|
+
action: string | null;
|
|
647919
|
+
action_by: string | null;
|
|
647920
|
+
action_id: string | null;
|
|
647921
|
+
action_at: Date | null;
|
|
647922
|
+
id_organization_business_category: number | null;
|
|
647923
|
+
} | undefined;
|
|
647924
|
+
};
|
|
647925
|
+
meta: object;
|
|
647926
|
+
}>;
|
|
647927
|
+
delete: MutationProcedure<{
|
|
647928
|
+
input: {
|
|
647929
|
+
id?: number | null | undefined;
|
|
647930
|
+
ids?: number[] | null | undefined;
|
|
647931
|
+
id_string?: string | null | undefined;
|
|
647932
|
+
ids_string?: string[] | null | undefined;
|
|
647933
|
+
};
|
|
647934
|
+
output: {
|
|
647935
|
+
data: ({
|
|
647936
|
+
is_active: boolean | null;
|
|
647937
|
+
id: number;
|
|
647938
|
+
name: string | null;
|
|
647939
|
+
logic_code: string | null;
|
|
647940
|
+
created_at: Date | null;
|
|
647941
|
+
created_by: string | null;
|
|
647942
|
+
updated_at: Date | null;
|
|
647943
|
+
updated_by: string | null;
|
|
647944
|
+
code: string | null;
|
|
647945
|
+
} | undefined)[] | undefined;
|
|
647946
|
+
};
|
|
647947
|
+
meta: object;
|
|
647948
|
+
}>;
|
|
647949
|
+
}>>;
|
|
647950
|
+
}>>;
|
|
647951
|
+
}>>;
|
|
646889
647952
|
references: BuiltRouter<{
|
|
646890
647953
|
ctx: Context;
|
|
646891
647954
|
meta: object;
|
|
@@ -646931,37 +647994,6 @@ declare const appRouter: BuiltRouter<{
|
|
|
646931
647994
|
};
|
|
646932
647995
|
output: {
|
|
646933
647996
|
data: ({
|
|
646934
|
-
un_locode: {
|
|
646935
|
-
is_active: boolean | null;
|
|
646936
|
-
id_country: number | null;
|
|
646937
|
-
id_state: number | null;
|
|
646938
|
-
id_city: number | null;
|
|
646939
|
-
id: number;
|
|
646940
|
-
logic_code: string | null;
|
|
646941
|
-
created_at: Date | null;
|
|
646942
|
-
created_by: string | null;
|
|
646943
|
-
updated_at: Date | null;
|
|
646944
|
-
updated_by: string | null;
|
|
646945
|
-
id_time_zone: number | null;
|
|
646946
|
-
un_code: string | null;
|
|
646947
|
-
iata_code: string | null;
|
|
646948
|
-
iata_region_code: string | null;
|
|
646949
|
-
latitude: Decimal | null;
|
|
646950
|
-
longitude: Decimal | null;
|
|
646951
|
-
port_name: string | null;
|
|
646952
|
-
proper_name: string | null;
|
|
646953
|
-
has_post: boolean | null;
|
|
646954
|
-
has_customs: boolean | null;
|
|
646955
|
-
has_unload: boolean | null;
|
|
646956
|
-
has_airport: boolean | null;
|
|
646957
|
-
has_railway: boolean | null;
|
|
646958
|
-
has_road: boolean | null;
|
|
646959
|
-
has_store: boolean | null;
|
|
646960
|
-
has_terminal: boolean | null;
|
|
646961
|
-
has_discharge: boolean | null;
|
|
646962
|
-
has_seaport: boolean | null;
|
|
646963
|
-
has_outport: boolean | null;
|
|
646964
|
-
} | null;
|
|
646965
647997
|
country: {
|
|
646966
647998
|
is_active: boolean | null;
|
|
646967
647999
|
id: number;
|
|
@@ -647014,13 +648046,44 @@ declare const appRouter: BuiltRouter<{
|
|
|
647014
648046
|
updated_by: string | null;
|
|
647015
648047
|
code: string | null;
|
|
647016
648048
|
} | null;
|
|
648049
|
+
un_locode: {
|
|
648050
|
+
is_active: boolean | null;
|
|
648051
|
+
id_country: number | null;
|
|
648052
|
+
id_state: number | null;
|
|
648053
|
+
id_city: number | null;
|
|
648054
|
+
id: number;
|
|
648055
|
+
logic_code: string | null;
|
|
648056
|
+
created_at: Date | null;
|
|
648057
|
+
created_by: string | null;
|
|
648058
|
+
updated_at: Date | null;
|
|
648059
|
+
updated_by: string | null;
|
|
648060
|
+
id_time_zone: number | null;
|
|
648061
|
+
un_code: string | null;
|
|
648062
|
+
iata_code: string | null;
|
|
648063
|
+
iata_region_code: string | null;
|
|
648064
|
+
latitude: Decimal | null;
|
|
648065
|
+
longitude: Decimal | null;
|
|
648066
|
+
port_name: string | null;
|
|
648067
|
+
proper_name: string | null;
|
|
648068
|
+
has_post: boolean | null;
|
|
648069
|
+
has_customs: boolean | null;
|
|
648070
|
+
has_unload: boolean | null;
|
|
648071
|
+
has_airport: boolean | null;
|
|
648072
|
+
has_railway: boolean | null;
|
|
648073
|
+
has_road: boolean | null;
|
|
648074
|
+
has_store: boolean | null;
|
|
648075
|
+
has_terminal: boolean | null;
|
|
648076
|
+
has_discharge: boolean | null;
|
|
648077
|
+
has_seaport: boolean | null;
|
|
648078
|
+
has_outport: boolean | null;
|
|
648079
|
+
} | null;
|
|
647017
648080
|
} & {
|
|
647018
648081
|
is_active: boolean | null;
|
|
647019
|
-
id_un_locode: number | null;
|
|
647020
648082
|
id_country: number | null;
|
|
647021
648083
|
id_state: number | null;
|
|
647022
648084
|
id_city: number | null;
|
|
647023
648085
|
id_postal_code: number | null;
|
|
648086
|
+
id_un_locode: number | null;
|
|
647024
648087
|
id: number;
|
|
647025
648088
|
name: string | null;
|
|
647026
648089
|
logic_code: string | null;
|
|
@@ -647054,37 +648117,16 @@ declare const appRouter: BuiltRouter<{
|
|
|
647054
648117
|
};
|
|
647055
648118
|
output: {
|
|
647056
648119
|
data: {
|
|
647057
|
-
|
|
647058
|
-
|
|
647059
|
-
|
|
647060
|
-
|
|
647061
|
-
|
|
647062
|
-
|
|
647063
|
-
|
|
647064
|
-
|
|
647065
|
-
|
|
647066
|
-
|
|
647067
|
-
updated_by: string | null;
|
|
647068
|
-
id_time_zone: number | null;
|
|
647069
|
-
un_code: string | null;
|
|
647070
|
-
iata_code: string | null;
|
|
647071
|
-
iata_region_code: string | null;
|
|
647072
|
-
latitude: Decimal | null;
|
|
647073
|
-
longitude: Decimal | null;
|
|
647074
|
-
port_name: string | null;
|
|
647075
|
-
proper_name: string | null;
|
|
647076
|
-
has_post: boolean | null;
|
|
647077
|
-
has_customs: boolean | null;
|
|
647078
|
-
has_unload: boolean | null;
|
|
647079
|
-
has_airport: boolean | null;
|
|
647080
|
-
has_railway: boolean | null;
|
|
647081
|
-
has_road: boolean | null;
|
|
647082
|
-
has_store: boolean | null;
|
|
647083
|
-
has_terminal: boolean | null;
|
|
647084
|
-
has_discharge: boolean | null;
|
|
647085
|
-
has_seaport: boolean | null;
|
|
647086
|
-
has_outport: boolean | null;
|
|
647087
|
-
} | null;
|
|
648120
|
+
_count: {
|
|
648121
|
+
un_locode: number;
|
|
648122
|
+
country: number;
|
|
648123
|
+
state: number;
|
|
648124
|
+
city: number;
|
|
648125
|
+
postal_code: number;
|
|
648126
|
+
airline_logs: number;
|
|
648127
|
+
forwarding_consoles: number;
|
|
648128
|
+
organizations: number;
|
|
648129
|
+
};
|
|
647088
648130
|
country: ({
|
|
647089
648131
|
currency: {
|
|
647090
648132
|
symbol: string | null;
|
|
@@ -647154,23 +648196,44 @@ declare const appRouter: BuiltRouter<{
|
|
|
647154
648196
|
updated_by: string | null;
|
|
647155
648197
|
code: string | null;
|
|
647156
648198
|
} | null;
|
|
647157
|
-
|
|
647158
|
-
|
|
647159
|
-
|
|
647160
|
-
|
|
647161
|
-
|
|
647162
|
-
|
|
647163
|
-
|
|
647164
|
-
|
|
647165
|
-
|
|
647166
|
-
|
|
648199
|
+
un_locode: {
|
|
648200
|
+
is_active: boolean | null;
|
|
648201
|
+
id_country: number | null;
|
|
648202
|
+
id_state: number | null;
|
|
648203
|
+
id_city: number | null;
|
|
648204
|
+
id: number;
|
|
648205
|
+
logic_code: string | null;
|
|
648206
|
+
created_at: Date | null;
|
|
648207
|
+
created_by: string | null;
|
|
648208
|
+
updated_at: Date | null;
|
|
648209
|
+
updated_by: string | null;
|
|
648210
|
+
id_time_zone: number | null;
|
|
648211
|
+
un_code: string | null;
|
|
648212
|
+
iata_code: string | null;
|
|
648213
|
+
iata_region_code: string | null;
|
|
648214
|
+
latitude: Decimal | null;
|
|
648215
|
+
longitude: Decimal | null;
|
|
648216
|
+
port_name: string | null;
|
|
648217
|
+
proper_name: string | null;
|
|
648218
|
+
has_post: boolean | null;
|
|
648219
|
+
has_customs: boolean | null;
|
|
648220
|
+
has_unload: boolean | null;
|
|
648221
|
+
has_airport: boolean | null;
|
|
648222
|
+
has_railway: boolean | null;
|
|
648223
|
+
has_road: boolean | null;
|
|
648224
|
+
has_store: boolean | null;
|
|
648225
|
+
has_terminal: boolean | null;
|
|
648226
|
+
has_discharge: boolean | null;
|
|
648227
|
+
has_seaport: boolean | null;
|
|
648228
|
+
has_outport: boolean | null;
|
|
648229
|
+
} | null;
|
|
647167
648230
|
} & {
|
|
647168
648231
|
is_active: boolean | null;
|
|
647169
|
-
id_un_locode: number | null;
|
|
647170
648232
|
id_country: number | null;
|
|
647171
648233
|
id_state: number | null;
|
|
647172
648234
|
id_city: number | null;
|
|
647173
648235
|
id_postal_code: number | null;
|
|
648236
|
+
id_un_locode: number | null;
|
|
647174
648237
|
id: number;
|
|
647175
648238
|
name: string | null;
|
|
647176
648239
|
logic_code: string | null;
|
|
@@ -647239,9 +648302,9 @@ declare const appRouter: BuiltRouter<{
|
|
|
647239
648302
|
updated_at: Date | null;
|
|
647240
648303
|
updated_by: string | null;
|
|
647241
648304
|
} | null;
|
|
648305
|
+
id_airline: number | null;
|
|
647242
648306
|
id: number;
|
|
647243
648307
|
id_log_type: number | null;
|
|
647244
|
-
id_airline: number | null;
|
|
647245
648308
|
url: string | null;
|
|
647246
648309
|
params: SimpleJson;
|
|
647247
648310
|
action: string | null;
|
|
@@ -647270,9 +648333,9 @@ declare const appRouter: BuiltRouter<{
|
|
|
647270
648333
|
updated_at: Date | null;
|
|
647271
648334
|
updated_by: string | null;
|
|
647272
648335
|
} | null;
|
|
648336
|
+
id_airline: number | null;
|
|
647273
648337
|
id: number;
|
|
647274
648338
|
id_log_type: number | null;
|
|
647275
|
-
id_airline: number | null;
|
|
647276
648339
|
url: string | null;
|
|
647277
648340
|
params: SimpleJson;
|
|
647278
648341
|
action: string | null;
|
|
@@ -647311,11 +648374,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
647311
648374
|
output: {
|
|
647312
648375
|
data: {
|
|
647313
648376
|
is_active: boolean | null;
|
|
647314
|
-
id_un_locode: number | null;
|
|
647315
648377
|
id_country: number | null;
|
|
647316
648378
|
id_state: number | null;
|
|
647317
648379
|
id_city: number | null;
|
|
647318
648380
|
id_postal_code: number | null;
|
|
648381
|
+
id_un_locode: number | null;
|
|
647319
648382
|
id: number;
|
|
647320
648383
|
name: string | null;
|
|
647321
648384
|
logic_code: string | null;
|
|
@@ -647339,9 +648402,9 @@ declare const appRouter: BuiltRouter<{
|
|
|
647339
648402
|
is_signed_e_awb: boolean | null;
|
|
647340
648403
|
} | undefined;
|
|
647341
648404
|
log: {
|
|
648405
|
+
id_airline: number | null;
|
|
647342
648406
|
id: number;
|
|
647343
648407
|
id_log_type: number | null;
|
|
647344
|
-
id_airline: number | null;
|
|
647345
648408
|
url: string | null;
|
|
647346
648409
|
params: SimpleJson;
|
|
647347
648410
|
action: string | null;
|
|
@@ -647381,11 +648444,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
647381
648444
|
output: {
|
|
647382
648445
|
data: {
|
|
647383
648446
|
is_active: boolean | null;
|
|
647384
|
-
id_un_locode: number | null;
|
|
647385
648447
|
id_country: number | null;
|
|
647386
648448
|
id_state: number | null;
|
|
647387
648449
|
id_city: number | null;
|
|
647388
648450
|
id_postal_code: number | null;
|
|
648451
|
+
id_un_locode: number | null;
|
|
647389
648452
|
id: number;
|
|
647390
648453
|
name: string | null;
|
|
647391
648454
|
logic_code: string | null;
|
|
@@ -647409,9 +648472,9 @@ declare const appRouter: BuiltRouter<{
|
|
|
647409
648472
|
is_signed_e_awb: boolean | null;
|
|
647410
648473
|
} | undefined;
|
|
647411
648474
|
log: {
|
|
648475
|
+
id_airline: number | null;
|
|
647412
648476
|
id: number;
|
|
647413
648477
|
id_log_type: number | null;
|
|
647414
|
-
id_airline: number | null;
|
|
647415
648478
|
url: string | null;
|
|
647416
648479
|
params: SimpleJson;
|
|
647417
648480
|
action: string | null;
|
|
@@ -647432,11 +648495,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
647432
648495
|
output: {
|
|
647433
648496
|
data: ({
|
|
647434
648497
|
is_active: boolean | null;
|
|
647435
|
-
id_un_locode: number | null;
|
|
647436
648498
|
id_country: number | null;
|
|
647437
648499
|
id_state: number | null;
|
|
647438
648500
|
id_city: number | null;
|
|
647439
648501
|
id_postal_code: number | null;
|
|
648502
|
+
id_un_locode: number | null;
|
|
647440
648503
|
id: number;
|
|
647441
648504
|
name: string | null;
|
|
647442
648505
|
logic_code: string | null;
|
|
@@ -647502,37 +648565,6 @@ declare const appRouter: BuiltRouter<{
|
|
|
647502
648565
|
};
|
|
647503
648566
|
output: {
|
|
647504
648567
|
data: ({
|
|
647505
|
-
un_locode: {
|
|
647506
|
-
is_active: boolean | null;
|
|
647507
|
-
id_country: number | null;
|
|
647508
|
-
id_state: number | null;
|
|
647509
|
-
id_city: number | null;
|
|
647510
|
-
id: number;
|
|
647511
|
-
logic_code: string | null;
|
|
647512
|
-
created_at: Date | null;
|
|
647513
|
-
created_by: string | null;
|
|
647514
|
-
updated_at: Date | null;
|
|
647515
|
-
updated_by: string | null;
|
|
647516
|
-
id_time_zone: number | null;
|
|
647517
|
-
un_code: string | null;
|
|
647518
|
-
iata_code: string | null;
|
|
647519
|
-
iata_region_code: string | null;
|
|
647520
|
-
latitude: Decimal | null;
|
|
647521
|
-
longitude: Decimal | null;
|
|
647522
|
-
port_name: string | null;
|
|
647523
|
-
proper_name: string | null;
|
|
647524
|
-
has_post: boolean | null;
|
|
647525
|
-
has_customs: boolean | null;
|
|
647526
|
-
has_unload: boolean | null;
|
|
647527
|
-
has_airport: boolean | null;
|
|
647528
|
-
has_railway: boolean | null;
|
|
647529
|
-
has_road: boolean | null;
|
|
647530
|
-
has_store: boolean | null;
|
|
647531
|
-
has_terminal: boolean | null;
|
|
647532
|
-
has_discharge: boolean | null;
|
|
647533
|
-
has_seaport: boolean | null;
|
|
647534
|
-
has_outport: boolean | null;
|
|
647535
|
-
} | null;
|
|
647536
648568
|
country: {
|
|
647537
648569
|
is_active: boolean | null;
|
|
647538
648570
|
id: number;
|
|
@@ -647585,38 +648617,6 @@ declare const appRouter: BuiltRouter<{
|
|
|
647585
648617
|
updated_by: string | null;
|
|
647586
648618
|
code: string | null;
|
|
647587
648619
|
} | null;
|
|
647588
|
-
} & {
|
|
647589
|
-
is_active: boolean | null;
|
|
647590
|
-
id_un_locode: number | null;
|
|
647591
|
-
id_country: number | null;
|
|
647592
|
-
id_state: number | null;
|
|
647593
|
-
id_city: number | null;
|
|
647594
|
-
id_postal_code: number | null;
|
|
647595
|
-
id: number;
|
|
647596
|
-
name: string | null;
|
|
647597
|
-
logic_code: string | null;
|
|
647598
|
-
created_at: Date | null;
|
|
647599
|
-
created_by: string | null;
|
|
647600
|
-
updated_at: Date | null;
|
|
647601
|
-
updated_by: string | null;
|
|
647602
|
-
code: string | null;
|
|
647603
|
-
address: string | null;
|
|
647604
|
-
scac: string | null;
|
|
647605
|
-
ocean_carrier_name: string | null;
|
|
647606
|
-
is_non_vessel_operator: boolean | null;
|
|
647607
|
-
is_shipping_line: boolean | null;
|
|
647608
|
-
})[] | undefined;
|
|
647609
|
-
total: number | undefined;
|
|
647610
|
-
};
|
|
647611
|
-
meta: object;
|
|
647612
|
-
}>;
|
|
647613
|
-
getDetail: MutationProcedure<{
|
|
647614
|
-
input: {
|
|
647615
|
-
id?: number | null | undefined;
|
|
647616
|
-
id_string?: string | null | undefined;
|
|
647617
|
-
};
|
|
647618
|
-
output: {
|
|
647619
|
-
data: {
|
|
647620
648620
|
un_locode: {
|
|
647621
648621
|
is_active: boolean | null;
|
|
647622
648622
|
id_country: number | null;
|
|
@@ -647648,6 +648648,50 @@ declare const appRouter: BuiltRouter<{
|
|
|
647648
648648
|
has_seaport: boolean | null;
|
|
647649
648649
|
has_outport: boolean | null;
|
|
647650
648650
|
} | null;
|
|
648651
|
+
} & {
|
|
648652
|
+
is_active: boolean | null;
|
|
648653
|
+
id_country: number | null;
|
|
648654
|
+
id_state: number | null;
|
|
648655
|
+
id_city: number | null;
|
|
648656
|
+
id_postal_code: number | null;
|
|
648657
|
+
id_un_locode: number | null;
|
|
648658
|
+
id: number;
|
|
648659
|
+
name: string | null;
|
|
648660
|
+
logic_code: string | null;
|
|
648661
|
+
created_at: Date | null;
|
|
648662
|
+
created_by: string | null;
|
|
648663
|
+
updated_at: Date | null;
|
|
648664
|
+
updated_by: string | null;
|
|
648665
|
+
code: string | null;
|
|
648666
|
+
address: string | null;
|
|
648667
|
+
scac: string | null;
|
|
648668
|
+
ocean_carrier_name: string | null;
|
|
648669
|
+
is_non_vessel_operator: boolean | null;
|
|
648670
|
+
is_shipping_line: boolean | null;
|
|
648671
|
+
})[] | undefined;
|
|
648672
|
+
total: number | undefined;
|
|
648673
|
+
};
|
|
648674
|
+
meta: object;
|
|
648675
|
+
}>;
|
|
648676
|
+
getDetail: MutationProcedure<{
|
|
648677
|
+
input: {
|
|
648678
|
+
id?: number | null | undefined;
|
|
648679
|
+
id_string?: string | null | undefined;
|
|
648680
|
+
};
|
|
648681
|
+
output: {
|
|
648682
|
+
data: {
|
|
648683
|
+
_count: {
|
|
648684
|
+
un_locode: number;
|
|
648685
|
+
country: number;
|
|
648686
|
+
state: number;
|
|
648687
|
+
city: number;
|
|
648688
|
+
postal_code: number;
|
|
648689
|
+
shipping_line_logs: number;
|
|
648690
|
+
vessels_shipping_provider: number;
|
|
648691
|
+
vessels_vessel_consortium: number;
|
|
648692
|
+
forwarding_consoles: number;
|
|
648693
|
+
organizations: number;
|
|
648694
|
+
};
|
|
647651
648695
|
country: ({
|
|
647652
648696
|
currency: {
|
|
647653
648697
|
symbol: string | null;
|
|
@@ -647717,25 +648761,44 @@ declare const appRouter: BuiltRouter<{
|
|
|
647717
648761
|
updated_by: string | null;
|
|
647718
648762
|
code: string | null;
|
|
647719
648763
|
} | null;
|
|
647720
|
-
|
|
647721
|
-
|
|
647722
|
-
|
|
647723
|
-
|
|
647724
|
-
|
|
647725
|
-
|
|
647726
|
-
|
|
647727
|
-
|
|
647728
|
-
|
|
647729
|
-
|
|
647730
|
-
|
|
647731
|
-
|
|
648764
|
+
un_locode: {
|
|
648765
|
+
is_active: boolean | null;
|
|
648766
|
+
id_country: number | null;
|
|
648767
|
+
id_state: number | null;
|
|
648768
|
+
id_city: number | null;
|
|
648769
|
+
id: number;
|
|
648770
|
+
logic_code: string | null;
|
|
648771
|
+
created_at: Date | null;
|
|
648772
|
+
created_by: string | null;
|
|
648773
|
+
updated_at: Date | null;
|
|
648774
|
+
updated_by: string | null;
|
|
648775
|
+
id_time_zone: number | null;
|
|
648776
|
+
un_code: string | null;
|
|
648777
|
+
iata_code: string | null;
|
|
648778
|
+
iata_region_code: string | null;
|
|
648779
|
+
latitude: Decimal | null;
|
|
648780
|
+
longitude: Decimal | null;
|
|
648781
|
+
port_name: string | null;
|
|
648782
|
+
proper_name: string | null;
|
|
648783
|
+
has_post: boolean | null;
|
|
648784
|
+
has_customs: boolean | null;
|
|
648785
|
+
has_unload: boolean | null;
|
|
648786
|
+
has_airport: boolean | null;
|
|
648787
|
+
has_railway: boolean | null;
|
|
648788
|
+
has_road: boolean | null;
|
|
648789
|
+
has_store: boolean | null;
|
|
648790
|
+
has_terminal: boolean | null;
|
|
648791
|
+
has_discharge: boolean | null;
|
|
648792
|
+
has_seaport: boolean | null;
|
|
648793
|
+
has_outport: boolean | null;
|
|
648794
|
+
} | null;
|
|
647732
648795
|
} & {
|
|
647733
648796
|
is_active: boolean | null;
|
|
647734
|
-
id_un_locode: number | null;
|
|
647735
648797
|
id_country: number | null;
|
|
647736
648798
|
id_state: number | null;
|
|
647737
648799
|
id_city: number | null;
|
|
647738
648800
|
id_postal_code: number | null;
|
|
648801
|
+
id_un_locode: number | null;
|
|
647739
648802
|
id: number;
|
|
647740
648803
|
name: string | null;
|
|
647741
648804
|
logic_code: string | null;
|
|
@@ -647797,6 +648860,7 @@ declare const appRouter: BuiltRouter<{
|
|
|
647797
648860
|
updated_at: Date | null;
|
|
647798
648861
|
updated_by: string | null;
|
|
647799
648862
|
} | null;
|
|
648863
|
+
id_shipping_line: number | null;
|
|
647800
648864
|
id: number;
|
|
647801
648865
|
id_log_type: number | null;
|
|
647802
648866
|
url: string | null;
|
|
@@ -647804,7 +648868,6 @@ declare const appRouter: BuiltRouter<{
|
|
|
647804
648868
|
action_by: string | null;
|
|
647805
648869
|
action_id: string | null;
|
|
647806
648870
|
action_at: Date | null;
|
|
647807
|
-
id_shipping_line: number | null;
|
|
647808
648871
|
}[] | undefined;
|
|
647809
648872
|
total: number | undefined;
|
|
647810
648873
|
};
|
|
@@ -647828,6 +648891,7 @@ declare const appRouter: BuiltRouter<{
|
|
|
647828
648891
|
updated_at: Date | null;
|
|
647829
648892
|
updated_by: string | null;
|
|
647830
648893
|
} | null;
|
|
648894
|
+
id_shipping_line: number | null;
|
|
647831
648895
|
id: number;
|
|
647832
648896
|
id_log_type: number | null;
|
|
647833
648897
|
url: string | null;
|
|
@@ -647835,7 +648899,6 @@ declare const appRouter: BuiltRouter<{
|
|
|
647835
648899
|
action_by: string | null;
|
|
647836
648900
|
action_id: string | null;
|
|
647837
648901
|
action_at: Date | null;
|
|
647838
|
-
id_shipping_line: number | null;
|
|
647839
648902
|
} | undefined;
|
|
647840
648903
|
};
|
|
647841
648904
|
meta: object;
|
|
@@ -647860,11 +648923,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
647860
648923
|
output: {
|
|
647861
648924
|
data: {
|
|
647862
648925
|
is_active: boolean | null;
|
|
647863
|
-
id_un_locode: number | null;
|
|
647864
648926
|
id_country: number | null;
|
|
647865
648927
|
id_state: number | null;
|
|
647866
648928
|
id_city: number | null;
|
|
647867
648929
|
id_postal_code: number | null;
|
|
648930
|
+
id_un_locode: number | null;
|
|
647868
648931
|
id: number;
|
|
647869
648932
|
name: string | null;
|
|
647870
648933
|
logic_code: string | null;
|
|
@@ -647880,6 +648943,7 @@ declare const appRouter: BuiltRouter<{
|
|
|
647880
648943
|
is_shipping_line: boolean | null;
|
|
647881
648944
|
} | undefined;
|
|
647882
648945
|
log: {
|
|
648946
|
+
id_shipping_line: number | null;
|
|
647883
648947
|
id: number;
|
|
647884
648948
|
id_log_type: number | null;
|
|
647885
648949
|
url: string | null;
|
|
@@ -647888,7 +648952,6 @@ declare const appRouter: BuiltRouter<{
|
|
|
647888
648952
|
action_by: string | null;
|
|
647889
648953
|
action_id: string | null;
|
|
647890
648954
|
action_at: Date | null;
|
|
647891
|
-
id_shipping_line: number | null;
|
|
647892
648955
|
} | undefined;
|
|
647893
648956
|
};
|
|
647894
648957
|
meta: object;
|
|
@@ -647914,11 +648977,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
647914
648977
|
output: {
|
|
647915
648978
|
data: {
|
|
647916
648979
|
is_active: boolean | null;
|
|
647917
|
-
id_un_locode: number | null;
|
|
647918
648980
|
id_country: number | null;
|
|
647919
648981
|
id_state: number | null;
|
|
647920
648982
|
id_city: number | null;
|
|
647921
648983
|
id_postal_code: number | null;
|
|
648984
|
+
id_un_locode: number | null;
|
|
647922
648985
|
id: number;
|
|
647923
648986
|
name: string | null;
|
|
647924
648987
|
logic_code: string | null;
|
|
@@ -647934,6 +648997,7 @@ declare const appRouter: BuiltRouter<{
|
|
|
647934
648997
|
is_shipping_line: boolean | null;
|
|
647935
648998
|
} | undefined;
|
|
647936
648999
|
log: {
|
|
649000
|
+
id_shipping_line: number | null;
|
|
647937
649001
|
id: number;
|
|
647938
649002
|
id_log_type: number | null;
|
|
647939
649003
|
url: string | null;
|
|
@@ -647942,7 +649006,6 @@ declare const appRouter: BuiltRouter<{
|
|
|
647942
649006
|
action_by: string | null;
|
|
647943
649007
|
action_id: string | null;
|
|
647944
649008
|
action_at: Date | null;
|
|
647945
|
-
id_shipping_line: number | null;
|
|
647946
649009
|
} | undefined;
|
|
647947
649010
|
};
|
|
647948
649011
|
meta: object;
|
|
@@ -647957,11 +649020,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
647957
649020
|
output: {
|
|
647958
649021
|
data: ({
|
|
647959
649022
|
is_active: boolean | null;
|
|
647960
|
-
id_un_locode: number | null;
|
|
647961
649023
|
id_country: number | null;
|
|
647962
649024
|
id_state: number | null;
|
|
647963
649025
|
id_city: number | null;
|
|
647964
649026
|
id_postal_code: number | null;
|
|
649027
|
+
id_un_locode: number | null;
|
|
647965
649028
|
id: number;
|
|
647966
649029
|
name: string | null;
|
|
647967
649030
|
logic_code: string | null;
|
|
@@ -648046,11 +649109,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
648046
649109
|
} | null;
|
|
648047
649110
|
shipping_provider: {
|
|
648048
649111
|
is_active: boolean | null;
|
|
648049
|
-
id_un_locode: number | null;
|
|
648050
649112
|
id_country: number | null;
|
|
648051
649113
|
id_state: number | null;
|
|
648052
649114
|
id_city: number | null;
|
|
648053
649115
|
id_postal_code: number | null;
|
|
649116
|
+
id_un_locode: number | null;
|
|
648054
649117
|
id: number;
|
|
648055
649118
|
name: string | null;
|
|
648056
649119
|
logic_code: string | null;
|
|
@@ -648067,11 +649130,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
648067
649130
|
} | null;
|
|
648068
649131
|
vessel_consortium: {
|
|
648069
649132
|
is_active: boolean | null;
|
|
648070
|
-
id_un_locode: number | null;
|
|
648071
649133
|
id_country: number | null;
|
|
648072
649134
|
id_state: number | null;
|
|
648073
649135
|
id_city: number | null;
|
|
648074
649136
|
id_postal_code: number | null;
|
|
649137
|
+
id_un_locode: number | null;
|
|
648075
649138
|
id: number;
|
|
648076
649139
|
name: string | null;
|
|
648077
649140
|
logic_code: string | null;
|
|
@@ -648161,11 +649224,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
648161
649224
|
} | null;
|
|
648162
649225
|
shipping_provider: {
|
|
648163
649226
|
is_active: boolean | null;
|
|
648164
|
-
id_un_locode: number | null;
|
|
648165
649227
|
id_country: number | null;
|
|
648166
649228
|
id_state: number | null;
|
|
648167
649229
|
id_city: number | null;
|
|
648168
649230
|
id_postal_code: number | null;
|
|
649231
|
+
id_un_locode: number | null;
|
|
648169
649232
|
id: number;
|
|
648170
649233
|
name: string | null;
|
|
648171
649234
|
logic_code: string | null;
|
|
@@ -648182,11 +649245,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
648182
649245
|
} | null;
|
|
648183
649246
|
vessel_consortium: {
|
|
648184
649247
|
is_active: boolean | null;
|
|
648185
|
-
id_un_locode: number | null;
|
|
648186
649248
|
id_country: number | null;
|
|
648187
649249
|
id_state: number | null;
|
|
648188
649250
|
id_city: number | null;
|
|
648189
649251
|
id_postal_code: number | null;
|
|
649252
|
+
id_un_locode: number | null;
|
|
648190
649253
|
id: number;
|
|
648191
649254
|
name: string | null;
|
|
648192
649255
|
logic_code: string | null;
|
|
@@ -648994,6 +650057,8 @@ declare const appRouter: BuiltRouter<{
|
|
|
648994
650057
|
created_by: string | null;
|
|
648995
650058
|
updated_at: Date | null;
|
|
648996
650059
|
updated_by: string | null;
|
|
650060
|
+
height: Decimal | null;
|
|
650061
|
+
width: Decimal | null;
|
|
648997
650062
|
id_transport_mode: number | null;
|
|
648998
650063
|
id_type: number | null;
|
|
648999
650064
|
id_iata_uld_rate_class: number | null;
|
|
@@ -649017,8 +650082,6 @@ declare const appRouter: BuiltRouter<{
|
|
|
649017
650082
|
id_uom_inside_capacity: number | null;
|
|
649018
650083
|
iso_size: string | null;
|
|
649019
650084
|
iso_description: string | null;
|
|
649020
|
-
width: Decimal | null;
|
|
649021
|
-
height: Decimal | null;
|
|
649022
650085
|
teu_count: Decimal | null;
|
|
649023
650086
|
max_gross_weight: Decimal | null;
|
|
649024
650087
|
max_tare_weight: Decimal | null;
|
|
@@ -649312,6 +650375,8 @@ declare const appRouter: BuiltRouter<{
|
|
|
649312
650375
|
created_by: string | null;
|
|
649313
650376
|
updated_at: Date | null;
|
|
649314
650377
|
updated_by: string | null;
|
|
650378
|
+
height: Decimal | null;
|
|
650379
|
+
width: Decimal | null;
|
|
649315
650380
|
id_transport_mode: number | null;
|
|
649316
650381
|
id_type: number | null;
|
|
649317
650382
|
id_iata_uld_rate_class: number | null;
|
|
@@ -649335,8 +650400,6 @@ declare const appRouter: BuiltRouter<{
|
|
|
649335
650400
|
id_uom_inside_capacity: number | null;
|
|
649336
650401
|
iso_size: string | null;
|
|
649337
650402
|
iso_description: string | null;
|
|
649338
|
-
width: Decimal | null;
|
|
649339
|
-
height: Decimal | null;
|
|
649340
650403
|
teu_count: Decimal | null;
|
|
649341
650404
|
max_gross_weight: Decimal | null;
|
|
649342
650405
|
max_tare_weight: Decimal | null;
|
|
@@ -649503,6 +650566,8 @@ declare const appRouter: BuiltRouter<{
|
|
|
649503
650566
|
created_by: string | null;
|
|
649504
650567
|
updated_at: Date | null;
|
|
649505
650568
|
updated_by: string | null;
|
|
650569
|
+
height: Decimal | null;
|
|
650570
|
+
width: Decimal | null;
|
|
649506
650571
|
id_transport_mode: number | null;
|
|
649507
650572
|
id_type: number | null;
|
|
649508
650573
|
id_iata_uld_rate_class: number | null;
|
|
@@ -649526,8 +650591,6 @@ declare const appRouter: BuiltRouter<{
|
|
|
649526
650591
|
id_uom_inside_capacity: number | null;
|
|
649527
650592
|
iso_size: string | null;
|
|
649528
650593
|
iso_description: string | null;
|
|
649529
|
-
width: Decimal | null;
|
|
649530
|
-
height: Decimal | null;
|
|
649531
650594
|
teu_count: Decimal | null;
|
|
649532
650595
|
max_gross_weight: Decimal | null;
|
|
649533
650596
|
max_tare_weight: Decimal | null;
|
|
@@ -649619,6 +650682,8 @@ declare const appRouter: BuiltRouter<{
|
|
|
649619
650682
|
created_by: string | null;
|
|
649620
650683
|
updated_at: Date | null;
|
|
649621
650684
|
updated_by: string | null;
|
|
650685
|
+
height: Decimal | null;
|
|
650686
|
+
width: Decimal | null;
|
|
649622
650687
|
id_transport_mode: number | null;
|
|
649623
650688
|
id_type: number | null;
|
|
649624
650689
|
id_iata_uld_rate_class: number | null;
|
|
@@ -649642,8 +650707,6 @@ declare const appRouter: BuiltRouter<{
|
|
|
649642
650707
|
id_uom_inside_capacity: number | null;
|
|
649643
650708
|
iso_size: string | null;
|
|
649644
650709
|
iso_description: string | null;
|
|
649645
|
-
width: Decimal | null;
|
|
649646
|
-
height: Decimal | null;
|
|
649647
650710
|
teu_count: Decimal | null;
|
|
649648
650711
|
max_gross_weight: Decimal | null;
|
|
649649
650712
|
max_tare_weight: Decimal | null;
|
|
@@ -649693,6 +650756,8 @@ declare const appRouter: BuiltRouter<{
|
|
|
649693
650756
|
created_by: string | null;
|
|
649694
650757
|
updated_at: Date | null;
|
|
649695
650758
|
updated_by: string | null;
|
|
650759
|
+
height: Decimal | null;
|
|
650760
|
+
width: Decimal | null;
|
|
649696
650761
|
id_transport_mode: number | null;
|
|
649697
650762
|
id_type: number | null;
|
|
649698
650763
|
id_iata_uld_rate_class: number | null;
|
|
@@ -649716,8 +650781,6 @@ declare const appRouter: BuiltRouter<{
|
|
|
649716
650781
|
id_uom_inside_capacity: number | null;
|
|
649717
650782
|
iso_size: string | null;
|
|
649718
650783
|
iso_description: string | null;
|
|
649719
|
-
width: Decimal | null;
|
|
649720
|
-
height: Decimal | null;
|
|
649721
650784
|
teu_count: Decimal | null;
|
|
649722
650785
|
max_gross_weight: Decimal | null;
|
|
649723
650786
|
max_tare_weight: Decimal | null;
|
|
@@ -653524,11 +654587,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
653524
654587
|
updated_at: Date | null;
|
|
653525
654588
|
updated_by: string | null;
|
|
653526
654589
|
code: string | null;
|
|
653527
|
-
width: Decimal | null;
|
|
653528
|
-
height: Decimal | null;
|
|
653529
654590
|
id_dimension_unit: number | null;
|
|
653530
654591
|
id_weight_unit: number | null;
|
|
653531
654592
|
id_uom_type: number | null;
|
|
654593
|
+
height: Decimal | null;
|
|
654594
|
+
width: Decimal | null;
|
|
653532
654595
|
weight: Decimal | null;
|
|
653533
654596
|
is_keep_upright: boolean | null;
|
|
653534
654597
|
})[] | undefined;
|
|
@@ -653596,11 +654659,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
653596
654659
|
updated_at: Date | null;
|
|
653597
654660
|
updated_by: string | null;
|
|
653598
654661
|
code: string | null;
|
|
653599
|
-
width: Decimal | null;
|
|
653600
|
-
height: Decimal | null;
|
|
653601
654662
|
id_dimension_unit: number | null;
|
|
653602
654663
|
id_weight_unit: number | null;
|
|
653603
654664
|
id_uom_type: number | null;
|
|
654665
|
+
height: Decimal | null;
|
|
654666
|
+
width: Decimal | null;
|
|
653604
654667
|
weight: Decimal | null;
|
|
653605
654668
|
is_keep_upright: boolean | null;
|
|
653606
654669
|
};
|
|
@@ -653721,11 +654784,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
653721
654784
|
updated_at: Date | null;
|
|
653722
654785
|
updated_by: string | null;
|
|
653723
654786
|
code: string | null;
|
|
653724
|
-
width: Decimal | null;
|
|
653725
|
-
height: Decimal | null;
|
|
653726
654787
|
id_dimension_unit: number | null;
|
|
653727
654788
|
id_weight_unit: number | null;
|
|
653728
654789
|
id_uom_type: number | null;
|
|
654790
|
+
height: Decimal | null;
|
|
654791
|
+
width: Decimal | null;
|
|
653729
654792
|
weight: Decimal | null;
|
|
653730
654793
|
is_keep_upright: boolean | null;
|
|
653731
654794
|
} | undefined;
|
|
@@ -653771,11 +654834,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
653771
654834
|
updated_at: Date | null;
|
|
653772
654835
|
updated_by: string | null;
|
|
653773
654836
|
code: string | null;
|
|
653774
|
-
width: Decimal | null;
|
|
653775
|
-
height: Decimal | null;
|
|
653776
654837
|
id_dimension_unit: number | null;
|
|
653777
654838
|
id_weight_unit: number | null;
|
|
653778
654839
|
id_uom_type: number | null;
|
|
654840
|
+
height: Decimal | null;
|
|
654841
|
+
width: Decimal | null;
|
|
653779
654842
|
weight: Decimal | null;
|
|
653780
654843
|
is_keep_upright: boolean | null;
|
|
653781
654844
|
} | undefined;
|
|
@@ -653812,11 +654875,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
653812
654875
|
updated_at: Date | null;
|
|
653813
654876
|
updated_by: string | null;
|
|
653814
654877
|
code: string | null;
|
|
653815
|
-
width: Decimal | null;
|
|
653816
|
-
height: Decimal | null;
|
|
653817
654878
|
id_dimension_unit: number | null;
|
|
653818
654879
|
id_weight_unit: number | null;
|
|
653819
654880
|
id_uom_type: number | null;
|
|
654881
|
+
height: Decimal | null;
|
|
654882
|
+
width: Decimal | null;
|
|
653820
654883
|
weight: Decimal | null;
|
|
653821
654884
|
is_keep_upright: boolean | null;
|
|
653822
654885
|
} | undefined)[] | undefined;
|
|
@@ -657545,6 +658608,26 @@ declare const appRouter: BuiltRouter<{
|
|
|
657545
658608
|
};
|
|
657546
658609
|
output: {
|
|
657547
658610
|
data: {
|
|
658611
|
+
_count: {
|
|
658612
|
+
country: number;
|
|
658613
|
+
state: number;
|
|
658614
|
+
city: number;
|
|
658615
|
+
time_zone: number;
|
|
658616
|
+
un_locode_logs: number;
|
|
658617
|
+
branches: number;
|
|
658618
|
+
companies: number;
|
|
658619
|
+
airlines: number;
|
|
658620
|
+
shipping_lines: number;
|
|
658621
|
+
forwarding_booking_origins: number;
|
|
658622
|
+
forwarding_booking_destinations: number;
|
|
658623
|
+
forwarding_shipment_origins: number;
|
|
658624
|
+
forwarding_shipment_destinations: number;
|
|
658625
|
+
forwarding_console_first_loads: number;
|
|
658626
|
+
forwarding_console_last_discharges: number;
|
|
658627
|
+
forwarding_console_routing_loads: number;
|
|
658628
|
+
forwarding_console_routing_discharges: number;
|
|
658629
|
+
organizations: number;
|
|
658630
|
+
};
|
|
657548
658631
|
country: ({
|
|
657549
658632
|
currency: {
|
|
657550
658633
|
symbol: string | null;
|
|
@@ -657603,26 +658686,6 @@ declare const appRouter: BuiltRouter<{
|
|
|
657603
658686
|
updated_by: string | null;
|
|
657604
658687
|
code: string | null;
|
|
657605
658688
|
} | null;
|
|
657606
|
-
_count: {
|
|
657607
|
-
country: number;
|
|
657608
|
-
state: number;
|
|
657609
|
-
city: number;
|
|
657610
|
-
time_zone: number;
|
|
657611
|
-
un_locode_logs: number;
|
|
657612
|
-
branches: number;
|
|
657613
|
-
companies: number;
|
|
657614
|
-
airlines: number;
|
|
657615
|
-
shipping_lines: number;
|
|
657616
|
-
forwarding_booking_origins: number;
|
|
657617
|
-
forwarding_booking_destinations: number;
|
|
657618
|
-
forwarding_shipment_origins: number;
|
|
657619
|
-
forwarding_shipment_destinations: number;
|
|
657620
|
-
forwarding_console_first_loads: number;
|
|
657621
|
-
forwarding_console_last_discharges: number;
|
|
657622
|
-
forwarding_console_routing_loads: number;
|
|
657623
|
-
forwarding_console_routing_discharges: number;
|
|
657624
|
-
organizations: number;
|
|
657625
|
-
};
|
|
657626
658689
|
time_zone: {
|
|
657627
658690
|
is_active: boolean | null;
|
|
657628
658691
|
id: number;
|
|
@@ -658382,6 +659445,18 @@ declare const appRouter: BuiltRouter<{
|
|
|
658382
659445
|
};
|
|
658383
659446
|
output: {
|
|
658384
659447
|
data: {
|
|
659448
|
+
_count: {
|
|
659449
|
+
country: number;
|
|
659450
|
+
un_locodes: number;
|
|
659451
|
+
cities: number;
|
|
659452
|
+
state_logs: number;
|
|
659453
|
+
airlines: number;
|
|
659454
|
+
branches: number;
|
|
659455
|
+
users: number;
|
|
659456
|
+
companies: number;
|
|
659457
|
+
shipping_lines: number;
|
|
659458
|
+
organizations: number;
|
|
659459
|
+
};
|
|
658385
659460
|
country: ({
|
|
658386
659461
|
currency: {
|
|
658387
659462
|
symbol: string | null;
|
|
@@ -658415,18 +659490,6 @@ declare const appRouter: BuiltRouter<{
|
|
|
658415
659490
|
iso3_numeric: string | null;
|
|
658416
659491
|
is_sanctioned: boolean | null;
|
|
658417
659492
|
}) | null;
|
|
658418
|
-
_count: {
|
|
658419
|
-
country: number;
|
|
658420
|
-
un_locodes: number;
|
|
658421
|
-
cities: number;
|
|
658422
|
-
state_logs: number;
|
|
658423
|
-
airlines: number;
|
|
658424
|
-
branches: number;
|
|
658425
|
-
users: number;
|
|
658426
|
-
companies: number;
|
|
658427
|
-
shipping_lines: number;
|
|
658428
|
-
organizations: number;
|
|
658429
|
-
};
|
|
658430
659493
|
} & {
|
|
658431
659494
|
is_active: boolean | null;
|
|
658432
659495
|
id_country: number | null;
|
|
@@ -658709,6 +659772,19 @@ declare const appRouter: BuiltRouter<{
|
|
|
658709
659772
|
};
|
|
658710
659773
|
output: {
|
|
658711
659774
|
data: {
|
|
659775
|
+
_count: {
|
|
659776
|
+
country: number;
|
|
659777
|
+
state: number;
|
|
659778
|
+
un_locodes: number;
|
|
659779
|
+
cities_postal_codes: number;
|
|
659780
|
+
city_logs: number;
|
|
659781
|
+
airlines: number;
|
|
659782
|
+
branches: number;
|
|
659783
|
+
users: number;
|
|
659784
|
+
companies: number;
|
|
659785
|
+
shipping_lines: number;
|
|
659786
|
+
organizations: number;
|
|
659787
|
+
};
|
|
658712
659788
|
country: ({
|
|
658713
659789
|
currency: {
|
|
658714
659790
|
symbol: string | null;
|
|
@@ -658754,19 +659830,6 @@ declare const appRouter: BuiltRouter<{
|
|
|
658754
659830
|
updated_by: string | null;
|
|
658755
659831
|
code: string | null;
|
|
658756
659832
|
} | null;
|
|
658757
|
-
_count: {
|
|
658758
|
-
country: number;
|
|
658759
|
-
state: number;
|
|
658760
|
-
un_locodes: number;
|
|
658761
|
-
cities_postal_codes: number;
|
|
658762
|
-
city_logs: number;
|
|
658763
|
-
airlines: number;
|
|
658764
|
-
branches: number;
|
|
658765
|
-
users: number;
|
|
658766
|
-
companies: number;
|
|
658767
|
-
shipping_lines: number;
|
|
658768
|
-
organizations: number;
|
|
658769
|
-
};
|
|
658770
659833
|
} & {
|
|
658771
659834
|
is_active: boolean | null;
|
|
658772
659835
|
id_country: number | null;
|
|
@@ -659038,6 +660101,17 @@ declare const appRouter: BuiltRouter<{
|
|
|
659038
660101
|
};
|
|
659039
660102
|
output: {
|
|
659040
660103
|
data: {
|
|
660104
|
+
_count: {
|
|
660105
|
+
country: number;
|
|
660106
|
+
cities_postal_codes: number;
|
|
660107
|
+
postal_code_logs: number;
|
|
660108
|
+
airlines: number;
|
|
660109
|
+
branches: number;
|
|
660110
|
+
users: number;
|
|
660111
|
+
companies: number;
|
|
660112
|
+
shipping_lines: number;
|
|
660113
|
+
organizations: number;
|
|
660114
|
+
};
|
|
659041
660115
|
country: ({
|
|
659042
660116
|
currency: {
|
|
659043
660117
|
symbol: string | null;
|
|
@@ -659071,17 +660145,6 @@ declare const appRouter: BuiltRouter<{
|
|
|
659071
660145
|
iso3_numeric: string | null;
|
|
659072
660146
|
is_sanctioned: boolean | null;
|
|
659073
660147
|
}) | null;
|
|
659074
|
-
_count: {
|
|
659075
|
-
country: number;
|
|
659076
|
-
cities_postal_codes: number;
|
|
659077
|
-
postal_code_logs: number;
|
|
659078
|
-
airlines: number;
|
|
659079
|
-
branches: number;
|
|
659080
|
-
users: number;
|
|
659081
|
-
companies: number;
|
|
659082
|
-
shipping_lines: number;
|
|
659083
|
-
organizations: number;
|
|
659084
|
-
};
|
|
659085
660148
|
} & {
|
|
659086
660149
|
is_active: boolean | null;
|
|
659087
660150
|
id_country: number | null;
|
|
@@ -659622,11 +660685,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
659622
660685
|
} | null;
|
|
659623
660686
|
company: {
|
|
659624
660687
|
is_active: boolean | null;
|
|
659625
|
-
id_un_locode: number | null;
|
|
659626
660688
|
id_country: number | null;
|
|
659627
660689
|
id_state: number | null;
|
|
659628
660690
|
id_city: number | null;
|
|
659629
660691
|
id_postal_code: number | null;
|
|
660692
|
+
id_un_locode: number | null;
|
|
659630
660693
|
id: number;
|
|
659631
660694
|
name: string | null;
|
|
659632
660695
|
logic_code: string | null;
|
|
@@ -659639,11 +660702,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
659639
660702
|
} | null;
|
|
659640
660703
|
branch: {
|
|
659641
660704
|
is_active: boolean | null;
|
|
659642
|
-
id_un_locode: number | null;
|
|
659643
660705
|
id_country: number | null;
|
|
659644
660706
|
id_state: number | null;
|
|
659645
660707
|
id_city: number | null;
|
|
659646
660708
|
id_postal_code: number | null;
|
|
660709
|
+
id_un_locode: number | null;
|
|
659647
660710
|
id: number;
|
|
659648
660711
|
name: string | null;
|
|
659649
660712
|
logic_code: string | null;
|
|
@@ -659764,6 +660827,20 @@ declare const appRouter: BuiltRouter<{
|
|
|
659764
660827
|
};
|
|
659765
660828
|
output: {
|
|
659766
660829
|
data: {
|
|
660830
|
+
_count: {
|
|
660831
|
+
bank_account_type: number;
|
|
660832
|
+
company: number;
|
|
660833
|
+
branch: number;
|
|
660834
|
+
country: number;
|
|
660835
|
+
currency: number;
|
|
660836
|
+
os_balance_currency: number;
|
|
660837
|
+
local_balance_currency: number;
|
|
660838
|
+
gl_account: number;
|
|
660839
|
+
bank_account_card: number;
|
|
660840
|
+
bank_account_logs: number;
|
|
660841
|
+
bank_account_attachments: number;
|
|
660842
|
+
organization_account_bank_details: number;
|
|
660843
|
+
};
|
|
659767
660844
|
country: {
|
|
659768
660845
|
is_active: boolean | null;
|
|
659769
660846
|
id: number;
|
|
@@ -659780,20 +660857,6 @@ declare const appRouter: BuiltRouter<{
|
|
|
659780
660857
|
iso3_numeric: string | null;
|
|
659781
660858
|
is_sanctioned: boolean | null;
|
|
659782
660859
|
} | null;
|
|
659783
|
-
_count: {
|
|
659784
|
-
bank_account_type: number;
|
|
659785
|
-
company: number;
|
|
659786
|
-
branch: number;
|
|
659787
|
-
country: number;
|
|
659788
|
-
currency: number;
|
|
659789
|
-
os_balance_currency: number;
|
|
659790
|
-
local_balance_currency: number;
|
|
659791
|
-
gl_account: number;
|
|
659792
|
-
bank_account_card: number;
|
|
659793
|
-
bank_account_logs: number;
|
|
659794
|
-
bank_account_attachments: number;
|
|
659795
|
-
organization_account_bank_details: number;
|
|
659796
|
-
};
|
|
659797
660860
|
currency: {
|
|
659798
660861
|
symbol: string | null;
|
|
659799
660862
|
is_active: boolean | null;
|
|
@@ -659823,11 +660886,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
659823
660886
|
} | null;
|
|
659824
660887
|
company: {
|
|
659825
660888
|
is_active: boolean | null;
|
|
659826
|
-
id_un_locode: number | null;
|
|
659827
660889
|
id_country: number | null;
|
|
659828
660890
|
id_state: number | null;
|
|
659829
660891
|
id_city: number | null;
|
|
659830
660892
|
id_postal_code: number | null;
|
|
660893
|
+
id_un_locode: number | null;
|
|
659831
660894
|
id: number;
|
|
659832
660895
|
name: string | null;
|
|
659833
660896
|
logic_code: string | null;
|
|
@@ -659840,11 +660903,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
659840
660903
|
} | null;
|
|
659841
660904
|
branch: {
|
|
659842
660905
|
is_active: boolean | null;
|
|
659843
|
-
id_un_locode: number | null;
|
|
659844
660906
|
id_country: number | null;
|
|
659845
660907
|
id_state: number | null;
|
|
659846
660908
|
id_city: number | null;
|
|
659847
660909
|
id_postal_code: number | null;
|
|
660910
|
+
id_un_locode: number | null;
|
|
659848
660911
|
id: number;
|
|
659849
660912
|
name: string | null;
|
|
659850
660913
|
logic_code: string | null;
|
|
@@ -664216,6 +665279,17 @@ declare const appRouter: BuiltRouter<{
|
|
|
664216
665279
|
};
|
|
664217
665280
|
output: {
|
|
664218
665281
|
data: {
|
|
665282
|
+
_count: {
|
|
665283
|
+
tax_rate_type: number;
|
|
665284
|
+
tax_rate_system: number;
|
|
665285
|
+
country: number;
|
|
665286
|
+
tax_rate_logs: number;
|
|
665287
|
+
charge_codes: number;
|
|
665288
|
+
forwarding_shipment_billing_details_cost: number;
|
|
665289
|
+
forwarding_shipment_billing_details_sell: number;
|
|
665290
|
+
forwarding_console_billing_details_cost: number;
|
|
665291
|
+
forwarding_console_billing_details_sell: number;
|
|
665292
|
+
};
|
|
664219
665293
|
country: {
|
|
664220
665294
|
is_active: boolean | null;
|
|
664221
665295
|
id: number;
|
|
@@ -664232,17 +665306,6 @@ declare const appRouter: BuiltRouter<{
|
|
|
664232
665306
|
iso3_numeric: string | null;
|
|
664233
665307
|
is_sanctioned: boolean | null;
|
|
664234
665308
|
} | null;
|
|
664235
|
-
_count: {
|
|
664236
|
-
tax_rate_type: number;
|
|
664237
|
-
tax_rate_system: number;
|
|
664238
|
-
country: number;
|
|
664239
|
-
tax_rate_logs: number;
|
|
664240
|
-
charge_codes: number;
|
|
664241
|
-
forwarding_shipment_billing_details_cost: number;
|
|
664242
|
-
forwarding_shipment_billing_details_sell: number;
|
|
664243
|
-
forwarding_console_billing_details_cost: number;
|
|
664244
|
-
forwarding_console_billing_details_sell: number;
|
|
664245
|
-
};
|
|
664246
665309
|
tax_rate_type: {
|
|
664247
665310
|
is_active: boolean | null;
|
|
664248
665311
|
id: number;
|
|
@@ -665024,37 +666087,6 @@ declare const appRouter: BuiltRouter<{
|
|
|
665024
666087
|
};
|
|
665025
666088
|
output: {
|
|
665026
666089
|
data: ({
|
|
665027
|
-
un_locode: {
|
|
665028
|
-
is_active: boolean | null;
|
|
665029
|
-
id_country: number | null;
|
|
665030
|
-
id_state: number | null;
|
|
665031
|
-
id_city: number | null;
|
|
665032
|
-
id: number;
|
|
665033
|
-
logic_code: string | null;
|
|
665034
|
-
created_at: Date | null;
|
|
665035
|
-
created_by: string | null;
|
|
665036
|
-
updated_at: Date | null;
|
|
665037
|
-
updated_by: string | null;
|
|
665038
|
-
id_time_zone: number | null;
|
|
665039
|
-
un_code: string | null;
|
|
665040
|
-
iata_code: string | null;
|
|
665041
|
-
iata_region_code: string | null;
|
|
665042
|
-
latitude: Decimal | null;
|
|
665043
|
-
longitude: Decimal | null;
|
|
665044
|
-
port_name: string | null;
|
|
665045
|
-
proper_name: string | null;
|
|
665046
|
-
has_post: boolean | null;
|
|
665047
|
-
has_customs: boolean | null;
|
|
665048
|
-
has_unload: boolean | null;
|
|
665049
|
-
has_airport: boolean | null;
|
|
665050
|
-
has_railway: boolean | null;
|
|
665051
|
-
has_road: boolean | null;
|
|
665052
|
-
has_store: boolean | null;
|
|
665053
|
-
has_terminal: boolean | null;
|
|
665054
|
-
has_discharge: boolean | null;
|
|
665055
|
-
has_seaport: boolean | null;
|
|
665056
|
-
has_outport: boolean | null;
|
|
665057
|
-
} | null;
|
|
665058
666090
|
country: {
|
|
665059
666091
|
is_active: boolean | null;
|
|
665060
666092
|
id: number;
|
|
@@ -665107,52 +666139,6 @@ declare const appRouter: BuiltRouter<{
|
|
|
665107
666139
|
updated_by: string | null;
|
|
665108
666140
|
code: string | null;
|
|
665109
666141
|
} | null;
|
|
665110
|
-
company: {
|
|
665111
|
-
is_active: boolean | null;
|
|
665112
|
-
id_un_locode: number | null;
|
|
665113
|
-
id_country: number | null;
|
|
665114
|
-
id_state: number | null;
|
|
665115
|
-
id_city: number | null;
|
|
665116
|
-
id_postal_code: number | null;
|
|
665117
|
-
id: number;
|
|
665118
|
-
name: string | null;
|
|
665119
|
-
logic_code: string | null;
|
|
665120
|
-
created_at: Date | null;
|
|
665121
|
-
created_by: string | null;
|
|
665122
|
-
updated_at: Date | null;
|
|
665123
|
-
updated_by: string | null;
|
|
665124
|
-
code: string | null;
|
|
665125
|
-
address: string | null;
|
|
665126
|
-
} | null;
|
|
665127
|
-
} & {
|
|
665128
|
-
is_active: boolean | null;
|
|
665129
|
-
id_un_locode: number | null;
|
|
665130
|
-
id_country: number | null;
|
|
665131
|
-
id_state: number | null;
|
|
665132
|
-
id_city: number | null;
|
|
665133
|
-
id_postal_code: number | null;
|
|
665134
|
-
id: number;
|
|
665135
|
-
name: string | null;
|
|
665136
|
-
logic_code: string | null;
|
|
665137
|
-
created_at: Date | null;
|
|
665138
|
-
created_by: string | null;
|
|
665139
|
-
updated_at: Date | null;
|
|
665140
|
-
updated_by: string | null;
|
|
665141
|
-
code: string | null;
|
|
665142
|
-
address: string | null;
|
|
665143
|
-
id_company: number | null;
|
|
665144
|
-
})[] | undefined;
|
|
665145
|
-
total: number | undefined;
|
|
665146
|
-
};
|
|
665147
|
-
meta: object;
|
|
665148
|
-
}>;
|
|
665149
|
-
getDetail: MutationProcedure<{
|
|
665150
|
-
input: {
|
|
665151
|
-
id?: number | null | undefined;
|
|
665152
|
-
id_string?: string | null | undefined;
|
|
665153
|
-
};
|
|
665154
|
-
output: {
|
|
665155
|
-
data: {
|
|
665156
666142
|
un_locode: {
|
|
665157
666143
|
is_active: boolean | null;
|
|
665158
666144
|
id_country: number | null;
|
|
@@ -665184,6 +666170,65 @@ declare const appRouter: BuiltRouter<{
|
|
|
665184
666170
|
has_seaport: boolean | null;
|
|
665185
666171
|
has_outport: boolean | null;
|
|
665186
666172
|
} | null;
|
|
666173
|
+
company: {
|
|
666174
|
+
is_active: boolean | null;
|
|
666175
|
+
id_country: number | null;
|
|
666176
|
+
id_state: number | null;
|
|
666177
|
+
id_city: number | null;
|
|
666178
|
+
id_postal_code: number | null;
|
|
666179
|
+
id_un_locode: number | null;
|
|
666180
|
+
id: number;
|
|
666181
|
+
name: string | null;
|
|
666182
|
+
logic_code: string | null;
|
|
666183
|
+
created_at: Date | null;
|
|
666184
|
+
created_by: string | null;
|
|
666185
|
+
updated_at: Date | null;
|
|
666186
|
+
updated_by: string | null;
|
|
666187
|
+
code: string | null;
|
|
666188
|
+
address: string | null;
|
|
666189
|
+
} | null;
|
|
666190
|
+
} & {
|
|
666191
|
+
is_active: boolean | null;
|
|
666192
|
+
id_country: number | null;
|
|
666193
|
+
id_state: number | null;
|
|
666194
|
+
id_city: number | null;
|
|
666195
|
+
id_postal_code: number | null;
|
|
666196
|
+
id_un_locode: number | null;
|
|
666197
|
+
id: number;
|
|
666198
|
+
name: string | null;
|
|
666199
|
+
logic_code: string | null;
|
|
666200
|
+
created_at: Date | null;
|
|
666201
|
+
created_by: string | null;
|
|
666202
|
+
updated_at: Date | null;
|
|
666203
|
+
updated_by: string | null;
|
|
666204
|
+
code: string | null;
|
|
666205
|
+
address: string | null;
|
|
666206
|
+
id_company: number | null;
|
|
666207
|
+
})[] | undefined;
|
|
666208
|
+
total: number | undefined;
|
|
666209
|
+
};
|
|
666210
|
+
meta: object;
|
|
666211
|
+
}>;
|
|
666212
|
+
getDetail: MutationProcedure<{
|
|
666213
|
+
input: {
|
|
666214
|
+
id?: number | null | undefined;
|
|
666215
|
+
id_string?: string | null | undefined;
|
|
666216
|
+
};
|
|
666217
|
+
output: {
|
|
666218
|
+
data: {
|
|
666219
|
+
_count: {
|
|
666220
|
+
company: number;
|
|
666221
|
+
country: number;
|
|
666222
|
+
state: number;
|
|
666223
|
+
city: number;
|
|
666224
|
+
postal_code: number;
|
|
666225
|
+
un_locode: number;
|
|
666226
|
+
branch_logs: number;
|
|
666227
|
+
users: number;
|
|
666228
|
+
bank_accounts: number;
|
|
666229
|
+
forwarding_shipment_billings: number;
|
|
666230
|
+
organization_account_credit_control_settlements: number;
|
|
666231
|
+
};
|
|
665187
666232
|
country: {
|
|
665188
666233
|
is_active: boolean | null;
|
|
665189
666234
|
id: number;
|
|
@@ -665236,26 +666281,44 @@ declare const appRouter: BuiltRouter<{
|
|
|
665236
666281
|
updated_by: string | null;
|
|
665237
666282
|
code: string | null;
|
|
665238
666283
|
} | null;
|
|
665239
|
-
|
|
665240
|
-
|
|
665241
|
-
|
|
665242
|
-
|
|
665243
|
-
|
|
665244
|
-
|
|
665245
|
-
|
|
665246
|
-
|
|
665247
|
-
|
|
665248
|
-
|
|
665249
|
-
|
|
665250
|
-
|
|
665251
|
-
|
|
666284
|
+
un_locode: {
|
|
666285
|
+
is_active: boolean | null;
|
|
666286
|
+
id_country: number | null;
|
|
666287
|
+
id_state: number | null;
|
|
666288
|
+
id_city: number | null;
|
|
666289
|
+
id: number;
|
|
666290
|
+
logic_code: string | null;
|
|
666291
|
+
created_at: Date | null;
|
|
666292
|
+
created_by: string | null;
|
|
666293
|
+
updated_at: Date | null;
|
|
666294
|
+
updated_by: string | null;
|
|
666295
|
+
id_time_zone: number | null;
|
|
666296
|
+
un_code: string | null;
|
|
666297
|
+
iata_code: string | null;
|
|
666298
|
+
iata_region_code: string | null;
|
|
666299
|
+
latitude: Decimal | null;
|
|
666300
|
+
longitude: Decimal | null;
|
|
666301
|
+
port_name: string | null;
|
|
666302
|
+
proper_name: string | null;
|
|
666303
|
+
has_post: boolean | null;
|
|
666304
|
+
has_customs: boolean | null;
|
|
666305
|
+
has_unload: boolean | null;
|
|
666306
|
+
has_airport: boolean | null;
|
|
666307
|
+
has_railway: boolean | null;
|
|
666308
|
+
has_road: boolean | null;
|
|
666309
|
+
has_store: boolean | null;
|
|
666310
|
+
has_terminal: boolean | null;
|
|
666311
|
+
has_discharge: boolean | null;
|
|
666312
|
+
has_seaport: boolean | null;
|
|
666313
|
+
has_outport: boolean | null;
|
|
666314
|
+
} | null;
|
|
665252
666315
|
company: {
|
|
665253
666316
|
is_active: boolean | null;
|
|
665254
|
-
id_un_locode: number | null;
|
|
665255
666317
|
id_country: number | null;
|
|
665256
666318
|
id_state: number | null;
|
|
665257
666319
|
id_city: number | null;
|
|
665258
666320
|
id_postal_code: number | null;
|
|
666321
|
+
id_un_locode: number | null;
|
|
665259
666322
|
id: number;
|
|
665260
666323
|
name: string | null;
|
|
665261
666324
|
logic_code: string | null;
|
|
@@ -665268,11 +666331,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
665268
666331
|
} | null;
|
|
665269
666332
|
} & {
|
|
665270
666333
|
is_active: boolean | null;
|
|
665271
|
-
id_un_locode: number | null;
|
|
665272
666334
|
id_country: number | null;
|
|
665273
666335
|
id_state: number | null;
|
|
665274
666336
|
id_city: number | null;
|
|
665275
666337
|
id_postal_code: number | null;
|
|
666338
|
+
id_un_locode: number | null;
|
|
665276
666339
|
id: number;
|
|
665277
666340
|
name: string | null;
|
|
665278
666341
|
logic_code: string | null;
|
|
@@ -665391,11 +666454,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
665391
666454
|
output: {
|
|
665392
666455
|
data: {
|
|
665393
666456
|
is_active: boolean | null;
|
|
665394
|
-
id_un_locode: number | null;
|
|
665395
666457
|
id_country: number | null;
|
|
665396
666458
|
id_state: number | null;
|
|
665397
666459
|
id_city: number | null;
|
|
665398
666460
|
id_postal_code: number | null;
|
|
666461
|
+
id_un_locode: number | null;
|
|
665399
666462
|
id: number;
|
|
665400
666463
|
name: string | null;
|
|
665401
666464
|
logic_code: string | null;
|
|
@@ -665439,11 +666502,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
665439
666502
|
output: {
|
|
665440
666503
|
data: {
|
|
665441
666504
|
is_active: boolean | null;
|
|
665442
|
-
id_un_locode: number | null;
|
|
665443
666505
|
id_country: number | null;
|
|
665444
666506
|
id_state: number | null;
|
|
665445
666507
|
id_city: number | null;
|
|
665446
666508
|
id_postal_code: number | null;
|
|
666509
|
+
id_un_locode: number | null;
|
|
665447
666510
|
id: number;
|
|
665448
666511
|
name: string | null;
|
|
665449
666512
|
logic_code: string | null;
|
|
@@ -665479,11 +666542,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
665479
666542
|
output: {
|
|
665480
666543
|
data: ({
|
|
665481
666544
|
is_active: boolean | null;
|
|
665482
|
-
id_un_locode: number | null;
|
|
665483
666545
|
id_country: number | null;
|
|
665484
666546
|
id_state: number | null;
|
|
665485
666547
|
id_city: number | null;
|
|
665486
666548
|
id_postal_code: number | null;
|
|
666549
|
+
id_un_locode: number | null;
|
|
665487
666550
|
id: number;
|
|
665488
666551
|
name: string | null;
|
|
665489
666552
|
logic_code: string | null;
|
|
@@ -665538,37 +666601,6 @@ declare const appRouter: BuiltRouter<{
|
|
|
665538
666601
|
};
|
|
665539
666602
|
output: {
|
|
665540
666603
|
data: ({
|
|
665541
|
-
un_locode: {
|
|
665542
|
-
is_active: boolean | null;
|
|
665543
|
-
id_country: number | null;
|
|
665544
|
-
id_state: number | null;
|
|
665545
|
-
id_city: number | null;
|
|
665546
|
-
id: number;
|
|
665547
|
-
logic_code: string | null;
|
|
665548
|
-
created_at: Date | null;
|
|
665549
|
-
created_by: string | null;
|
|
665550
|
-
updated_at: Date | null;
|
|
665551
|
-
updated_by: string | null;
|
|
665552
|
-
id_time_zone: number | null;
|
|
665553
|
-
un_code: string | null;
|
|
665554
|
-
iata_code: string | null;
|
|
665555
|
-
iata_region_code: string | null;
|
|
665556
|
-
latitude: Decimal | null;
|
|
665557
|
-
longitude: Decimal | null;
|
|
665558
|
-
port_name: string | null;
|
|
665559
|
-
proper_name: string | null;
|
|
665560
|
-
has_post: boolean | null;
|
|
665561
|
-
has_customs: boolean | null;
|
|
665562
|
-
has_unload: boolean | null;
|
|
665563
|
-
has_airport: boolean | null;
|
|
665564
|
-
has_railway: boolean | null;
|
|
665565
|
-
has_road: boolean | null;
|
|
665566
|
-
has_store: boolean | null;
|
|
665567
|
-
has_terminal: boolean | null;
|
|
665568
|
-
has_discharge: boolean | null;
|
|
665569
|
-
has_seaport: boolean | null;
|
|
665570
|
-
has_outport: boolean | null;
|
|
665571
|
-
} | null;
|
|
665572
666604
|
country: {
|
|
665573
666605
|
is_active: boolean | null;
|
|
665574
666606
|
id: number;
|
|
@@ -665621,34 +666653,6 @@ declare const appRouter: BuiltRouter<{
|
|
|
665621
666653
|
updated_by: string | null;
|
|
665622
666654
|
code: string | null;
|
|
665623
666655
|
} | null;
|
|
665624
|
-
} & {
|
|
665625
|
-
is_active: boolean | null;
|
|
665626
|
-
id_un_locode: number | null;
|
|
665627
|
-
id_country: number | null;
|
|
665628
|
-
id_state: number | null;
|
|
665629
|
-
id_city: number | null;
|
|
665630
|
-
id_postal_code: number | null;
|
|
665631
|
-
id: number;
|
|
665632
|
-
name: string | null;
|
|
665633
|
-
logic_code: string | null;
|
|
665634
|
-
created_at: Date | null;
|
|
665635
|
-
created_by: string | null;
|
|
665636
|
-
updated_at: Date | null;
|
|
665637
|
-
updated_by: string | null;
|
|
665638
|
-
code: string | null;
|
|
665639
|
-
address: string | null;
|
|
665640
|
-
})[] | undefined;
|
|
665641
|
-
total: number | undefined;
|
|
665642
|
-
};
|
|
665643
|
-
meta: object;
|
|
665644
|
-
}>;
|
|
665645
|
-
getDetail: MutationProcedure<{
|
|
665646
|
-
input: {
|
|
665647
|
-
id?: number | null | undefined;
|
|
665648
|
-
id_string?: string | null | undefined;
|
|
665649
|
-
};
|
|
665650
|
-
output: {
|
|
665651
|
-
data: {
|
|
665652
666656
|
un_locode: {
|
|
665653
666657
|
is_active: boolean | null;
|
|
665654
666658
|
id_country: number | null;
|
|
@@ -665680,6 +666684,49 @@ declare const appRouter: BuiltRouter<{
|
|
|
665680
666684
|
has_seaport: boolean | null;
|
|
665681
666685
|
has_outport: boolean | null;
|
|
665682
666686
|
} | null;
|
|
666687
|
+
} & {
|
|
666688
|
+
is_active: boolean | null;
|
|
666689
|
+
id_country: number | null;
|
|
666690
|
+
id_state: number | null;
|
|
666691
|
+
id_city: number | null;
|
|
666692
|
+
id_postal_code: number | null;
|
|
666693
|
+
id_un_locode: number | null;
|
|
666694
|
+
id: number;
|
|
666695
|
+
name: string | null;
|
|
666696
|
+
logic_code: string | null;
|
|
666697
|
+
created_at: Date | null;
|
|
666698
|
+
created_by: string | null;
|
|
666699
|
+
updated_at: Date | null;
|
|
666700
|
+
updated_by: string | null;
|
|
666701
|
+
code: string | null;
|
|
666702
|
+
address: string | null;
|
|
666703
|
+
})[] | undefined;
|
|
666704
|
+
total: number | undefined;
|
|
666705
|
+
};
|
|
666706
|
+
meta: object;
|
|
666707
|
+
}>;
|
|
666708
|
+
getDetail: MutationProcedure<{
|
|
666709
|
+
input: {
|
|
666710
|
+
id?: number | null | undefined;
|
|
666711
|
+
id_string?: string | null | undefined;
|
|
666712
|
+
};
|
|
666713
|
+
output: {
|
|
666714
|
+
data: {
|
|
666715
|
+
_count: {
|
|
666716
|
+
country: number;
|
|
666717
|
+
state: number;
|
|
666718
|
+
city: number;
|
|
666719
|
+
postal_code: number;
|
|
666720
|
+
un_locode: number;
|
|
666721
|
+
company_logs: number;
|
|
666722
|
+
users: number;
|
|
666723
|
+
bank_accounts: number;
|
|
666724
|
+
branches: number;
|
|
666725
|
+
department: number;
|
|
666726
|
+
gl_account_company_pivots: number;
|
|
666727
|
+
organization_account_payable_details: number;
|
|
666728
|
+
organization_account_receivable_details: number;
|
|
666729
|
+
};
|
|
665683
666730
|
country: {
|
|
665684
666731
|
is_active: boolean | null;
|
|
665685
666732
|
id: number;
|
|
@@ -665732,28 +666779,44 @@ declare const appRouter: BuiltRouter<{
|
|
|
665732
666779
|
updated_by: string | null;
|
|
665733
666780
|
code: string | null;
|
|
665734
666781
|
} | null;
|
|
665735
|
-
|
|
665736
|
-
|
|
665737
|
-
|
|
665738
|
-
|
|
665739
|
-
|
|
665740
|
-
|
|
665741
|
-
|
|
665742
|
-
|
|
665743
|
-
|
|
665744
|
-
|
|
665745
|
-
|
|
665746
|
-
|
|
665747
|
-
|
|
665748
|
-
|
|
665749
|
-
|
|
666782
|
+
un_locode: {
|
|
666783
|
+
is_active: boolean | null;
|
|
666784
|
+
id_country: number | null;
|
|
666785
|
+
id_state: number | null;
|
|
666786
|
+
id_city: number | null;
|
|
666787
|
+
id: number;
|
|
666788
|
+
logic_code: string | null;
|
|
666789
|
+
created_at: Date | null;
|
|
666790
|
+
created_by: string | null;
|
|
666791
|
+
updated_at: Date | null;
|
|
666792
|
+
updated_by: string | null;
|
|
666793
|
+
id_time_zone: number | null;
|
|
666794
|
+
un_code: string | null;
|
|
666795
|
+
iata_code: string | null;
|
|
666796
|
+
iata_region_code: string | null;
|
|
666797
|
+
latitude: Decimal | null;
|
|
666798
|
+
longitude: Decimal | null;
|
|
666799
|
+
port_name: string | null;
|
|
666800
|
+
proper_name: string | null;
|
|
666801
|
+
has_post: boolean | null;
|
|
666802
|
+
has_customs: boolean | null;
|
|
666803
|
+
has_unload: boolean | null;
|
|
666804
|
+
has_airport: boolean | null;
|
|
666805
|
+
has_railway: boolean | null;
|
|
666806
|
+
has_road: boolean | null;
|
|
666807
|
+
has_store: boolean | null;
|
|
666808
|
+
has_terminal: boolean | null;
|
|
666809
|
+
has_discharge: boolean | null;
|
|
666810
|
+
has_seaport: boolean | null;
|
|
666811
|
+
has_outport: boolean | null;
|
|
666812
|
+
} | null;
|
|
665750
666813
|
} & {
|
|
665751
666814
|
is_active: boolean | null;
|
|
665752
|
-
id_un_locode: number | null;
|
|
665753
666815
|
id_country: number | null;
|
|
665754
666816
|
id_state: number | null;
|
|
665755
666817
|
id_city: number | null;
|
|
665756
666818
|
id_postal_code: number | null;
|
|
666819
|
+
id_un_locode: number | null;
|
|
665757
666820
|
id: number;
|
|
665758
666821
|
name: string | null;
|
|
665759
666822
|
logic_code: string | null;
|
|
@@ -665870,11 +666933,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
665870
666933
|
output: {
|
|
665871
666934
|
data: {
|
|
665872
666935
|
is_active: boolean | null;
|
|
665873
|
-
id_un_locode: number | null;
|
|
665874
666936
|
id_country: number | null;
|
|
665875
666937
|
id_state: number | null;
|
|
665876
666938
|
id_city: number | null;
|
|
665877
666939
|
id_postal_code: number | null;
|
|
666940
|
+
id_un_locode: number | null;
|
|
665878
666941
|
id: number;
|
|
665879
666942
|
name: string | null;
|
|
665880
666943
|
logic_code: string | null;
|
|
@@ -665916,11 +666979,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
665916
666979
|
output: {
|
|
665917
666980
|
data: {
|
|
665918
666981
|
is_active: boolean | null;
|
|
665919
|
-
id_un_locode: number | null;
|
|
665920
666982
|
id_country: number | null;
|
|
665921
666983
|
id_state: number | null;
|
|
665922
666984
|
id_city: number | null;
|
|
665923
666985
|
id_postal_code: number | null;
|
|
666986
|
+
id_un_locode: number | null;
|
|
665924
666987
|
id: number;
|
|
665925
666988
|
name: string | null;
|
|
665926
666989
|
logic_code: string | null;
|
|
@@ -665955,11 +667018,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
665955
667018
|
output: {
|
|
665956
667019
|
data: ({
|
|
665957
667020
|
is_active: boolean | null;
|
|
665958
|
-
id_un_locode: number | null;
|
|
665959
667021
|
id_country: number | null;
|
|
665960
667022
|
id_state: number | null;
|
|
665961
667023
|
id_city: number | null;
|
|
665962
667024
|
id_postal_code: number | null;
|
|
667025
|
+
id_un_locode: number | null;
|
|
665963
667026
|
id: number;
|
|
665964
667027
|
name: string | null;
|
|
665965
667028
|
logic_code: string | null;
|
|
@@ -666007,11 +667070,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
666007
667070
|
data: ({
|
|
666008
667071
|
company: {
|
|
666009
667072
|
is_active: boolean | null;
|
|
666010
|
-
id_un_locode: number | null;
|
|
666011
667073
|
id_country: number | null;
|
|
666012
667074
|
id_state: number | null;
|
|
666013
667075
|
id_city: number | null;
|
|
666014
667076
|
id_postal_code: number | null;
|
|
667077
|
+
id_un_locode: number | null;
|
|
666015
667078
|
id: number;
|
|
666016
667079
|
name: string | null;
|
|
666017
667080
|
logic_code: string | null;
|
|
@@ -666055,11 +667118,11 @@ declare const appRouter: BuiltRouter<{
|
|
|
666055
667118
|
};
|
|
666056
667119
|
company: {
|
|
666057
667120
|
is_active: boolean | null;
|
|
666058
|
-
id_un_locode: number | null;
|
|
666059
667121
|
id_country: number | null;
|
|
666060
667122
|
id_state: number | null;
|
|
666061
667123
|
id_city: number | null;
|
|
666062
667124
|
id_postal_code: number | null;
|
|
667125
|
+
id_un_locode: number | null;
|
|
666063
667126
|
id: number;
|
|
666064
667127
|
name: string | null;
|
|
666065
667128
|
logic_code: string | null;
|