@nimee/shared-types 1.0.205 → 1.0.206
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/dist/common/index.d.ts
CHANGED
package/dist/common/index.js
CHANGED
|
@@ -15,4 +15,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./common"), exports);
|
|
18
|
+
__exportStar(require("./translations"), exports);
|
|
18
19
|
//# sourceMappingURL=index.js.map
|
package/dist/common/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/common/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAyB"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/common/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAyB;AACzB,iDAA+B"}
|
package/package.json
CHANGED
package/src/common/index.ts
CHANGED
|
@@ -173,7 +173,7 @@ describe("Translations", () => {
|
|
|
173
173
|
|
|
174
174
|
it("should return correct English translation for part 4", () => {
|
|
175
175
|
const translation = getTranslation("orderWaitingForApproval4", ILanguageEnum.en, {});
|
|
176
|
-
expect(translation).toBe("If your request is approved");
|
|
176
|
+
expect(translation).toBe("If your request is approved,");
|
|
177
177
|
});
|
|
178
178
|
|
|
179
179
|
it("should return correct English translation for part 5", () => {
|