@wix/multilingual 1.0.71 → 1.0.73

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.
@@ -176,6 +176,8 @@ interface Node$5 extends NodeDataOneOf$5 {
176
176
  bulletedListData?: BulletedListData$5;
177
177
  /** Data for a block quote node. */
178
178
  blockquoteData?: BlockquoteData$5;
179
+ /** Data for a caption node. */
180
+ captionData?: CaptionData$5;
179
181
  /** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
180
182
  type?: NodeType$5;
181
183
  /** Node ID. */
@@ -237,6 +239,8 @@ interface NodeDataOneOf$5 {
237
239
  bulletedListData?: BulletedListData$5;
238
240
  /** Data for a block quote node. */
239
241
  blockquoteData?: BlockquoteData$5;
242
+ /** Data for a caption node. */
243
+ captionData?: CaptionData$5;
240
244
  }
241
245
  declare enum NodeType$5 {
242
246
  PARAGRAPH = "PARAGRAPH",
@@ -268,7 +272,8 @@ declare enum NodeType$5 {
268
272
  TABLE_CELL = "TABLE_CELL",
269
273
  TABLE_ROW = "TABLE_ROW",
270
274
  EXTERNAL = "EXTERNAL",
271
- AUDIO = "AUDIO"
275
+ AUDIO = "AUDIO",
276
+ CAPTION = "CAPTION"
272
277
  }
273
278
  interface NodeStyle$5 {
274
279
  /** The top padding value in pixels. */
@@ -758,7 +763,10 @@ interface ImageData$5 {
758
763
  disableExpand?: boolean | null;
759
764
  /** Image's alternative text. */
760
765
  altText?: string | null;
761
- /** Image caption. */
766
+ /**
767
+ * Deprecated: use Caption node instead.
768
+ * @deprecated
769
+ */
762
770
  caption?: string | null;
763
771
  /** Sets whether the image's download button is disabled. Defaults to `false`. */
764
772
  disableDownload?: boolean | null;
@@ -1284,6 +1292,9 @@ interface BlockquoteData$5 {
1284
1292
  /** Indentation level from 1-4. */
1285
1293
  indentation?: number;
1286
1294
  }
1295
+ interface CaptionData$5 {
1296
+ textStyle?: TextStyle$5;
1297
+ }
1287
1298
  interface Metadata$5 {
1288
1299
  /** Schema version. */
1289
1300
  version?: number;
@@ -1292,12 +1303,12 @@ interface Metadata$5 {
1292
1303
  * @readonly
1293
1304
  * @deprecated
1294
1305
  */
1295
- createdTimestamp?: Date;
1306
+ createdTimestamp?: Date | null;
1296
1307
  /**
1297
1308
  * When the object was most recently updated.
1298
1309
  * @deprecated
1299
1310
  */
1300
- updatedTimestamp?: Date;
1311
+ updatedTimestamp?: Date | null;
1301
1312
  /** Object ID. */
1302
1313
  id?: string | null;
1303
1314
  }
@@ -1671,6 +1682,9 @@ interface BulletedListDataNonNullableFields$3 {
1671
1682
  interface BlockquoteDataNonNullableFields$3 {
1672
1683
  indentation: number;
1673
1684
  }
1685
+ interface CaptionDataNonNullableFields$3 {
1686
+ textStyle?: TextStyleNonNullableFields$3;
1687
+ }
1674
1688
  interface NodeNonNullableFields$3 {
1675
1689
  buttonData?: ButtonDataNonNullableFields$3;
1676
1690
  codeBlockData?: CodeBlockDataNonNullableFields$3;
@@ -1696,6 +1710,7 @@ interface NodeNonNullableFields$3 {
1696
1710
  orderedListData?: OrderedListDataNonNullableFields$3;
1697
1711
  bulletedListData?: BulletedListDataNonNullableFields$3;
1698
1712
  blockquoteData?: BlockquoteDataNonNullableFields$3;
1713
+ captionData?: CaptionDataNonNullableFields$3;
1699
1714
  type: NodeType$5;
1700
1715
  id: string;
1701
1716
  nodes: NodeNonNullableFields$3[];
@@ -1903,6 +1918,8 @@ interface Node$4 extends NodeDataOneOf$4 {
1903
1918
  bulletedListData?: BulletedListData$4;
1904
1919
  /** Data for a block quote node. */
1905
1920
  blockquoteData?: BlockquoteData$4;
1921
+ /** Data for a caption node. */
1922
+ captionData?: CaptionData$4;
1906
1923
  /** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
1907
1924
  type?: NodeType$4;
1908
1925
  /** Node ID. */
@@ -1964,6 +1981,8 @@ interface NodeDataOneOf$4 {
1964
1981
  bulletedListData?: BulletedListData$4;
1965
1982
  /** Data for a block quote node. */
1966
1983
  blockquoteData?: BlockquoteData$4;
1984
+ /** Data for a caption node. */
1985
+ captionData?: CaptionData$4;
1967
1986
  }
1968
1987
  declare enum NodeType$4 {
1969
1988
  PARAGRAPH = "PARAGRAPH",
@@ -1995,7 +2014,8 @@ declare enum NodeType$4 {
1995
2014
  TABLE_CELL = "TABLE_CELL",
1996
2015
  TABLE_ROW = "TABLE_ROW",
1997
2016
  EXTERNAL = "EXTERNAL",
1998
- AUDIO = "AUDIO"
2017
+ AUDIO = "AUDIO",
2018
+ CAPTION = "CAPTION"
1999
2019
  }
2000
2020
  interface NodeStyle$4 {
2001
2021
  /** The top padding value in pixels. */
@@ -2485,7 +2505,10 @@ interface ImageData$4 {
2485
2505
  disableExpand?: boolean | null;
2486
2506
  /** Image's alternative text. */
2487
2507
  altText?: string | null;
2488
- /** Image caption. */
2508
+ /**
2509
+ * Deprecated: use Caption node instead.
2510
+ * @deprecated
2511
+ */
2489
2512
  caption?: string | null;
2490
2513
  /** Sets whether the image's download button is disabled. Defaults to `false`. */
2491
2514
  disableDownload?: boolean | null;
@@ -3011,6 +3034,9 @@ interface BlockquoteData$4 {
3011
3034
  /** Indentation level from 1-4. */
3012
3035
  indentation?: number;
3013
3036
  }
3037
+ interface CaptionData$4 {
3038
+ textStyle?: TextStyle$4;
3039
+ }
3014
3040
  interface Metadata$4 {
3015
3041
  /** Schema version. */
3016
3042
  version?: number;
@@ -3019,12 +3045,12 @@ interface Metadata$4 {
3019
3045
  * @readonly
3020
3046
  * @deprecated
3021
3047
  */
3022
- createdTimestamp?: Date;
3048
+ createdTimestamp?: Date | null;
3023
3049
  /**
3024
3050
  * When the object was most recently updated.
3025
3051
  * @deprecated
3026
3052
  */
3027
- updatedTimestamp?: Date;
3053
+ updatedTimestamp?: Date | null;
3028
3054
  /** Object ID. */
3029
3055
  _id?: string | null;
3030
3056
  }
@@ -3343,6 +3369,9 @@ interface BulletedListDataNonNullableFields$2 {
3343
3369
  interface BlockquoteDataNonNullableFields$2 {
3344
3370
  indentation: number;
3345
3371
  }
3372
+ interface CaptionDataNonNullableFields$2 {
3373
+ textStyle?: TextStyleNonNullableFields$2;
3374
+ }
3346
3375
  interface NodeNonNullableFields$2 {
3347
3376
  buttonData?: ButtonDataNonNullableFields$2;
3348
3377
  codeBlockData?: CodeBlockDataNonNullableFields$2;
@@ -3368,6 +3397,7 @@ interface NodeNonNullableFields$2 {
3368
3397
  orderedListData?: OrderedListDataNonNullableFields$2;
3369
3398
  bulletedListData?: BulletedListDataNonNullableFields$2;
3370
3399
  blockquoteData?: BlockquoteDataNonNullableFields$2;
3400
+ captionData?: CaptionDataNonNullableFields$2;
3371
3401
  type: NodeType$4;
3372
3402
  _id: string;
3373
3403
  nodes: NodeNonNullableFields$2[];
@@ -3526,6 +3556,8 @@ interface Node$3 extends NodeDataOneOf$3 {
3526
3556
  bulletedListData?: BulletedListData$3;
3527
3557
  /** Data for a block quote node. */
3528
3558
  blockquoteData?: BlockquoteData$3;
3559
+ /** Data for a caption node. */
3560
+ captionData?: CaptionData$3;
3529
3561
  /** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
3530
3562
  type?: NodeType$3;
3531
3563
  /** Node ID. */
@@ -3587,6 +3619,8 @@ interface NodeDataOneOf$3 {
3587
3619
  bulletedListData?: BulletedListData$3;
3588
3620
  /** Data for a block quote node. */
3589
3621
  blockquoteData?: BlockquoteData$3;
3622
+ /** Data for a caption node. */
3623
+ captionData?: CaptionData$3;
3590
3624
  }
3591
3625
  declare enum NodeType$3 {
3592
3626
  PARAGRAPH = "PARAGRAPH",
@@ -3618,7 +3652,8 @@ declare enum NodeType$3 {
3618
3652
  TABLE_CELL = "TABLE_CELL",
3619
3653
  TABLE_ROW = "TABLE_ROW",
3620
3654
  EXTERNAL = "EXTERNAL",
3621
- AUDIO = "AUDIO"
3655
+ AUDIO = "AUDIO",
3656
+ CAPTION = "CAPTION"
3622
3657
  }
3623
3658
  interface NodeStyle$3 {
3624
3659
  /** The top padding value in pixels. */
@@ -4108,7 +4143,10 @@ interface ImageData$3 {
4108
4143
  disableExpand?: boolean | null;
4109
4144
  /** Image's alternative text. */
4110
4145
  altText?: string | null;
4111
- /** Image caption. */
4146
+ /**
4147
+ * Deprecated: use Caption node instead.
4148
+ * @deprecated
4149
+ */
4112
4150
  caption?: string | null;
4113
4151
  /** Sets whether the image's download button is disabled. Defaults to `false`. */
4114
4152
  disableDownload?: boolean | null;
@@ -4634,6 +4672,9 @@ interface BlockquoteData$3 {
4634
4672
  /** Indentation level from 1-4. */
4635
4673
  indentation?: number;
4636
4674
  }
4675
+ interface CaptionData$3 {
4676
+ textStyle?: TextStyle$3;
4677
+ }
4637
4678
  interface Metadata$3 {
4638
4679
  /** Schema version. */
4639
4680
  version?: number;
@@ -4642,12 +4683,12 @@ interface Metadata$3 {
4642
4683
  * @readonly
4643
4684
  * @deprecated
4644
4685
  */
4645
- createdTimestamp?: Date;
4686
+ createdTimestamp?: Date | null;
4646
4687
  /**
4647
4688
  * When the object was most recently updated.
4648
4689
  * @deprecated
4649
4690
  */
4650
- updatedTimestamp?: Date;
4691
+ updatedTimestamp?: Date | null;
4651
4692
  /** Object ID. */
4652
4693
  id?: string | null;
4653
4694
  }
@@ -5203,6 +5244,9 @@ interface BulletedListDataNonNullableFields$1 {
5203
5244
  interface BlockquoteDataNonNullableFields$1 {
5204
5245
  indentation: number;
5205
5246
  }
5247
+ interface CaptionDataNonNullableFields$1 {
5248
+ textStyle?: TextStyleNonNullableFields$1;
5249
+ }
5206
5250
  interface NodeNonNullableFields$1 {
5207
5251
  buttonData?: ButtonDataNonNullableFields$1;
5208
5252
  codeBlockData?: CodeBlockDataNonNullableFields$1;
@@ -5228,6 +5272,7 @@ interface NodeNonNullableFields$1 {
5228
5272
  orderedListData?: OrderedListDataNonNullableFields$1;
5229
5273
  bulletedListData?: BulletedListDataNonNullableFields$1;
5230
5274
  blockquoteData?: BlockquoteDataNonNullableFields$1;
5275
+ captionData?: CaptionDataNonNullableFields$1;
5231
5276
  type: NodeType$3;
5232
5277
  id: string;
5233
5278
  nodes: NodeNonNullableFields$1[];
@@ -5382,6 +5427,8 @@ interface Node$2 extends NodeDataOneOf$2 {
5382
5427
  bulletedListData?: BulletedListData$2;
5383
5428
  /** Data for a block quote node. */
5384
5429
  blockquoteData?: BlockquoteData$2;
5430
+ /** Data for a caption node. */
5431
+ captionData?: CaptionData$2;
5385
5432
  /** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
5386
5433
  type?: NodeType$2;
5387
5434
  /** Node ID. */
@@ -5443,6 +5490,8 @@ interface NodeDataOneOf$2 {
5443
5490
  bulletedListData?: BulletedListData$2;
5444
5491
  /** Data for a block quote node. */
5445
5492
  blockquoteData?: BlockquoteData$2;
5493
+ /** Data for a caption node. */
5494
+ captionData?: CaptionData$2;
5446
5495
  }
5447
5496
  declare enum NodeType$2 {
5448
5497
  PARAGRAPH = "PARAGRAPH",
@@ -5474,7 +5523,8 @@ declare enum NodeType$2 {
5474
5523
  TABLE_CELL = "TABLE_CELL",
5475
5524
  TABLE_ROW = "TABLE_ROW",
5476
5525
  EXTERNAL = "EXTERNAL",
5477
- AUDIO = "AUDIO"
5526
+ AUDIO = "AUDIO",
5527
+ CAPTION = "CAPTION"
5478
5528
  }
5479
5529
  interface NodeStyle$2 {
5480
5530
  /** The top padding value in pixels. */
@@ -5964,7 +6014,10 @@ interface ImageData$2 {
5964
6014
  disableExpand?: boolean | null;
5965
6015
  /** Image's alternative text. */
5966
6016
  altText?: string | null;
5967
- /** Image caption. */
6017
+ /**
6018
+ * Deprecated: use Caption node instead.
6019
+ * @deprecated
6020
+ */
5968
6021
  caption?: string | null;
5969
6022
  /** Sets whether the image's download button is disabled. Defaults to `false`. */
5970
6023
  disableDownload?: boolean | null;
@@ -6490,6 +6543,9 @@ interface BlockquoteData$2 {
6490
6543
  /** Indentation level from 1-4. */
6491
6544
  indentation?: number;
6492
6545
  }
6546
+ interface CaptionData$2 {
6547
+ textStyle?: TextStyle$2;
6548
+ }
6493
6549
  interface Metadata$2 {
6494
6550
  /** Schema version. */
6495
6551
  version?: number;
@@ -6498,12 +6554,12 @@ interface Metadata$2 {
6498
6554
  * @readonly
6499
6555
  * @deprecated
6500
6556
  */
6501
- createdTimestamp?: Date;
6557
+ createdTimestamp?: Date | null;
6502
6558
  /**
6503
6559
  * When the object was most recently updated.
6504
6560
  * @deprecated
6505
6561
  */
6506
- updatedTimestamp?: Date;
6562
+ updatedTimestamp?: Date | null;
6507
6563
  /** Object ID. */
6508
6564
  _id?: string | null;
6509
6565
  }
@@ -7059,6 +7115,9 @@ interface BulletedListDataNonNullableFields {
7059
7115
  interface BlockquoteDataNonNullableFields {
7060
7116
  indentation: number;
7061
7117
  }
7118
+ interface CaptionDataNonNullableFields {
7119
+ textStyle?: TextStyleNonNullableFields;
7120
+ }
7062
7121
  interface NodeNonNullableFields {
7063
7122
  buttonData?: ButtonDataNonNullableFields;
7064
7123
  codeBlockData?: CodeBlockDataNonNullableFields;
@@ -7084,6 +7143,7 @@ interface NodeNonNullableFields {
7084
7143
  orderedListData?: OrderedListDataNonNullableFields;
7085
7144
  bulletedListData?: BulletedListDataNonNullableFields;
7086
7145
  blockquoteData?: BlockquoteDataNonNullableFields;
7146
+ captionData?: CaptionDataNonNullableFields;
7087
7147
  type: NodeType$2;
7088
7148
  _id: string;
7089
7149
  nodes: NodeNonNullableFields[];
@@ -7841,12 +7901,12 @@ interface Content$1 {
7841
7901
  * Date and time the translation content was created.
7842
7902
  * @readonly
7843
7903
  */
7844
- createdDate?: Date;
7904
+ createdDate?: Date | null;
7845
7905
  /**
7846
7906
  * Date and time the translation content was updated.
7847
7907
  * @readonly
7848
7908
  */
7849
- updatedDate?: Date;
7909
+ updatedDate?: Date | null;
7850
7910
  }
7851
7911
  interface ContentField$1 extends ContentFieldValueOneOf$1 {
7852
7912
  /** Plain text. Use this field if the corresponding schema `fields.type` is `SHORT_TEXT`, `LONG_TEXT`, `HTML`, or `IMAGE_LINK`. */
@@ -7969,6 +8029,8 @@ interface Node$1 extends NodeDataOneOf$1 {
7969
8029
  bulletedListData?: BulletedListData$1;
7970
8030
  /** Data for a block quote node. */
7971
8031
  blockquoteData?: BlockquoteData$1;
8032
+ /** Data for a caption node. */
8033
+ captionData?: CaptionData$1;
7972
8034
  /** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
7973
8035
  type?: NodeType$1;
7974
8036
  /** Node ID. */
@@ -8030,6 +8092,8 @@ interface NodeDataOneOf$1 {
8030
8092
  bulletedListData?: BulletedListData$1;
8031
8093
  /** Data for a block quote node. */
8032
8094
  blockquoteData?: BlockquoteData$1;
8095
+ /** Data for a caption node. */
8096
+ captionData?: CaptionData$1;
8033
8097
  }
8034
8098
  declare enum NodeType$1 {
8035
8099
  PARAGRAPH = "PARAGRAPH",
@@ -8061,7 +8125,8 @@ declare enum NodeType$1 {
8061
8125
  TABLE_CELL = "TABLE_CELL",
8062
8126
  TABLE_ROW = "TABLE_ROW",
8063
8127
  EXTERNAL = "EXTERNAL",
8064
- AUDIO = "AUDIO"
8128
+ AUDIO = "AUDIO",
8129
+ CAPTION = "CAPTION"
8065
8130
  }
8066
8131
  interface NodeStyle$1 {
8067
8132
  /** The top padding value in pixels. */
@@ -8551,7 +8616,10 @@ interface ImageData$1 {
8551
8616
  disableExpand?: boolean | null;
8552
8617
  /** Image's alternative text. */
8553
8618
  altText?: string | null;
8554
- /** Image caption. */
8619
+ /**
8620
+ * Deprecated: use Caption node instead.
8621
+ * @deprecated
8622
+ */
8555
8623
  caption?: string | null;
8556
8624
  /** Sets whether the image's download button is disabled. Defaults to `false`. */
8557
8625
  disableDownload?: boolean | null;
@@ -9077,6 +9145,9 @@ interface BlockquoteData$1 {
9077
9145
  /** Indentation level from 1-4. */
9078
9146
  indentation?: number;
9079
9147
  }
9148
+ interface CaptionData$1 {
9149
+ textStyle?: TextStyle$1;
9150
+ }
9080
9151
  interface Metadata$1 {
9081
9152
  /** Schema version. */
9082
9153
  version?: number;
@@ -9085,12 +9156,12 @@ interface Metadata$1 {
9085
9156
  * @readonly
9086
9157
  * @deprecated
9087
9158
  */
9088
- createdTimestamp?: Date;
9159
+ createdTimestamp?: Date | null;
9089
9160
  /**
9090
9161
  * When the object was most recently updated.
9091
9162
  * @deprecated
9092
9163
  */
9093
- updatedTimestamp?: Date;
9164
+ updatedTimestamp?: Date | null;
9094
9165
  /** Object ID. */
9095
9166
  id?: string | null;
9096
9167
  }
@@ -9998,12 +10069,12 @@ interface Content {
9998
10069
  * Date and time the translation content was created.
9999
10070
  * @readonly
10000
10071
  */
10001
- _createdDate?: Date;
10072
+ _createdDate?: Date | null;
10002
10073
  /**
10003
10074
  * Date and time the translation content was updated.
10004
10075
  * @readonly
10005
10076
  */
10006
- _updatedDate?: Date;
10077
+ _updatedDate?: Date | null;
10007
10078
  }
10008
10079
  interface ContentField extends ContentFieldValueOneOf {
10009
10080
  /** Plain text. Use this field if the corresponding schema `fields.type` is `SHORT_TEXT`, `LONG_TEXT`, `HTML`, or `IMAGE_LINK`. */
@@ -10126,6 +10197,8 @@ interface Node extends NodeDataOneOf {
10126
10197
  bulletedListData?: BulletedListData;
10127
10198
  /** Data for a block quote node. */
10128
10199
  blockquoteData?: BlockquoteData;
10200
+ /** Data for a caption node. */
10201
+ captionData?: CaptionData;
10129
10202
  /** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
10130
10203
  type?: NodeType;
10131
10204
  /** Node ID. */
@@ -10187,6 +10260,8 @@ interface NodeDataOneOf {
10187
10260
  bulletedListData?: BulletedListData;
10188
10261
  /** Data for a block quote node. */
10189
10262
  blockquoteData?: BlockquoteData;
10263
+ /** Data for a caption node. */
10264
+ captionData?: CaptionData;
10190
10265
  }
10191
10266
  declare enum NodeType {
10192
10267
  PARAGRAPH = "PARAGRAPH",
@@ -10218,7 +10293,8 @@ declare enum NodeType {
10218
10293
  TABLE_CELL = "TABLE_CELL",
10219
10294
  TABLE_ROW = "TABLE_ROW",
10220
10295
  EXTERNAL = "EXTERNAL",
10221
- AUDIO = "AUDIO"
10296
+ AUDIO = "AUDIO",
10297
+ CAPTION = "CAPTION"
10222
10298
  }
10223
10299
  interface NodeStyle {
10224
10300
  /** The top padding value in pixels. */
@@ -10708,7 +10784,10 @@ interface ImageData {
10708
10784
  disableExpand?: boolean | null;
10709
10785
  /** Image's alternative text. */
10710
10786
  altText?: string | null;
10711
- /** Image caption. */
10787
+ /**
10788
+ * Deprecated: use Caption node instead.
10789
+ * @deprecated
10790
+ */
10712
10791
  caption?: string | null;
10713
10792
  /** Sets whether the image's download button is disabled. Defaults to `false`. */
10714
10793
  disableDownload?: boolean | null;
@@ -11234,6 +11313,9 @@ interface BlockquoteData {
11234
11313
  /** Indentation level from 1-4. */
11235
11314
  indentation?: number;
11236
11315
  }
11316
+ interface CaptionData {
11317
+ textStyle?: TextStyle;
11318
+ }
11237
11319
  interface Metadata {
11238
11320
  /** Schema version. */
11239
11321
  version?: number;
@@ -11242,12 +11324,12 @@ interface Metadata {
11242
11324
  * @readonly
11243
11325
  * @deprecated
11244
11326
  */
11245
- createdTimestamp?: Date;
11327
+ createdTimestamp?: Date | null;
11246
11328
  /**
11247
11329
  * When the object was most recently updated.
11248
11330
  * @deprecated
11249
11331
  */
11250
- updatedTimestamp?: Date;
11332
+ updatedTimestamp?: Date | null;
11251
11333
  /** Object ID. */
11252
11334
  _id?: string | null;
11253
11335
  }
@@ -12139,12 +12221,12 @@ interface Schema$1 {
12139
12221
  * Date and time the translation schema was created.
12140
12222
  * @readonly
12141
12223
  */
12142
- createdDate?: Date;
12224
+ createdDate?: Date | null;
12143
12225
  /**
12144
12226
  * Date and time the translation schema was updated.
12145
12227
  * @readonly
12146
12228
  */
12147
- updatedDate?: Date;
12229
+ updatedDate?: Date | null;
12148
12230
  /**
12149
12231
  * Whether to duplicate the translated content when a site containing the translation schema and content is duplicated.
12150
12232
  *
@@ -12435,12 +12517,12 @@ interface Schema {
12435
12517
  * Date and time the translation schema was created.
12436
12518
  * @readonly
12437
12519
  */
12438
- _createdDate?: Date;
12520
+ _createdDate?: Date | null;
12439
12521
  /**
12440
12522
  * Date and time the translation schema was updated.
12441
12523
  * @readonly
12442
12524
  */
12443
- _updatedDate?: Date;
12525
+ _updatedDate?: Date | null;
12444
12526
  /**
12445
12527
  * Whether to duplicate the translated content when a site containing the translation schema and content is duplicated.
12446
12528
  *