stentor-locales 1.57.0 → 1.57.2

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/lib/localize.d.ts CHANGED
@@ -17,7 +17,7 @@ import { Locale, Localizable } from "stentor-models";
17
17
  * second.param2 = "There"; // Compile error.
18
18
  *
19
19
  */
20
- export declare type Omit<T extends object, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
20
+ export type Omit<T extends object, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
21
21
  /**
22
22
  * This will flatten a LocaleObj and return the object with the overridden attributes.
23
23
  */
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "1.57.0",
7
+ "version": "1.57.2",
8
8
  "description": "Locales for stentor",
9
9
  "types": "lib/index",
10
10
  "main": "lib/index",
@@ -19,12 +19,12 @@
19
19
  "@xapp/config": "0.2.3",
20
20
  "chai": "4.3.7",
21
21
  "mocha": "9.2.2",
22
- "stentor-models": "1.57.0",
22
+ "stentor-models": "1.57.1",
23
23
  "ts-node": "10.9.1",
24
- "typescript": "4.8.4"
24
+ "typescript": "4.9.3"
25
25
  },
26
26
  "dependencies": {
27
- "stentor-utils": "1.57.0"
27
+ "stentor-utils": "1.57.2"
28
28
  },
29
29
  "peerDependencies": {
30
30
  "stentor-models": "1.x"
@@ -34,5 +34,5 @@
34
34
  "clean": "rm -rf ./lib/*",
35
35
  "test": "mocha --recursive -r ts-node/register \"./src/**/*.test.ts\""
36
36
  },
37
- "gitHead": "49d4e56874c967af5ef1dc0da757bdd6d819ae82"
37
+ "gitHead": "9b1d170c6b03f55f2c5eab1204b3a3e7ad6b4e6c"
38
38
  }