@chili-publish/studio-connectors 1.40.0 → 1.42.0
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 +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -211,7 +211,7 @@ export type DataModel = {
|
|
|
211
211
|
};
|
|
212
212
|
export type DataModelProperty = {
|
|
213
213
|
name: string;
|
|
214
|
-
type:
|
|
214
|
+
type: "singleLine" | "multiLine" | "number" | "date" | "boolean";
|
|
215
215
|
};
|
|
216
216
|
export type DataPage = WithNavigation<Pick<QueryPage<DataItem>, "data">, OneDirectionalNavigation>;
|
|
217
217
|
export type DataSourceVariableDataModel = DataModel & {
|
|
@@ -280,6 +280,7 @@ interface StudioFormData$1 {
|
|
|
280
280
|
get(name: string): StudioFormDataValue | null;
|
|
281
281
|
getAll(name: string): StudioFormDataValue[];
|
|
282
282
|
has(name: string): boolean;
|
|
283
|
+
toJSON(): string;
|
|
283
284
|
}
|
|
284
285
|
type ConnectorConfigOptions$1 = ConnectorConfigOptions<ConnectorConfigValueType, ConnectorConfigContextType>;
|
|
285
286
|
type ConnectorConfigValue$1 = ConnectorConfigValue<ConnectorConfigValueType, ConnectorConfigContextType>;
|