@ws-ui/shared 0.0.50 → 0.1.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/declarations/datasources/datasource.d.ts +2 -0
- package/dist/declarations/datasources/interfaces/catalog.d.ts +2 -0
- package/dist/index.cjs.js +32 -32
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +894 -887
- package/dist/index.es.js.map +1 -1
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/model.d.ts +1 -0
- package/package.json +8 -3
|
@@ -98,6 +98,7 @@ declare namespace datasources {
|
|
|
98
98
|
type: string;
|
|
99
99
|
kind: EAttributeKind;
|
|
100
100
|
scope: AttributeScope;
|
|
101
|
+
uuid?: string;
|
|
101
102
|
} & Partial<{
|
|
102
103
|
indexKind: TIndexType;
|
|
103
104
|
autogenerate: boolean;
|
|
@@ -152,6 +153,7 @@ declare namespace datasources {
|
|
|
152
153
|
key: IDataClassKey[];
|
|
153
154
|
methods: catalog.IMethod[];
|
|
154
155
|
exposed?: boolean;
|
|
156
|
+
uuid?: string;
|
|
155
157
|
}
|
|
156
158
|
|
|
157
159
|
type IDataClasses = { [key: string]: IDetailedDataClass };
|
|
@@ -68,6 +68,7 @@ declare namespace catalog {
|
|
|
68
68
|
collectionName: string;
|
|
69
69
|
scope: DataclassScope;
|
|
70
70
|
attributes: IAttribute[];
|
|
71
|
+
uuid?: string;
|
|
71
72
|
} & Partial<{
|
|
72
73
|
defaultTopSize: number;
|
|
73
74
|
leave_tag_on_delete: boolean;
|
|
@@ -86,6 +87,7 @@ declare namespace catalog {
|
|
|
86
87
|
type: string;
|
|
87
88
|
kind: AttributeKind;
|
|
88
89
|
scope: Scope;
|
|
90
|
+
uuid?: string;
|
|
89
91
|
} & Partial<{
|
|
90
92
|
indexKind?: AttributeIndexKind | null;
|
|
91
93
|
invalidAlias: boolean;
|