@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.
@@ -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
- supportsCollectionModifications?: boolean;
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
- supportedFieldTypes?: FieldType[];
110
+ fieldTypes?: FieldType[];
111
111
  /** Indicates if the external database supports storing collection display name. */
112
- supportsCollectionDisplayName?: boolean;
112
+ collectionDisplayNameSupported?: boolean;
113
113
  /** Indicates if the external database supports storing collection display field. */
114
- supportsCollectionDisplayField?: boolean;
114
+ collectionDisplayFieldSupported?: boolean;
115
115
  /** Indicates if the external database supports storing collection permissions. */
116
- supportsCollectionPermissions?: boolean;
116
+ collectionPermissionsSupported?: boolean;
117
117
  /** Indicates if the external database supports storing field display name. */
118
- supportsCollectionFieldDisplayName?: boolean;
118
+ collectionFieldDisplayNameSupported?: boolean;
119
119
  /** Indicates if the external database supports storing field description. */
120
- supportsCollectionFieldDescription?: boolean;
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
- supportsCollectionModifications: boolean;
189
- supportedFieldTypes: FieldType[];
190
- supportsCollectionDisplayName: boolean;
191
- supportsCollectionDisplayField: boolean;
192
- supportsCollectionPermissions: boolean;
193
- supportsCollectionFieldDisplayName: boolean;
194
- supportsCollectionFieldDescription: boolean;
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
- supportsCollectionModifications: boolean;
209
- supportedFieldTypes: FieldType[];
210
- supportsCollectionDisplayName: boolean;
211
- supportsCollectionDisplayField: boolean;
212
- supportsCollectionPermissions: boolean;
213
- supportsCollectionFieldDisplayName: boolean;
214
- supportsCollectionFieldDescription: boolean;
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
- supportsCollectionModifications: boolean;
229
- supportedFieldTypes: FieldType[];
230
- supportsCollectionDisplayName: boolean;
231
- supportsCollectionDisplayField: boolean;
232
- supportsCollectionPermissions: boolean;
233
- supportsCollectionFieldDisplayName: boolean;
234
- supportsCollectionFieldDescription: boolean;
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
- supportsCollectionModifications: boolean;
249
- supportedFieldTypes: FieldType[];
250
- supportsCollectionDisplayName: boolean;
251
- supportsCollectionDisplayField: boolean;
252
- supportsCollectionPermissions: boolean;
253
- supportsCollectionFieldDisplayName: boolean;
254
- supportsCollectionFieldDescription: boolean;
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
- supportsCollectionModifications?: boolean;
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
- supportedFieldTypes?: FieldType[];
116
+ fieldTypes?: FieldType[];
117
117
  /** Indicates if the external database supports storing collection display name. */
118
- supportsCollectionDisplayName?: boolean;
118
+ collectionDisplayNameSupported?: boolean;
119
119
  /** Indicates if the external database supports storing collection display field. */
120
- supportsCollectionDisplayField?: boolean;
120
+ collectionDisplayFieldSupported?: boolean;
121
121
  /** Indicates if the external database supports storing collection permissions. */
122
- supportsCollectionPermissions?: boolean;
122
+ collectionPermissionsSupported?: boolean;
123
123
  /** Indicates if the external database supports storing field display name. */
124
- supportsCollectionFieldDisplayName?: boolean;
124
+ collectionFieldDisplayNameSupported?: boolean;
125
125
  /** Indicates if the external database supports storing field description. */
126
- supportsCollectionFieldDescription?: boolean;
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
- supportsCollectionModifications?: boolean;
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
- supportedFieldTypes?: FieldType[];
110
+ fieldTypes?: FieldType[];
111
111
  /** Indicates if the external database supports storing collection display name. */
112
- supportsCollectionDisplayName?: boolean;
112
+ collectionDisplayNameSupported?: boolean;
113
113
  /** Indicates if the external database supports storing collection display field. */
114
- supportsCollectionDisplayField?: boolean;
114
+ collectionDisplayFieldSupported?: boolean;
115
115
  /** Indicates if the external database supports storing collection permissions. */
116
- supportsCollectionPermissions?: boolean;
116
+ collectionPermissionsSupported?: boolean;
117
117
  /** Indicates if the external database supports storing field display name. */
118
- supportsCollectionFieldDisplayName?: boolean;
118
+ collectionFieldDisplayNameSupported?: boolean;
119
119
  /** Indicates if the external database supports storing field description. */
120
- supportsCollectionFieldDescription?: boolean;
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
- supportsCollectionModifications: boolean;
189
- supportedFieldTypes: FieldType[];
190
- supportsCollectionDisplayName: boolean;
191
- supportsCollectionDisplayField: boolean;
192
- supportsCollectionPermissions: boolean;
193
- supportsCollectionFieldDisplayName: boolean;
194
- supportsCollectionFieldDescription: boolean;
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
- supportsCollectionModifications: boolean;
209
- supportedFieldTypes: FieldType[];
210
- supportsCollectionDisplayName: boolean;
211
- supportsCollectionDisplayField: boolean;
212
- supportsCollectionPermissions: boolean;
213
- supportsCollectionFieldDisplayName: boolean;
214
- supportsCollectionFieldDescription: boolean;
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
- supportsCollectionModifications: boolean;
229
- supportedFieldTypes: FieldType[];
230
- supportsCollectionDisplayName: boolean;
231
- supportsCollectionDisplayField: boolean;
232
- supportsCollectionPermissions: boolean;
233
- supportsCollectionFieldDisplayName: boolean;
234
- supportsCollectionFieldDescription: boolean;
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
- supportsCollectionModifications: boolean;
249
- supportedFieldTypes: FieldType[];
250
- supportsCollectionDisplayName: boolean;
251
- supportsCollectionDisplayField: boolean;
252
- supportsCollectionPermissions: boolean;
253
- supportsCollectionFieldDisplayName: boolean;
254
- supportsCollectionFieldDescription: boolean;
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
- supportsCollectionModifications?: boolean;
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
- supportedFieldTypes?: FieldType[];
116
+ fieldTypes?: FieldType[];
117
117
  /** Indicates if the external database supports storing collection display name. */
118
- supportsCollectionDisplayName?: boolean;
118
+ collectionDisplayNameSupported?: boolean;
119
119
  /** Indicates if the external database supports storing collection display field. */
120
- supportsCollectionDisplayField?: boolean;
120
+ collectionDisplayFieldSupported?: boolean;
121
121
  /** Indicates if the external database supports storing collection permissions. */
122
- supportsCollectionPermissions?: boolean;
122
+ collectionPermissionsSupported?: boolean;
123
123
  /** Indicates if the external database supports storing field display name. */
124
- supportsCollectionFieldDisplayName?: boolean;
124
+ collectionFieldDisplayNameSupported?: boolean;
125
125
  /** Indicates if the external database supports storing field description. */
126
- supportsCollectionFieldDescription?: boolean;
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.41",
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": "8ce35d2b93a4d4e93d92dd1deb5725cc4483e0cb3f0867e5704fb07f"
36
+ "falconPackageHash": "007b69b1e09039f193dd05b04a7684c6360ccc74cf95f9cd8eae7797"
37
37
  }