@gmb/bitmark-parser-generator 4.6.0 → 4.7.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";
@@ -1443,6 +1444,7 @@ declare const ConfigKey: Readonly<{
1443
1444
  property_src2x: "@src2x";
1444
1445
  property_src3x: "@src3x";
1445
1446
  property_src4x: "@src4x";
1447
+ property_srcAlt: "@srcAlt";
1446
1448
  property_stripePricingTableId: "@stripePricingTableId";
1447
1449
  property_stripePublishableKey: "@stripePublishableKey";
1448
1450
  property_subject: "@subject";
@@ -1584,6 +1586,7 @@ declare const ConfigKey: Readonly<{
1584
1586
  property_bookDiff: "@bookDiff";
1585
1587
  property_bot: "@bot";
1586
1588
  property_bubbleTag: "@bubbleTag";
1589
+ property_extractorTag: "@extractorTag";
1587
1590
  property_buttonCaption: "@buttonCaption";
1588
1591
  property_callToActionUrl: "@callToActionUrl";
1589
1592
  property_caption: "@caption";
@@ -1733,6 +1736,7 @@ declare const ConfigKey: Readonly<{
1733
1736
  property_src2x: "@src2x";
1734
1737
  property_src3x: "@src3x";
1735
1738
  property_src4x: "@src4x";
1739
+ property_srcAlt: "@srcAlt";
1736
1740
  property_stripePricingTableId: "@stripePricingTableId";
1737
1741
  property_stripePublishableKey: "@stripePublishableKey";
1738
1742
  property_subject: "@subject";
@@ -2319,6 +2323,7 @@ interface BaseResourceJson {
2319
2323
  showInIndex: boolean;
2320
2324
  caption: JsonText;
2321
2325
  search: string;
2326
+ srcAlt: string[];
2322
2327
  }
2323
2328
  interface ImageResourceJson extends BaseResourceJson {
2324
2329
  format: string;
@@ -2517,6 +2522,7 @@ interface BitJson {
2517
2522
  groupTag: GroupTagJson[];
2518
2523
  reductionTag: string | string[];
2519
2524
  bubbleTag: string | string[];
2525
+ extractorTag: string | string[];
2520
2526
  levelCEFRp: string;
2521
2527
  levelCEFR: string;
2522
2528
  levelILR: string;
@@ -3040,6 +3046,7 @@ interface Bit {
3040
3046
  groupTag?: GroupTagJson[];
3041
3047
  reductionTag?: Property;
3042
3048
  bubbleTag?: Property;
3049
+ extractorTag?: Property;
3043
3050
  levelCEFRp?: Property;
3044
3051
  levelCEFR?: Property;
3045
3052
  levelILR?: Property;
@@ -3321,6 +3328,8 @@ declare const NodeType: Readonly<{
3321
3328
  botValue: "botValue";
3322
3329
  bubbleTag: "bubbleTag";
3323
3330
  bubbleTagValue: "bubbleTagValue";
3331
+ extractorTag: "extractorTag";
3332
+ extractorTagValue: "extractorTagValue";
3324
3333
  buttonCaption: "buttonCaption";
3325
3334
  buttonCaptionValue: "buttonCaptionValue";
3326
3335
  callToActionUrl: "callToActionUrl";
@@ -3699,6 +3708,8 @@ declare const NodeType: Readonly<{
3699
3708
  spaceId: "spaceId";
3700
3709
  spaceIdValue: "spaceIdValue";
3701
3710
  src: "src";
3711
+ srcAlt: "srcAlt";
3712
+ srcAltValue: "srcAltValue";
3702
3713
  src1x: "src1x";
3703
3714
  src2x: "src2x";
3704
3715
  src3x: "src3x";
@@ -3874,6 +3885,8 @@ declare const NodeType: Readonly<{
3874
3885
  botValue: "botValue";
3875
3886
  bubbleTag: "bubbleTag";
3876
3887
  bubbleTagValue: "bubbleTagValue";
3888
+ extractorTag: "extractorTag";
3889
+ extractorTagValue: "extractorTagValue";
3877
3890
  buttonCaption: "buttonCaption";
3878
3891
  buttonCaptionValue: "buttonCaptionValue";
3879
3892
  callToActionUrl: "callToActionUrl";
@@ -4252,6 +4265,8 @@ declare const NodeType: Readonly<{
4252
4265
  spaceId: "spaceId";
4253
4266
  spaceIdValue: "spaceIdValue";
4254
4267
  src: "src";
4268
+ srcAlt: "srcAlt";
4269
+ srcAltValue: "srcAltValue";
4255
4270
  src1x: "src1x";
4256
4271
  src2x: "src2x";
4257
4272
  src3x: "src3x";
@@ -5258,6 +5273,7 @@ declare class Builder extends BaseBuilder {
5258
5273
  groupTag?: Partial<GroupTagJson> | Partial<GroupTagJson>[];
5259
5274
  reductionTag?: string | string[];
5260
5275
  bubbleTag?: string | string[];
5276
+ extractorTag?: string | string[];
5261
5277
  levelCEFRp?: string | string[];
5262
5278
  levelCEFR?: string | string[];
5263
5279
  levelILR?: string | string[];
@@ -5909,6 +5925,7 @@ declare class ResourceBuilder extends BaseBuilder {
5909
5925
  resource(context: BuildContext, data: {
5910
5926
  type: ResourceTypeType;
5911
5927
  value?: string;
5928
+ srcAlt?: string[];
5912
5929
  format?: string;
5913
5930
  src1x?: string;
5914
5931
  src2x?: string;
@@ -5941,6 +5958,7 @@ declare class ResourceBuilder extends BaseBuilder {
5941
5958
  imageResource(context: BuildContext, data: {
5942
5959
  format: string;
5943
5960
  value: string;
5961
+ srcAlt?: string[];
5944
5962
  src1x?: string;
5945
5963
  src2x?: string;
5946
5964
  src3x?: string;
@@ -5964,6 +5982,7 @@ declare class ResourceBuilder extends BaseBuilder {
5964
5982
  imageLinkResource(context: BuildContext, data: {
5965
5983
  format: string;
5966
5984
  value: string;
5985
+ srcAlt?: string[];
5967
5986
  src1x?: string;
5968
5987
  src2x?: string;
5969
5988
  src3x?: string;
@@ -5987,6 +6006,7 @@ declare class ResourceBuilder extends BaseBuilder {
5987
6006
  audioResource(context: BuildContext, data: {
5988
6007
  format: string;
5989
6008
  value: string;
6009
+ srcAlt?: string[];
5990
6010
  duration?: number;
5991
6011
  mute?: boolean;
5992
6012
  autoplay?: boolean;
@@ -6005,6 +6025,7 @@ declare class ResourceBuilder extends BaseBuilder {
6005
6025
  audioEmbedResource(context: BuildContext, data: {
6006
6026
  format: string;
6007
6027
  value: string;
6028
+ srcAlt?: string[];
6008
6029
  duration?: number;
6009
6030
  mute?: boolean;
6010
6031
  autoplay?: boolean;
@@ -6023,6 +6044,7 @@ declare class ResourceBuilder extends BaseBuilder {
6023
6044
  audioLinkResource(context: BuildContext, data: {
6024
6045
  format: string;
6025
6046
  value: string;
6047
+ srcAlt?: string[];
6026
6048
  duration?: number;
6027
6049
  mute?: boolean;
6028
6050
  autoplay?: boolean;
@@ -6041,6 +6063,7 @@ declare class ResourceBuilder extends BaseBuilder {
6041
6063
  videoResource(context: BuildContext, data: {
6042
6064
  format: string;
6043
6065
  value: string;
6066
+ srcAlt?: string[];
6044
6067
  width?: string;
6045
6068
  height?: string;
6046
6069
  duration?: number;
@@ -6066,6 +6089,7 @@ declare class ResourceBuilder extends BaseBuilder {
6066
6089
  videoEmbedResource(context: BuildContext, data: {
6067
6090
  format: string;
6068
6091
  value: string;
6092
+ srcAlt?: string[];
6069
6093
  width?: string;
6070
6094
  height?: string;
6071
6095
  duration?: number;
@@ -6091,6 +6115,7 @@ declare class ResourceBuilder extends BaseBuilder {
6091
6115
  videoLinkResource(context: BuildContext, data: {
6092
6116
  format: string;
6093
6117
  value: string;
6118
+ srcAlt?: string[];
6094
6119
  width?: string;
6095
6120
  height?: string;
6096
6121
  duration?: number;
@@ -6116,6 +6141,7 @@ declare class ResourceBuilder extends BaseBuilder {
6116
6141
  stillImageFilmEmbedResource(context: BuildContext, data: {
6117
6142
  format: string;
6118
6143
  value: string;
6144
+ srcAlt?: string[];
6119
6145
  width?: string;
6120
6146
  height?: string;
6121
6147
  duration?: number;
@@ -6141,6 +6167,7 @@ declare class ResourceBuilder extends BaseBuilder {
6141
6167
  stillImageFilmLinkResource(context: BuildContext, data: {
6142
6168
  format: string;
6143
6169
  value: string;
6170
+ srcAlt?: string[];
6144
6171
  width?: string;
6145
6172
  height?: string;
6146
6173
  duration?: number;
@@ -6165,6 +6192,7 @@ declare class ResourceBuilder extends BaseBuilder {
6165
6192
  */
6166
6193
  articleResource(context: BuildContext, data: {
6167
6194
  format: string;
6195
+ srcAlt?: string[];
6168
6196
  value: string;
6169
6197
  license?: string;
6170
6198
  copyright?: string;
@@ -6181,6 +6209,7 @@ declare class ResourceBuilder extends BaseBuilder {
6181
6209
  documentResource(context: BuildContext, data: {
6182
6210
  format: string;
6183
6211
  value: string;
6212
+ srcAlt?: string[];
6184
6213
  license?: string;
6185
6214
  copyright?: string;
6186
6215
  showInIndex?: boolean;
@@ -6196,6 +6225,7 @@ declare class ResourceBuilder extends BaseBuilder {
6196
6225
  documentEmbedResource(context: BuildContext, data: {
6197
6226
  format: string;
6198
6227
  value: string;
6228
+ srcAlt?: string[];
6199
6229
  license?: string;
6200
6230
  copyright?: string;
6201
6231
  showInIndex?: boolean;
@@ -6211,6 +6241,7 @@ declare class ResourceBuilder extends BaseBuilder {
6211
6241
  documentLinkResource(context: BuildContext, data: {
6212
6242
  format: string;
6213
6243
  value: string;
6244
+ srcAlt?: string[];
6214
6245
  license?: string;
6215
6246
  copyright?: string;
6216
6247
  showInIndex?: boolean;
@@ -6226,6 +6257,7 @@ declare class ResourceBuilder extends BaseBuilder {
6226
6257
  documentDownloadResource(context: BuildContext, data: {
6227
6258
  format: string;
6228
6259
  value: string;
6260
+ srcAlt?: string[];
6229
6261
  license?: string;
6230
6262
  copyright?: string;
6231
6263
  showInIndex?: boolean;
@@ -6240,6 +6272,7 @@ declare class ResourceBuilder extends BaseBuilder {
6240
6272
  */
6241
6273
  appLinkResource(context: BuildContext, data: {
6242
6274
  value: string;
6275
+ srcAlt?: string[];
6243
6276
  license?: string;
6244
6277
  copyright?: string;
6245
6278
  showInIndex?: boolean;
@@ -6254,6 +6287,7 @@ declare class ResourceBuilder extends BaseBuilder {
6254
6287
  */
6255
6288
  websiteLinkResource(context: BuildContext, data: {
6256
6289
  value: string;
6290
+ srcAlt?: string[];
6257
6291
  siteName?: string;
6258
6292
  license?: string;
6259
6293
  copyright?: string;
@@ -6617,6 +6651,7 @@ declare class BitmarkGenerator extends AstWalkerGenerator<BitmarkAst, void> {
6617
6651
  protected leaf_key(node: NodeInfo, _route: NodeInfo[]): void;
6618
6652
  protected leaf_valuesValue(node: NodeInfo, _route: NodeInfo[]): void;
6619
6653
  protected leaf_question(node: NodeInfo, route: NodeInfo[]): void;
6654
+ protected leaf_srcAltValue(node: NodeInfo, route: NodeInfo[]): void;
6620
6655
  protected leaf_src1x(node: NodeInfo, route: NodeInfo[]): void;
6621
6656
  protected leaf_src2x(node: NodeInfo, route: NodeInfo[]): void;
6622
6657
  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";
@@ -1443,6 +1444,7 @@ declare const ConfigKey: Readonly<{
1443
1444
  property_src2x: "@src2x";
1444
1445
  property_src3x: "@src3x";
1445
1446
  property_src4x: "@src4x";
1447
+ property_srcAlt: "@srcAlt";
1446
1448
  property_stripePricingTableId: "@stripePricingTableId";
1447
1449
  property_stripePublishableKey: "@stripePublishableKey";
1448
1450
  property_subject: "@subject";
@@ -1584,6 +1586,7 @@ declare const ConfigKey: Readonly<{
1584
1586
  property_bookDiff: "@bookDiff";
1585
1587
  property_bot: "@bot";
1586
1588
  property_bubbleTag: "@bubbleTag";
1589
+ property_extractorTag: "@extractorTag";
1587
1590
  property_buttonCaption: "@buttonCaption";
1588
1591
  property_callToActionUrl: "@callToActionUrl";
1589
1592
  property_caption: "@caption";
@@ -1733,6 +1736,7 @@ declare const ConfigKey: Readonly<{
1733
1736
  property_src2x: "@src2x";
1734
1737
  property_src3x: "@src3x";
1735
1738
  property_src4x: "@src4x";
1739
+ property_srcAlt: "@srcAlt";
1736
1740
  property_stripePricingTableId: "@stripePricingTableId";
1737
1741
  property_stripePublishableKey: "@stripePublishableKey";
1738
1742
  property_subject: "@subject";
@@ -2319,6 +2323,7 @@ interface BaseResourceJson {
2319
2323
  showInIndex: boolean;
2320
2324
  caption: JsonText;
2321
2325
  search: string;
2326
+ srcAlt: string[];
2322
2327
  }
2323
2328
  interface ImageResourceJson extends BaseResourceJson {
2324
2329
  format: string;
@@ -2517,6 +2522,7 @@ interface BitJson {
2517
2522
  groupTag: GroupTagJson[];
2518
2523
  reductionTag: string | string[];
2519
2524
  bubbleTag: string | string[];
2525
+ extractorTag: string | string[];
2520
2526
  levelCEFRp: string;
2521
2527
  levelCEFR: string;
2522
2528
  levelILR: string;
@@ -3040,6 +3046,7 @@ interface Bit {
3040
3046
  groupTag?: GroupTagJson[];
3041
3047
  reductionTag?: Property;
3042
3048
  bubbleTag?: Property;
3049
+ extractorTag?: Property;
3043
3050
  levelCEFRp?: Property;
3044
3051
  levelCEFR?: Property;
3045
3052
  levelILR?: Property;
@@ -3321,6 +3328,8 @@ declare const NodeType: Readonly<{
3321
3328
  botValue: "botValue";
3322
3329
  bubbleTag: "bubbleTag";
3323
3330
  bubbleTagValue: "bubbleTagValue";
3331
+ extractorTag: "extractorTag";
3332
+ extractorTagValue: "extractorTagValue";
3324
3333
  buttonCaption: "buttonCaption";
3325
3334
  buttonCaptionValue: "buttonCaptionValue";
3326
3335
  callToActionUrl: "callToActionUrl";
@@ -3699,6 +3708,8 @@ declare const NodeType: Readonly<{
3699
3708
  spaceId: "spaceId";
3700
3709
  spaceIdValue: "spaceIdValue";
3701
3710
  src: "src";
3711
+ srcAlt: "srcAlt";
3712
+ srcAltValue: "srcAltValue";
3702
3713
  src1x: "src1x";
3703
3714
  src2x: "src2x";
3704
3715
  src3x: "src3x";
@@ -3874,6 +3885,8 @@ declare const NodeType: Readonly<{
3874
3885
  botValue: "botValue";
3875
3886
  bubbleTag: "bubbleTag";
3876
3887
  bubbleTagValue: "bubbleTagValue";
3888
+ extractorTag: "extractorTag";
3889
+ extractorTagValue: "extractorTagValue";
3877
3890
  buttonCaption: "buttonCaption";
3878
3891
  buttonCaptionValue: "buttonCaptionValue";
3879
3892
  callToActionUrl: "callToActionUrl";
@@ -4252,6 +4265,8 @@ declare const NodeType: Readonly<{
4252
4265
  spaceId: "spaceId";
4253
4266
  spaceIdValue: "spaceIdValue";
4254
4267
  src: "src";
4268
+ srcAlt: "srcAlt";
4269
+ srcAltValue: "srcAltValue";
4255
4270
  src1x: "src1x";
4256
4271
  src2x: "src2x";
4257
4272
  src3x: "src3x";
@@ -5258,6 +5273,7 @@ declare class Builder extends BaseBuilder {
5258
5273
  groupTag?: Partial<GroupTagJson> | Partial<GroupTagJson>[];
5259
5274
  reductionTag?: string | string[];
5260
5275
  bubbleTag?: string | string[];
5276
+ extractorTag?: string | string[];
5261
5277
  levelCEFRp?: string | string[];
5262
5278
  levelCEFR?: string | string[];
5263
5279
  levelILR?: string | string[];
@@ -5909,6 +5925,7 @@ declare class ResourceBuilder extends BaseBuilder {
5909
5925
  resource(context: BuildContext, data: {
5910
5926
  type: ResourceTypeType;
5911
5927
  value?: string;
5928
+ srcAlt?: string[];
5912
5929
  format?: string;
5913
5930
  src1x?: string;
5914
5931
  src2x?: string;
@@ -5941,6 +5958,7 @@ declare class ResourceBuilder extends BaseBuilder {
5941
5958
  imageResource(context: BuildContext, data: {
5942
5959
  format: string;
5943
5960
  value: string;
5961
+ srcAlt?: string[];
5944
5962
  src1x?: string;
5945
5963
  src2x?: string;
5946
5964
  src3x?: string;
@@ -5964,6 +5982,7 @@ declare class ResourceBuilder extends BaseBuilder {
5964
5982
  imageLinkResource(context: BuildContext, data: {
5965
5983
  format: string;
5966
5984
  value: string;
5985
+ srcAlt?: string[];
5967
5986
  src1x?: string;
5968
5987
  src2x?: string;
5969
5988
  src3x?: string;
@@ -5987,6 +6006,7 @@ declare class ResourceBuilder extends BaseBuilder {
5987
6006
  audioResource(context: BuildContext, data: {
5988
6007
  format: string;
5989
6008
  value: string;
6009
+ srcAlt?: string[];
5990
6010
  duration?: number;
5991
6011
  mute?: boolean;
5992
6012
  autoplay?: boolean;
@@ -6005,6 +6025,7 @@ declare class ResourceBuilder extends BaseBuilder {
6005
6025
  audioEmbedResource(context: BuildContext, data: {
6006
6026
  format: string;
6007
6027
  value: string;
6028
+ srcAlt?: string[];
6008
6029
  duration?: number;
6009
6030
  mute?: boolean;
6010
6031
  autoplay?: boolean;
@@ -6023,6 +6044,7 @@ declare class ResourceBuilder extends BaseBuilder {
6023
6044
  audioLinkResource(context: BuildContext, data: {
6024
6045
  format: string;
6025
6046
  value: string;
6047
+ srcAlt?: string[];
6026
6048
  duration?: number;
6027
6049
  mute?: boolean;
6028
6050
  autoplay?: boolean;
@@ -6041,6 +6063,7 @@ declare class ResourceBuilder extends BaseBuilder {
6041
6063
  videoResource(context: BuildContext, data: {
6042
6064
  format: string;
6043
6065
  value: string;
6066
+ srcAlt?: string[];
6044
6067
  width?: string;
6045
6068
  height?: string;
6046
6069
  duration?: number;
@@ -6066,6 +6089,7 @@ declare class ResourceBuilder extends BaseBuilder {
6066
6089
  videoEmbedResource(context: BuildContext, data: {
6067
6090
  format: string;
6068
6091
  value: string;
6092
+ srcAlt?: string[];
6069
6093
  width?: string;
6070
6094
  height?: string;
6071
6095
  duration?: number;
@@ -6091,6 +6115,7 @@ declare class ResourceBuilder extends BaseBuilder {
6091
6115
  videoLinkResource(context: BuildContext, data: {
6092
6116
  format: string;
6093
6117
  value: string;
6118
+ srcAlt?: string[];
6094
6119
  width?: string;
6095
6120
  height?: string;
6096
6121
  duration?: number;
@@ -6116,6 +6141,7 @@ declare class ResourceBuilder extends BaseBuilder {
6116
6141
  stillImageFilmEmbedResource(context: BuildContext, data: {
6117
6142
  format: string;
6118
6143
  value: string;
6144
+ srcAlt?: string[];
6119
6145
  width?: string;
6120
6146
  height?: string;
6121
6147
  duration?: number;
@@ -6141,6 +6167,7 @@ declare class ResourceBuilder extends BaseBuilder {
6141
6167
  stillImageFilmLinkResource(context: BuildContext, data: {
6142
6168
  format: string;
6143
6169
  value: string;
6170
+ srcAlt?: string[];
6144
6171
  width?: string;
6145
6172
  height?: string;
6146
6173
  duration?: number;
@@ -6165,6 +6192,7 @@ declare class ResourceBuilder extends BaseBuilder {
6165
6192
  */
6166
6193
  articleResource(context: BuildContext, data: {
6167
6194
  format: string;
6195
+ srcAlt?: string[];
6168
6196
  value: string;
6169
6197
  license?: string;
6170
6198
  copyright?: string;
@@ -6181,6 +6209,7 @@ declare class ResourceBuilder extends BaseBuilder {
6181
6209
  documentResource(context: BuildContext, data: {
6182
6210
  format: string;
6183
6211
  value: string;
6212
+ srcAlt?: string[];
6184
6213
  license?: string;
6185
6214
  copyright?: string;
6186
6215
  showInIndex?: boolean;
@@ -6196,6 +6225,7 @@ declare class ResourceBuilder extends BaseBuilder {
6196
6225
  documentEmbedResource(context: BuildContext, data: {
6197
6226
  format: string;
6198
6227
  value: string;
6228
+ srcAlt?: string[];
6199
6229
  license?: string;
6200
6230
  copyright?: string;
6201
6231
  showInIndex?: boolean;
@@ -6211,6 +6241,7 @@ declare class ResourceBuilder extends BaseBuilder {
6211
6241
  documentLinkResource(context: BuildContext, data: {
6212
6242
  format: string;
6213
6243
  value: string;
6244
+ srcAlt?: string[];
6214
6245
  license?: string;
6215
6246
  copyright?: string;
6216
6247
  showInIndex?: boolean;
@@ -6226,6 +6257,7 @@ declare class ResourceBuilder extends BaseBuilder {
6226
6257
  documentDownloadResource(context: BuildContext, data: {
6227
6258
  format: string;
6228
6259
  value: string;
6260
+ srcAlt?: string[];
6229
6261
  license?: string;
6230
6262
  copyright?: string;
6231
6263
  showInIndex?: boolean;
@@ -6240,6 +6272,7 @@ declare class ResourceBuilder extends BaseBuilder {
6240
6272
  */
6241
6273
  appLinkResource(context: BuildContext, data: {
6242
6274
  value: string;
6275
+ srcAlt?: string[];
6243
6276
  license?: string;
6244
6277
  copyright?: string;
6245
6278
  showInIndex?: boolean;
@@ -6254,6 +6287,7 @@ declare class ResourceBuilder extends BaseBuilder {
6254
6287
  */
6255
6288
  websiteLinkResource(context: BuildContext, data: {
6256
6289
  value: string;
6290
+ srcAlt?: string[];
6257
6291
  siteName?: string;
6258
6292
  license?: string;
6259
6293
  copyright?: string;
@@ -6617,6 +6651,7 @@ declare class BitmarkGenerator extends AstWalkerGenerator<BitmarkAst, void> {
6617
6651
  protected leaf_key(node: NodeInfo, _route: NodeInfo[]): void;
6618
6652
  protected leaf_valuesValue(node: NodeInfo, _route: NodeInfo[]): void;
6619
6653
  protected leaf_question(node: NodeInfo, route: NodeInfo[]): void;
6654
+ protected leaf_srcAltValue(node: NodeInfo, route: NodeInfo[]): void;
6620
6655
  protected leaf_src1x(node: NodeInfo, route: NodeInfo[]): void;
6621
6656
  protected leaf_src2x(node: NodeInfo, route: NodeInfo[]): void;
6622
6657
  protected leaf_src3x(node: NodeInfo, route: NodeInfo[]): void;