@wix/data 1.0.41 → 1.0.42
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/build/cjs/src/data-v1-external-database-connection.types.d.ts +35 -35
- package/build/cjs/src/data-v1-external-database-connection.universal.d.ts +7 -7
- package/build/es/src/data-v1-external-database-connection.types.d.ts +35 -35
- package/build/es/src/data-v1-external-database-connection.universal.d.ts +7 -7
- package/package.json +2 -2
|
@@ -102,22 +102,22 @@ export declare enum ProtocolVersion {
|
|
|
102
102
|
}
|
|
103
103
|
export interface Capabilities {
|
|
104
104
|
/** Indicates if the external database supports creating or updating collections. */
|
|
105
|
-
|
|
105
|
+
collectionModificationsSupported?: boolean;
|
|
106
106
|
/**
|
|
107
107
|
* Indicates which field types are supported by the external database.
|
|
108
108
|
* This option only affects collection creation and update requests.
|
|
109
109
|
*/
|
|
110
|
-
|
|
110
|
+
fieldTypes?: FieldType[];
|
|
111
111
|
/** Indicates if the external database supports storing collection display name. */
|
|
112
|
-
|
|
112
|
+
collectionDisplayNameSupported?: boolean;
|
|
113
113
|
/** Indicates if the external database supports storing collection display field. */
|
|
114
|
-
|
|
114
|
+
collectionDisplayFieldSupported?: boolean;
|
|
115
115
|
/** Indicates if the external database supports storing collection permissions. */
|
|
116
|
-
|
|
116
|
+
collectionPermissionsSupported?: boolean;
|
|
117
117
|
/** Indicates if the external database supports storing field display name. */
|
|
118
|
-
|
|
118
|
+
collectionFieldDisplayNameSupported?: boolean;
|
|
119
119
|
/** Indicates if the external database supports storing field description. */
|
|
120
|
-
|
|
120
|
+
collectionFieldDescriptionSupported?: boolean;
|
|
121
121
|
}
|
|
122
122
|
export interface GetExternalDatabaseConnectionRequest {
|
|
123
123
|
/** Name of the external database connection to retrieve. */
|
|
@@ -185,13 +185,13 @@ export interface GetExternalDatabaseConnectionResponseNonNullableFields {
|
|
|
185
185
|
};
|
|
186
186
|
protocolVersion: ProtocolVersion;
|
|
187
187
|
capabilities?: {
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
188
|
+
collectionModificationsSupported: boolean;
|
|
189
|
+
fieldTypes: FieldType[];
|
|
190
|
+
collectionDisplayNameSupported: boolean;
|
|
191
|
+
collectionDisplayFieldSupported: boolean;
|
|
192
|
+
collectionPermissionsSupported: boolean;
|
|
193
|
+
collectionFieldDisplayNameSupported: boolean;
|
|
194
|
+
collectionFieldDescriptionSupported: boolean;
|
|
195
195
|
};
|
|
196
196
|
};
|
|
197
197
|
}
|
|
@@ -205,13 +205,13 @@ export interface ListExternalDatabaseConnectionsResponseNonNullableFields {
|
|
|
205
205
|
};
|
|
206
206
|
protocolVersion: ProtocolVersion;
|
|
207
207
|
capabilities?: {
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
208
|
+
collectionModificationsSupported: boolean;
|
|
209
|
+
fieldTypes: FieldType[];
|
|
210
|
+
collectionDisplayNameSupported: boolean;
|
|
211
|
+
collectionDisplayFieldSupported: boolean;
|
|
212
|
+
collectionPermissionsSupported: boolean;
|
|
213
|
+
collectionFieldDisplayNameSupported: boolean;
|
|
214
|
+
collectionFieldDescriptionSupported: boolean;
|
|
215
215
|
};
|
|
216
216
|
}[];
|
|
217
217
|
}
|
|
@@ -225,13 +225,13 @@ export interface CreateExternalDatabaseConnectionResponseNonNullableFields {
|
|
|
225
225
|
};
|
|
226
226
|
protocolVersion: ProtocolVersion;
|
|
227
227
|
capabilities?: {
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
228
|
+
collectionModificationsSupported: boolean;
|
|
229
|
+
fieldTypes: FieldType[];
|
|
230
|
+
collectionDisplayNameSupported: boolean;
|
|
231
|
+
collectionDisplayFieldSupported: boolean;
|
|
232
|
+
collectionPermissionsSupported: boolean;
|
|
233
|
+
collectionFieldDisplayNameSupported: boolean;
|
|
234
|
+
collectionFieldDescriptionSupported: boolean;
|
|
235
235
|
};
|
|
236
236
|
};
|
|
237
237
|
}
|
|
@@ -245,13 +245,13 @@ export interface UpdateExternalDatabaseConnectionResponseNonNullableFields {
|
|
|
245
245
|
};
|
|
246
246
|
protocolVersion: ProtocolVersion;
|
|
247
247
|
capabilities?: {
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
248
|
+
collectionModificationsSupported: boolean;
|
|
249
|
+
fieldTypes: FieldType[];
|
|
250
|
+
collectionDisplayNameSupported: boolean;
|
|
251
|
+
collectionDisplayFieldSupported: boolean;
|
|
252
|
+
collectionPermissionsSupported: boolean;
|
|
253
|
+
collectionFieldDisplayNameSupported: boolean;
|
|
254
|
+
collectionFieldDescriptionSupported: boolean;
|
|
255
255
|
};
|
|
256
256
|
};
|
|
257
257
|
}
|
|
@@ -108,22 +108,22 @@ export declare enum ProtocolVersion {
|
|
|
108
108
|
}
|
|
109
109
|
export interface Capabilities {
|
|
110
110
|
/** Indicates if the external database supports creating or updating collections. */
|
|
111
|
-
|
|
111
|
+
collectionModificationsSupported?: boolean;
|
|
112
112
|
/**
|
|
113
113
|
* Indicates which field types are supported by the external database.
|
|
114
114
|
* This option only affects collection creation and update requests.
|
|
115
115
|
*/
|
|
116
|
-
|
|
116
|
+
fieldTypes?: FieldType[];
|
|
117
117
|
/** Indicates if the external database supports storing collection display name. */
|
|
118
|
-
|
|
118
|
+
collectionDisplayNameSupported?: boolean;
|
|
119
119
|
/** Indicates if the external database supports storing collection display field. */
|
|
120
|
-
|
|
120
|
+
collectionDisplayFieldSupported?: boolean;
|
|
121
121
|
/** Indicates if the external database supports storing collection permissions. */
|
|
122
|
-
|
|
122
|
+
collectionPermissionsSupported?: boolean;
|
|
123
123
|
/** Indicates if the external database supports storing field display name. */
|
|
124
|
-
|
|
124
|
+
collectionFieldDisplayNameSupported?: boolean;
|
|
125
125
|
/** Indicates if the external database supports storing field description. */
|
|
126
|
-
|
|
126
|
+
collectionFieldDescriptionSupported?: boolean;
|
|
127
127
|
}
|
|
128
128
|
export interface GetExternalDatabaseConnectionRequest {
|
|
129
129
|
/** Name of the external database connection to retrieve. */
|
|
@@ -102,22 +102,22 @@ export declare enum ProtocolVersion {
|
|
|
102
102
|
}
|
|
103
103
|
export interface Capabilities {
|
|
104
104
|
/** Indicates if the external database supports creating or updating collections. */
|
|
105
|
-
|
|
105
|
+
collectionModificationsSupported?: boolean;
|
|
106
106
|
/**
|
|
107
107
|
* Indicates which field types are supported by the external database.
|
|
108
108
|
* This option only affects collection creation and update requests.
|
|
109
109
|
*/
|
|
110
|
-
|
|
110
|
+
fieldTypes?: FieldType[];
|
|
111
111
|
/** Indicates if the external database supports storing collection display name. */
|
|
112
|
-
|
|
112
|
+
collectionDisplayNameSupported?: boolean;
|
|
113
113
|
/** Indicates if the external database supports storing collection display field. */
|
|
114
|
-
|
|
114
|
+
collectionDisplayFieldSupported?: boolean;
|
|
115
115
|
/** Indicates if the external database supports storing collection permissions. */
|
|
116
|
-
|
|
116
|
+
collectionPermissionsSupported?: boolean;
|
|
117
117
|
/** Indicates if the external database supports storing field display name. */
|
|
118
|
-
|
|
118
|
+
collectionFieldDisplayNameSupported?: boolean;
|
|
119
119
|
/** Indicates if the external database supports storing field description. */
|
|
120
|
-
|
|
120
|
+
collectionFieldDescriptionSupported?: boolean;
|
|
121
121
|
}
|
|
122
122
|
export interface GetExternalDatabaseConnectionRequest {
|
|
123
123
|
/** Name of the external database connection to retrieve. */
|
|
@@ -185,13 +185,13 @@ export interface GetExternalDatabaseConnectionResponseNonNullableFields {
|
|
|
185
185
|
};
|
|
186
186
|
protocolVersion: ProtocolVersion;
|
|
187
187
|
capabilities?: {
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
188
|
+
collectionModificationsSupported: boolean;
|
|
189
|
+
fieldTypes: FieldType[];
|
|
190
|
+
collectionDisplayNameSupported: boolean;
|
|
191
|
+
collectionDisplayFieldSupported: boolean;
|
|
192
|
+
collectionPermissionsSupported: boolean;
|
|
193
|
+
collectionFieldDisplayNameSupported: boolean;
|
|
194
|
+
collectionFieldDescriptionSupported: boolean;
|
|
195
195
|
};
|
|
196
196
|
};
|
|
197
197
|
}
|
|
@@ -205,13 +205,13 @@ export interface ListExternalDatabaseConnectionsResponseNonNullableFields {
|
|
|
205
205
|
};
|
|
206
206
|
protocolVersion: ProtocolVersion;
|
|
207
207
|
capabilities?: {
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
208
|
+
collectionModificationsSupported: boolean;
|
|
209
|
+
fieldTypes: FieldType[];
|
|
210
|
+
collectionDisplayNameSupported: boolean;
|
|
211
|
+
collectionDisplayFieldSupported: boolean;
|
|
212
|
+
collectionPermissionsSupported: boolean;
|
|
213
|
+
collectionFieldDisplayNameSupported: boolean;
|
|
214
|
+
collectionFieldDescriptionSupported: boolean;
|
|
215
215
|
};
|
|
216
216
|
}[];
|
|
217
217
|
}
|
|
@@ -225,13 +225,13 @@ export interface CreateExternalDatabaseConnectionResponseNonNullableFields {
|
|
|
225
225
|
};
|
|
226
226
|
protocolVersion: ProtocolVersion;
|
|
227
227
|
capabilities?: {
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
228
|
+
collectionModificationsSupported: boolean;
|
|
229
|
+
fieldTypes: FieldType[];
|
|
230
|
+
collectionDisplayNameSupported: boolean;
|
|
231
|
+
collectionDisplayFieldSupported: boolean;
|
|
232
|
+
collectionPermissionsSupported: boolean;
|
|
233
|
+
collectionFieldDisplayNameSupported: boolean;
|
|
234
|
+
collectionFieldDescriptionSupported: boolean;
|
|
235
235
|
};
|
|
236
236
|
};
|
|
237
237
|
}
|
|
@@ -245,13 +245,13 @@ export interface UpdateExternalDatabaseConnectionResponseNonNullableFields {
|
|
|
245
245
|
};
|
|
246
246
|
protocolVersion: ProtocolVersion;
|
|
247
247
|
capabilities?: {
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
248
|
+
collectionModificationsSupported: boolean;
|
|
249
|
+
fieldTypes: FieldType[];
|
|
250
|
+
collectionDisplayNameSupported: boolean;
|
|
251
|
+
collectionDisplayFieldSupported: boolean;
|
|
252
|
+
collectionPermissionsSupported: boolean;
|
|
253
|
+
collectionFieldDisplayNameSupported: boolean;
|
|
254
|
+
collectionFieldDescriptionSupported: boolean;
|
|
255
255
|
};
|
|
256
256
|
};
|
|
257
257
|
}
|
|
@@ -108,22 +108,22 @@ export declare enum ProtocolVersion {
|
|
|
108
108
|
}
|
|
109
109
|
export interface Capabilities {
|
|
110
110
|
/** Indicates if the external database supports creating or updating collections. */
|
|
111
|
-
|
|
111
|
+
collectionModificationsSupported?: boolean;
|
|
112
112
|
/**
|
|
113
113
|
* Indicates which field types are supported by the external database.
|
|
114
114
|
* This option only affects collection creation and update requests.
|
|
115
115
|
*/
|
|
116
|
-
|
|
116
|
+
fieldTypes?: FieldType[];
|
|
117
117
|
/** Indicates if the external database supports storing collection display name. */
|
|
118
|
-
|
|
118
|
+
collectionDisplayNameSupported?: boolean;
|
|
119
119
|
/** Indicates if the external database supports storing collection display field. */
|
|
120
|
-
|
|
120
|
+
collectionDisplayFieldSupported?: boolean;
|
|
121
121
|
/** Indicates if the external database supports storing collection permissions. */
|
|
122
|
-
|
|
122
|
+
collectionPermissionsSupported?: boolean;
|
|
123
123
|
/** Indicates if the external database supports storing field display name. */
|
|
124
|
-
|
|
124
|
+
collectionFieldDisplayNameSupported?: boolean;
|
|
125
125
|
/** Indicates if the external database supports storing field description. */
|
|
126
|
-
|
|
126
|
+
collectionFieldDescriptionSupported?: boolean;
|
|
127
127
|
}
|
|
128
128
|
export interface GetExternalDatabaseConnectionRequest {
|
|
129
129
|
/** Name of the external database connection to retrieve. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/data",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.42",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"groupId": "com.wixpress.public-sdk-autogen"
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
|
-
"falconPackageHash": "
|
|
36
|
+
"falconPackageHash": "007b69b1e09039f193dd05b04a7684c6360ccc74cf95f9cd8eae7797"
|
|
37
37
|
}
|