@crowdin/app-project-module 0.28.8 → 0.28.10

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/out/index.js CHANGED
@@ -108,7 +108,7 @@ function addCrowdinEndpoints(app, clientConfig) {
108
108
  return options.inverse(this);
109
109
  },
110
110
  in: function (a, b, options) {
111
- if (a.includes(b)) {
111
+ if (a.toString().includes(b.toString())) {
112
112
  return options.fn(this);
113
113
  }
114
114
  return options.inverse(this);
@@ -270,9 +270,10 @@ export interface IntegrationLogic {
270
270
  */
271
271
  webhooks?: Webhooks;
272
272
  }
273
- export type FormEntity = FormField | FormDelimeter;
274
- export interface FormDelimeter {
275
- label: string;
273
+ export type FormEntity = FormField | FormDelimiter;
274
+ export interface FormDelimiter {
275
+ label?: string;
276
+ labelHtml?: string;
276
277
  }
277
278
  export interface LoginForm {
278
279
  fields: FormEntity[];