@gmb/bitmark-parser-generator 4.6.0 → 4.8.0

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/dist/index.d.cts CHANGED
@@ -1294,6 +1294,7 @@ declare const ConfigKey: Readonly<{
1294
1294
  property_bookDiff: "@bookDiff";
1295
1295
  property_bot: "@bot";
1296
1296
  property_bubbleTag: "@bubbleTag";
1297
+ property_extractorTag: "@extractorTag";
1297
1298
  property_buttonCaption: "@buttonCaption";
1298
1299
  property_callToActionUrl: "@callToActionUrl";
1299
1300
  property_caption: "@caption";
@@ -1420,6 +1421,7 @@ declare const ConfigKey: Readonly<{
1420
1421
  property_reference: "@reference";
1421
1422
  property_refPublicationYear: "@refPublicationYear";
1422
1423
  property_refPublisher: "@refPublisher";
1424
+ property_relatedBook: "@relatedBook";
1423
1425
  property_releaseDate: "@releaseDate";
1424
1426
  property_releaseKind: "@releaseKind";
1425
1427
  property_releaseVersion: "@releaseVersion";
@@ -1443,6 +1445,7 @@ declare const ConfigKey: Readonly<{
1443
1445
  property_src2x: "@src2x";
1444
1446
  property_src3x: "@src3x";
1445
1447
  property_src4x: "@src4x";
1448
+ property_srcAlt: "@srcAlt";
1446
1449
  property_stripePricingTableId: "@stripePricingTableId";
1447
1450
  property_stripePublishableKey: "@stripePublishableKey";
1448
1451
  property_subject: "@subject";
@@ -1584,6 +1587,7 @@ declare const ConfigKey: Readonly<{
1584
1587
  property_bookDiff: "@bookDiff";
1585
1588
  property_bot: "@bot";
1586
1589
  property_bubbleTag: "@bubbleTag";
1590
+ property_extractorTag: "@extractorTag";
1587
1591
  property_buttonCaption: "@buttonCaption";
1588
1592
  property_callToActionUrl: "@callToActionUrl";
1589
1593
  property_caption: "@caption";
@@ -1710,6 +1714,7 @@ declare const ConfigKey: Readonly<{
1710
1714
  property_reference: "@reference";
1711
1715
  property_refPublicationYear: "@refPublicationYear";
1712
1716
  property_refPublisher: "@refPublisher";
1717
+ property_relatedBook: "@relatedBook";
1713
1718
  property_releaseDate: "@releaseDate";
1714
1719
  property_releaseKind: "@releaseKind";
1715
1720
  property_releaseVersion: "@releaseVersion";
@@ -1733,6 +1738,7 @@ declare const ConfigKey: Readonly<{
1733
1738
  property_src2x: "@src2x";
1734
1739
  property_src3x: "@src3x";
1735
1740
  property_src4x: "@src4x";
1741
+ property_srcAlt: "@srcAlt";
1736
1742
  property_stripePricingTableId: "@stripePricingTableId";
1737
1743
  property_stripePublishableKey: "@stripePublishableKey";
1738
1744
  property_subject: "@subject";
@@ -2319,6 +2325,7 @@ interface BaseResourceJson {
2319
2325
  showInIndex: boolean;
2320
2326
  caption: JsonText;
2321
2327
  search: string;
2328
+ srcAlt: string[];
2322
2329
  }
2323
2330
  interface ImageResourceJson extends BaseResourceJson {
2324
2331
  format: string;
@@ -2517,6 +2524,7 @@ interface BitJson {
2517
2524
  groupTag: GroupTagJson[];
2518
2525
  reductionTag: string | string[];
2519
2526
  bubbleTag: string | string[];
2527
+ extractorTag: string | string[];
2520
2528
  levelCEFRp: string;
2521
2529
  levelCEFR: string;
2522
2530
  levelILR: string;
@@ -2533,6 +2541,7 @@ interface BitJson {
2533
2541
  publisher: string | string[];
2534
2542
  publisherName: string;
2535
2543
  publications: string | string[];
2544
+ relatedBook: string | string[];
2536
2545
  author: string | string[];
2537
2546
  subject: string | string[];
2538
2547
  date: string;
@@ -3040,6 +3049,7 @@ interface Bit {
3040
3049
  groupTag?: GroupTagJson[];
3041
3050
  reductionTag?: Property;
3042
3051
  bubbleTag?: Property;
3052
+ extractorTag?: Property;
3043
3053
  levelCEFRp?: Property;
3044
3054
  levelCEFR?: Property;
3045
3055
  levelILR?: Property;
@@ -3054,6 +3064,7 @@ interface Bit {
3054
3064
  coverImage?: Property;
3055
3065
  coverColor?: Property;
3056
3066
  publications?: Property;
3067
+ relatedBook?: Property;
3057
3068
  author?: Property;
3058
3069
  subject?: Property;
3059
3070
  date?: Property;
@@ -3321,6 +3332,8 @@ declare const NodeType: Readonly<{
3321
3332
  botValue: "botValue";
3322
3333
  bubbleTag: "bubbleTag";
3323
3334
  bubbleTagValue: "bubbleTagValue";
3335
+ extractorTag: "extractorTag";
3336
+ extractorTagValue: "extractorTagValue";
3324
3337
  buttonCaption: "buttonCaption";
3325
3338
  buttonCaptionValue: "buttonCaptionValue";
3326
3339
  callToActionUrl: "callToActionUrl";
@@ -3654,6 +3667,8 @@ declare const NodeType: Readonly<{
3654
3667
  referencePropertyValue: "referencePropertyValue";
3655
3668
  refPublicationYear: "refPublicationYear";
3656
3669
  refPublisher: "refPublisher";
3670
+ relatedBook: "relatedBook";
3671
+ relatedBookValue: "relatedBookValue";
3657
3672
  releaseDate: "releaseDate";
3658
3673
  releaseDateValue: "releaseDateValue";
3659
3674
  releaseKind: "releaseKind";
@@ -3699,6 +3714,8 @@ declare const NodeType: Readonly<{
3699
3714
  spaceId: "spaceId";
3700
3715
  spaceIdValue: "spaceIdValue";
3701
3716
  src: "src";
3717
+ srcAlt: "srcAlt";
3718
+ srcAltValue: "srcAltValue";
3702
3719
  src1x: "src1x";
3703
3720
  src2x: "src2x";
3704
3721
  src3x: "src3x";
@@ -3874,6 +3891,8 @@ declare const NodeType: Readonly<{
3874
3891
  botValue: "botValue";
3875
3892
  bubbleTag: "bubbleTag";
3876
3893
  bubbleTagValue: "bubbleTagValue";
3894
+ extractorTag: "extractorTag";
3895
+ extractorTagValue: "extractorTagValue";
3877
3896
  buttonCaption: "buttonCaption";
3878
3897
  buttonCaptionValue: "buttonCaptionValue";
3879
3898
  callToActionUrl: "callToActionUrl";
@@ -4207,6 +4226,8 @@ declare const NodeType: Readonly<{
4207
4226
  referencePropertyValue: "referencePropertyValue";
4208
4227
  refPublicationYear: "refPublicationYear";
4209
4228
  refPublisher: "refPublisher";
4229
+ relatedBook: "relatedBook";
4230
+ relatedBookValue: "relatedBookValue";
4210
4231
  releaseDate: "releaseDate";
4211
4232
  releaseDateValue: "releaseDateValue";
4212
4233
  releaseKind: "releaseKind";
@@ -4252,6 +4273,8 @@ declare const NodeType: Readonly<{
4252
4273
  spaceId: "spaceId";
4253
4274
  spaceIdValue: "spaceIdValue";
4254
4275
  src: "src";
4276
+ srcAlt: "srcAlt";
4277
+ srcAltValue: "srcAltValue";
4255
4278
  src1x: "src1x";
4256
4279
  src2x: "src2x";
4257
4280
  src3x: "src3x";
@@ -5258,6 +5281,7 @@ declare class Builder extends BaseBuilder {
5258
5281
  groupTag?: Partial<GroupTagJson> | Partial<GroupTagJson>[];
5259
5282
  reductionTag?: string | string[];
5260
5283
  bubbleTag?: string | string[];
5284
+ extractorTag?: string | string[];
5261
5285
  levelCEFRp?: string | string[];
5262
5286
  levelCEFR?: string | string[];
5263
5287
  levelILR?: string | string[];
@@ -5272,6 +5296,7 @@ declare class Builder extends BaseBuilder {
5272
5296
  coverImage?: string | string[];
5273
5297
  coverColor?: string;
5274
5298
  publications?: string | string[];
5299
+ relatedBook?: string | string[];
5275
5300
  author?: string | string[];
5276
5301
  subject?: string | string[];
5277
5302
  date?: string;
@@ -5909,6 +5934,7 @@ declare class ResourceBuilder extends BaseBuilder {
5909
5934
  resource(context: BuildContext, data: {
5910
5935
  type: ResourceTypeType;
5911
5936
  value?: string;
5937
+ srcAlt?: string[];
5912
5938
  format?: string;
5913
5939
  src1x?: string;
5914
5940
  src2x?: string;
@@ -5941,6 +5967,7 @@ declare class ResourceBuilder extends BaseBuilder {
5941
5967
  imageResource(context: BuildContext, data: {
5942
5968
  format: string;
5943
5969
  value: string;
5970
+ srcAlt?: string[];
5944
5971
  src1x?: string;
5945
5972
  src2x?: string;
5946
5973
  src3x?: string;
@@ -5964,6 +5991,7 @@ declare class ResourceBuilder extends BaseBuilder {
5964
5991
  imageLinkResource(context: BuildContext, data: {
5965
5992
  format: string;
5966
5993
  value: string;
5994
+ srcAlt?: string[];
5967
5995
  src1x?: string;
5968
5996
  src2x?: string;
5969
5997
  src3x?: string;
@@ -5987,6 +6015,7 @@ declare class ResourceBuilder extends BaseBuilder {
5987
6015
  audioResource(context: BuildContext, data: {
5988
6016
  format: string;
5989
6017
  value: string;
6018
+ srcAlt?: string[];
5990
6019
  duration?: number;
5991
6020
  mute?: boolean;
5992
6021
  autoplay?: boolean;
@@ -6005,6 +6034,7 @@ declare class ResourceBuilder extends BaseBuilder {
6005
6034
  audioEmbedResource(context: BuildContext, data: {
6006
6035
  format: string;
6007
6036
  value: string;
6037
+ srcAlt?: string[];
6008
6038
  duration?: number;
6009
6039
  mute?: boolean;
6010
6040
  autoplay?: boolean;
@@ -6023,6 +6053,7 @@ declare class ResourceBuilder extends BaseBuilder {
6023
6053
  audioLinkResource(context: BuildContext, data: {
6024
6054
  format: string;
6025
6055
  value: string;
6056
+ srcAlt?: string[];
6026
6057
  duration?: number;
6027
6058
  mute?: boolean;
6028
6059
  autoplay?: boolean;
@@ -6041,6 +6072,7 @@ declare class ResourceBuilder extends BaseBuilder {
6041
6072
  videoResource(context: BuildContext, data: {
6042
6073
  format: string;
6043
6074
  value: string;
6075
+ srcAlt?: string[];
6044
6076
  width?: string;
6045
6077
  height?: string;
6046
6078
  duration?: number;
@@ -6066,6 +6098,7 @@ declare class ResourceBuilder extends BaseBuilder {
6066
6098
  videoEmbedResource(context: BuildContext, data: {
6067
6099
  format: string;
6068
6100
  value: string;
6101
+ srcAlt?: string[];
6069
6102
  width?: string;
6070
6103
  height?: string;
6071
6104
  duration?: number;
@@ -6091,6 +6124,7 @@ declare class ResourceBuilder extends BaseBuilder {
6091
6124
  videoLinkResource(context: BuildContext, data: {
6092
6125
  format: string;
6093
6126
  value: string;
6127
+ srcAlt?: string[];
6094
6128
  width?: string;
6095
6129
  height?: string;
6096
6130
  duration?: number;
@@ -6116,6 +6150,7 @@ declare class ResourceBuilder extends BaseBuilder {
6116
6150
  stillImageFilmEmbedResource(context: BuildContext, data: {
6117
6151
  format: string;
6118
6152
  value: string;
6153
+ srcAlt?: string[];
6119
6154
  width?: string;
6120
6155
  height?: string;
6121
6156
  duration?: number;
@@ -6141,6 +6176,7 @@ declare class ResourceBuilder extends BaseBuilder {
6141
6176
  stillImageFilmLinkResource(context: BuildContext, data: {
6142
6177
  format: string;
6143
6178
  value: string;
6179
+ srcAlt?: string[];
6144
6180
  width?: string;
6145
6181
  height?: string;
6146
6182
  duration?: number;
@@ -6165,6 +6201,7 @@ declare class ResourceBuilder extends BaseBuilder {
6165
6201
  */
6166
6202
  articleResource(context: BuildContext, data: {
6167
6203
  format: string;
6204
+ srcAlt?: string[];
6168
6205
  value: string;
6169
6206
  license?: string;
6170
6207
  copyright?: string;
@@ -6181,6 +6218,7 @@ declare class ResourceBuilder extends BaseBuilder {
6181
6218
  documentResource(context: BuildContext, data: {
6182
6219
  format: string;
6183
6220
  value: string;
6221
+ srcAlt?: string[];
6184
6222
  license?: string;
6185
6223
  copyright?: string;
6186
6224
  showInIndex?: boolean;
@@ -6196,6 +6234,7 @@ declare class ResourceBuilder extends BaseBuilder {
6196
6234
  documentEmbedResource(context: BuildContext, data: {
6197
6235
  format: string;
6198
6236
  value: string;
6237
+ srcAlt?: string[];
6199
6238
  license?: string;
6200
6239
  copyright?: string;
6201
6240
  showInIndex?: boolean;
@@ -6211,6 +6250,7 @@ declare class ResourceBuilder extends BaseBuilder {
6211
6250
  documentLinkResource(context: BuildContext, data: {
6212
6251
  format: string;
6213
6252
  value: string;
6253
+ srcAlt?: string[];
6214
6254
  license?: string;
6215
6255
  copyright?: string;
6216
6256
  showInIndex?: boolean;
@@ -6226,6 +6266,7 @@ declare class ResourceBuilder extends BaseBuilder {
6226
6266
  documentDownloadResource(context: BuildContext, data: {
6227
6267
  format: string;
6228
6268
  value: string;
6269
+ srcAlt?: string[];
6229
6270
  license?: string;
6230
6271
  copyright?: string;
6231
6272
  showInIndex?: boolean;
@@ -6240,6 +6281,7 @@ declare class ResourceBuilder extends BaseBuilder {
6240
6281
  */
6241
6282
  appLinkResource(context: BuildContext, data: {
6242
6283
  value: string;
6284
+ srcAlt?: string[];
6243
6285
  license?: string;
6244
6286
  copyright?: string;
6245
6287
  showInIndex?: boolean;
@@ -6254,6 +6296,7 @@ declare class ResourceBuilder extends BaseBuilder {
6254
6296
  */
6255
6297
  websiteLinkResource(context: BuildContext, data: {
6256
6298
  value: string;
6299
+ srcAlt?: string[];
6257
6300
  siteName?: string;
6258
6301
  license?: string;
6259
6302
  copyright?: string;
@@ -6617,6 +6660,7 @@ declare class BitmarkGenerator extends AstWalkerGenerator<BitmarkAst, void> {
6617
6660
  protected leaf_key(node: NodeInfo, _route: NodeInfo[]): void;
6618
6661
  protected leaf_valuesValue(node: NodeInfo, _route: NodeInfo[]): void;
6619
6662
  protected leaf_question(node: NodeInfo, route: NodeInfo[]): void;
6663
+ protected leaf_srcAltValue(node: NodeInfo, route: NodeInfo[]): void;
6620
6664
  protected leaf_src1x(node: NodeInfo, route: NodeInfo[]): void;
6621
6665
  protected leaf_src2x(node: NodeInfo, route: NodeInfo[]): void;
6622
6666
  protected leaf_src3x(node: NodeInfo, route: NodeInfo[]): void;
package/dist/index.d.ts CHANGED
@@ -1294,6 +1294,7 @@ declare const ConfigKey: Readonly<{
1294
1294
  property_bookDiff: "@bookDiff";
1295
1295
  property_bot: "@bot";
1296
1296
  property_bubbleTag: "@bubbleTag";
1297
+ property_extractorTag: "@extractorTag";
1297
1298
  property_buttonCaption: "@buttonCaption";
1298
1299
  property_callToActionUrl: "@callToActionUrl";
1299
1300
  property_caption: "@caption";
@@ -1420,6 +1421,7 @@ declare const ConfigKey: Readonly<{
1420
1421
  property_reference: "@reference";
1421
1422
  property_refPublicationYear: "@refPublicationYear";
1422
1423
  property_refPublisher: "@refPublisher";
1424
+ property_relatedBook: "@relatedBook";
1423
1425
  property_releaseDate: "@releaseDate";
1424
1426
  property_releaseKind: "@releaseKind";
1425
1427
  property_releaseVersion: "@releaseVersion";
@@ -1443,6 +1445,7 @@ declare const ConfigKey: Readonly<{
1443
1445
  property_src2x: "@src2x";
1444
1446
  property_src3x: "@src3x";
1445
1447
  property_src4x: "@src4x";
1448
+ property_srcAlt: "@srcAlt";
1446
1449
  property_stripePricingTableId: "@stripePricingTableId";
1447
1450
  property_stripePublishableKey: "@stripePublishableKey";
1448
1451
  property_subject: "@subject";
@@ -1584,6 +1587,7 @@ declare const ConfigKey: Readonly<{
1584
1587
  property_bookDiff: "@bookDiff";
1585
1588
  property_bot: "@bot";
1586
1589
  property_bubbleTag: "@bubbleTag";
1590
+ property_extractorTag: "@extractorTag";
1587
1591
  property_buttonCaption: "@buttonCaption";
1588
1592
  property_callToActionUrl: "@callToActionUrl";
1589
1593
  property_caption: "@caption";
@@ -1710,6 +1714,7 @@ declare const ConfigKey: Readonly<{
1710
1714
  property_reference: "@reference";
1711
1715
  property_refPublicationYear: "@refPublicationYear";
1712
1716
  property_refPublisher: "@refPublisher";
1717
+ property_relatedBook: "@relatedBook";
1713
1718
  property_releaseDate: "@releaseDate";
1714
1719
  property_releaseKind: "@releaseKind";
1715
1720
  property_releaseVersion: "@releaseVersion";
@@ -1733,6 +1738,7 @@ declare const ConfigKey: Readonly<{
1733
1738
  property_src2x: "@src2x";
1734
1739
  property_src3x: "@src3x";
1735
1740
  property_src4x: "@src4x";
1741
+ property_srcAlt: "@srcAlt";
1736
1742
  property_stripePricingTableId: "@stripePricingTableId";
1737
1743
  property_stripePublishableKey: "@stripePublishableKey";
1738
1744
  property_subject: "@subject";
@@ -2319,6 +2325,7 @@ interface BaseResourceJson {
2319
2325
  showInIndex: boolean;
2320
2326
  caption: JsonText;
2321
2327
  search: string;
2328
+ srcAlt: string[];
2322
2329
  }
2323
2330
  interface ImageResourceJson extends BaseResourceJson {
2324
2331
  format: string;
@@ -2517,6 +2524,7 @@ interface BitJson {
2517
2524
  groupTag: GroupTagJson[];
2518
2525
  reductionTag: string | string[];
2519
2526
  bubbleTag: string | string[];
2527
+ extractorTag: string | string[];
2520
2528
  levelCEFRp: string;
2521
2529
  levelCEFR: string;
2522
2530
  levelILR: string;
@@ -2533,6 +2541,7 @@ interface BitJson {
2533
2541
  publisher: string | string[];
2534
2542
  publisherName: string;
2535
2543
  publications: string | string[];
2544
+ relatedBook: string | string[];
2536
2545
  author: string | string[];
2537
2546
  subject: string | string[];
2538
2547
  date: string;
@@ -3040,6 +3049,7 @@ interface Bit {
3040
3049
  groupTag?: GroupTagJson[];
3041
3050
  reductionTag?: Property;
3042
3051
  bubbleTag?: Property;
3052
+ extractorTag?: Property;
3043
3053
  levelCEFRp?: Property;
3044
3054
  levelCEFR?: Property;
3045
3055
  levelILR?: Property;
@@ -3054,6 +3064,7 @@ interface Bit {
3054
3064
  coverImage?: Property;
3055
3065
  coverColor?: Property;
3056
3066
  publications?: Property;
3067
+ relatedBook?: Property;
3057
3068
  author?: Property;
3058
3069
  subject?: Property;
3059
3070
  date?: Property;
@@ -3321,6 +3332,8 @@ declare const NodeType: Readonly<{
3321
3332
  botValue: "botValue";
3322
3333
  bubbleTag: "bubbleTag";
3323
3334
  bubbleTagValue: "bubbleTagValue";
3335
+ extractorTag: "extractorTag";
3336
+ extractorTagValue: "extractorTagValue";
3324
3337
  buttonCaption: "buttonCaption";
3325
3338
  buttonCaptionValue: "buttonCaptionValue";
3326
3339
  callToActionUrl: "callToActionUrl";
@@ -3654,6 +3667,8 @@ declare const NodeType: Readonly<{
3654
3667
  referencePropertyValue: "referencePropertyValue";
3655
3668
  refPublicationYear: "refPublicationYear";
3656
3669
  refPublisher: "refPublisher";
3670
+ relatedBook: "relatedBook";
3671
+ relatedBookValue: "relatedBookValue";
3657
3672
  releaseDate: "releaseDate";
3658
3673
  releaseDateValue: "releaseDateValue";
3659
3674
  releaseKind: "releaseKind";
@@ -3699,6 +3714,8 @@ declare const NodeType: Readonly<{
3699
3714
  spaceId: "spaceId";
3700
3715
  spaceIdValue: "spaceIdValue";
3701
3716
  src: "src";
3717
+ srcAlt: "srcAlt";
3718
+ srcAltValue: "srcAltValue";
3702
3719
  src1x: "src1x";
3703
3720
  src2x: "src2x";
3704
3721
  src3x: "src3x";
@@ -3874,6 +3891,8 @@ declare const NodeType: Readonly<{
3874
3891
  botValue: "botValue";
3875
3892
  bubbleTag: "bubbleTag";
3876
3893
  bubbleTagValue: "bubbleTagValue";
3894
+ extractorTag: "extractorTag";
3895
+ extractorTagValue: "extractorTagValue";
3877
3896
  buttonCaption: "buttonCaption";
3878
3897
  buttonCaptionValue: "buttonCaptionValue";
3879
3898
  callToActionUrl: "callToActionUrl";
@@ -4207,6 +4226,8 @@ declare const NodeType: Readonly<{
4207
4226
  referencePropertyValue: "referencePropertyValue";
4208
4227
  refPublicationYear: "refPublicationYear";
4209
4228
  refPublisher: "refPublisher";
4229
+ relatedBook: "relatedBook";
4230
+ relatedBookValue: "relatedBookValue";
4210
4231
  releaseDate: "releaseDate";
4211
4232
  releaseDateValue: "releaseDateValue";
4212
4233
  releaseKind: "releaseKind";
@@ -4252,6 +4273,8 @@ declare const NodeType: Readonly<{
4252
4273
  spaceId: "spaceId";
4253
4274
  spaceIdValue: "spaceIdValue";
4254
4275
  src: "src";
4276
+ srcAlt: "srcAlt";
4277
+ srcAltValue: "srcAltValue";
4255
4278
  src1x: "src1x";
4256
4279
  src2x: "src2x";
4257
4280
  src3x: "src3x";
@@ -5258,6 +5281,7 @@ declare class Builder extends BaseBuilder {
5258
5281
  groupTag?: Partial<GroupTagJson> | Partial<GroupTagJson>[];
5259
5282
  reductionTag?: string | string[];
5260
5283
  bubbleTag?: string | string[];
5284
+ extractorTag?: string | string[];
5261
5285
  levelCEFRp?: string | string[];
5262
5286
  levelCEFR?: string | string[];
5263
5287
  levelILR?: string | string[];
@@ -5272,6 +5296,7 @@ declare class Builder extends BaseBuilder {
5272
5296
  coverImage?: string | string[];
5273
5297
  coverColor?: string;
5274
5298
  publications?: string | string[];
5299
+ relatedBook?: string | string[];
5275
5300
  author?: string | string[];
5276
5301
  subject?: string | string[];
5277
5302
  date?: string;
@@ -5909,6 +5934,7 @@ declare class ResourceBuilder extends BaseBuilder {
5909
5934
  resource(context: BuildContext, data: {
5910
5935
  type: ResourceTypeType;
5911
5936
  value?: string;
5937
+ srcAlt?: string[];
5912
5938
  format?: string;
5913
5939
  src1x?: string;
5914
5940
  src2x?: string;
@@ -5941,6 +5967,7 @@ declare class ResourceBuilder extends BaseBuilder {
5941
5967
  imageResource(context: BuildContext, data: {
5942
5968
  format: string;
5943
5969
  value: string;
5970
+ srcAlt?: string[];
5944
5971
  src1x?: string;
5945
5972
  src2x?: string;
5946
5973
  src3x?: string;
@@ -5964,6 +5991,7 @@ declare class ResourceBuilder extends BaseBuilder {
5964
5991
  imageLinkResource(context: BuildContext, data: {
5965
5992
  format: string;
5966
5993
  value: string;
5994
+ srcAlt?: string[];
5967
5995
  src1x?: string;
5968
5996
  src2x?: string;
5969
5997
  src3x?: string;
@@ -5987,6 +6015,7 @@ declare class ResourceBuilder extends BaseBuilder {
5987
6015
  audioResource(context: BuildContext, data: {
5988
6016
  format: string;
5989
6017
  value: string;
6018
+ srcAlt?: string[];
5990
6019
  duration?: number;
5991
6020
  mute?: boolean;
5992
6021
  autoplay?: boolean;
@@ -6005,6 +6034,7 @@ declare class ResourceBuilder extends BaseBuilder {
6005
6034
  audioEmbedResource(context: BuildContext, data: {
6006
6035
  format: string;
6007
6036
  value: string;
6037
+ srcAlt?: string[];
6008
6038
  duration?: number;
6009
6039
  mute?: boolean;
6010
6040
  autoplay?: boolean;
@@ -6023,6 +6053,7 @@ declare class ResourceBuilder extends BaseBuilder {
6023
6053
  audioLinkResource(context: BuildContext, data: {
6024
6054
  format: string;
6025
6055
  value: string;
6056
+ srcAlt?: string[];
6026
6057
  duration?: number;
6027
6058
  mute?: boolean;
6028
6059
  autoplay?: boolean;
@@ -6041,6 +6072,7 @@ declare class ResourceBuilder extends BaseBuilder {
6041
6072
  videoResource(context: BuildContext, data: {
6042
6073
  format: string;
6043
6074
  value: string;
6075
+ srcAlt?: string[];
6044
6076
  width?: string;
6045
6077
  height?: string;
6046
6078
  duration?: number;
@@ -6066,6 +6098,7 @@ declare class ResourceBuilder extends BaseBuilder {
6066
6098
  videoEmbedResource(context: BuildContext, data: {
6067
6099
  format: string;
6068
6100
  value: string;
6101
+ srcAlt?: string[];
6069
6102
  width?: string;
6070
6103
  height?: string;
6071
6104
  duration?: number;
@@ -6091,6 +6124,7 @@ declare class ResourceBuilder extends BaseBuilder {
6091
6124
  videoLinkResource(context: BuildContext, data: {
6092
6125
  format: string;
6093
6126
  value: string;
6127
+ srcAlt?: string[];
6094
6128
  width?: string;
6095
6129
  height?: string;
6096
6130
  duration?: number;
@@ -6116,6 +6150,7 @@ declare class ResourceBuilder extends BaseBuilder {
6116
6150
  stillImageFilmEmbedResource(context: BuildContext, data: {
6117
6151
  format: string;
6118
6152
  value: string;
6153
+ srcAlt?: string[];
6119
6154
  width?: string;
6120
6155
  height?: string;
6121
6156
  duration?: number;
@@ -6141,6 +6176,7 @@ declare class ResourceBuilder extends BaseBuilder {
6141
6176
  stillImageFilmLinkResource(context: BuildContext, data: {
6142
6177
  format: string;
6143
6178
  value: string;
6179
+ srcAlt?: string[];
6144
6180
  width?: string;
6145
6181
  height?: string;
6146
6182
  duration?: number;
@@ -6165,6 +6201,7 @@ declare class ResourceBuilder extends BaseBuilder {
6165
6201
  */
6166
6202
  articleResource(context: BuildContext, data: {
6167
6203
  format: string;
6204
+ srcAlt?: string[];
6168
6205
  value: string;
6169
6206
  license?: string;
6170
6207
  copyright?: string;
@@ -6181,6 +6218,7 @@ declare class ResourceBuilder extends BaseBuilder {
6181
6218
  documentResource(context: BuildContext, data: {
6182
6219
  format: string;
6183
6220
  value: string;
6221
+ srcAlt?: string[];
6184
6222
  license?: string;
6185
6223
  copyright?: string;
6186
6224
  showInIndex?: boolean;
@@ -6196,6 +6234,7 @@ declare class ResourceBuilder extends BaseBuilder {
6196
6234
  documentEmbedResource(context: BuildContext, data: {
6197
6235
  format: string;
6198
6236
  value: string;
6237
+ srcAlt?: string[];
6199
6238
  license?: string;
6200
6239
  copyright?: string;
6201
6240
  showInIndex?: boolean;
@@ -6211,6 +6250,7 @@ declare class ResourceBuilder extends BaseBuilder {
6211
6250
  documentLinkResource(context: BuildContext, data: {
6212
6251
  format: string;
6213
6252
  value: string;
6253
+ srcAlt?: string[];
6214
6254
  license?: string;
6215
6255
  copyright?: string;
6216
6256
  showInIndex?: boolean;
@@ -6226,6 +6266,7 @@ declare class ResourceBuilder extends BaseBuilder {
6226
6266
  documentDownloadResource(context: BuildContext, data: {
6227
6267
  format: string;
6228
6268
  value: string;
6269
+ srcAlt?: string[];
6229
6270
  license?: string;
6230
6271
  copyright?: string;
6231
6272
  showInIndex?: boolean;
@@ -6240,6 +6281,7 @@ declare class ResourceBuilder extends BaseBuilder {
6240
6281
  */
6241
6282
  appLinkResource(context: BuildContext, data: {
6242
6283
  value: string;
6284
+ srcAlt?: string[];
6243
6285
  license?: string;
6244
6286
  copyright?: string;
6245
6287
  showInIndex?: boolean;
@@ -6254,6 +6296,7 @@ declare class ResourceBuilder extends BaseBuilder {
6254
6296
  */
6255
6297
  websiteLinkResource(context: BuildContext, data: {
6256
6298
  value: string;
6299
+ srcAlt?: string[];
6257
6300
  siteName?: string;
6258
6301
  license?: string;
6259
6302
  copyright?: string;
@@ -6617,6 +6660,7 @@ declare class BitmarkGenerator extends AstWalkerGenerator<BitmarkAst, void> {
6617
6660
  protected leaf_key(node: NodeInfo, _route: NodeInfo[]): void;
6618
6661
  protected leaf_valuesValue(node: NodeInfo, _route: NodeInfo[]): void;
6619
6662
  protected leaf_question(node: NodeInfo, route: NodeInfo[]): void;
6663
+ protected leaf_srcAltValue(node: NodeInfo, route: NodeInfo[]): void;
6620
6664
  protected leaf_src1x(node: NodeInfo, route: NodeInfo[]): void;
6621
6665
  protected leaf_src2x(node: NodeInfo, route: NodeInfo[]): void;
6622
6666
  protected leaf_src3x(node: NodeInfo, route: NodeInfo[]): void;