@gmb/bitmark-parser-generator 5.23.0 → 5.24.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.
@@ -676,12 +676,17 @@ declare const ConfigKey: {
676
676
  readonly group_standardAllBits: "group_standardAllBits";
677
677
  readonly group_standardItemLead: "group_standardItemLead";
678
678
  readonly group_standardItemLeadInstructionHint: "group_standardItemLeadInstructionHint";
679
+ readonly group_standardInstructionHint: "group_standardInstructionHint";
679
680
  readonly group_standardTags: "group_standardTags";
681
+ readonly group_standardTagsNoItemLead: "group_standardTagsNoItemLead";
680
682
  readonly group_imageSource: "group_imageSource";
681
683
  readonly group_technicalTerm: "group_technicalTerm";
682
684
  readonly group_person: "group_person";
683
685
  readonly group_gap: "group_gap";
684
686
  readonly group_trueFalse: "group_trueFalse";
687
+ readonly group_trueFalseInlineHighlight: "group_trueFalseInlineHighlight";
688
+ readonly group_trueFalseInlineSelect: "group_trueFalseInlineSelect";
689
+ readonly group_trueFalseResponses: "group_trueFalseResponses";
685
690
  readonly group_markConfig: "group_markConfig";
686
691
  readonly group_mark: "group_mark";
687
692
  readonly group_bookCommon: "group_bookCommon";
@@ -689,13 +694,17 @@ declare const ConfigKey: {
689
694
  readonly group_advertisingCommon: "group_advertisingCommon";
690
695
  readonly group_platformStylesCommon: "group_platformStylesCommon";
691
696
  readonly group_quizCommon: "group_quizCommon";
697
+ readonly group_backgroundWallpaper: "group_backgroundWallpaper";
698
+ readonly group_imageNoZoom: "group_imageNoZoom";
692
699
  readonly group_resourceBitTags: "group_resourceBitTags";
693
700
  readonly group_resourceCommon: "group_resourceCommon";
694
701
  readonly group_resourceImageCommon: "group_resourceImageCommon";
702
+ readonly group_resourceImageCommonNoZoom: "group_resourceImageCommonNoZoom";
695
703
  readonly group_resourceAudioCommon: "group_resourceAudioCommon";
696
704
  readonly group_resourceVideoCommon: "group_resourceVideoCommon";
697
705
  readonly group_resourceIcon: "group_resourceIcon";
698
706
  readonly group_resourceImage: "group_resourceImage";
707
+ readonly group_resourceImageNoZoom: "group_resourceImageNoZoom";
699
708
  readonly group_resourceImageEmbed: "group_resourceImageEmbed";
700
709
  readonly group_resourceImageLink: "group_resourceImageLink";
701
710
  readonly group_resourceImageResponsive: "group_resourceImageResponsive";
@@ -964,6 +973,7 @@ declare const ConfigKey: {
964
973
  readonly property_src4x: "@src4x";
965
974
  readonly property_srcAlt: "@srcAlt";
966
975
  readonly property_stripePricingTableId: "@stripePricingTableId";
976
+ readonly property_stripePricingTableDescriptiveName: "@stripePricingTableDescriptiveName";
967
977
  readonly property_stripePublishableKey: "@stripePublishableKey";
968
978
  readonly property_subject: "@subject";
969
979
  readonly property_subtype: "@subtype";
@@ -1786,6 +1796,7 @@ interface BitJson {
1786
1796
  codeLineNumbers: boolean;
1787
1797
  codeMinimap: boolean;
1788
1798
  stripePricingTableId: string;
1799
+ stripePricingTableDescriptiveName: string;
1789
1800
  stripePublishableKey: string;
1790
1801
  thumbImage: string;
1791
1802
  scormSource: string;
@@ -2409,6 +2420,7 @@ interface Bit {
2409
2420
  codeLineNumbers?: Property;
2410
2421
  codeMinimap?: Property;
2411
2422
  stripePricingTableId?: Property;
2423
+ stripePricingTableDescriptiveName?: Property;
2412
2424
  stripePublishableKey?: Property;
2413
2425
  thumbImage?: Property;
2414
2426
  scormSource?: Property;
@@ -3216,6 +3228,8 @@ declare const NodeType: {
3216
3228
  readonly stillImageFilmLink: "stillImageFilmLink";
3217
3229
  readonly stripePricingTableId: "stripePricingTableId";
3218
3230
  readonly stripePricingTableIdValue: "stripePricingTableIdValue";
3231
+ readonly stripePricingTableDescriptiveName: "stripePricingTableDescriptiveName";
3232
+ readonly stripePricingTableDescriptiveNameValue: "stripePricingTableDescriptiveNameValue";
3219
3233
  readonly stripePublishableKey: "stripePublishableKey";
3220
3234
  readonly stripePublishableKeyValue: "stripePublishableKeyValue";
3221
3235
  readonly subject: "subject";
@@ -3814,10 +3828,12 @@ type TagFormatType = EnumType<typeof TagFormat>;
3814
3828
 
3815
3829
  declare const CardSetConfigKey: {
3816
3830
  readonly flashcard: "flashcard";
3831
+ readonly flashcard1: "flashcard1";
3817
3832
  readonly definitionList: "definitionList";
3818
3833
  readonly elements: "elements";
3819
3834
  readonly statements: "statements";
3820
3835
  readonly quiz: "quiz";
3836
+ readonly quizResponses: "quizResponses";
3821
3837
  readonly feedback: "feedback";
3822
3838
  readonly questions: "questions";
3823
3839
  readonly matchPairs: "matchPairs";
@@ -3829,6 +3845,7 @@ declare const CardSetConfigKey: {
3829
3845
  readonly pronunciationTable: "pronunciationTable";
3830
3846
  readonly botActionResponses: "botActionResponses";
3831
3847
  readonly exampleBitList: "exampleBitList";
3848
+ readonly pageFooterSections: "pageFooterSections";
3832
3849
  readonly clozeList: "clozeList";
3833
3850
  readonly ingredients: "ingredients";
3834
3851
  readonly bookReferenceList: "bookReferenceList";
@@ -3993,6 +4010,8 @@ interface CardSetSection {
3993
4010
  sideJsonKey?: string;
3994
4011
  sideExportJsonKey?: ExportJsonKey;
3995
4012
  hasSideExportJsonKey?: boolean;
4013
+ minCount?: number;
4014
+ maxCount?: number;
3996
4015
  }
3997
4016
  declare class CardSetConfig {
3998
4017
  readonly configKey: CardSetConfigKeyType;
@@ -4330,6 +4349,7 @@ declare class Builder extends BaseBuilder {
4330
4349
  codeLineNumbers?: boolean;
4331
4350
  codeMinimap?: boolean;
4332
4351
  stripePricingTableId?: string;
4352
+ stripePricingTableDescriptiveName?: string;
4333
4353
  stripePublishableKey?: string;
4334
4354
  thumbImage?: string;
4335
4355
  scormSource?: string;
@@ -676,12 +676,17 @@ declare const ConfigKey: {
676
676
  readonly group_standardAllBits: "group_standardAllBits";
677
677
  readonly group_standardItemLead: "group_standardItemLead";
678
678
  readonly group_standardItemLeadInstructionHint: "group_standardItemLeadInstructionHint";
679
+ readonly group_standardInstructionHint: "group_standardInstructionHint";
679
680
  readonly group_standardTags: "group_standardTags";
681
+ readonly group_standardTagsNoItemLead: "group_standardTagsNoItemLead";
680
682
  readonly group_imageSource: "group_imageSource";
681
683
  readonly group_technicalTerm: "group_technicalTerm";
682
684
  readonly group_person: "group_person";
683
685
  readonly group_gap: "group_gap";
684
686
  readonly group_trueFalse: "group_trueFalse";
687
+ readonly group_trueFalseInlineHighlight: "group_trueFalseInlineHighlight";
688
+ readonly group_trueFalseInlineSelect: "group_trueFalseInlineSelect";
689
+ readonly group_trueFalseResponses: "group_trueFalseResponses";
685
690
  readonly group_markConfig: "group_markConfig";
686
691
  readonly group_mark: "group_mark";
687
692
  readonly group_bookCommon: "group_bookCommon";
@@ -689,13 +694,17 @@ declare const ConfigKey: {
689
694
  readonly group_advertisingCommon: "group_advertisingCommon";
690
695
  readonly group_platformStylesCommon: "group_platformStylesCommon";
691
696
  readonly group_quizCommon: "group_quizCommon";
697
+ readonly group_backgroundWallpaper: "group_backgroundWallpaper";
698
+ readonly group_imageNoZoom: "group_imageNoZoom";
692
699
  readonly group_resourceBitTags: "group_resourceBitTags";
693
700
  readonly group_resourceCommon: "group_resourceCommon";
694
701
  readonly group_resourceImageCommon: "group_resourceImageCommon";
702
+ readonly group_resourceImageCommonNoZoom: "group_resourceImageCommonNoZoom";
695
703
  readonly group_resourceAudioCommon: "group_resourceAudioCommon";
696
704
  readonly group_resourceVideoCommon: "group_resourceVideoCommon";
697
705
  readonly group_resourceIcon: "group_resourceIcon";
698
706
  readonly group_resourceImage: "group_resourceImage";
707
+ readonly group_resourceImageNoZoom: "group_resourceImageNoZoom";
699
708
  readonly group_resourceImageEmbed: "group_resourceImageEmbed";
700
709
  readonly group_resourceImageLink: "group_resourceImageLink";
701
710
  readonly group_resourceImageResponsive: "group_resourceImageResponsive";
@@ -964,6 +973,7 @@ declare const ConfigKey: {
964
973
  readonly property_src4x: "@src4x";
965
974
  readonly property_srcAlt: "@srcAlt";
966
975
  readonly property_stripePricingTableId: "@stripePricingTableId";
976
+ readonly property_stripePricingTableDescriptiveName: "@stripePricingTableDescriptiveName";
967
977
  readonly property_stripePublishableKey: "@stripePublishableKey";
968
978
  readonly property_subject: "@subject";
969
979
  readonly property_subtype: "@subtype";
@@ -1786,6 +1796,7 @@ interface BitJson {
1786
1796
  codeLineNumbers: boolean;
1787
1797
  codeMinimap: boolean;
1788
1798
  stripePricingTableId: string;
1799
+ stripePricingTableDescriptiveName: string;
1789
1800
  stripePublishableKey: string;
1790
1801
  thumbImage: string;
1791
1802
  scormSource: string;
@@ -2409,6 +2420,7 @@ interface Bit {
2409
2420
  codeLineNumbers?: Property;
2410
2421
  codeMinimap?: Property;
2411
2422
  stripePricingTableId?: Property;
2423
+ stripePricingTableDescriptiveName?: Property;
2412
2424
  stripePublishableKey?: Property;
2413
2425
  thumbImage?: Property;
2414
2426
  scormSource?: Property;
@@ -3216,6 +3228,8 @@ declare const NodeType: {
3216
3228
  readonly stillImageFilmLink: "stillImageFilmLink";
3217
3229
  readonly stripePricingTableId: "stripePricingTableId";
3218
3230
  readonly stripePricingTableIdValue: "stripePricingTableIdValue";
3231
+ readonly stripePricingTableDescriptiveName: "stripePricingTableDescriptiveName";
3232
+ readonly stripePricingTableDescriptiveNameValue: "stripePricingTableDescriptiveNameValue";
3219
3233
  readonly stripePublishableKey: "stripePublishableKey";
3220
3234
  readonly stripePublishableKeyValue: "stripePublishableKeyValue";
3221
3235
  readonly subject: "subject";
@@ -3814,10 +3828,12 @@ type TagFormatType = EnumType<typeof TagFormat>;
3814
3828
 
3815
3829
  declare const CardSetConfigKey: {
3816
3830
  readonly flashcard: "flashcard";
3831
+ readonly flashcard1: "flashcard1";
3817
3832
  readonly definitionList: "definitionList";
3818
3833
  readonly elements: "elements";
3819
3834
  readonly statements: "statements";
3820
3835
  readonly quiz: "quiz";
3836
+ readonly quizResponses: "quizResponses";
3821
3837
  readonly feedback: "feedback";
3822
3838
  readonly questions: "questions";
3823
3839
  readonly matchPairs: "matchPairs";
@@ -3829,6 +3845,7 @@ declare const CardSetConfigKey: {
3829
3845
  readonly pronunciationTable: "pronunciationTable";
3830
3846
  readonly botActionResponses: "botActionResponses";
3831
3847
  readonly exampleBitList: "exampleBitList";
3848
+ readonly pageFooterSections: "pageFooterSections";
3832
3849
  readonly clozeList: "clozeList";
3833
3850
  readonly ingredients: "ingredients";
3834
3851
  readonly bookReferenceList: "bookReferenceList";
@@ -3993,6 +4010,8 @@ interface CardSetSection {
3993
4010
  sideJsonKey?: string;
3994
4011
  sideExportJsonKey?: ExportJsonKey;
3995
4012
  hasSideExportJsonKey?: boolean;
4013
+ minCount?: number;
4014
+ maxCount?: number;
3996
4015
  }
3997
4016
  declare class CardSetConfig {
3998
4017
  readonly configKey: CardSetConfigKeyType;
@@ -4330,6 +4349,7 @@ declare class Builder extends BaseBuilder {
4330
4349
  codeLineNumbers?: boolean;
4331
4350
  codeMinimap?: boolean;
4332
4351
  stripePricingTableId?: string;
4352
+ stripePricingTableDescriptiveName?: string;
4333
4353
  stripePublishableKey?: string;
4334
4354
  thumbImage?: string;
4335
4355
  scormSource?: string;