@ws-ui/shared 0.0.50 → 0.1.1

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.
@@ -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,9 @@ declare namespace datasources {
152
153
  key: IDataClassKey[];
153
154
  methods: catalog.IMethod[];
154
155
  exposed?: boolean;
156
+ extraProperties?: IAttributeProperties;
157
+ virtual?: boolean;
158
+ uuid?: string;
155
159
  }
156
160
 
157
161
  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;
@@ -173,6 +173,7 @@ declare namespace webforms {
173
173
  target?: string;
174
174
  targetNamespace?: string;
175
175
  targetType?: string;
176
+ iteratorDatasource?: ISplitDatasource
176
177
  set?: {
177
178
  value?: string;
178
179
  type?: string;