@wix/multilingual 1.0.71 → 1.0.72

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.71",
3
+ "version": "1.0.72",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -18,12 +18,12 @@
18
18
  "type-bundles"
19
19
  ],
20
20
  "dependencies": {
21
- "@wix/multilingual_entity-mapper": "1.0.20",
22
- "@wix/multilingual_machine-translation": "1.0.32",
23
- "@wix/multilingual_site-translator": "1.0.17",
24
- "@wix/multilingual_translation-contents": "1.0.37",
25
- "@wix/multilingual_translation-published-contents": "1.0.14",
26
- "@wix/multilingual_translation-schemas": "1.0.33"
21
+ "@wix/multilingual_entity-mapper": "1.0.21",
22
+ "@wix/multilingual_machine-translation": "1.0.33",
23
+ "@wix/multilingual_site-translator": "1.0.18",
24
+ "@wix/multilingual_translation-contents": "1.0.38",
25
+ "@wix/multilingual_translation-published-contents": "1.0.15",
26
+ "@wix/multilingual_translation-schemas": "1.0.34"
27
27
  },
28
28
  "devDependencies": {
29
29
  "glob": "^10.4.1",
@@ -48,5 +48,5 @@
48
48
  "fqdn": ""
49
49
  }
50
50
  },
51
- "falconPackageHash": "73a4e38d00f4c558335f5599521a55bd4531d16142cc2d614a5b1b9b"
51
+ "falconPackageHash": "70b83bc645c7b3a5bd042a72632502189378f3672bb0ba880aaafbca"
52
52
  }
@@ -567,7 +567,7 @@ interface DomainEvent$3 extends DomainEventBodyOneOf$3 {
567
567
  /** ID of the entity associated with the event. */
568
568
  entityId?: string;
569
569
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
570
- eventTime?: Date;
570
+ eventTime?: Date | null;
571
571
  /**
572
572
  * Whether the event was triggered as a result of a privacy regulation application
573
573
  * (for example, GDPR).
@@ -596,7 +596,7 @@ interface EntityCreatedEvent$3 {
596
596
  entity?: string;
597
597
  }
598
598
  interface RestoreInfo$3 {
599
- deletedDate?: Date;
599
+ deletedDate?: Date | null;
600
600
  }
601
601
  interface EntityUpdatedEvent$3 {
602
602
  /**
@@ -2246,12 +2246,12 @@ interface Metadata$2 {
2246
2246
  * @readonly
2247
2247
  * @deprecated
2248
2248
  */
2249
- createdTimestamp?: Date;
2249
+ createdTimestamp?: Date | null;
2250
2250
  /**
2251
2251
  * When the object was most recently updated.
2252
2252
  * @deprecated
2253
2253
  */
2254
- updatedTimestamp?: Date;
2254
+ updatedTimestamp?: Date | null;
2255
2255
  /** Object ID. */
2256
2256
  _id?: string | null;
2257
2257
  }
@@ -2415,7 +2415,7 @@ interface DomainEvent$2 extends DomainEventBodyOneOf$2 {
2415
2415
  /** ID of the entity associated with the event. */
2416
2416
  entityId?: string;
2417
2417
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
2418
- eventTime?: Date;
2418
+ eventTime?: Date | null;
2419
2419
  /**
2420
2420
  * Whether the event was triggered as a result of a privacy regulation application
2421
2421
  * (for example, GDPR).
@@ -2444,7 +2444,7 @@ interface EntityCreatedEvent$2 {
2444
2444
  entity?: string;
2445
2445
  }
2446
2446
  interface RestoreInfo$2 {
2447
- deletedDate?: Date;
2447
+ deletedDate?: Date | null;
2448
2448
  }
2449
2449
  interface EntityUpdatedEvent$2 {
2450
2450
  /**
@@ -2795,7 +2795,7 @@ interface EventMetadata$2 extends BaseEventMetadata$2 {
2795
2795
  /** ID of the entity associated with the event. */
2796
2796
  entityId?: string;
2797
2797
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
2798
- eventTime?: Date;
2798
+ eventTime?: Date | null;
2799
2799
  /**
2800
2800
  * Whether the event was triggered as a result of a privacy regulation application
2801
2801
  * (for example, GDPR).
@@ -4191,12 +4191,12 @@ interface Metadata$1 {
4191
4191
  * @readonly
4192
4192
  * @deprecated
4193
4193
  */
4194
- createdTimestamp?: Date;
4194
+ createdTimestamp?: Date | null;
4195
4195
  /**
4196
4196
  * When the object was most recently updated.
4197
4197
  * @deprecated
4198
4198
  */
4199
- updatedTimestamp?: Date;
4199
+ updatedTimestamp?: Date | null;
4200
4200
  /** Object ID. */
4201
4201
  _id?: string | null;
4202
4202
  }
@@ -5342,12 +5342,12 @@ interface Content {
5342
5342
  * Date and time the translation content was created.
5343
5343
  * @readonly
5344
5344
  */
5345
- _createdDate?: Date;
5345
+ _createdDate?: Date | null;
5346
5346
  /**
5347
5347
  * Date and time the translation content was updated.
5348
5348
  * @readonly
5349
5349
  */
5350
- _updatedDate?: Date;
5350
+ _updatedDate?: Date | null;
5351
5351
  }
5352
5352
  interface ContentField extends ContentFieldValueOneOf {
5353
5353
  /** Plain text. Use this field if the corresponding schema `fields.type` is `SHORT_TEXT`, `LONG_TEXT`, `HTML`, or `IMAGE_LINK`. */
@@ -6605,12 +6605,12 @@ interface Metadata {
6605
6605
  * @readonly
6606
6606
  * @deprecated
6607
6607
  */
6608
- createdTimestamp?: Date;
6608
+ createdTimestamp?: Date | null;
6609
6609
  /**
6610
6610
  * When the object was most recently updated.
6611
6611
  * @deprecated
6612
6612
  */
6613
- updatedTimestamp?: Date;
6613
+ updatedTimestamp?: Date | null;
6614
6614
  /** Object ID. */
6615
6615
  _id?: string | null;
6616
6616
  }
@@ -7601,7 +7601,7 @@ interface SiteDeleted$1 {
7601
7601
  }
7602
7602
  interface DeleteContext$1 {
7603
7603
  /** When the meta site was deleted. */
7604
- dateDeleted?: Date;
7604
+ dateDeleted?: Date | null;
7605
7605
  /** A status. */
7606
7606
  deleteStatus?: DeleteStatus$1;
7607
7607
  /** A reason (flow). */
@@ -7703,7 +7703,7 @@ interface DomainEvent$1 extends DomainEventBodyOneOf$1 {
7703
7703
  /** ID of the entity associated with the event. */
7704
7704
  entityId?: string;
7705
7705
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
7706
- eventTime?: Date;
7706
+ eventTime?: Date | null;
7707
7707
  /**
7708
7708
  * Whether the event was triggered as a result of a privacy regulation application
7709
7709
  * (for example, GDPR).
@@ -7732,7 +7732,7 @@ interface EntityCreatedEvent$1 {
7732
7732
  entity?: string;
7733
7733
  }
7734
7734
  interface RestoreInfo$1 {
7735
- deletedDate?: Date;
7735
+ deletedDate?: Date | null;
7736
7736
  }
7737
7737
  interface EntityUpdatedEvent$1 {
7738
7738
  /**
@@ -7953,7 +7953,7 @@ interface EventMetadata$1 extends BaseEventMetadata$1 {
7953
7953
  /** ID of the entity associated with the event. */
7954
7954
  entityId?: string;
7955
7955
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
7956
- eventTime?: Date;
7956
+ eventTime?: Date | null;
7957
7957
  /**
7958
7958
  * Whether the event was triggered as a result of a privacy regulation application
7959
7959
  * (for example, GDPR).
@@ -8018,12 +8018,12 @@ interface UpdateContent {
8018
8018
  * Date and time the translation content was created.
8019
8019
  * @readonly
8020
8020
  */
8021
- _createdDate?: Date;
8021
+ _createdDate?: Date | null;
8022
8022
  /**
8023
8023
  * Date and time the translation content was updated.
8024
8024
  * @readonly
8025
8025
  */
8026
- _updatedDate?: Date;
8026
+ _updatedDate?: Date | null;
8027
8027
  }
8028
8028
  interface QueryContentsOptions {
8029
8029
  }
@@ -8616,12 +8616,12 @@ interface Schema {
8616
8616
  * Date and time the translation schema was created.
8617
8617
  * @readonly
8618
8618
  */
8619
- _createdDate?: Date;
8619
+ _createdDate?: Date | null;
8620
8620
  /**
8621
8621
  * Date and time the translation schema was updated.
8622
8622
  * @readonly
8623
8623
  */
8624
- _updatedDate?: Date;
8624
+ _updatedDate?: Date | null;
8625
8625
  /**
8626
8626
  * Whether to duplicate the translated content when a site containing the translation schema and content is duplicated.
8627
8627
  *
@@ -9061,7 +9061,7 @@ interface SiteDeleted {
9061
9061
  }
9062
9062
  interface DeleteContext {
9063
9063
  /** When the meta site was deleted. */
9064
- dateDeleted?: Date;
9064
+ dateDeleted?: Date | null;
9065
9065
  /** A status. */
9066
9066
  deleteStatus?: DeleteStatus;
9067
9067
  /** A reason (flow). */
@@ -9163,7 +9163,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
9163
9163
  /** ID of the entity associated with the event. */
9164
9164
  entityId?: string;
9165
9165
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
9166
- eventTime?: Date;
9166
+ eventTime?: Date | null;
9167
9167
  /**
9168
9168
  * Whether the event was triggered as a result of a privacy regulation application
9169
9169
  * (for example, GDPR).
@@ -9192,7 +9192,7 @@ interface EntityCreatedEvent {
9192
9192
  entity?: string;
9193
9193
  }
9194
9194
  interface RestoreInfo {
9195
- deletedDate?: Date;
9195
+ deletedDate?: Date | null;
9196
9196
  }
9197
9197
  interface EntityUpdatedEvent {
9198
9198
  /**
@@ -9303,7 +9303,7 @@ interface EventMetadata extends BaseEventMetadata {
9303
9303
  /** ID of the entity associated with the event. */
9304
9304
  entityId?: string;
9305
9305
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
9306
- eventTime?: Date;
9306
+ eventTime?: Date | null;
9307
9307
  /**
9308
9308
  * Whether the event was triggered as a result of a privacy regulation application
9309
9309
  * (for example, GDPR).
@@ -9379,12 +9379,12 @@ interface UpdateSchema {
9379
9379
  * Date and time the translation schema was created.
9380
9380
  * @readonly
9381
9381
  */
9382
- _createdDate?: Date;
9382
+ _createdDate?: Date | null;
9383
9383
  /**
9384
9384
  * Date and time the translation schema was updated.
9385
9385
  * @readonly
9386
9386
  */
9387
- _updatedDate?: Date;
9387
+ _updatedDate?: Date | null;
9388
9388
  /**
9389
9389
  * Whether to duplicate the translated content when a site containing the translation schema and content is duplicated.
9390
9390
  *
@@ -567,7 +567,7 @@ interface DomainEvent$3 extends DomainEventBodyOneOf$3 {
567
567
  /** ID of the entity associated with the event. */
568
568
  entityId?: string;
569
569
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
570
- eventTime?: Date;
570
+ eventTime?: Date | null;
571
571
  /**
572
572
  * Whether the event was triggered as a result of a privacy regulation application
573
573
  * (for example, GDPR).
@@ -596,7 +596,7 @@ interface EntityCreatedEvent$3 {
596
596
  entity?: string;
597
597
  }
598
598
  interface RestoreInfo$3 {
599
- deletedDate?: Date;
599
+ deletedDate?: Date | null;
600
600
  }
601
601
  interface EntityUpdatedEvent$3 {
602
602
  /**
@@ -2246,12 +2246,12 @@ interface Metadata$2 {
2246
2246
  * @readonly
2247
2247
  * @deprecated
2248
2248
  */
2249
- createdTimestamp?: Date;
2249
+ createdTimestamp?: Date | null;
2250
2250
  /**
2251
2251
  * When the object was most recently updated.
2252
2252
  * @deprecated
2253
2253
  */
2254
- updatedTimestamp?: Date;
2254
+ updatedTimestamp?: Date | null;
2255
2255
  /** Object ID. */
2256
2256
  _id?: string | null;
2257
2257
  }
@@ -2415,7 +2415,7 @@ interface DomainEvent$2 extends DomainEventBodyOneOf$2 {
2415
2415
  /** ID of the entity associated with the event. */
2416
2416
  entityId?: string;
2417
2417
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
2418
- eventTime?: Date;
2418
+ eventTime?: Date | null;
2419
2419
  /**
2420
2420
  * Whether the event was triggered as a result of a privacy regulation application
2421
2421
  * (for example, GDPR).
@@ -2444,7 +2444,7 @@ interface EntityCreatedEvent$2 {
2444
2444
  entity?: string;
2445
2445
  }
2446
2446
  interface RestoreInfo$2 {
2447
- deletedDate?: Date;
2447
+ deletedDate?: Date | null;
2448
2448
  }
2449
2449
  interface EntityUpdatedEvent$2 {
2450
2450
  /**
@@ -2795,7 +2795,7 @@ interface EventMetadata$2 extends BaseEventMetadata$2 {
2795
2795
  /** ID of the entity associated with the event. */
2796
2796
  entityId?: string;
2797
2797
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
2798
- eventTime?: Date;
2798
+ eventTime?: Date | null;
2799
2799
  /**
2800
2800
  * Whether the event was triggered as a result of a privacy regulation application
2801
2801
  * (for example, GDPR).
@@ -4191,12 +4191,12 @@ interface Metadata$1 {
4191
4191
  * @readonly
4192
4192
  * @deprecated
4193
4193
  */
4194
- createdTimestamp?: Date;
4194
+ createdTimestamp?: Date | null;
4195
4195
  /**
4196
4196
  * When the object was most recently updated.
4197
4197
  * @deprecated
4198
4198
  */
4199
- updatedTimestamp?: Date;
4199
+ updatedTimestamp?: Date | null;
4200
4200
  /** Object ID. */
4201
4201
  _id?: string | null;
4202
4202
  }
@@ -5342,12 +5342,12 @@ interface Content {
5342
5342
  * Date and time the translation content was created.
5343
5343
  * @readonly
5344
5344
  */
5345
- _createdDate?: Date;
5345
+ _createdDate?: Date | null;
5346
5346
  /**
5347
5347
  * Date and time the translation content was updated.
5348
5348
  * @readonly
5349
5349
  */
5350
- _updatedDate?: Date;
5350
+ _updatedDate?: Date | null;
5351
5351
  }
5352
5352
  interface ContentField extends ContentFieldValueOneOf {
5353
5353
  /** Plain text. Use this field if the corresponding schema `fields.type` is `SHORT_TEXT`, `LONG_TEXT`, `HTML`, or `IMAGE_LINK`. */
@@ -6605,12 +6605,12 @@ interface Metadata {
6605
6605
  * @readonly
6606
6606
  * @deprecated
6607
6607
  */
6608
- createdTimestamp?: Date;
6608
+ createdTimestamp?: Date | null;
6609
6609
  /**
6610
6610
  * When the object was most recently updated.
6611
6611
  * @deprecated
6612
6612
  */
6613
- updatedTimestamp?: Date;
6613
+ updatedTimestamp?: Date | null;
6614
6614
  /** Object ID. */
6615
6615
  _id?: string | null;
6616
6616
  }
@@ -7601,7 +7601,7 @@ interface SiteDeleted$1 {
7601
7601
  }
7602
7602
  interface DeleteContext$1 {
7603
7603
  /** When the meta site was deleted. */
7604
- dateDeleted?: Date;
7604
+ dateDeleted?: Date | null;
7605
7605
  /** A status. */
7606
7606
  deleteStatus?: DeleteStatus$1;
7607
7607
  /** A reason (flow). */
@@ -7703,7 +7703,7 @@ interface DomainEvent$1 extends DomainEventBodyOneOf$1 {
7703
7703
  /** ID of the entity associated with the event. */
7704
7704
  entityId?: string;
7705
7705
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
7706
- eventTime?: Date;
7706
+ eventTime?: Date | null;
7707
7707
  /**
7708
7708
  * Whether the event was triggered as a result of a privacy regulation application
7709
7709
  * (for example, GDPR).
@@ -7732,7 +7732,7 @@ interface EntityCreatedEvent$1 {
7732
7732
  entity?: string;
7733
7733
  }
7734
7734
  interface RestoreInfo$1 {
7735
- deletedDate?: Date;
7735
+ deletedDate?: Date | null;
7736
7736
  }
7737
7737
  interface EntityUpdatedEvent$1 {
7738
7738
  /**
@@ -7953,7 +7953,7 @@ interface EventMetadata$1 extends BaseEventMetadata$1 {
7953
7953
  /** ID of the entity associated with the event. */
7954
7954
  entityId?: string;
7955
7955
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
7956
- eventTime?: Date;
7956
+ eventTime?: Date | null;
7957
7957
  /**
7958
7958
  * Whether the event was triggered as a result of a privacy regulation application
7959
7959
  * (for example, GDPR).
@@ -8018,12 +8018,12 @@ interface UpdateContent {
8018
8018
  * Date and time the translation content was created.
8019
8019
  * @readonly
8020
8020
  */
8021
- _createdDate?: Date;
8021
+ _createdDate?: Date | null;
8022
8022
  /**
8023
8023
  * Date and time the translation content was updated.
8024
8024
  * @readonly
8025
8025
  */
8026
- _updatedDate?: Date;
8026
+ _updatedDate?: Date | null;
8027
8027
  }
8028
8028
  interface QueryContentsOptions {
8029
8029
  }
@@ -8616,12 +8616,12 @@ interface Schema {
8616
8616
  * Date and time the translation schema was created.
8617
8617
  * @readonly
8618
8618
  */
8619
- _createdDate?: Date;
8619
+ _createdDate?: Date | null;
8620
8620
  /**
8621
8621
  * Date and time the translation schema was updated.
8622
8622
  * @readonly
8623
8623
  */
8624
- _updatedDate?: Date;
8624
+ _updatedDate?: Date | null;
8625
8625
  /**
8626
8626
  * Whether to duplicate the translated content when a site containing the translation schema and content is duplicated.
8627
8627
  *
@@ -9061,7 +9061,7 @@ interface SiteDeleted {
9061
9061
  }
9062
9062
  interface DeleteContext {
9063
9063
  /** When the meta site was deleted. */
9064
- dateDeleted?: Date;
9064
+ dateDeleted?: Date | null;
9065
9065
  /** A status. */
9066
9066
  deleteStatus?: DeleteStatus;
9067
9067
  /** A reason (flow). */
@@ -9163,7 +9163,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
9163
9163
  /** ID of the entity associated with the event. */
9164
9164
  entityId?: string;
9165
9165
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
9166
- eventTime?: Date;
9166
+ eventTime?: Date | null;
9167
9167
  /**
9168
9168
  * Whether the event was triggered as a result of a privacy regulation application
9169
9169
  * (for example, GDPR).
@@ -9192,7 +9192,7 @@ interface EntityCreatedEvent {
9192
9192
  entity?: string;
9193
9193
  }
9194
9194
  interface RestoreInfo {
9195
- deletedDate?: Date;
9195
+ deletedDate?: Date | null;
9196
9196
  }
9197
9197
  interface EntityUpdatedEvent {
9198
9198
  /**
@@ -9303,7 +9303,7 @@ interface EventMetadata extends BaseEventMetadata {
9303
9303
  /** ID of the entity associated with the event. */
9304
9304
  entityId?: string;
9305
9305
  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
9306
- eventTime?: Date;
9306
+ eventTime?: Date | null;
9307
9307
  /**
9308
9308
  * Whether the event was triggered as a result of a privacy regulation application
9309
9309
  * (for example, GDPR).
@@ -9379,12 +9379,12 @@ interface UpdateSchema {
9379
9379
  * Date and time the translation schema was created.
9380
9380
  * @readonly
9381
9381
  */
9382
- _createdDate?: Date;
9382
+ _createdDate?: Date | null;
9383
9383
  /**
9384
9384
  * Date and time the translation schema was updated.
9385
9385
  * @readonly
9386
9386
  */
9387
- _updatedDate?: Date;
9387
+ _updatedDate?: Date | null;
9388
9388
  /**
9389
9389
  * Whether to duplicate the translated content when a site containing the translation schema and content is duplicated.
9390
9390
  *
@@ -1292,12 +1292,12 @@ interface Metadata$5 {
1292
1292
  * @readonly
1293
1293
  * @deprecated
1294
1294
  */
1295
- createdTimestamp?: Date;
1295
+ createdTimestamp?: Date | null;
1296
1296
  /**
1297
1297
  * When the object was most recently updated.
1298
1298
  * @deprecated
1299
1299
  */
1300
- updatedTimestamp?: Date;
1300
+ updatedTimestamp?: Date | null;
1301
1301
  /** Object ID. */
1302
1302
  id?: string | null;
1303
1303
  }
@@ -3019,12 +3019,12 @@ interface Metadata$4 {
3019
3019
  * @readonly
3020
3020
  * @deprecated
3021
3021
  */
3022
- createdTimestamp?: Date;
3022
+ createdTimestamp?: Date | null;
3023
3023
  /**
3024
3024
  * When the object was most recently updated.
3025
3025
  * @deprecated
3026
3026
  */
3027
- updatedTimestamp?: Date;
3027
+ updatedTimestamp?: Date | null;
3028
3028
  /** Object ID. */
3029
3029
  _id?: string | null;
3030
3030
  }
@@ -4642,12 +4642,12 @@ interface Metadata$3 {
4642
4642
  * @readonly
4643
4643
  * @deprecated
4644
4644
  */
4645
- createdTimestamp?: Date;
4645
+ createdTimestamp?: Date | null;
4646
4646
  /**
4647
4647
  * When the object was most recently updated.
4648
4648
  * @deprecated
4649
4649
  */
4650
- updatedTimestamp?: Date;
4650
+ updatedTimestamp?: Date | null;
4651
4651
  /** Object ID. */
4652
4652
  id?: string | null;
4653
4653
  }
@@ -6498,12 +6498,12 @@ interface Metadata$2 {
6498
6498
  * @readonly
6499
6499
  * @deprecated
6500
6500
  */
6501
- createdTimestamp?: Date;
6501
+ createdTimestamp?: Date | null;
6502
6502
  /**
6503
6503
  * When the object was most recently updated.
6504
6504
  * @deprecated
6505
6505
  */
6506
- updatedTimestamp?: Date;
6506
+ updatedTimestamp?: Date | null;
6507
6507
  /** Object ID. */
6508
6508
  _id?: string | null;
6509
6509
  }
@@ -7841,12 +7841,12 @@ interface Content$1 {
7841
7841
  * Date and time the translation content was created.
7842
7842
  * @readonly
7843
7843
  */
7844
- createdDate?: Date;
7844
+ createdDate?: Date | null;
7845
7845
  /**
7846
7846
  * Date and time the translation content was updated.
7847
7847
  * @readonly
7848
7848
  */
7849
- updatedDate?: Date;
7849
+ updatedDate?: Date | null;
7850
7850
  }
7851
7851
  interface ContentField$1 extends ContentFieldValueOneOf$1 {
7852
7852
  /** Plain text. Use this field if the corresponding schema `fields.type` is `SHORT_TEXT`, `LONG_TEXT`, `HTML`, or `IMAGE_LINK`. */
@@ -9085,12 +9085,12 @@ interface Metadata$1 {
9085
9085
  * @readonly
9086
9086
  * @deprecated
9087
9087
  */
9088
- createdTimestamp?: Date;
9088
+ createdTimestamp?: Date | null;
9089
9089
  /**
9090
9090
  * When the object was most recently updated.
9091
9091
  * @deprecated
9092
9092
  */
9093
- updatedTimestamp?: Date;
9093
+ updatedTimestamp?: Date | null;
9094
9094
  /** Object ID. */
9095
9095
  id?: string | null;
9096
9096
  }
@@ -9998,12 +9998,12 @@ interface Content {
9998
9998
  * Date and time the translation content was created.
9999
9999
  * @readonly
10000
10000
  */
10001
- _createdDate?: Date;
10001
+ _createdDate?: Date | null;
10002
10002
  /**
10003
10003
  * Date and time the translation content was updated.
10004
10004
  * @readonly
10005
10005
  */
10006
- _updatedDate?: Date;
10006
+ _updatedDate?: Date | null;
10007
10007
  }
10008
10008
  interface ContentField extends ContentFieldValueOneOf {
10009
10009
  /** Plain text. Use this field if the corresponding schema `fields.type` is `SHORT_TEXT`, `LONG_TEXT`, `HTML`, or `IMAGE_LINK`. */
@@ -11242,12 +11242,12 @@ interface Metadata {
11242
11242
  * @readonly
11243
11243
  * @deprecated
11244
11244
  */
11245
- createdTimestamp?: Date;
11245
+ createdTimestamp?: Date | null;
11246
11246
  /**
11247
11247
  * When the object was most recently updated.
11248
11248
  * @deprecated
11249
11249
  */
11250
- updatedTimestamp?: Date;
11250
+ updatedTimestamp?: Date | null;
11251
11251
  /** Object ID. */
11252
11252
  _id?: string | null;
11253
11253
  }
@@ -12139,12 +12139,12 @@ interface Schema$1 {
12139
12139
  * Date and time the translation schema was created.
12140
12140
  * @readonly
12141
12141
  */
12142
- createdDate?: Date;
12142
+ createdDate?: Date | null;
12143
12143
  /**
12144
12144
  * Date and time the translation schema was updated.
12145
12145
  * @readonly
12146
12146
  */
12147
- updatedDate?: Date;
12147
+ updatedDate?: Date | null;
12148
12148
  /**
12149
12149
  * Whether to duplicate the translated content when a site containing the translation schema and content is duplicated.
12150
12150
  *
@@ -12435,12 +12435,12 @@ interface Schema {
12435
12435
  * Date and time the translation schema was created.
12436
12436
  * @readonly
12437
12437
  */
12438
- _createdDate?: Date;
12438
+ _createdDate?: Date | null;
12439
12439
  /**
12440
12440
  * Date and time the translation schema was updated.
12441
12441
  * @readonly
12442
12442
  */
12443
- _updatedDate?: Date;
12443
+ _updatedDate?: Date | null;
12444
12444
  /**
12445
12445
  * Whether to duplicate the translated content when a site containing the translation schema and content is duplicated.
12446
12446
  *