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
package/sdk/commandtypes.d.ts
CHANGED
|
@@ -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
|
/**
|
|
@@ -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 = {}));
|