@wix/multilingual 1.0.65 → 1.0.67
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.67",
|
|
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.35",
|
|
25
25
|
"@wix/multilingual_translation-published-contents": "1.0.13",
|
|
26
|
-
"@wix/multilingual_translation-schemas": "1.0.
|
|
26
|
+
"@wix/multilingual_translation-schemas": "1.0.31"
|
|
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": "a4cbc9ed7cc0bdca3a43addbaca2f6f37f6d9d84ec40515e38c007c1"
|
|
52
52
|
}
|
|
@@ -7379,7 +7379,10 @@ interface MetaSiteSpecialEvent$1 extends MetaSiteSpecialEventPayloadOneOf$1 {
|
|
|
7379
7379
|
version?: string;
|
|
7380
7380
|
/** A timestamp of the event. */
|
|
7381
7381
|
timestamp?: string;
|
|
7382
|
-
/**
|
|
7382
|
+
/**
|
|
7383
|
+
* TODO(meta-site): Change validation once validations are disabled for consumers
|
|
7384
|
+
* More context: https://wix.slack.com/archives/C0UHEBPFT/p1720957844413149 and https://wix.slack.com/archives/CFWKX325T/p1728892152855659
|
|
7385
|
+
*/
|
|
7383
7386
|
assets?: Asset$1[];
|
|
7384
7387
|
}
|
|
7385
7388
|
/** @oneof */
|
|
@@ -8125,7 +8128,7 @@ interface QueryContentsSignature {
|
|
|
8125
8128
|
* `queryContents()` runs with the following `ContentsQueryBuilder` defaults which you can override:
|
|
8126
8129
|
*
|
|
8127
8130
|
* + [`limit(100)`](https://dev.wix.com/docs/sdk/backend-modules/multilingual/translation/translation-content/contents-query-builder/limit)
|
|
8128
|
-
* + [`ascending('
|
|
8131
|
+
* + [`ascending('_id')`](https://dev.wix.com/docs/sdk/backend-modules/multilingual/translation/translation-content/contents-query-builder/ascending)
|
|
8129
8132
|
*
|
|
8130
8133
|
* The following `ContentsQueryBuilder` functions are supported for `queryContents()`. 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-content/contents-query-result/items) property in `ContentsQueryResult`.
|
|
8131
8134
|
*/
|
|
@@ -8854,7 +8857,10 @@ interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
|
|
|
8854
8857
|
version?: string;
|
|
8855
8858
|
/** A timestamp of the event. */
|
|
8856
8859
|
timestamp?: string;
|
|
8857
|
-
/**
|
|
8860
|
+
/**
|
|
8861
|
+
* TODO(meta-site): Change validation once validations are disabled for consumers
|
|
8862
|
+
* More context: https://wix.slack.com/archives/C0UHEBPFT/p1720957844413149 and https://wix.slack.com/archives/CFWKX325T/p1728892152855659
|
|
8863
|
+
*/
|
|
8858
8864
|
assets?: Asset[];
|
|
8859
8865
|
}
|
|
8860
8866
|
/** @oneof */
|
|
@@ -9488,16 +9494,24 @@ interface DeleteSchemaSignature {
|
|
|
9488
9494
|
declare function querySchemas$1(httpClient: HttpClient): QuerySchemasSignature;
|
|
9489
9495
|
interface QuerySchemasSignature {
|
|
9490
9496
|
/**
|
|
9491
|
-
*
|
|
9497
|
+
* Creates a query to retrieve a list of schemas.
|
|
9492
9498
|
*
|
|
9493
9499
|
* > **Note:**
|
|
9494
9500
|
* >
|
|
9495
9501
|
* > 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
9502
|
*
|
|
9497
|
-
* The
|
|
9503
|
+
* The `querySchemas()` function builds a query to retrieve a list of translation schemas and returns a `SchemasQueryBuilder` object.
|
|
9504
|
+
*
|
|
9505
|
+
* 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.
|
|
9506
|
+
*
|
|
9507
|
+
* 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.
|
|
9508
|
+
*
|
|
9509
|
+
* `querySchemas()` runs with the following `SchemasQueryBuilder` defaults which you can override:
|
|
9510
|
+
*
|
|
9511
|
+
* + [`limit(100)`](https://dev.wix.com/docs/sdk/backend-modules/multilingual/translation/translation-schema/schemas-query-builder/limit)
|
|
9512
|
+
* + [`ascending('_id')`](https://dev.wix.com/docs/sdk/backend-modules/multilingual/translation/translation-schema/schemas-query-builder/ascending)
|
|
9498
9513
|
*
|
|
9499
|
-
* For a
|
|
9500
|
-
* To learn how to query translation schemas, see [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language).
|
|
9514
|
+
* 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
9515
|
*/
|
|
9502
9516
|
(options?: QuerySchemasOptions | undefined): SchemasQueryBuilder;
|
|
9503
9517
|
}
|
|
@@ -7379,7 +7379,10 @@ interface MetaSiteSpecialEvent$1 extends MetaSiteSpecialEventPayloadOneOf$1 {
|
|
|
7379
7379
|
version?: string;
|
|
7380
7380
|
/** A timestamp of the event. */
|
|
7381
7381
|
timestamp?: string;
|
|
7382
|
-
/**
|
|
7382
|
+
/**
|
|
7383
|
+
* TODO(meta-site): Change validation once validations are disabled for consumers
|
|
7384
|
+
* More context: https://wix.slack.com/archives/C0UHEBPFT/p1720957844413149 and https://wix.slack.com/archives/CFWKX325T/p1728892152855659
|
|
7385
|
+
*/
|
|
7383
7386
|
assets?: Asset$1[];
|
|
7384
7387
|
}
|
|
7385
7388
|
/** @oneof */
|
|
@@ -8125,7 +8128,7 @@ interface QueryContentsSignature {
|
|
|
8125
8128
|
* `queryContents()` runs with the following `ContentsQueryBuilder` defaults which you can override:
|
|
8126
8129
|
*
|
|
8127
8130
|
* + [`limit(100)`](https://dev.wix.com/docs/sdk/backend-modules/multilingual/translation/translation-content/contents-query-builder/limit)
|
|
8128
|
-
* + [`ascending('
|
|
8131
|
+
* + [`ascending('_id')`](https://dev.wix.com/docs/sdk/backend-modules/multilingual/translation/translation-content/contents-query-builder/ascending)
|
|
8129
8132
|
*
|
|
8130
8133
|
* The following `ContentsQueryBuilder` functions are supported for `queryContents()`. 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-content/contents-query-result/items) property in `ContentsQueryResult`.
|
|
8131
8134
|
*/
|
|
@@ -8854,7 +8857,10 @@ interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
|
|
|
8854
8857
|
version?: string;
|
|
8855
8858
|
/** A timestamp of the event. */
|
|
8856
8859
|
timestamp?: string;
|
|
8857
|
-
/**
|
|
8860
|
+
/**
|
|
8861
|
+
* TODO(meta-site): Change validation once validations are disabled for consumers
|
|
8862
|
+
* More context: https://wix.slack.com/archives/C0UHEBPFT/p1720957844413149 and https://wix.slack.com/archives/CFWKX325T/p1728892152855659
|
|
8863
|
+
*/
|
|
8858
8864
|
assets?: Asset[];
|
|
8859
8865
|
}
|
|
8860
8866
|
/** @oneof */
|
|
@@ -9488,16 +9494,24 @@ interface DeleteSchemaSignature {
|
|
|
9488
9494
|
declare function querySchemas$1(httpClient: HttpClient): QuerySchemasSignature;
|
|
9489
9495
|
interface QuerySchemasSignature {
|
|
9490
9496
|
/**
|
|
9491
|
-
*
|
|
9497
|
+
* Creates a query to retrieve a list of schemas.
|
|
9492
9498
|
*
|
|
9493
9499
|
* > **Note:**
|
|
9494
9500
|
* >
|
|
9495
9501
|
* > 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
9502
|
*
|
|
9497
|
-
* The
|
|
9503
|
+
* The `querySchemas()` function builds a query to retrieve a list of translation schemas and returns a `SchemasQueryBuilder` object.
|
|
9504
|
+
*
|
|
9505
|
+
* 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.
|
|
9506
|
+
*
|
|
9507
|
+
* 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.
|
|
9508
|
+
*
|
|
9509
|
+
* `querySchemas()` runs with the following `SchemasQueryBuilder` defaults which you can override:
|
|
9510
|
+
*
|
|
9511
|
+
* + [`limit(100)`](https://dev.wix.com/docs/sdk/backend-modules/multilingual/translation/translation-schema/schemas-query-builder/limit)
|
|
9512
|
+
* + [`ascending('_id')`](https://dev.wix.com/docs/sdk/backend-modules/multilingual/translation/translation-schema/schemas-query-builder/ascending)
|
|
9498
9513
|
*
|
|
9499
|
-
* For a
|
|
9500
|
-
* To learn how to query translation schemas, see [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language).
|
|
9514
|
+
* 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
9515
|
*/
|
|
9502
9516
|
(options?: QuerySchemasOptions | undefined): SchemasQueryBuilder;
|
|
9503
9517
|
}
|