@secondcloset/types 3.10.8 → 3.10.9

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.9",
4
4
  "description": "secondcloset type declaration and definitions",
5
5
  "main": "src/index.ts",
6
6
  "scripts": {
@@ -96,7 +96,7 @@ export interface Organization extends BaseOrganization {
96
96
  }[];
97
97
  employer_identification_number?: string;
98
98
  business_name?: string;
99
- children_organizations?: ChidlrenOrganization[];
99
+ children_organizations?: ChildrenOrganization[];
100
100
  }
101
101
 
102
102
  export interface Region {
@@ -112,7 +112,7 @@ export interface FacilityServiceArea {
112
112
  organization_regions: Region[];
113
113
  }
114
114
 
115
- export interface ChidlrenOrganization {
115
+ export interface ChildrenOrganization {
116
116
  id: string;
117
117
  name: string;
118
118
  }