@bitplanet/deva-sdk 0.8.4 → 0.8.5

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.ts CHANGED
@@ -6595,23 +6595,55 @@ declare type UserPersonaInfo = components["schemas"]["UserPersonaInfo"];
6595
6595
  export { }
6596
6596
 
6597
6597
 
6598
- declare namespace v3 {
6599
- var DNS: string;
6600
- var URL: string;
6598
+
6599
+ declare module 'micromark-util-types' {
6600
+ interface TokenTypeMap {
6601
+ strikethroughSequence: 'strikethroughSequence'
6602
+ strikethroughSequenceTemporary: 'strikethroughSequenceTemporary'
6603
+ strikethrough: 'strikethrough'
6604
+ strikethroughText: 'strikethroughText'
6605
+ }
6601
6606
  }
6602
6607
 
6603
6608
 
6604
- declare namespace v5 {
6605
- var DNS: string;
6606
- var URL: string;
6607
- }
6608
6609
 
6610
+ /**
6611
+ * Augment types.
6612
+ */
6613
+ declare module 'micromark-util-types' {
6614
+ /**
6615
+ * Compile data.
6616
+ */
6617
+ interface CompileData {
6618
+ gfmFootnoteDefinitions?: Record<string, string>
6619
+ gfmFootnoteDefinitionStack?: Array<string>
6620
+ gfmFootnoteCallCounts?: Record<string, number>
6621
+ gfmFootnoteCallOrder?: Array<string>
6622
+ }
6609
6623
 
6624
+ /**
6625
+ * Parse context.
6626
+ */
6627
+ interface ParseContext {
6628
+ gfmFootnotes?: Array<string>
6629
+ }
6610
6630
 
6611
- declare global {
6612
- interface Node {
6613
- pmViewDesc?: ViewDesc;
6614
- }
6631
+ /**
6632
+ * Token types.
6633
+ */
6634
+ interface TokenTypeMap {
6635
+ gfmFootnoteCall: 'gfmFootnoteCall'
6636
+ gfmFootnoteCallLabelMarker: 'gfmFootnoteCallLabelMarker'
6637
+ gfmFootnoteCallMarker: 'gfmFootnoteCallMarker'
6638
+ gfmFootnoteCallString: 'gfmFootnoteCallString'
6639
+ gfmFootnoteDefinition: 'gfmFootnoteDefinition'
6640
+ gfmFootnoteDefinitionIndent: 'gfmFootnoteDefinitionIndent'
6641
+ gfmFootnoteDefinitionLabel: 'gfmFootnoteDefinitionLabel'
6642
+ gfmFootnoteDefinitionLabelMarker: 'gfmFootnoteDefinitionLabelMarker'
6643
+ gfmFootnoteDefinitionLabelString: 'gfmFootnoteDefinitionLabelString'
6644
+ gfmFootnoteDefinitionMarker: 'gfmFootnoteDefinitionMarker'
6645
+ gfmFootnoteDefinitionWhitespace: 'gfmFootnoteDefinitionWhitespace'
6646
+ }
6615
6647
  }
6616
6648
 
6617
6649
 
@@ -6678,70 +6710,6 @@ declare module 'mdast' {
6678
6710
 
6679
6711
 
6680
6712
 
6681
- /**
6682
- * Augment types.
6683
- */
6684
- declare module 'micromark-util-types' {
6685
- /**
6686
- * Compile data.
6687
- */
6688
- interface CompileData {
6689
- gfmFootnoteDefinitions?: Record<string, string>
6690
- gfmFootnoteDefinitionStack?: Array<string>
6691
- gfmFootnoteCallCounts?: Record<string, number>
6692
- gfmFootnoteCallOrder?: Array<string>
6693
- }
6694
-
6695
- /**
6696
- * Parse context.
6697
- */
6698
- interface ParseContext {
6699
- gfmFootnotes?: Array<string>
6700
- }
6701
-
6702
- /**
6703
- * Token types.
6704
- */
6705
- interface TokenTypeMap {
6706
- gfmFootnoteCall: 'gfmFootnoteCall'
6707
- gfmFootnoteCallLabelMarker: 'gfmFootnoteCallLabelMarker'
6708
- gfmFootnoteCallMarker: 'gfmFootnoteCallMarker'
6709
- gfmFootnoteCallString: 'gfmFootnoteCallString'
6710
- gfmFootnoteDefinition: 'gfmFootnoteDefinition'
6711
- gfmFootnoteDefinitionIndent: 'gfmFootnoteDefinitionIndent'
6712
- gfmFootnoteDefinitionLabel: 'gfmFootnoteDefinitionLabel'
6713
- gfmFootnoteDefinitionLabelMarker: 'gfmFootnoteDefinitionLabelMarker'
6714
- gfmFootnoteDefinitionLabelString: 'gfmFootnoteDefinitionLabelString'
6715
- gfmFootnoteDefinitionMarker: 'gfmFootnoteDefinitionMarker'
6716
- gfmFootnoteDefinitionWhitespace: 'gfmFootnoteDefinitionWhitespace'
6717
- }
6718
- }
6719
-
6720
-
6721
-
6722
- declare module 'micromark-util-types' {
6723
- interface TokenTypeMap {
6724
- strikethroughSequence: 'strikethroughSequence'
6725
- strikethroughSequenceTemporary: 'strikethroughSequenceTemporary'
6726
- strikethrough: 'strikethrough'
6727
- strikethroughText: 'strikethroughText'
6728
- }
6729
- }
6730
-
6731
-
6732
-
6733
- declare module 'micromark-util-types' {
6734
- interface TokenTypeMap {
6735
- listItem: 'listItem'
6736
- }
6737
-
6738
- interface Token {
6739
- _spread?: boolean
6740
- }
6741
- }
6742
-
6743
-
6744
-
6745
6713
  declare module 'mdast-util-to-markdown' {
6746
6714
  interface ConstructNameMap {
6747
6715
  /**
@@ -6819,8 +6787,14 @@ declare module 'mdast-util-to-markdown' {
6819
6787
  }
6820
6788
  }
6821
6789
 
6822
- declare namespace _default {
6823
- namespace plugins {
6824
- let tailwindcss: {};
6825
- }
6790
+
6791
+
6792
+ declare module 'micromark-util-types' {
6793
+ interface TokenTypeMap {
6794
+ listItem: 'listItem'
6795
+ }
6796
+
6797
+ interface Token {
6798
+ _spread?: boolean
6799
+ }
6826
6800
  }