b2m-utils 0.0.86 → 0.0.87
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/build/types/City/index.d.ts +9 -0
- package/build/types/Country/index.d.ts +8 -0
- package/build/types/DomainSla/index.d.ts +14 -0
- package/build/types/DomainSlaLocation/index.d.ts +9 -0
- package/build/types/DomainSlaRegion/index.d.ts +9 -0
- package/build/types/DomainSlaRoute/index.d.ts +18 -0
- package/build/types/SlaFreight/index.d.ts +37 -0
- package/build/types/State/index.d.ts +14 -0
- package/build/types/index.d.ts +16 -0
- package/package.json +1 -1
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import Dates from "../Dates";
|
|
2
|
+
import Domain from "../Domain";
|
|
3
|
+
import ShippingCompany from "../ShippingCompany";
|
|
4
|
+
export type DomainSla = {
|
|
5
|
+
id: number;
|
|
6
|
+
domainId: number;
|
|
7
|
+
shippingCompanyId: number;
|
|
8
|
+
startsAt: string;
|
|
9
|
+
endsAt: string;
|
|
10
|
+
percentage: number;
|
|
11
|
+
domain?: Domain;
|
|
12
|
+
shippingCompany?: ShippingCompany;
|
|
13
|
+
} & Dates;
|
|
14
|
+
export default DomainSla;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import City from "../City";
|
|
2
|
+
import Dates from "../Dates";
|
|
3
|
+
import Domain from "../Domain";
|
|
4
|
+
import DomainSlaRegion from "../DomainSlaRegion";
|
|
5
|
+
import State from "../State";
|
|
6
|
+
export type DomainSlaRoute = {
|
|
7
|
+
id: number;
|
|
8
|
+
domainId: number;
|
|
9
|
+
cityOriginId: number;
|
|
10
|
+
regionId: number;
|
|
11
|
+
stateDestinationId: number;
|
|
12
|
+
deliveryDays: number;
|
|
13
|
+
city?: City;
|
|
14
|
+
domainSlaRegion?: DomainSlaRegion;
|
|
15
|
+
domain?: Domain;
|
|
16
|
+
state?: State;
|
|
17
|
+
} & Dates;
|
|
18
|
+
export default DomainSlaRoute;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import City from "../City";
|
|
2
|
+
import Currency from "../Currency";
|
|
3
|
+
import Dates from "../Dates";
|
|
4
|
+
import Domain from "../Domain";
|
|
5
|
+
import DomainSlaLocation from "../DomainSlaLocation";
|
|
6
|
+
import DomainSlaRegion from "../DomainSlaRegion";
|
|
7
|
+
import Modal from "../Modal";
|
|
8
|
+
import ShippingCompany from "../ShippingCompany";
|
|
9
|
+
export type SlaFreight = {
|
|
10
|
+
id: number;
|
|
11
|
+
domainId: number;
|
|
12
|
+
shippingCompanyId: number;
|
|
13
|
+
modalId: number;
|
|
14
|
+
cityOriginId: number;
|
|
15
|
+
originLocationId: number;
|
|
16
|
+
cityDestinationId: number;
|
|
17
|
+
destinationLocationId: number;
|
|
18
|
+
weight: number;
|
|
19
|
+
commodityValue: number;
|
|
20
|
+
commodityValueCurrencyId: number;
|
|
21
|
+
cteCost: number;
|
|
22
|
+
cteCostCurrencyId: number;
|
|
23
|
+
regionId: number;
|
|
24
|
+
cteAt: string;
|
|
25
|
+
deliveredAt: string;
|
|
26
|
+
cityDestination?: City;
|
|
27
|
+
cityOrigin?: City;
|
|
28
|
+
commodityValueCurrency?: Currency;
|
|
29
|
+
cteCostCurrency?: Currency;
|
|
30
|
+
domainSlaRegion?: DomainSlaRegion;
|
|
31
|
+
domain?: Domain;
|
|
32
|
+
destinationLocation?: DomainSlaLocation;
|
|
33
|
+
originLocation?: DomainSlaLocation;
|
|
34
|
+
modal?: Modal;
|
|
35
|
+
shippingCompany?: ShippingCompany;
|
|
36
|
+
} & Dates;
|
|
37
|
+
export default SlaFreight;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import City from "../City";
|
|
2
|
+
import Country from "../Country";
|
|
3
|
+
import Dates from "../Dates";
|
|
4
|
+
import DomainSlaRoute from "../DomainSlaRoute";
|
|
5
|
+
export type State = {
|
|
6
|
+
id: number;
|
|
7
|
+
countryId: number;
|
|
8
|
+
name: string;
|
|
9
|
+
uf: string;
|
|
10
|
+
City?: City[];
|
|
11
|
+
DomainSlaRoute?: DomainSlaRoute[];
|
|
12
|
+
country?: Country;
|
|
13
|
+
} & Dates;
|
|
14
|
+
export default State;
|
package/build/types/index.d.ts
CHANGED
|
@@ -6,8 +6,12 @@ export * from './ApplicationColumn';
|
|
|
6
6
|
export { default as ApplicationColumn } from './ApplicationColumn';
|
|
7
7
|
export * from './Auth';
|
|
8
8
|
export { default as Auth } from './Auth';
|
|
9
|
+
export * from './City';
|
|
10
|
+
export { default as City } from './City';
|
|
9
11
|
export * from './ContainerType';
|
|
10
12
|
export { default as ContainerType } from './ContainerType';
|
|
13
|
+
export * from './Country';
|
|
14
|
+
export { default as Country } from './Country';
|
|
11
15
|
export * from './Currency';
|
|
12
16
|
export { default as Currency } from './Currency';
|
|
13
17
|
export * from './Dates';
|
|
@@ -34,6 +38,14 @@ export * from './DomainProcessObservation';
|
|
|
34
38
|
export { default as DomainProcessObservation } from './DomainProcessObservation';
|
|
35
39
|
export * from './DomainProvider';
|
|
36
40
|
export { default as DomainProvider } from './DomainProvider';
|
|
41
|
+
export * from './DomainSla';
|
|
42
|
+
export { default as DomainSla } from './DomainSla';
|
|
43
|
+
export * from './DomainSlaLocation';
|
|
44
|
+
export { default as DomainSlaLocation } from './DomainSlaLocation';
|
|
45
|
+
export * from './DomainSlaRegion';
|
|
46
|
+
export { default as DomainSlaRegion } from './DomainSlaRegion';
|
|
47
|
+
export * from './DomainSlaRoute';
|
|
48
|
+
export { default as DomainSlaRoute } from './DomainSlaRoute';
|
|
37
49
|
export * from './DomainTerminal';
|
|
38
50
|
export { default as DomainTerminal } from './DomainTerminal';
|
|
39
51
|
export * from './DomainType';
|
|
@@ -80,8 +92,12 @@ export * from './Shipowner';
|
|
|
80
92
|
export { default as Shipowner } from './Shipowner';
|
|
81
93
|
export * from './ShippingCompany';
|
|
82
94
|
export { default as ShippingCompany } from './ShippingCompany';
|
|
95
|
+
export * from './SlaFreight';
|
|
96
|
+
export { default as SlaFreight } from './SlaFreight';
|
|
83
97
|
export * from './SpotStatus';
|
|
84
98
|
export { default as SpotStatus } from './SpotStatus';
|
|
99
|
+
export * from './State';
|
|
100
|
+
export { default as State } from './State';
|
|
85
101
|
export * from './TrackProcess';
|
|
86
102
|
export { default as TrackProcess } from './TrackProcess';
|
|
87
103
|
export * from './TrackProcessChannel';
|