@luminocity/lemonate-gateway 8.2.25-dev.20260326 → 8.2.26

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
@@ -912,8 +912,8 @@ declare class Field extends Snapshotable {
912
912
  private _hidden;
913
913
  get hidden(): boolean;
914
914
  get id(): string;
915
- get options(): string[];
916
- set options(value: string[]);
915
+ get options(): (string | Record<string, unknown>)[];
916
+ set options(value: (string | Record<string, unknown>)[]);
917
917
  get value(): any;
918
918
  set value(value: any);
919
919
  constructor(name: string | Snapshot, displayName?: string | undefined, type?: string | undefined, value?: any | undefined, item?: PreparedItem | undefined, itemRepo?: ItemRepo | undefined);
@@ -940,7 +940,7 @@ declare class Field extends Snapshotable {
940
940
  setDefaultValue(value: any): void;
941
941
  setMinValue(value: any): void;
942
942
  setMaxValue(value: any): void;
943
- setOptions(options: string[]): void;
943
+ setOptions(options: (string | Record<string, unknown>)[]): void;
944
944
  setDatatype(datatype: string): void;
945
945
  setLanguage(language: any): void;
946
946
  setLength(length: any): void;