@secondcloset/types 3.10.10 → 3.10.11
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/package.json
CHANGED
package/src/_common/facility.ts
CHANGED
|
@@ -22,6 +22,7 @@ export type FacilityCode =
|
|
|
22
22
|
| "yyc1"
|
|
23
23
|
| "atl1"
|
|
24
24
|
| "atl2"
|
|
25
|
+
| "yeg1"
|
|
25
26
|
| "unknown";
|
|
26
27
|
|
|
27
28
|
export type DeprecatedFacilityCode =
|
|
@@ -47,7 +48,8 @@ export type FacilityCity =
|
|
|
47
48
|
| "Houston"
|
|
48
49
|
| "Tucker"
|
|
49
50
|
| "Newnan"
|
|
50
|
-
| "Calgary"
|
|
51
|
+
| "Calgary"
|
|
52
|
+
| "Edmonton";
|
|
51
53
|
|
|
52
54
|
export type Facility<V = Version> = V extends "V1"
|
|
53
55
|
? {
|
|
@@ -64,10 +64,6 @@ export interface SCServiceTier {
|
|
|
64
64
|
to_the_door?: boolean;
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
-
export interface FBBTransportOrganization {
|
|
68
|
-
id: string;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
67
|
export interface BaseOrganization {
|
|
72
68
|
created_at: string;
|
|
73
69
|
email: string;
|
|
@@ -101,7 +97,6 @@ export interface Organization extends BaseOrganization {
|
|
|
101
97
|
employer_identification_number?: string;
|
|
102
98
|
business_name?: string;
|
|
103
99
|
children_organizations?: ChildrenOrganization[];
|
|
104
|
-
fbb_transport_organization?: FBBTransportOrganization;
|
|
105
100
|
}
|
|
106
101
|
|
|
107
102
|
export interface Region {
|