@wix/data 1.0.173 → 1.0.174
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/data",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.174",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"@wix/data_collections": "1.0.60",
|
|
26
26
|
"@wix/data_external-database": "1.0.27",
|
|
27
27
|
"@wix/data_external-database-connections": "1.0.49",
|
|
28
|
-
"@wix/data_indexes": "1.0.
|
|
28
|
+
"@wix/data_indexes": "1.0.44",
|
|
29
29
|
"@wix/data_items": "1.0.60"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"fqdn": ""
|
|
52
52
|
}
|
|
53
53
|
},
|
|
54
|
-
"falconPackageHash": "
|
|
54
|
+
"falconPackageHash": "21ec79335f5f9407daa9f5f93bfe7a42dada475b1fa364b9b6318b38"
|
|
55
55
|
}
|
|
@@ -5071,12 +5071,9 @@ interface DropIndexRequest {
|
|
|
5071
5071
|
interface DropIndexResponse {
|
|
5072
5072
|
}
|
|
5073
5073
|
interface ListIndexesRequest {
|
|
5074
|
-
/**
|
|
5075
|
-
* ID of the data collection for which to list indexes.
|
|
5076
|
-
*
|
|
5077
|
-
*/
|
|
5074
|
+
/** ID of the data collection for which to list indexes. */
|
|
5078
5075
|
dataCollectionId: string;
|
|
5079
|
-
/**
|
|
5076
|
+
/** Paging options to limit and skip the number of items. */
|
|
5080
5077
|
paging?: Paging;
|
|
5081
5078
|
}
|
|
5082
5079
|
interface Paging {
|
|
@@ -5088,7 +5085,7 @@ interface Paging {
|
|
|
5088
5085
|
interface ListIndexesResponse {
|
|
5089
5086
|
/** List of all indexes for the requested data collection. */
|
|
5090
5087
|
indexes?: Index[];
|
|
5091
|
-
/** Paging metadata */
|
|
5088
|
+
/** Paging metadata. */
|
|
5092
5089
|
pagingMetadata?: PagingMetadata;
|
|
5093
5090
|
}
|
|
5094
5091
|
interface PagingMetadata {
|
|
@@ -5142,7 +5139,7 @@ interface ListIndexesResponseNonNullableFields {
|
|
|
5142
5139
|
indexes: IndexNonNullableFields[];
|
|
5143
5140
|
}
|
|
5144
5141
|
interface ListIndexesOptions {
|
|
5145
|
-
/**
|
|
5142
|
+
/** Paging options to limit and skip the number of items. */
|
|
5146
5143
|
paging?: Paging;
|
|
5147
5144
|
}
|
|
5148
5145
|
|
|
@@ -5152,10 +5149,10 @@ interface CreateIndexSignature {
|
|
|
5152
5149
|
* Creates an index for a data collection.
|
|
5153
5150
|
*
|
|
5154
5151
|
* The index can't be used immediately, as the process of generating the index takes time.
|
|
5155
|
-
* You can check whether
|
|
5152
|
+
* You can check whether an index is ready by calling List Indexes.
|
|
5156
5153
|
*
|
|
5157
5154
|
* Note that when an index fails to create, the failed index still occupies a slot.
|
|
5158
|
-
* To remove the failed index and free up the slot for a new index,
|
|
5155
|
+
* To remove the failed index and free up the slot for a new index, call Drop Index.
|
|
5159
5156
|
* @param - ID of the data collection for which to generate the index.
|
|
5160
5157
|
* @param - Details of the index to be created.
|
|
5161
5158
|
* @param - Options for creating an index.
|
|
@@ -5169,7 +5166,7 @@ interface DropIndexSignature {
|
|
|
5169
5166
|
* Removes an index from a data collection.
|
|
5170
5167
|
*
|
|
5171
5168
|
* The process of dropping an index from a collection takes time.
|
|
5172
|
-
* You can check whether
|
|
5169
|
+
* You can check whether an index has been dropped by calling List Indexes.
|
|
5173
5170
|
* @param - ID of the data collection for which the index to be dropped is defined.
|
|
5174
5171
|
* @param - Name of the index to drop.
|
|
5175
5172
|
* @param - Options for dropping an index.
|
|
@@ -5071,12 +5071,9 @@ interface DropIndexRequest {
|
|
|
5071
5071
|
interface DropIndexResponse {
|
|
5072
5072
|
}
|
|
5073
5073
|
interface ListIndexesRequest {
|
|
5074
|
-
/**
|
|
5075
|
-
* ID of the data collection for which to list indexes.
|
|
5076
|
-
*
|
|
5077
|
-
*/
|
|
5074
|
+
/** ID of the data collection for which to list indexes. */
|
|
5078
5075
|
dataCollectionId: string;
|
|
5079
|
-
/**
|
|
5076
|
+
/** Paging options to limit and skip the number of items. */
|
|
5080
5077
|
paging?: Paging;
|
|
5081
5078
|
}
|
|
5082
5079
|
interface Paging {
|
|
@@ -5088,7 +5085,7 @@ interface Paging {
|
|
|
5088
5085
|
interface ListIndexesResponse {
|
|
5089
5086
|
/** List of all indexes for the requested data collection. */
|
|
5090
5087
|
indexes?: Index[];
|
|
5091
|
-
/** Paging metadata */
|
|
5088
|
+
/** Paging metadata. */
|
|
5092
5089
|
pagingMetadata?: PagingMetadata;
|
|
5093
5090
|
}
|
|
5094
5091
|
interface PagingMetadata {
|
|
@@ -5142,7 +5139,7 @@ interface ListIndexesResponseNonNullableFields {
|
|
|
5142
5139
|
indexes: IndexNonNullableFields[];
|
|
5143
5140
|
}
|
|
5144
5141
|
interface ListIndexesOptions {
|
|
5145
|
-
/**
|
|
5142
|
+
/** Paging options to limit and skip the number of items. */
|
|
5146
5143
|
paging?: Paging;
|
|
5147
5144
|
}
|
|
5148
5145
|
|
|
@@ -5152,10 +5149,10 @@ interface CreateIndexSignature {
|
|
|
5152
5149
|
* Creates an index for a data collection.
|
|
5153
5150
|
*
|
|
5154
5151
|
* The index can't be used immediately, as the process of generating the index takes time.
|
|
5155
|
-
* You can check whether
|
|
5152
|
+
* You can check whether an index is ready by calling List Indexes.
|
|
5156
5153
|
*
|
|
5157
5154
|
* Note that when an index fails to create, the failed index still occupies a slot.
|
|
5158
|
-
* To remove the failed index and free up the slot for a new index,
|
|
5155
|
+
* To remove the failed index and free up the slot for a new index, call Drop Index.
|
|
5159
5156
|
* @param - ID of the data collection for which to generate the index.
|
|
5160
5157
|
* @param - Details of the index to be created.
|
|
5161
5158
|
* @param - Options for creating an index.
|
|
@@ -5169,7 +5166,7 @@ interface DropIndexSignature {
|
|
|
5169
5166
|
* Removes an index from a data collection.
|
|
5170
5167
|
*
|
|
5171
5168
|
* The process of dropping an index from a collection takes time.
|
|
5172
|
-
* You can check whether
|
|
5169
|
+
* You can check whether an index has been dropped by calling List Indexes.
|
|
5173
5170
|
* @param - ID of the data collection for which the index to be dropped is defined.
|
|
5174
5171
|
* @param - Name of the index to drop.
|
|
5175
5172
|
* @param - Options for dropping an index.
|
|
@@ -4379,7 +4379,7 @@ interface Failure$1 {
|
|
|
4379
4379
|
interface CreateIndexRequest$1 {
|
|
4380
4380
|
/** Details of the index to be created. */
|
|
4381
4381
|
index: Index$1;
|
|
4382
|
-
/** ID of the
|
|
4382
|
+
/** ID of the data collection for which to generate the index. */
|
|
4383
4383
|
dataCollectionId: string;
|
|
4384
4384
|
}
|
|
4385
4385
|
interface CreateIndexResponse$1 {
|
|
@@ -4389,15 +4389,15 @@ interface CreateIndexResponse$1 {
|
|
|
4389
4389
|
interface DropIndexRequest$1 {
|
|
4390
4390
|
/** Name of the index to drop. */
|
|
4391
4391
|
indexName: string;
|
|
4392
|
-
/** ID of the
|
|
4392
|
+
/** ID of the data collection for which the index to be dropped is defined. */
|
|
4393
4393
|
dataCollectionId: string;
|
|
4394
4394
|
}
|
|
4395
4395
|
interface DropIndexResponse$1 {
|
|
4396
4396
|
}
|
|
4397
4397
|
interface ListIndexesRequest$1 {
|
|
4398
|
-
/** ID of the
|
|
4398
|
+
/** ID of the data collection for which to list indexes. */
|
|
4399
4399
|
dataCollectionId: string;
|
|
4400
|
-
/**
|
|
4400
|
+
/** Paging options to limit and skip the number of items. */
|
|
4401
4401
|
paging?: Paging$1;
|
|
4402
4402
|
}
|
|
4403
4403
|
interface Paging$1 {
|
|
@@ -4409,7 +4409,7 @@ interface Paging$1 {
|
|
|
4409
4409
|
interface ListIndexesResponse$1 {
|
|
4410
4410
|
/** List of all indexes for the requested data collection. */
|
|
4411
4411
|
indexes?: Index$1[];
|
|
4412
|
-
/** Paging metadata */
|
|
4412
|
+
/** Paging metadata. */
|
|
4413
4413
|
pagingMetadata?: PagingMetadata$1;
|
|
4414
4414
|
}
|
|
4415
4415
|
interface PagingMetadata$1 {
|
|
@@ -4549,12 +4549,9 @@ interface DropIndexRequest {
|
|
|
4549
4549
|
interface DropIndexResponse {
|
|
4550
4550
|
}
|
|
4551
4551
|
interface ListIndexesRequest {
|
|
4552
|
-
/**
|
|
4553
|
-
* ID of the data collection for which to list indexes.
|
|
4554
|
-
*
|
|
4555
|
-
*/
|
|
4552
|
+
/** ID of the data collection for which to list indexes. */
|
|
4556
4553
|
dataCollectionId: string;
|
|
4557
|
-
/**
|
|
4554
|
+
/** Paging options to limit and skip the number of items. */
|
|
4558
4555
|
paging?: Paging;
|
|
4559
4556
|
}
|
|
4560
4557
|
interface Paging {
|
|
@@ -4566,7 +4563,7 @@ interface Paging {
|
|
|
4566
4563
|
interface ListIndexesResponse {
|
|
4567
4564
|
/** List of all indexes for the requested data collection. */
|
|
4568
4565
|
indexes?: Index[];
|
|
4569
|
-
/** Paging metadata */
|
|
4566
|
+
/** Paging metadata. */
|
|
4570
4567
|
pagingMetadata?: PagingMetadata;
|
|
4571
4568
|
}
|
|
4572
4569
|
interface PagingMetadata {
|