@wix/multilingual 1.0.83 → 1.0.84
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.84",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"@wix/multilingual_machine-translation": "1.0.37",
|
|
26
26
|
"@wix/multilingual_site-translator": "1.0.21",
|
|
27
27
|
"@wix/multilingual_translation-contents": "1.0.43",
|
|
28
|
-
"@wix/multilingual_translation-published-contents": "1.0.
|
|
29
|
-
"@wix/multilingual_translation-schemas": "1.0.
|
|
28
|
+
"@wix/multilingual_translation-published-contents": "1.0.21",
|
|
29
|
+
"@wix/multilingual_translation-schemas": "1.0.41"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"glob": "^10.4.1",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"fqdn": ""
|
|
52
52
|
}
|
|
53
53
|
},
|
|
54
|
-
"falconPackageHash": "
|
|
54
|
+
"falconPackageHash": "9c3c01d13654a33f1901f4e1a3bc08fb556c701140a8ac160844d52b"
|
|
55
55
|
}
|
|
@@ -2836,11 +2836,11 @@ interface PublishedContentCreatedEnvelope {
|
|
|
2836
2836
|
entity: PublishedContent;
|
|
2837
2837
|
metadata: EventMetadata$2;
|
|
2838
2838
|
}
|
|
2839
|
-
interface
|
|
2839
|
+
interface PublishedContentDeletedEnvelope {
|
|
2840
2840
|
entity: PublishedContent;
|
|
2841
2841
|
metadata: EventMetadata$2;
|
|
2842
2842
|
}
|
|
2843
|
-
interface
|
|
2843
|
+
interface PublishedContentUpdatedEnvelope {
|
|
2844
2844
|
entity: PublishedContent;
|
|
2845
2845
|
metadata: EventMetadata$2;
|
|
2846
2846
|
}
|
|
@@ -2929,8 +2929,8 @@ interface QueryPublishedContentSignature {
|
|
|
2929
2929
|
(): PublishedContentQueryBuilder;
|
|
2930
2930
|
}
|
|
2931
2931
|
declare const onPublishedContentCreated$1: EventDefinition<PublishedContentCreatedEnvelope, "wix.multilingual.localization_public.v3.published_content_created">;
|
|
2932
|
-
declare const onPublishedContentUpdated$1: EventDefinition<PublishedContentUpdatedEnvelope, "wix.multilingual.localization_public.v3.published_content_updated">;
|
|
2933
2932
|
declare const onPublishedContentDeleted$1: EventDefinition<PublishedContentDeletedEnvelope, "wix.multilingual.localization_public.v3.published_content_deleted">;
|
|
2933
|
+
declare const onPublishedContentUpdated$1: EventDefinition<PublishedContentUpdatedEnvelope, "wix.multilingual.localization_public.v3.published_content_updated">;
|
|
2934
2934
|
|
|
2935
2935
|
declare function createEventModule$2<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
2936
2936
|
|
|
@@ -2942,18 +2942,18 @@ type _publicOnPublishedContentCreatedType = typeof onPublishedContentCreated$1;
|
|
|
2942
2942
|
*/
|
|
2943
2943
|
declare const onPublishedContentCreated: ReturnType<typeof createEventModule$2<_publicOnPublishedContentCreatedType>>;
|
|
2944
2944
|
|
|
2945
|
-
type _publicOnPublishedContentUpdatedType = typeof onPublishedContentUpdated$1;
|
|
2946
|
-
/**
|
|
2947
|
-
* Triggered when published content is updated.
|
|
2948
|
-
*/
|
|
2949
|
-
declare const onPublishedContentUpdated: ReturnType<typeof createEventModule$2<_publicOnPublishedContentUpdatedType>>;
|
|
2950
|
-
|
|
2951
2945
|
type _publicOnPublishedContentDeletedType = typeof onPublishedContentDeleted$1;
|
|
2952
2946
|
/**
|
|
2953
2947
|
* Triggered when published content is deleted.
|
|
2954
2948
|
*/
|
|
2955
2949
|
declare const onPublishedContentDeleted: ReturnType<typeof createEventModule$2<_publicOnPublishedContentDeletedType>>;
|
|
2956
2950
|
|
|
2951
|
+
type _publicOnPublishedContentUpdatedType = typeof onPublishedContentUpdated$1;
|
|
2952
|
+
/**
|
|
2953
|
+
* Triggered when published content is updated.
|
|
2954
|
+
*/
|
|
2955
|
+
declare const onPublishedContentUpdated: ReturnType<typeof createEventModule$2<_publicOnPublishedContentUpdatedType>>;
|
|
2956
|
+
|
|
2957
2957
|
type context$4_ExtendedFields = ExtendedFields;
|
|
2958
2958
|
type context$4_GetPublishedContentRequest = GetPublishedContentRequest;
|
|
2959
2959
|
type context$4_GetPublishedContentResponse = GetPublishedContentResponse;
|
|
@@ -9397,11 +9397,11 @@ interface SchemaCreatedEnvelope {
|
|
|
9397
9397
|
entity: Schema;
|
|
9398
9398
|
metadata: EventMetadata;
|
|
9399
9399
|
}
|
|
9400
|
-
interface
|
|
9401
|
-
entity: Schema;
|
|
9400
|
+
interface SchemaDeletedEnvelope {
|
|
9402
9401
|
metadata: EventMetadata;
|
|
9403
9402
|
}
|
|
9404
|
-
interface
|
|
9403
|
+
interface SchemaUpdatedEnvelope {
|
|
9404
|
+
entity: Schema;
|
|
9405
9405
|
metadata: EventMetadata;
|
|
9406
9406
|
}
|
|
9407
9407
|
interface GetSchemaByKeyIdentifiers {
|
|
@@ -9629,8 +9629,8 @@ interface ListSiteSchemasSignature {
|
|
|
9629
9629
|
(options?: ListSiteSchemasOptions | undefined): Promise<ListSiteSchemasResponse & ListSiteSchemasResponseNonNullableFields>;
|
|
9630
9630
|
}
|
|
9631
9631
|
declare const onSchemaCreated$1: EventDefinition<SchemaCreatedEnvelope, "wix.multilingual.translation.v1.schema_created">;
|
|
9632
|
-
declare const onSchemaUpdated$1: EventDefinition<SchemaUpdatedEnvelope, "wix.multilingual.translation.v1.schema_updated">;
|
|
9633
9632
|
declare const onSchemaDeleted$1: EventDefinition<SchemaDeletedEnvelope, "wix.multilingual.translation.v1.schema_deleted">;
|
|
9633
|
+
declare const onSchemaUpdated$1: EventDefinition<SchemaUpdatedEnvelope, "wix.multilingual.translation.v1.schema_updated">;
|
|
9634
9634
|
|
|
9635
9635
|
declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
9636
9636
|
|
|
@@ -9648,18 +9648,18 @@ type _publicOnSchemaCreatedType = typeof onSchemaCreated$1;
|
|
|
9648
9648
|
*/
|
|
9649
9649
|
declare const onSchemaCreated: ReturnType<typeof createEventModule<_publicOnSchemaCreatedType>>;
|
|
9650
9650
|
|
|
9651
|
-
type _publicOnSchemaUpdatedType = typeof onSchemaUpdated$1;
|
|
9652
|
-
/**
|
|
9653
|
-
* Triggered when translation schema is updated.
|
|
9654
|
-
*/
|
|
9655
|
-
declare const onSchemaUpdated: ReturnType<typeof createEventModule<_publicOnSchemaUpdatedType>>;
|
|
9656
|
-
|
|
9657
9651
|
type _publicOnSchemaDeletedType = typeof onSchemaDeleted$1;
|
|
9658
9652
|
/**
|
|
9659
9653
|
* Triggered when translation schema is deleted.
|
|
9660
9654
|
*/
|
|
9661
9655
|
declare const onSchemaDeleted: ReturnType<typeof createEventModule<_publicOnSchemaDeletedType>>;
|
|
9662
9656
|
|
|
9657
|
+
type _publicOnSchemaUpdatedType = typeof onSchemaUpdated$1;
|
|
9658
|
+
/**
|
|
9659
|
+
* Triggered when translation schema is updated.
|
|
9660
|
+
*/
|
|
9661
|
+
declare const onSchemaUpdated: ReturnType<typeof createEventModule<_publicOnSchemaUpdatedType>>;
|
|
9662
|
+
|
|
9663
9663
|
type context_ActionEvent = ActionEvent;
|
|
9664
9664
|
type context_Asset = Asset;
|
|
9665
9665
|
type context_BaseEventMetadata = BaseEventMetadata;
|
|
@@ -2836,11 +2836,11 @@ interface PublishedContentCreatedEnvelope {
|
|
|
2836
2836
|
entity: PublishedContent;
|
|
2837
2837
|
metadata: EventMetadata$2;
|
|
2838
2838
|
}
|
|
2839
|
-
interface
|
|
2839
|
+
interface PublishedContentDeletedEnvelope {
|
|
2840
2840
|
entity: PublishedContent;
|
|
2841
2841
|
metadata: EventMetadata$2;
|
|
2842
2842
|
}
|
|
2843
|
-
interface
|
|
2843
|
+
interface PublishedContentUpdatedEnvelope {
|
|
2844
2844
|
entity: PublishedContent;
|
|
2845
2845
|
metadata: EventMetadata$2;
|
|
2846
2846
|
}
|
|
@@ -2929,8 +2929,8 @@ interface QueryPublishedContentSignature {
|
|
|
2929
2929
|
(): PublishedContentQueryBuilder;
|
|
2930
2930
|
}
|
|
2931
2931
|
declare const onPublishedContentCreated$1: EventDefinition<PublishedContentCreatedEnvelope, "wix.multilingual.localization_public.v3.published_content_created">;
|
|
2932
|
-
declare const onPublishedContentUpdated$1: EventDefinition<PublishedContentUpdatedEnvelope, "wix.multilingual.localization_public.v3.published_content_updated">;
|
|
2933
2932
|
declare const onPublishedContentDeleted$1: EventDefinition<PublishedContentDeletedEnvelope, "wix.multilingual.localization_public.v3.published_content_deleted">;
|
|
2933
|
+
declare const onPublishedContentUpdated$1: EventDefinition<PublishedContentUpdatedEnvelope, "wix.multilingual.localization_public.v3.published_content_updated">;
|
|
2934
2934
|
|
|
2935
2935
|
declare function createEventModule$2<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
2936
2936
|
|
|
@@ -2942,18 +2942,18 @@ type _publicOnPublishedContentCreatedType = typeof onPublishedContentCreated$1;
|
|
|
2942
2942
|
*/
|
|
2943
2943
|
declare const onPublishedContentCreated: ReturnType<typeof createEventModule$2<_publicOnPublishedContentCreatedType>>;
|
|
2944
2944
|
|
|
2945
|
-
type _publicOnPublishedContentUpdatedType = typeof onPublishedContentUpdated$1;
|
|
2946
|
-
/**
|
|
2947
|
-
* Triggered when published content is updated.
|
|
2948
|
-
*/
|
|
2949
|
-
declare const onPublishedContentUpdated: ReturnType<typeof createEventModule$2<_publicOnPublishedContentUpdatedType>>;
|
|
2950
|
-
|
|
2951
2945
|
type _publicOnPublishedContentDeletedType = typeof onPublishedContentDeleted$1;
|
|
2952
2946
|
/**
|
|
2953
2947
|
* Triggered when published content is deleted.
|
|
2954
2948
|
*/
|
|
2955
2949
|
declare const onPublishedContentDeleted: ReturnType<typeof createEventModule$2<_publicOnPublishedContentDeletedType>>;
|
|
2956
2950
|
|
|
2951
|
+
type _publicOnPublishedContentUpdatedType = typeof onPublishedContentUpdated$1;
|
|
2952
|
+
/**
|
|
2953
|
+
* Triggered when published content is updated.
|
|
2954
|
+
*/
|
|
2955
|
+
declare const onPublishedContentUpdated: ReturnType<typeof createEventModule$2<_publicOnPublishedContentUpdatedType>>;
|
|
2956
|
+
|
|
2957
2957
|
type index_d$4_ExtendedFields = ExtendedFields;
|
|
2958
2958
|
type index_d$4_GetPublishedContentRequest = GetPublishedContentRequest;
|
|
2959
2959
|
type index_d$4_GetPublishedContentResponse = GetPublishedContentResponse;
|
|
@@ -9397,11 +9397,11 @@ interface SchemaCreatedEnvelope {
|
|
|
9397
9397
|
entity: Schema;
|
|
9398
9398
|
metadata: EventMetadata;
|
|
9399
9399
|
}
|
|
9400
|
-
interface
|
|
9401
|
-
entity: Schema;
|
|
9400
|
+
interface SchemaDeletedEnvelope {
|
|
9402
9401
|
metadata: EventMetadata;
|
|
9403
9402
|
}
|
|
9404
|
-
interface
|
|
9403
|
+
interface SchemaUpdatedEnvelope {
|
|
9404
|
+
entity: Schema;
|
|
9405
9405
|
metadata: EventMetadata;
|
|
9406
9406
|
}
|
|
9407
9407
|
interface GetSchemaByKeyIdentifiers {
|
|
@@ -9629,8 +9629,8 @@ interface ListSiteSchemasSignature {
|
|
|
9629
9629
|
(options?: ListSiteSchemasOptions | undefined): Promise<ListSiteSchemasResponse & ListSiteSchemasResponseNonNullableFields>;
|
|
9630
9630
|
}
|
|
9631
9631
|
declare const onSchemaCreated$1: EventDefinition<SchemaCreatedEnvelope, "wix.multilingual.translation.v1.schema_created">;
|
|
9632
|
-
declare const onSchemaUpdated$1: EventDefinition<SchemaUpdatedEnvelope, "wix.multilingual.translation.v1.schema_updated">;
|
|
9633
9632
|
declare const onSchemaDeleted$1: EventDefinition<SchemaDeletedEnvelope, "wix.multilingual.translation.v1.schema_deleted">;
|
|
9633
|
+
declare const onSchemaUpdated$1: EventDefinition<SchemaUpdatedEnvelope, "wix.multilingual.translation.v1.schema_updated">;
|
|
9634
9634
|
|
|
9635
9635
|
declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
9636
9636
|
|
|
@@ -9648,18 +9648,18 @@ type _publicOnSchemaCreatedType = typeof onSchemaCreated$1;
|
|
|
9648
9648
|
*/
|
|
9649
9649
|
declare const onSchemaCreated: ReturnType<typeof createEventModule<_publicOnSchemaCreatedType>>;
|
|
9650
9650
|
|
|
9651
|
-
type _publicOnSchemaUpdatedType = typeof onSchemaUpdated$1;
|
|
9652
|
-
/**
|
|
9653
|
-
* Triggered when translation schema is updated.
|
|
9654
|
-
*/
|
|
9655
|
-
declare const onSchemaUpdated: ReturnType<typeof createEventModule<_publicOnSchemaUpdatedType>>;
|
|
9656
|
-
|
|
9657
9651
|
type _publicOnSchemaDeletedType = typeof onSchemaDeleted$1;
|
|
9658
9652
|
/**
|
|
9659
9653
|
* Triggered when translation schema is deleted.
|
|
9660
9654
|
*/
|
|
9661
9655
|
declare const onSchemaDeleted: ReturnType<typeof createEventModule<_publicOnSchemaDeletedType>>;
|
|
9662
9656
|
|
|
9657
|
+
type _publicOnSchemaUpdatedType = typeof onSchemaUpdated$1;
|
|
9658
|
+
/**
|
|
9659
|
+
* Triggered when translation schema is updated.
|
|
9660
|
+
*/
|
|
9661
|
+
declare const onSchemaUpdated: ReturnType<typeof createEventModule<_publicOnSchemaUpdatedType>>;
|
|
9662
|
+
|
|
9663
9663
|
type index_d_ActionEvent = ActionEvent;
|
|
9664
9664
|
type index_d_Asset = Asset;
|
|
9665
9665
|
type index_d_BaseEventMetadata = BaseEventMetadata;
|