@wix/multilingual 1.0.43 → 1.0.45

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.43",
3
+ "version": "1.0.45",
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.11",
22
22
  "@wix/multilingual_machine-translation": "1.0.27",
23
23
  "@wix/multilingual_site-translator": "1.0.12",
24
- "@wix/multilingual_translation-contents": "1.0.19",
24
+ "@wix/multilingual_translation-contents": "1.0.20",
25
25
  "@wix/multilingual_translation-published-contents": "1.0.6",
26
- "@wix/multilingual_translation-schemas": "1.0.16"
26
+ "@wix/multilingual_translation-schemas": "1.0.18"
27
27
  },
28
28
  "devDependencies": {
29
29
  "glob": "^10.4.1",
@@ -48,5 +48,5 @@
48
48
  "fqdn": ""
49
49
  }
50
50
  },
51
- "falconPackageHash": "7b8581ac40c10abef2b08cf30c65905f341405c0c875b4b9853234cf"
51
+ "falconPackageHash": "2f4153c3a7f794959e0fbc867e9ae78c377f1234995ac358490b1607"
52
52
  }
@@ -7112,7 +7112,9 @@ declare enum Namespace$1 {
7112
7112
  * UGC Templates are templates that are created by users for personal use and to sale to other users.
7113
7113
  * The Partners company owns this namespace.
7114
7114
  */
7115
- UGC_TEMPLATE = "UGC_TEMPLATE"
7115
+ UGC_TEMPLATE = "UGC_TEMPLATE",
7116
+ /** Codux Headless Sites */
7117
+ CODUX = "CODUX"
7116
7118
  }
7117
7119
  /** Site transferred to another user. */
7118
7120
  interface SiteTransferred$1 {
@@ -7165,6 +7167,8 @@ interface ServiceProvisioned$1 {
7165
7167
  originInstanceId?: string;
7166
7168
  /** A version. */
7167
7169
  version?: string | null;
7170
+ /** The origin meta site id */
7171
+ originMetaSiteId?: string | null;
7168
7172
  }
7169
7173
  interface ServiceRemoved$1 {
7170
7174
  /** Either UUID or EmbeddedServiceType. */
@@ -8313,6 +8317,17 @@ interface Cursors {
8313
8317
  interface ListSiteSchemasRequest {
8314
8318
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
8315
8319
  paging?: CursorPaging;
8320
+ /** ID of app that created the schema. */
8321
+ appId?: string | null;
8322
+ /** A unique name defined by the app developer to differentiate translation schemas for various entities within their app. For example, if an app developer is creating a translation schema for blog posts, the `entityType` can be `'blog-posts'`. */
8323
+ entityType?: string | null;
8324
+ /**
8325
+ * Scope of the translation schema.
8326
+ * Supported values:
8327
+ * + `GLOBAL`: A global schema for all sites.
8328
+ * + `SITE`: A custom schema for a specific site.
8329
+ */
8330
+ scope?: SchemaScope;
8316
8331
  }
8317
8332
  interface ListSiteSchemasResponse {
8318
8333
  /** List of translation schemas. */
@@ -8506,7 +8521,9 @@ declare enum Namespace {
8506
8521
  * UGC Templates are templates that are created by users for personal use and to sale to other users.
8507
8522
  * The Partners company owns this namespace.
8508
8523
  */
8509
- UGC_TEMPLATE = "UGC_TEMPLATE"
8524
+ UGC_TEMPLATE = "UGC_TEMPLATE",
8525
+ /** Codux Headless Sites */
8526
+ CODUX = "CODUX"
8510
8527
  }
8511
8528
  /** Site transferred to another user. */
8512
8529
  interface SiteTransferred {
@@ -8559,6 +8576,8 @@ interface ServiceProvisioned {
8559
8576
  originInstanceId?: string;
8560
8577
  /** A version. */
8561
8578
  version?: string | null;
8579
+ /** The origin meta site id */
8580
+ originMetaSiteId?: string | null;
8562
8581
  }
8563
8582
  interface ServiceRemoved {
8564
8583
  /** Either UUID or EmbeddedServiceType. */
@@ -8865,6 +8884,17 @@ interface SchemasQueryBuilder {
8865
8884
  interface ListSiteSchemasOptions {
8866
8885
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
8867
8886
  paging?: CursorPaging;
8887
+ /** ID of app that created the schema. */
8888
+ appId?: string | null;
8889
+ /** A unique name defined by the app developer to differentiate translation schemas for various entities within their app. For example, if an app developer is creating a translation schema for blog posts, the `entityType` can be `'blog-posts'`. */
8890
+ entityType?: string | null;
8891
+ /**
8892
+ * Scope of the translation schema.
8893
+ * Supported values:
8894
+ * + `GLOBAL`: A global schema for all sites.
8895
+ * + `SITE`: A custom schema for a specific site.
8896
+ */
8897
+ scope?: SchemaScope;
8868
8898
  }
8869
8899
 
8870
8900
  declare function getSchema$1(httpClient: HttpClient): GetSchemaSignature;
@@ -7112,7 +7112,9 @@ declare enum Namespace$1 {
7112
7112
  * UGC Templates are templates that are created by users for personal use and to sale to other users.
7113
7113
  * The Partners company owns this namespace.
7114
7114
  */
7115
- UGC_TEMPLATE = "UGC_TEMPLATE"
7115
+ UGC_TEMPLATE = "UGC_TEMPLATE",
7116
+ /** Codux Headless Sites */
7117
+ CODUX = "CODUX"
7116
7118
  }
7117
7119
  /** Site transferred to another user. */
7118
7120
  interface SiteTransferred$1 {
@@ -7165,6 +7167,8 @@ interface ServiceProvisioned$1 {
7165
7167
  originInstanceId?: string;
7166
7168
  /** A version. */
7167
7169
  version?: string | null;
7170
+ /** The origin meta site id */
7171
+ originMetaSiteId?: string | null;
7168
7172
  }
7169
7173
  interface ServiceRemoved$1 {
7170
7174
  /** Either UUID or EmbeddedServiceType. */
@@ -8313,6 +8317,17 @@ interface Cursors {
8313
8317
  interface ListSiteSchemasRequest {
8314
8318
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
8315
8319
  paging?: CursorPaging;
8320
+ /** ID of app that created the schema. */
8321
+ appId?: string | null;
8322
+ /** A unique name defined by the app developer to differentiate translation schemas for various entities within their app. For example, if an app developer is creating a translation schema for blog posts, the `entityType` can be `'blog-posts'`. */
8323
+ entityType?: string | null;
8324
+ /**
8325
+ * Scope of the translation schema.
8326
+ * Supported values:
8327
+ * + `GLOBAL`: A global schema for all sites.
8328
+ * + `SITE`: A custom schema for a specific site.
8329
+ */
8330
+ scope?: SchemaScope;
8316
8331
  }
8317
8332
  interface ListSiteSchemasResponse {
8318
8333
  /** List of translation schemas. */
@@ -8506,7 +8521,9 @@ declare enum Namespace {
8506
8521
  * UGC Templates are templates that are created by users for personal use and to sale to other users.
8507
8522
  * The Partners company owns this namespace.
8508
8523
  */
8509
- UGC_TEMPLATE = "UGC_TEMPLATE"
8524
+ UGC_TEMPLATE = "UGC_TEMPLATE",
8525
+ /** Codux Headless Sites */
8526
+ CODUX = "CODUX"
8510
8527
  }
8511
8528
  /** Site transferred to another user. */
8512
8529
  interface SiteTransferred {
@@ -8559,6 +8576,8 @@ interface ServiceProvisioned {
8559
8576
  originInstanceId?: string;
8560
8577
  /** A version. */
8561
8578
  version?: string | null;
8579
+ /** The origin meta site id */
8580
+ originMetaSiteId?: string | null;
8562
8581
  }
8563
8582
  interface ServiceRemoved {
8564
8583
  /** Either UUID or EmbeddedServiceType. */
@@ -8865,6 +8884,17 @@ interface SchemasQueryBuilder {
8865
8884
  interface ListSiteSchemasOptions {
8866
8885
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
8867
8886
  paging?: CursorPaging;
8887
+ /** ID of app that created the schema. */
8888
+ appId?: string | null;
8889
+ /** A unique name defined by the app developer to differentiate translation schemas for various entities within their app. For example, if an app developer is creating a translation schema for blog posts, the `entityType` can be `'blog-posts'`. */
8890
+ entityType?: string | null;
8891
+ /**
8892
+ * Scope of the translation schema.
8893
+ * Supported values:
8894
+ * + `GLOBAL`: A global schema for all sites.
8895
+ * + `SITE`: A custom schema for a specific site.
8896
+ */
8897
+ scope?: SchemaScope;
8868
8898
  }
8869
8899
 
8870
8900
  declare function getSchema$1(httpClient: HttpClient): GetSchemaSignature;
@@ -12304,6 +12304,17 @@ interface Cursors$1 {
12304
12304
  interface ListSiteSchemasRequest$1 {
12305
12305
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
12306
12306
  paging?: CursorPaging$1;
12307
+ /** ID of app that created the schema. */
12308
+ appId?: string | null;
12309
+ /** A unique name defined by the app developer to differentiate translation schemas for various entities within their app. For example, if an app developer is creating a translation schema for blog posts, the `entityType` can be `'blog-posts'`. */
12310
+ entityType?: string | null;
12311
+ /**
12312
+ * Scope of the translation schema.
12313
+ * Supported values:
12314
+ * + `GLOBAL`: A global schema for all sites.
12315
+ * + `SITE`: A custom schema for a specific site.
12316
+ */
12317
+ scope?: SchemaScope$1;
12307
12318
  }
12308
12319
  interface ListSiteSchemasResponse$1 {
12309
12320
  /** List of translation schemas. */
@@ -12550,6 +12561,17 @@ interface Cursors {
12550
12561
  interface ListSiteSchemasRequest {
12551
12562
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
12552
12563
  paging?: CursorPaging;
12564
+ /** ID of app that created the schema. */
12565
+ appId?: string | null;
12566
+ /** A unique name defined by the app developer to differentiate translation schemas for various entities within their app. For example, if an app developer is creating a translation schema for blog posts, the `entityType` can be `'blog-posts'`. */
12567
+ entityType?: string | null;
12568
+ /**
12569
+ * Scope of the translation schema.
12570
+ * Supported values:
12571
+ * + `GLOBAL`: A global schema for all sites.
12572
+ * + `SITE`: A custom schema for a specific site.
12573
+ */
12574
+ scope?: SchemaScope;
12553
12575
  }
12554
12576
  interface ListSiteSchemasResponse {
12555
12577
  /** List of translation schemas. */