poly-lexis 0.9.1 → 0.9.3

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/index.d.ts CHANGED
@@ -128,6 +128,14 @@ declare const TRANSLATION_CONFIG_SCHEMA: {
128
128
  };
129
129
  default: string[];
130
130
  };
131
+ protectedTerms: {
132
+ type: string;
133
+ description: string;
134
+ items: {
135
+ type: string;
136
+ };
137
+ default: never[];
138
+ };
131
139
  };
132
140
  required: string[];
133
141
  additionalProperties: boolean;
package/dist/index.js CHANGED
@@ -431,6 +431,14 @@ var init_schema = __esm({
431
431
  type: "string"
432
432
  },
433
433
  default: [".ts", ".tsx", ".js", ".jsx", ".vue", ".svelte"]
434
+ },
435
+ protectedTerms: {
436
+ type: "array",
437
+ description: "List of terms that should never be translated (e.g. brand names, technical terms)",
438
+ items: {
439
+ type: "string"
440
+ },
441
+ default: []
434
442
  }
435
443
  },
436
444
  required: ["translationsPath", "languages", "sourceLanguage"],