@wix/multilingual 1.0.64 → 1.0.66
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/multilingual",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.66",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"@wix/multilingual_entity-mapper": "1.0.17",
|
|
22
22
|
"@wix/multilingual_machine-translation": "1.0.31",
|
|
23
23
|
"@wix/multilingual_site-translator": "1.0.16",
|
|
24
|
-
"@wix/multilingual_translation-contents": "1.0.
|
|
24
|
+
"@wix/multilingual_translation-contents": "1.0.34",
|
|
25
25
|
"@wix/multilingual_translation-published-contents": "1.0.13",
|
|
26
|
-
"@wix/multilingual_translation-schemas": "1.0.
|
|
26
|
+
"@wix/multilingual_translation-schemas": "1.0.30"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"glob": "^10.4.1",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"fqdn": ""
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
|
-
"falconPackageHash": "
|
|
51
|
+
"falconPackageHash": "13ad65f25f1793fb95c24ac531d092334063cfcff7cafc3eb8732625"
|
|
52
52
|
}
|
|
@@ -9488,16 +9488,24 @@ interface DeleteSchemaSignature {
|
|
|
9488
9488
|
declare function querySchemas$1(httpClient: HttpClient): QuerySchemasSignature;
|
|
9489
9489
|
interface QuerySchemasSignature {
|
|
9490
9490
|
/**
|
|
9491
|
-
*
|
|
9491
|
+
* Creates a query to retrieve a list of schemas.
|
|
9492
9492
|
*
|
|
9493
9493
|
* > **Note:**
|
|
9494
9494
|
* >
|
|
9495
9495
|
* > This method can retrieve all schemas with a `GLOBAL` scope and schemas with a `SITE` scope for the site the API request is authorized to access.
|
|
9496
9496
|
*
|
|
9497
|
-
* The
|
|
9497
|
+
* The `querySchemas()` function builds a query to retrieve a list of translation schemas and returns a `SchemasQueryBuilder` object.
|
|
9498
9498
|
*
|
|
9499
|
-
*
|
|
9500
|
-
*
|
|
9499
|
+
* The returned object contains the query definition, which is used to run the query using the [`find()`](https://dev.wix.com/docs/sdk/backend-modules/multilingual/translation/translation-schema/schemas-query-builder/find) function.
|
|
9500
|
+
*
|
|
9501
|
+
* You can refine the query by chaining `SchemasQueryBuilder` functions onto the query. `SchemasQueryBuilder` functions enable you to filter, sort, and control the results that `querySchemas()` returns.
|
|
9502
|
+
*
|
|
9503
|
+
* `querySchemas()` runs with the following `SchemasQueryBuilder` defaults which you can override:
|
|
9504
|
+
*
|
|
9505
|
+
* + [`limit(100)`](https://dev.wix.com/docs/sdk/backend-modules/multilingual/translation/translation-schema/schemas-query-builder/limit)
|
|
9506
|
+
* + [`ascending('_id')`](https://dev.wix.com/docs/sdk/backend-modules/multilingual/translation/translation-schema/schemas-query-builder/ascending)
|
|
9507
|
+
*
|
|
9508
|
+
* The following `SchemasQueryBuilder` functions are supported for `querySchemas()`. For a full description of the operations object, see the object returned for the [`items`](https://dev.wix.com/docs/sdk/backend-modules/multilingual/translation/translation-schema/schemas-query-result/items) property in `SchemasQueryResult`.
|
|
9501
9509
|
*/
|
|
9502
9510
|
(options?: QuerySchemasOptions | undefined): SchemasQueryBuilder;
|
|
9503
9511
|
}
|
|
@@ -9488,16 +9488,24 @@ interface DeleteSchemaSignature {
|
|
|
9488
9488
|
declare function querySchemas$1(httpClient: HttpClient): QuerySchemasSignature;
|
|
9489
9489
|
interface QuerySchemasSignature {
|
|
9490
9490
|
/**
|
|
9491
|
-
*
|
|
9491
|
+
* Creates a query to retrieve a list of schemas.
|
|
9492
9492
|
*
|
|
9493
9493
|
* > **Note:**
|
|
9494
9494
|
* >
|
|
9495
9495
|
* > This method can retrieve all schemas with a `GLOBAL` scope and schemas with a `SITE` scope for the site the API request is authorized to access.
|
|
9496
9496
|
*
|
|
9497
|
-
* The
|
|
9497
|
+
* The `querySchemas()` function builds a query to retrieve a list of translation schemas and returns a `SchemasQueryBuilder` object.
|
|
9498
9498
|
*
|
|
9499
|
-
*
|
|
9500
|
-
*
|
|
9499
|
+
* The returned object contains the query definition, which is used to run the query using the [`find()`](https://dev.wix.com/docs/sdk/backend-modules/multilingual/translation/translation-schema/schemas-query-builder/find) function.
|
|
9500
|
+
*
|
|
9501
|
+
* You can refine the query by chaining `SchemasQueryBuilder` functions onto the query. `SchemasQueryBuilder` functions enable you to filter, sort, and control the results that `querySchemas()` returns.
|
|
9502
|
+
*
|
|
9503
|
+
* `querySchemas()` runs with the following `SchemasQueryBuilder` defaults which you can override:
|
|
9504
|
+
*
|
|
9505
|
+
* + [`limit(100)`](https://dev.wix.com/docs/sdk/backend-modules/multilingual/translation/translation-schema/schemas-query-builder/limit)
|
|
9506
|
+
* + [`ascending('_id')`](https://dev.wix.com/docs/sdk/backend-modules/multilingual/translation/translation-schema/schemas-query-builder/ascending)
|
|
9507
|
+
*
|
|
9508
|
+
* The following `SchemasQueryBuilder` functions are supported for `querySchemas()`. For a full description of the operations object, see the object returned for the [`items`](https://dev.wix.com/docs/sdk/backend-modules/multilingual/translation/translation-schema/schemas-query-result/items) property in `SchemasQueryResult`.
|
|
9501
9509
|
*/
|
|
9502
9510
|
(options?: QuerySchemasOptions | undefined): SchemasQueryBuilder;
|
|
9503
9511
|
}
|