scout-types 1.0.10 → 1.0.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.
@@ -22,7 +22,7 @@ export declare class Scout {
22
22
  }
23
23
  export declare class ScoutAux extends Scout {
24
24
  readonly jurisdictions: Jurisdiction[];
25
- readonly sub_scouts: Jurisdiction[];
25
+ readonly sub_scouts: Scout[];
26
26
  readonly photo_download_url?: string;
27
27
  readonly tone_description?: string;
28
28
  constructor(scout: any);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scout-types",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "main": "dist/src/index.js",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "directories": {
@@ -62,7 +62,7 @@ export class Scout {
62
62
 
63
63
  export class ScoutAux extends Scout {
64
64
  readonly jurisdictions : Jurisdiction[]
65
- readonly sub_scouts : Jurisdiction[]
65
+ readonly sub_scouts : Scout[]
66
66
  readonly photo_download_url? : string
67
67
  readonly tone_description? : string
68
68