@superdoc-dev/sdk 1.6.0-next.13 → 1.6.0-next.14
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/generated/client.d.ts +58 -0
- package/dist/generated/client.d.ts.map +1 -1
- package/dist/generated/contract.cjs +192 -0
- package/dist/generated/contract.d.ts.map +1 -1
- package/dist/generated/contract.js +192 -0
- package/package.json +6 -6
- package/tools/__pycache__/__init__.cpython-312.pyc +0 -0
- package/tools/__pycache__/intent_dispatch_generated.cpython-312.pyc +0 -0
- package/tools/tools-policy.json +1 -1
|
@@ -115618,6 +115618,195 @@ const CONTRACT = {
|
|
|
115618
115618
|
]
|
|
115619
115619
|
}
|
|
115620
115620
|
},
|
|
115621
|
+
{
|
|
115622
|
+
"name": "at",
|
|
115623
|
+
"kind": "jsonFlag",
|
|
115624
|
+
"type": "json",
|
|
115625
|
+
"flag": "at-json",
|
|
115626
|
+
"schema": {
|
|
115627
|
+
"type": "object",
|
|
115628
|
+
"properties": {
|
|
115629
|
+
"kind": {
|
|
115630
|
+
"const": "selection"
|
|
115631
|
+
},
|
|
115632
|
+
"start": {
|
|
115633
|
+
"oneOf": [
|
|
115634
|
+
{
|
|
115635
|
+
"type": "object",
|
|
115636
|
+
"properties": {
|
|
115637
|
+
"kind": {
|
|
115638
|
+
"const": "text"
|
|
115639
|
+
},
|
|
115640
|
+
"blockId": {
|
|
115641
|
+
"type": "string"
|
|
115642
|
+
},
|
|
115643
|
+
"offset": {
|
|
115644
|
+
"type": "number"
|
|
115645
|
+
}
|
|
115646
|
+
},
|
|
115647
|
+
"required": [
|
|
115648
|
+
"kind",
|
|
115649
|
+
"blockId",
|
|
115650
|
+
"offset"
|
|
115651
|
+
]
|
|
115652
|
+
},
|
|
115653
|
+
{
|
|
115654
|
+
"type": "object",
|
|
115655
|
+
"properties": {
|
|
115656
|
+
"kind": {
|
|
115657
|
+
"const": "nodeEdge"
|
|
115658
|
+
},
|
|
115659
|
+
"node": {
|
|
115660
|
+
"type": "object",
|
|
115661
|
+
"properties": {
|
|
115662
|
+
"kind": {
|
|
115663
|
+
"const": "block"
|
|
115664
|
+
},
|
|
115665
|
+
"nodeType": {
|
|
115666
|
+
"oneOf": [
|
|
115667
|
+
{
|
|
115668
|
+
"const": "paragraph"
|
|
115669
|
+
},
|
|
115670
|
+
{
|
|
115671
|
+
"const": "heading"
|
|
115672
|
+
},
|
|
115673
|
+
{
|
|
115674
|
+
"const": "table"
|
|
115675
|
+
},
|
|
115676
|
+
{
|
|
115677
|
+
"const": "tableOfContents"
|
|
115678
|
+
},
|
|
115679
|
+
{
|
|
115680
|
+
"const": "sdt"
|
|
115681
|
+
},
|
|
115682
|
+
{
|
|
115683
|
+
"const": "image"
|
|
115684
|
+
}
|
|
115685
|
+
]
|
|
115686
|
+
},
|
|
115687
|
+
"nodeId": {
|
|
115688
|
+
"type": "string"
|
|
115689
|
+
}
|
|
115690
|
+
},
|
|
115691
|
+
"required": [
|
|
115692
|
+
"kind",
|
|
115693
|
+
"nodeType",
|
|
115694
|
+
"nodeId"
|
|
115695
|
+
]
|
|
115696
|
+
},
|
|
115697
|
+
"edge": {
|
|
115698
|
+
"oneOf": [
|
|
115699
|
+
{
|
|
115700
|
+
"const": "before"
|
|
115701
|
+
},
|
|
115702
|
+
{
|
|
115703
|
+
"const": "after"
|
|
115704
|
+
}
|
|
115705
|
+
]
|
|
115706
|
+
}
|
|
115707
|
+
},
|
|
115708
|
+
"required": [
|
|
115709
|
+
"kind",
|
|
115710
|
+
"node",
|
|
115711
|
+
"edge"
|
|
115712
|
+
]
|
|
115713
|
+
}
|
|
115714
|
+
],
|
|
115715
|
+
"description": "A point in the document. Use {kind:'text', blockId, offset} for character positions or {kind:'nodeEdge', node:{kind:'block', nodeType, nodeId}, edge:'before'|'after'} for block boundaries."
|
|
115716
|
+
},
|
|
115717
|
+
"end": {
|
|
115718
|
+
"oneOf": [
|
|
115719
|
+
{
|
|
115720
|
+
"type": "object",
|
|
115721
|
+
"properties": {
|
|
115722
|
+
"kind": {
|
|
115723
|
+
"const": "text"
|
|
115724
|
+
},
|
|
115725
|
+
"blockId": {
|
|
115726
|
+
"type": "string"
|
|
115727
|
+
},
|
|
115728
|
+
"offset": {
|
|
115729
|
+
"type": "number"
|
|
115730
|
+
}
|
|
115731
|
+
},
|
|
115732
|
+
"required": [
|
|
115733
|
+
"kind",
|
|
115734
|
+
"blockId",
|
|
115735
|
+
"offset"
|
|
115736
|
+
]
|
|
115737
|
+
},
|
|
115738
|
+
{
|
|
115739
|
+
"type": "object",
|
|
115740
|
+
"properties": {
|
|
115741
|
+
"kind": {
|
|
115742
|
+
"const": "nodeEdge"
|
|
115743
|
+
},
|
|
115744
|
+
"node": {
|
|
115745
|
+
"type": "object",
|
|
115746
|
+
"properties": {
|
|
115747
|
+
"kind": {
|
|
115748
|
+
"const": "block"
|
|
115749
|
+
},
|
|
115750
|
+
"nodeType": {
|
|
115751
|
+
"oneOf": [
|
|
115752
|
+
{
|
|
115753
|
+
"const": "paragraph"
|
|
115754
|
+
},
|
|
115755
|
+
{
|
|
115756
|
+
"const": "heading"
|
|
115757
|
+
},
|
|
115758
|
+
{
|
|
115759
|
+
"const": "table"
|
|
115760
|
+
},
|
|
115761
|
+
{
|
|
115762
|
+
"const": "tableOfContents"
|
|
115763
|
+
},
|
|
115764
|
+
{
|
|
115765
|
+
"const": "sdt"
|
|
115766
|
+
},
|
|
115767
|
+
{
|
|
115768
|
+
"const": "image"
|
|
115769
|
+
}
|
|
115770
|
+
]
|
|
115771
|
+
},
|
|
115772
|
+
"nodeId": {
|
|
115773
|
+
"type": "string"
|
|
115774
|
+
}
|
|
115775
|
+
},
|
|
115776
|
+
"required": [
|
|
115777
|
+
"kind",
|
|
115778
|
+
"nodeType",
|
|
115779
|
+
"nodeId"
|
|
115780
|
+
]
|
|
115781
|
+
},
|
|
115782
|
+
"edge": {
|
|
115783
|
+
"oneOf": [
|
|
115784
|
+
{
|
|
115785
|
+
"const": "before"
|
|
115786
|
+
},
|
|
115787
|
+
{
|
|
115788
|
+
"const": "after"
|
|
115789
|
+
}
|
|
115790
|
+
]
|
|
115791
|
+
}
|
|
115792
|
+
},
|
|
115793
|
+
"required": [
|
|
115794
|
+
"kind",
|
|
115795
|
+
"node",
|
|
115796
|
+
"edge"
|
|
115797
|
+
]
|
|
115798
|
+
}
|
|
115799
|
+
],
|
|
115800
|
+
"description": "A point in the document. Use {kind:'text', blockId, offset} for character positions or {kind:'nodeEdge', node:{kind:'block', nodeType, nodeId}, edge:'before'|'after'} for block boundaries."
|
|
115801
|
+
}
|
|
115802
|
+
},
|
|
115803
|
+
"required": [
|
|
115804
|
+
"kind",
|
|
115805
|
+
"start",
|
|
115806
|
+
"end"
|
|
115807
|
+
]
|
|
115808
|
+
}
|
|
115809
|
+
},
|
|
115621
115810
|
{
|
|
115622
115811
|
"name": "tag",
|
|
115623
115812
|
"kind": "flag",
|
|
@@ -115696,6 +115885,9 @@ const CONTRACT = {
|
|
|
115696
115885
|
"nodeId"
|
|
115697
115886
|
]
|
|
115698
115887
|
},
|
|
115888
|
+
"at": {
|
|
115889
|
+
"$ref": "#/$defs/SelectionTarget"
|
|
115890
|
+
},
|
|
115699
115891
|
"tag": {
|
|
115700
115892
|
"type": "string"
|
|
115701
115893
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contract.d.ts","sourceRoot":"","sources":["../../src/generated/contract.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,kBAAkB;IACjC,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,KAAK,GAAG,MAAM,GAAG,UAAU,CAAC;IAClC,IAAI,EAAE,QAAQ,GAAG,QAAQ,GAAG,SAAS,GAAG,MAAM,GAAG,UAAU,CAAC;IAC5D,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CACxB;AAED,MAAM,WAAW,sBAAsB;IACrC,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,aAAa,EAAE,MAAM,EAAE,CAAC;IACxB,MAAM,EAAE,kBAAkB,EAAE,CAAC;IAC7B,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CACxB;AAED,MAAM,WAAW,QAAQ;IACvB,eAAe,EAAE,MAAM,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAChC,GAAG,EAAE;QACH,OAAO,EAAE,MAAM,CAAC;QAChB,UAAU,EAAE,MAAM,CAAC;KACpB,CAAC;IACF,QAAQ,EAAE;QACR,OAAO,EAAE,MAAM,CAAC;QAChB,SAAS,EAAE,MAAM,CAAC;QAClB,QAAQ,EAAE,MAAM,EAAE,CAAC;QACnB,aAAa,EAAE,MAAM,EAAE,CAAC;KACzB,CAAC;IACF,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,sBAAsB,CAAC,CAAC;CACpD;AAED,eAAO,MAAM,QAAQ,EAAE,
|
|
1
|
+
{"version":3,"file":"contract.d.ts","sourceRoot":"","sources":["../../src/generated/contract.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,kBAAkB;IACjC,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,KAAK,GAAG,MAAM,GAAG,UAAU,CAAC;IAClC,IAAI,EAAE,QAAQ,GAAG,QAAQ,GAAG,SAAS,GAAG,MAAM,GAAG,UAAU,CAAC;IAC5D,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CACxB;AAED,MAAM,WAAW,sBAAsB;IACrC,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,aAAa,EAAE,MAAM,EAAE,CAAC;IACxB,MAAM,EAAE,kBAAkB,EAAE,CAAC;IAC7B,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CACxB;AAED,MAAM,WAAW,QAAQ;IACvB,eAAe,EAAE,MAAM,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAChC,GAAG,EAAE;QACH,OAAO,EAAE,MAAM,CAAC;QAChB,UAAU,EAAE,MAAM,CAAC;KACpB,CAAC;IACF,QAAQ,EAAE;QACR,OAAO,EAAE,MAAM,CAAC;QAChB,SAAS,EAAE,MAAM,CAAC;QAClB,QAAQ,EAAE,MAAM,EAAE,CAAC;QACnB,aAAa,EAAE,MAAM,EAAE,CAAC;KACzB,CAAC;IACF,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,sBAAsB,CAAC,CAAC;CACpD;AAED,eAAO,MAAM,QAAQ,EAAE,QAillJtB,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG,QAAQ,CAAC,YAAY,CAAC,CAAC,MAAM,QAAQ,CAAC,YAAY,CAAC,CAAC,CAAC"}
|
|
@@ -116733,6 +116733,195 @@ export const CONTRACT = {
|
|
|
116733
116733
|
]
|
|
116734
116734
|
}
|
|
116735
116735
|
},
|
|
116736
|
+
{
|
|
116737
|
+
"name": "at",
|
|
116738
|
+
"kind": "jsonFlag",
|
|
116739
|
+
"type": "json",
|
|
116740
|
+
"flag": "at-json",
|
|
116741
|
+
"schema": {
|
|
116742
|
+
"type": "object",
|
|
116743
|
+
"properties": {
|
|
116744
|
+
"kind": {
|
|
116745
|
+
"const": "selection"
|
|
116746
|
+
},
|
|
116747
|
+
"start": {
|
|
116748
|
+
"oneOf": [
|
|
116749
|
+
{
|
|
116750
|
+
"type": "object",
|
|
116751
|
+
"properties": {
|
|
116752
|
+
"kind": {
|
|
116753
|
+
"const": "text"
|
|
116754
|
+
},
|
|
116755
|
+
"blockId": {
|
|
116756
|
+
"type": "string"
|
|
116757
|
+
},
|
|
116758
|
+
"offset": {
|
|
116759
|
+
"type": "number"
|
|
116760
|
+
}
|
|
116761
|
+
},
|
|
116762
|
+
"required": [
|
|
116763
|
+
"kind",
|
|
116764
|
+
"blockId",
|
|
116765
|
+
"offset"
|
|
116766
|
+
]
|
|
116767
|
+
},
|
|
116768
|
+
{
|
|
116769
|
+
"type": "object",
|
|
116770
|
+
"properties": {
|
|
116771
|
+
"kind": {
|
|
116772
|
+
"const": "nodeEdge"
|
|
116773
|
+
},
|
|
116774
|
+
"node": {
|
|
116775
|
+
"type": "object",
|
|
116776
|
+
"properties": {
|
|
116777
|
+
"kind": {
|
|
116778
|
+
"const": "block"
|
|
116779
|
+
},
|
|
116780
|
+
"nodeType": {
|
|
116781
|
+
"oneOf": [
|
|
116782
|
+
{
|
|
116783
|
+
"const": "paragraph"
|
|
116784
|
+
},
|
|
116785
|
+
{
|
|
116786
|
+
"const": "heading"
|
|
116787
|
+
},
|
|
116788
|
+
{
|
|
116789
|
+
"const": "table"
|
|
116790
|
+
},
|
|
116791
|
+
{
|
|
116792
|
+
"const": "tableOfContents"
|
|
116793
|
+
},
|
|
116794
|
+
{
|
|
116795
|
+
"const": "sdt"
|
|
116796
|
+
},
|
|
116797
|
+
{
|
|
116798
|
+
"const": "image"
|
|
116799
|
+
}
|
|
116800
|
+
]
|
|
116801
|
+
},
|
|
116802
|
+
"nodeId": {
|
|
116803
|
+
"type": "string"
|
|
116804
|
+
}
|
|
116805
|
+
},
|
|
116806
|
+
"required": [
|
|
116807
|
+
"kind",
|
|
116808
|
+
"nodeType",
|
|
116809
|
+
"nodeId"
|
|
116810
|
+
]
|
|
116811
|
+
},
|
|
116812
|
+
"edge": {
|
|
116813
|
+
"oneOf": [
|
|
116814
|
+
{
|
|
116815
|
+
"const": "before"
|
|
116816
|
+
},
|
|
116817
|
+
{
|
|
116818
|
+
"const": "after"
|
|
116819
|
+
}
|
|
116820
|
+
]
|
|
116821
|
+
}
|
|
116822
|
+
},
|
|
116823
|
+
"required": [
|
|
116824
|
+
"kind",
|
|
116825
|
+
"node",
|
|
116826
|
+
"edge"
|
|
116827
|
+
]
|
|
116828
|
+
}
|
|
116829
|
+
],
|
|
116830
|
+
"description": "A point in the document. Use {kind:'text', blockId, offset} for character positions or {kind:'nodeEdge', node:{kind:'block', nodeType, nodeId}, edge:'before'|'after'} for block boundaries."
|
|
116831
|
+
},
|
|
116832
|
+
"end": {
|
|
116833
|
+
"oneOf": [
|
|
116834
|
+
{
|
|
116835
|
+
"type": "object",
|
|
116836
|
+
"properties": {
|
|
116837
|
+
"kind": {
|
|
116838
|
+
"const": "text"
|
|
116839
|
+
},
|
|
116840
|
+
"blockId": {
|
|
116841
|
+
"type": "string"
|
|
116842
|
+
},
|
|
116843
|
+
"offset": {
|
|
116844
|
+
"type": "number"
|
|
116845
|
+
}
|
|
116846
|
+
},
|
|
116847
|
+
"required": [
|
|
116848
|
+
"kind",
|
|
116849
|
+
"blockId",
|
|
116850
|
+
"offset"
|
|
116851
|
+
]
|
|
116852
|
+
},
|
|
116853
|
+
{
|
|
116854
|
+
"type": "object",
|
|
116855
|
+
"properties": {
|
|
116856
|
+
"kind": {
|
|
116857
|
+
"const": "nodeEdge"
|
|
116858
|
+
},
|
|
116859
|
+
"node": {
|
|
116860
|
+
"type": "object",
|
|
116861
|
+
"properties": {
|
|
116862
|
+
"kind": {
|
|
116863
|
+
"const": "block"
|
|
116864
|
+
},
|
|
116865
|
+
"nodeType": {
|
|
116866
|
+
"oneOf": [
|
|
116867
|
+
{
|
|
116868
|
+
"const": "paragraph"
|
|
116869
|
+
},
|
|
116870
|
+
{
|
|
116871
|
+
"const": "heading"
|
|
116872
|
+
},
|
|
116873
|
+
{
|
|
116874
|
+
"const": "table"
|
|
116875
|
+
},
|
|
116876
|
+
{
|
|
116877
|
+
"const": "tableOfContents"
|
|
116878
|
+
},
|
|
116879
|
+
{
|
|
116880
|
+
"const": "sdt"
|
|
116881
|
+
},
|
|
116882
|
+
{
|
|
116883
|
+
"const": "image"
|
|
116884
|
+
}
|
|
116885
|
+
]
|
|
116886
|
+
},
|
|
116887
|
+
"nodeId": {
|
|
116888
|
+
"type": "string"
|
|
116889
|
+
}
|
|
116890
|
+
},
|
|
116891
|
+
"required": [
|
|
116892
|
+
"kind",
|
|
116893
|
+
"nodeType",
|
|
116894
|
+
"nodeId"
|
|
116895
|
+
]
|
|
116896
|
+
},
|
|
116897
|
+
"edge": {
|
|
116898
|
+
"oneOf": [
|
|
116899
|
+
{
|
|
116900
|
+
"const": "before"
|
|
116901
|
+
},
|
|
116902
|
+
{
|
|
116903
|
+
"const": "after"
|
|
116904
|
+
}
|
|
116905
|
+
]
|
|
116906
|
+
}
|
|
116907
|
+
},
|
|
116908
|
+
"required": [
|
|
116909
|
+
"kind",
|
|
116910
|
+
"node",
|
|
116911
|
+
"edge"
|
|
116912
|
+
]
|
|
116913
|
+
}
|
|
116914
|
+
],
|
|
116915
|
+
"description": "A point in the document. Use {kind:'text', blockId, offset} for character positions or {kind:'nodeEdge', node:{kind:'block', nodeType, nodeId}, edge:'before'|'after'} for block boundaries."
|
|
116916
|
+
}
|
|
116917
|
+
},
|
|
116918
|
+
"required": [
|
|
116919
|
+
"kind",
|
|
116920
|
+
"start",
|
|
116921
|
+
"end"
|
|
116922
|
+
]
|
|
116923
|
+
}
|
|
116924
|
+
},
|
|
116736
116925
|
{
|
|
116737
116926
|
"name": "tag",
|
|
116738
116927
|
"kind": "flag",
|
|
@@ -116811,6 +117000,9 @@ export const CONTRACT = {
|
|
|
116811
117000
|
"nodeId"
|
|
116812
117001
|
]
|
|
116813
117002
|
},
|
|
117003
|
+
"at": {
|
|
117004
|
+
"$ref": "#/$defs/SelectionTarget"
|
|
117005
|
+
},
|
|
116814
117006
|
"tag": {
|
|
116815
117007
|
"type": "string"
|
|
116816
117008
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superdoc-dev/sdk",
|
|
3
|
-
"version": "1.6.0-next.
|
|
3
|
+
"version": "1.6.0-next.14",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -26,11 +26,11 @@
|
|
|
26
26
|
"typescript": "^5.9.2"
|
|
27
27
|
},
|
|
28
28
|
"optionalDependencies": {
|
|
29
|
-
"@superdoc-dev/sdk-darwin-
|
|
30
|
-
"@superdoc-dev/sdk-linux-
|
|
31
|
-
"@superdoc-dev/sdk-linux-
|
|
32
|
-
"@superdoc-dev/sdk-windows-x64": "1.6.0-next.
|
|
33
|
-
"@superdoc-dev/sdk-darwin-
|
|
29
|
+
"@superdoc-dev/sdk-darwin-arm64": "1.6.0-next.14",
|
|
30
|
+
"@superdoc-dev/sdk-linux-x64": "1.6.0-next.14",
|
|
31
|
+
"@superdoc-dev/sdk-linux-arm64": "1.6.0-next.14",
|
|
32
|
+
"@superdoc-dev/sdk-windows-x64": "1.6.0-next.14",
|
|
33
|
+
"@superdoc-dev/sdk-darwin-x64": "1.6.0-next.14"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
Binary file
|
|
Binary file
|
package/tools/tools-policy.json
CHANGED