@secondcloset/types 3.10.8 → 3.10.10

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@secondcloset/types",
3
- "version": "3.10.8",
3
+ "version": "3.10.10",
4
4
  "description": "secondcloset type declaration and definitions",
5
5
  "main": "src/index.ts",
6
6
  "scripts": {
@@ -64,6 +64,10 @@ export interface SCServiceTier {
64
64
  to_the_door?: boolean;
65
65
  }
66
66
 
67
+ export interface FBBTransportOrganization {
68
+ id: string;
69
+ }
70
+
67
71
  export interface BaseOrganization {
68
72
  created_at: string;
69
73
  email: string;
@@ -96,7 +100,8 @@ export interface Organization extends BaseOrganization {
96
100
  }[];
97
101
  employer_identification_number?: string;
98
102
  business_name?: string;
99
- children_organizations?: ChidlrenOrganization[];
103
+ children_organizations?: ChildrenOrganization[];
104
+ fbb_transport_organization?: FBBTransportOrganization;
100
105
  }
101
106
 
102
107
  export interface Region {
@@ -112,7 +117,7 @@ export interface FacilityServiceArea {
112
117
  organization_regions: Region[];
113
118
  }
114
119
 
115
- export interface ChidlrenOrganization {
120
+ export interface ChildrenOrganization {
116
121
  id: string;
117
122
  name: string;
118
123
  }