lucid-extension-sdk 0.0.117 → 0.0.118

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lucid-extension-sdk",
3
- "version": "0.0.117",
3
+ "version": "0.0.118",
4
4
  "description": "Utility classes for writing Lucid Software editor extensions",
5
5
  "main": "sdk/index.js",
6
6
  "types": "sdk/index.d.ts",
@@ -644,6 +644,7 @@ export declare type CreateCollectionQuery = {
644
644
  'f': CreateCollectionFieldDefinition[];
645
645
  /** Field(s) to use as the primary key of this collection */
646
646
  'p': string[];
647
+ 'fl'?: Record<string, string> | undefined;
647
648
  };
648
649
  export declare type CreateCollectionResult = string;
649
650
  export declare type CreateDataSourceQuery = {
@@ -39,6 +39,7 @@ class DataSourceProxy extends propertystoreproxy_1.PropertyStoreProxy {
39
39
  return { 'n': field.name, 't': (0, fieldtypedefinition_1.serializeFieldTypeDefinition)(field.type) };
40
40
  }),
41
41
  'p': schema.primaryKey,
42
+ 'fl': schema.fieldLabels,
42
43
  }), this.client);
43
44
  }
44
45
  /**
@@ -11,5 +11,6 @@ export declare enum DocumentElementType {
11
11
  Rule = "Rule",
12
12
  DocumentFormula = "Formula",
13
13
  TaskCardFieldsConfig = "TaskCardFieldsConfig",
14
- GeneratorView = "GeneratorView"
14
+ GeneratorView = "GeneratorView",
15
+ ShapeStylePreset = "ShapeStylePreset"
15
16
  }
@@ -16,4 +16,5 @@ var DocumentElementType;
16
16
  DocumentElementType["DocumentFormula"] = "Formula";
17
17
  DocumentElementType["TaskCardFieldsConfig"] = "TaskCardFieldsConfig";
18
18
  DocumentElementType["GeneratorView"] = "GeneratorView";
19
+ DocumentElementType["ShapeStylePreset"] = "ShapeStylePreset";
19
20
  })(DocumentElementType = exports.DocumentElementType || (exports.DocumentElementType = {}));