lucid-extension-sdk 0.0.288 → 0.0.291

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.
@@ -72,10 +72,10 @@ export declare class ItemsPatchInexhaustive {
72
72
  export declare class ItemsPatchExhaustive {
73
73
  items: Map<string, SerializedFields>;
74
74
  rekeyingMap?: Map<string, string | null> | undefined;
75
- fieldNamesChanged?: Map<string, string> | undefined;
75
+ fieldNamesChanged?: Map<string, string | null> | undefined;
76
76
  errors?: Map<string, SerializedLucidDictionary> | undefined;
77
77
  private readonly _brand;
78
- constructor(items: Map<string, SerializedFields>, rekeyingMap?: Map<string, string | null> | undefined, fieldNamesChanged?: Map<string, string> | undefined, errors?: Map<string, SerializedLucidDictionary> | undefined);
78
+ constructor(items: Map<string, SerializedFields>, rekeyingMap?: Map<string, string | null> | undefined, fieldNamesChanged?: Map<string, string | null> | undefined, errors?: Map<string, SerializedLucidDictionary> | undefined);
79
79
  }
80
80
  export type ItemsPatch = {
81
81
  /**
@@ -95,7 +95,7 @@ export type SerializedItemsPatch = {
95
95
  } | {
96
96
  'exhaustiveItems': Record<string, SerializedFields>;
97
97
  'rekeyingMap'?: Record<string, string | null>;
98
- 'fieldNamesChanged'?: Record<string, string>;
98
+ 'fieldNamesChanged'?: Record<string, string | null>;
99
99
  'errors'?: Record<string, SerializedLucidDictionary>;
100
100
  };
101
101
  export declare function serializeItemsPatch(patch: ItemsPatch): SerializedItemsPatch;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lucid-extension-sdk",
3
- "version": "0.0.288",
3
+ "version": "0.0.291",
4
4
  "description": "Utility classes for writing Lucid Software editor extensions",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",