@cloudflare/workers-types 4.20260206.0 → 4.20260210.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/2021-11-03/index.d.ts +3 -0
- package/2021-11-03/index.ts +3 -0
- package/2022-01-31/index.d.ts +3 -0
- package/2022-01-31/index.ts +3 -0
- package/2022-03-21/index.d.ts +3 -0
- package/2022-03-21/index.ts +3 -0
- package/2022-08-04/index.d.ts +3 -0
- package/2022-08-04/index.ts +3 -0
- package/2022-10-31/index.d.ts +3 -0
- package/2022-10-31/index.ts +3 -0
- package/2022-11-30/index.d.ts +3 -0
- package/2022-11-30/index.ts +3 -0
- package/2023-03-01/index.d.ts +3 -0
- package/2023-03-01/index.ts +3 -0
- package/2023-07-01/index.d.ts +3 -0
- package/2023-07-01/index.ts +3 -0
- package/experimental/index.d.ts +3 -0
- package/experimental/index.ts +3 -0
- package/index.d.ts +3 -0
- package/index.ts +3 -0
- package/latest/index.d.ts +3 -0
- package/latest/index.ts +3 -0
- package/oldest/index.d.ts +3 -0
- package/oldest/index.ts +3 -0
- package/package.json +1 -1
package/2021-11-03/index.d.ts
CHANGED
|
@@ -11554,6 +11554,7 @@ type MarkdownDocument = {
|
|
|
11554
11554
|
};
|
|
11555
11555
|
type ConversionResponse =
|
|
11556
11556
|
| {
|
|
11557
|
+
id: string;
|
|
11557
11558
|
name: string;
|
|
11558
11559
|
mimeType: string;
|
|
11559
11560
|
format: "markdown";
|
|
@@ -11561,6 +11562,7 @@ type ConversionResponse =
|
|
|
11561
11562
|
data: string;
|
|
11562
11563
|
}
|
|
11563
11564
|
| {
|
|
11565
|
+
id: string;
|
|
11564
11566
|
name: string;
|
|
11565
11567
|
mimeType: string;
|
|
11566
11568
|
format: "error";
|
|
@@ -11578,6 +11580,7 @@ type ConversionOptions = {
|
|
|
11578
11580
|
images?: EmbeddedImageConversionOptions & {
|
|
11579
11581
|
convertOGImage?: boolean;
|
|
11580
11582
|
};
|
|
11583
|
+
hostname?: string;
|
|
11581
11584
|
};
|
|
11582
11585
|
docx?: {
|
|
11583
11586
|
images?: EmbeddedImageConversionOptions;
|
package/2021-11-03/index.ts
CHANGED
|
@@ -11512,6 +11512,7 @@ export type MarkdownDocument = {
|
|
|
11512
11512
|
};
|
|
11513
11513
|
export type ConversionResponse =
|
|
11514
11514
|
| {
|
|
11515
|
+
id: string;
|
|
11515
11516
|
name: string;
|
|
11516
11517
|
mimeType: string;
|
|
11517
11518
|
format: "markdown";
|
|
@@ -11519,6 +11520,7 @@ export type ConversionResponse =
|
|
|
11519
11520
|
data: string;
|
|
11520
11521
|
}
|
|
11521
11522
|
| {
|
|
11523
|
+
id: string;
|
|
11522
11524
|
name: string;
|
|
11523
11525
|
mimeType: string;
|
|
11524
11526
|
format: "error";
|
|
@@ -11536,6 +11538,7 @@ export type ConversionOptions = {
|
|
|
11536
11538
|
images?: EmbeddedImageConversionOptions & {
|
|
11537
11539
|
convertOGImage?: boolean;
|
|
11538
11540
|
};
|
|
11541
|
+
hostname?: string;
|
|
11539
11542
|
};
|
|
11540
11543
|
docx?: {
|
|
11541
11544
|
images?: EmbeddedImageConversionOptions;
|
package/2022-01-31/index.d.ts
CHANGED
|
@@ -11621,6 +11621,7 @@ type MarkdownDocument = {
|
|
|
11621
11621
|
};
|
|
11622
11622
|
type ConversionResponse =
|
|
11623
11623
|
| {
|
|
11624
|
+
id: string;
|
|
11624
11625
|
name: string;
|
|
11625
11626
|
mimeType: string;
|
|
11626
11627
|
format: "markdown";
|
|
@@ -11628,6 +11629,7 @@ type ConversionResponse =
|
|
|
11628
11629
|
data: string;
|
|
11629
11630
|
}
|
|
11630
11631
|
| {
|
|
11632
|
+
id: string;
|
|
11631
11633
|
name: string;
|
|
11632
11634
|
mimeType: string;
|
|
11633
11635
|
format: "error";
|
|
@@ -11645,6 +11647,7 @@ type ConversionOptions = {
|
|
|
11645
11647
|
images?: EmbeddedImageConversionOptions & {
|
|
11646
11648
|
convertOGImage?: boolean;
|
|
11647
11649
|
};
|
|
11650
|
+
hostname?: string;
|
|
11648
11651
|
};
|
|
11649
11652
|
docx?: {
|
|
11650
11653
|
images?: EmbeddedImageConversionOptions;
|
package/2022-01-31/index.ts
CHANGED
|
@@ -11579,6 +11579,7 @@ export type MarkdownDocument = {
|
|
|
11579
11579
|
};
|
|
11580
11580
|
export type ConversionResponse =
|
|
11581
11581
|
| {
|
|
11582
|
+
id: string;
|
|
11582
11583
|
name: string;
|
|
11583
11584
|
mimeType: string;
|
|
11584
11585
|
format: "markdown";
|
|
@@ -11586,6 +11587,7 @@ export type ConversionResponse =
|
|
|
11586
11587
|
data: string;
|
|
11587
11588
|
}
|
|
11588
11589
|
| {
|
|
11590
|
+
id: string;
|
|
11589
11591
|
name: string;
|
|
11590
11592
|
mimeType: string;
|
|
11591
11593
|
format: "error";
|
|
@@ -11603,6 +11605,7 @@ export type ConversionOptions = {
|
|
|
11603
11605
|
images?: EmbeddedImageConversionOptions & {
|
|
11604
11606
|
convertOGImage?: boolean;
|
|
11605
11607
|
};
|
|
11608
|
+
hostname?: string;
|
|
11606
11609
|
};
|
|
11607
11610
|
docx?: {
|
|
11608
11611
|
images?: EmbeddedImageConversionOptions;
|
package/2022-03-21/index.d.ts
CHANGED
|
@@ -11629,6 +11629,7 @@ type MarkdownDocument = {
|
|
|
11629
11629
|
};
|
|
11630
11630
|
type ConversionResponse =
|
|
11631
11631
|
| {
|
|
11632
|
+
id: string;
|
|
11632
11633
|
name: string;
|
|
11633
11634
|
mimeType: string;
|
|
11634
11635
|
format: "markdown";
|
|
@@ -11636,6 +11637,7 @@ type ConversionResponse =
|
|
|
11636
11637
|
data: string;
|
|
11637
11638
|
}
|
|
11638
11639
|
| {
|
|
11640
|
+
id: string;
|
|
11639
11641
|
name: string;
|
|
11640
11642
|
mimeType: string;
|
|
11641
11643
|
format: "error";
|
|
@@ -11653,6 +11655,7 @@ type ConversionOptions = {
|
|
|
11653
11655
|
images?: EmbeddedImageConversionOptions & {
|
|
11654
11656
|
convertOGImage?: boolean;
|
|
11655
11657
|
};
|
|
11658
|
+
hostname?: string;
|
|
11656
11659
|
};
|
|
11657
11660
|
docx?: {
|
|
11658
11661
|
images?: EmbeddedImageConversionOptions;
|
package/2022-03-21/index.ts
CHANGED
|
@@ -11587,6 +11587,7 @@ export type MarkdownDocument = {
|
|
|
11587
11587
|
};
|
|
11588
11588
|
export type ConversionResponse =
|
|
11589
11589
|
| {
|
|
11590
|
+
id: string;
|
|
11590
11591
|
name: string;
|
|
11591
11592
|
mimeType: string;
|
|
11592
11593
|
format: "markdown";
|
|
@@ -11594,6 +11595,7 @@ export type ConversionResponse =
|
|
|
11594
11595
|
data: string;
|
|
11595
11596
|
}
|
|
11596
11597
|
| {
|
|
11598
|
+
id: string;
|
|
11597
11599
|
name: string;
|
|
11598
11600
|
mimeType: string;
|
|
11599
11601
|
format: "error";
|
|
@@ -11611,6 +11613,7 @@ export type ConversionOptions = {
|
|
|
11611
11613
|
images?: EmbeddedImageConversionOptions & {
|
|
11612
11614
|
convertOGImage?: boolean;
|
|
11613
11615
|
};
|
|
11616
|
+
hostname?: string;
|
|
11614
11617
|
};
|
|
11615
11618
|
docx?: {
|
|
11616
11619
|
images?: EmbeddedImageConversionOptions;
|
package/2022-08-04/index.d.ts
CHANGED
|
@@ -11630,6 +11630,7 @@ type MarkdownDocument = {
|
|
|
11630
11630
|
};
|
|
11631
11631
|
type ConversionResponse =
|
|
11632
11632
|
| {
|
|
11633
|
+
id: string;
|
|
11633
11634
|
name: string;
|
|
11634
11635
|
mimeType: string;
|
|
11635
11636
|
format: "markdown";
|
|
@@ -11637,6 +11638,7 @@ type ConversionResponse =
|
|
|
11637
11638
|
data: string;
|
|
11638
11639
|
}
|
|
11639
11640
|
| {
|
|
11641
|
+
id: string;
|
|
11640
11642
|
name: string;
|
|
11641
11643
|
mimeType: string;
|
|
11642
11644
|
format: "error";
|
|
@@ -11654,6 +11656,7 @@ type ConversionOptions = {
|
|
|
11654
11656
|
images?: EmbeddedImageConversionOptions & {
|
|
11655
11657
|
convertOGImage?: boolean;
|
|
11656
11658
|
};
|
|
11659
|
+
hostname?: string;
|
|
11657
11660
|
};
|
|
11658
11661
|
docx?: {
|
|
11659
11662
|
images?: EmbeddedImageConversionOptions;
|
package/2022-08-04/index.ts
CHANGED
|
@@ -11588,6 +11588,7 @@ export type MarkdownDocument = {
|
|
|
11588
11588
|
};
|
|
11589
11589
|
export type ConversionResponse =
|
|
11590
11590
|
| {
|
|
11591
|
+
id: string;
|
|
11591
11592
|
name: string;
|
|
11592
11593
|
mimeType: string;
|
|
11593
11594
|
format: "markdown";
|
|
@@ -11595,6 +11596,7 @@ export type ConversionResponse =
|
|
|
11595
11596
|
data: string;
|
|
11596
11597
|
}
|
|
11597
11598
|
| {
|
|
11599
|
+
id: string;
|
|
11598
11600
|
name: string;
|
|
11599
11601
|
mimeType: string;
|
|
11600
11602
|
format: "error";
|
|
@@ -11612,6 +11614,7 @@ export type ConversionOptions = {
|
|
|
11612
11614
|
images?: EmbeddedImageConversionOptions & {
|
|
11613
11615
|
convertOGImage?: boolean;
|
|
11614
11616
|
};
|
|
11617
|
+
hostname?: string;
|
|
11615
11618
|
};
|
|
11616
11619
|
docx?: {
|
|
11617
11620
|
images?: EmbeddedImageConversionOptions;
|
package/2022-10-31/index.d.ts
CHANGED
|
@@ -11650,6 +11650,7 @@ type MarkdownDocument = {
|
|
|
11650
11650
|
};
|
|
11651
11651
|
type ConversionResponse =
|
|
11652
11652
|
| {
|
|
11653
|
+
id: string;
|
|
11653
11654
|
name: string;
|
|
11654
11655
|
mimeType: string;
|
|
11655
11656
|
format: "markdown";
|
|
@@ -11657,6 +11658,7 @@ type ConversionResponse =
|
|
|
11657
11658
|
data: string;
|
|
11658
11659
|
}
|
|
11659
11660
|
| {
|
|
11661
|
+
id: string;
|
|
11660
11662
|
name: string;
|
|
11661
11663
|
mimeType: string;
|
|
11662
11664
|
format: "error";
|
|
@@ -11674,6 +11676,7 @@ type ConversionOptions = {
|
|
|
11674
11676
|
images?: EmbeddedImageConversionOptions & {
|
|
11675
11677
|
convertOGImage?: boolean;
|
|
11676
11678
|
};
|
|
11679
|
+
hostname?: string;
|
|
11677
11680
|
};
|
|
11678
11681
|
docx?: {
|
|
11679
11682
|
images?: EmbeddedImageConversionOptions;
|
package/2022-10-31/index.ts
CHANGED
|
@@ -11608,6 +11608,7 @@ export type MarkdownDocument = {
|
|
|
11608
11608
|
};
|
|
11609
11609
|
export type ConversionResponse =
|
|
11610
11610
|
| {
|
|
11611
|
+
id: string;
|
|
11611
11612
|
name: string;
|
|
11612
11613
|
mimeType: string;
|
|
11613
11614
|
format: "markdown";
|
|
@@ -11615,6 +11616,7 @@ export type ConversionResponse =
|
|
|
11615
11616
|
data: string;
|
|
11616
11617
|
}
|
|
11617
11618
|
| {
|
|
11619
|
+
id: string;
|
|
11618
11620
|
name: string;
|
|
11619
11621
|
mimeType: string;
|
|
11620
11622
|
format: "error";
|
|
@@ -11632,6 +11634,7 @@ export type ConversionOptions = {
|
|
|
11632
11634
|
images?: EmbeddedImageConversionOptions & {
|
|
11633
11635
|
convertOGImage?: boolean;
|
|
11634
11636
|
};
|
|
11637
|
+
hostname?: string;
|
|
11635
11638
|
};
|
|
11636
11639
|
docx?: {
|
|
11637
11640
|
images?: EmbeddedImageConversionOptions;
|
package/2022-11-30/index.d.ts
CHANGED
|
@@ -11655,6 +11655,7 @@ type MarkdownDocument = {
|
|
|
11655
11655
|
};
|
|
11656
11656
|
type ConversionResponse =
|
|
11657
11657
|
| {
|
|
11658
|
+
id: string;
|
|
11658
11659
|
name: string;
|
|
11659
11660
|
mimeType: string;
|
|
11660
11661
|
format: "markdown";
|
|
@@ -11662,6 +11663,7 @@ type ConversionResponse =
|
|
|
11662
11663
|
data: string;
|
|
11663
11664
|
}
|
|
11664
11665
|
| {
|
|
11666
|
+
id: string;
|
|
11665
11667
|
name: string;
|
|
11666
11668
|
mimeType: string;
|
|
11667
11669
|
format: "error";
|
|
@@ -11679,6 +11681,7 @@ type ConversionOptions = {
|
|
|
11679
11681
|
images?: EmbeddedImageConversionOptions & {
|
|
11680
11682
|
convertOGImage?: boolean;
|
|
11681
11683
|
};
|
|
11684
|
+
hostname?: string;
|
|
11682
11685
|
};
|
|
11683
11686
|
docx?: {
|
|
11684
11687
|
images?: EmbeddedImageConversionOptions;
|
package/2022-11-30/index.ts
CHANGED
|
@@ -11613,6 +11613,7 @@ export type MarkdownDocument = {
|
|
|
11613
11613
|
};
|
|
11614
11614
|
export type ConversionResponse =
|
|
11615
11615
|
| {
|
|
11616
|
+
id: string;
|
|
11616
11617
|
name: string;
|
|
11617
11618
|
mimeType: string;
|
|
11618
11619
|
format: "markdown";
|
|
@@ -11620,6 +11621,7 @@ export type ConversionResponse =
|
|
|
11620
11621
|
data: string;
|
|
11621
11622
|
}
|
|
11622
11623
|
| {
|
|
11624
|
+
id: string;
|
|
11623
11625
|
name: string;
|
|
11624
11626
|
mimeType: string;
|
|
11625
11627
|
format: "error";
|
|
@@ -11637,6 +11639,7 @@ export type ConversionOptions = {
|
|
|
11637
11639
|
images?: EmbeddedImageConversionOptions & {
|
|
11638
11640
|
convertOGImage?: boolean;
|
|
11639
11641
|
};
|
|
11642
|
+
hostname?: string;
|
|
11640
11643
|
};
|
|
11641
11644
|
docx?: {
|
|
11642
11645
|
images?: EmbeddedImageConversionOptions;
|
package/2023-03-01/index.d.ts
CHANGED
|
@@ -11661,6 +11661,7 @@ type MarkdownDocument = {
|
|
|
11661
11661
|
};
|
|
11662
11662
|
type ConversionResponse =
|
|
11663
11663
|
| {
|
|
11664
|
+
id: string;
|
|
11664
11665
|
name: string;
|
|
11665
11666
|
mimeType: string;
|
|
11666
11667
|
format: "markdown";
|
|
@@ -11668,6 +11669,7 @@ type ConversionResponse =
|
|
|
11668
11669
|
data: string;
|
|
11669
11670
|
}
|
|
11670
11671
|
| {
|
|
11672
|
+
id: string;
|
|
11671
11673
|
name: string;
|
|
11672
11674
|
mimeType: string;
|
|
11673
11675
|
format: "error";
|
|
@@ -11685,6 +11687,7 @@ type ConversionOptions = {
|
|
|
11685
11687
|
images?: EmbeddedImageConversionOptions & {
|
|
11686
11688
|
convertOGImage?: boolean;
|
|
11687
11689
|
};
|
|
11690
|
+
hostname?: string;
|
|
11688
11691
|
};
|
|
11689
11692
|
docx?: {
|
|
11690
11693
|
images?: EmbeddedImageConversionOptions;
|
package/2023-03-01/index.ts
CHANGED
|
@@ -11619,6 +11619,7 @@ export type MarkdownDocument = {
|
|
|
11619
11619
|
};
|
|
11620
11620
|
export type ConversionResponse =
|
|
11621
11621
|
| {
|
|
11622
|
+
id: string;
|
|
11622
11623
|
name: string;
|
|
11623
11624
|
mimeType: string;
|
|
11624
11625
|
format: "markdown";
|
|
@@ -11626,6 +11627,7 @@ export type ConversionResponse =
|
|
|
11626
11627
|
data: string;
|
|
11627
11628
|
}
|
|
11628
11629
|
| {
|
|
11630
|
+
id: string;
|
|
11629
11631
|
name: string;
|
|
11630
11632
|
mimeType: string;
|
|
11631
11633
|
format: "error";
|
|
@@ -11643,6 +11645,7 @@ export type ConversionOptions = {
|
|
|
11643
11645
|
images?: EmbeddedImageConversionOptions & {
|
|
11644
11646
|
convertOGImage?: boolean;
|
|
11645
11647
|
};
|
|
11648
|
+
hostname?: string;
|
|
11646
11649
|
};
|
|
11647
11650
|
docx?: {
|
|
11648
11651
|
images?: EmbeddedImageConversionOptions;
|
package/2023-07-01/index.d.ts
CHANGED
|
@@ -11661,6 +11661,7 @@ type MarkdownDocument = {
|
|
|
11661
11661
|
};
|
|
11662
11662
|
type ConversionResponse =
|
|
11663
11663
|
| {
|
|
11664
|
+
id: string;
|
|
11664
11665
|
name: string;
|
|
11665
11666
|
mimeType: string;
|
|
11666
11667
|
format: "markdown";
|
|
@@ -11668,6 +11669,7 @@ type ConversionResponse =
|
|
|
11668
11669
|
data: string;
|
|
11669
11670
|
}
|
|
11670
11671
|
| {
|
|
11672
|
+
id: string;
|
|
11671
11673
|
name: string;
|
|
11672
11674
|
mimeType: string;
|
|
11673
11675
|
format: "error";
|
|
@@ -11685,6 +11687,7 @@ type ConversionOptions = {
|
|
|
11685
11687
|
images?: EmbeddedImageConversionOptions & {
|
|
11686
11688
|
convertOGImage?: boolean;
|
|
11687
11689
|
};
|
|
11690
|
+
hostname?: string;
|
|
11688
11691
|
};
|
|
11689
11692
|
docx?: {
|
|
11690
11693
|
images?: EmbeddedImageConversionOptions;
|
package/2023-07-01/index.ts
CHANGED
|
@@ -11619,6 +11619,7 @@ export type MarkdownDocument = {
|
|
|
11619
11619
|
};
|
|
11620
11620
|
export type ConversionResponse =
|
|
11621
11621
|
| {
|
|
11622
|
+
id: string;
|
|
11622
11623
|
name: string;
|
|
11623
11624
|
mimeType: string;
|
|
11624
11625
|
format: "markdown";
|
|
@@ -11626,6 +11627,7 @@ export type ConversionResponse =
|
|
|
11626
11627
|
data: string;
|
|
11627
11628
|
}
|
|
11628
11629
|
| {
|
|
11630
|
+
id: string;
|
|
11629
11631
|
name: string;
|
|
11630
11632
|
mimeType: string;
|
|
11631
11633
|
format: "error";
|
|
@@ -11643,6 +11645,7 @@ export type ConversionOptions = {
|
|
|
11643
11645
|
images?: EmbeddedImageConversionOptions & {
|
|
11644
11646
|
convertOGImage?: boolean;
|
|
11645
11647
|
};
|
|
11648
|
+
hostname?: string;
|
|
11646
11649
|
};
|
|
11647
11650
|
docx?: {
|
|
11648
11651
|
images?: EmbeddedImageConversionOptions;
|
package/experimental/index.d.ts
CHANGED
|
@@ -12298,6 +12298,7 @@ type MarkdownDocument = {
|
|
|
12298
12298
|
};
|
|
12299
12299
|
type ConversionResponse =
|
|
12300
12300
|
| {
|
|
12301
|
+
id: string;
|
|
12301
12302
|
name: string;
|
|
12302
12303
|
mimeType: string;
|
|
12303
12304
|
format: "markdown";
|
|
@@ -12305,6 +12306,7 @@ type ConversionResponse =
|
|
|
12305
12306
|
data: string;
|
|
12306
12307
|
}
|
|
12307
12308
|
| {
|
|
12309
|
+
id: string;
|
|
12308
12310
|
name: string;
|
|
12309
12311
|
mimeType: string;
|
|
12310
12312
|
format: "error";
|
|
@@ -12322,6 +12324,7 @@ type ConversionOptions = {
|
|
|
12322
12324
|
images?: EmbeddedImageConversionOptions & {
|
|
12323
12325
|
convertOGImage?: boolean;
|
|
12324
12326
|
};
|
|
12327
|
+
hostname?: string;
|
|
12325
12328
|
};
|
|
12326
12329
|
docx?: {
|
|
12327
12330
|
images?: EmbeddedImageConversionOptions;
|
package/experimental/index.ts
CHANGED
|
@@ -12256,6 +12256,7 @@ export type MarkdownDocument = {
|
|
|
12256
12256
|
};
|
|
12257
12257
|
export type ConversionResponse =
|
|
12258
12258
|
| {
|
|
12259
|
+
id: string;
|
|
12259
12260
|
name: string;
|
|
12260
12261
|
mimeType: string;
|
|
12261
12262
|
format: "markdown";
|
|
@@ -12263,6 +12264,7 @@ export type ConversionResponse =
|
|
|
12263
12264
|
data: string;
|
|
12264
12265
|
}
|
|
12265
12266
|
| {
|
|
12267
|
+
id: string;
|
|
12266
12268
|
name: string;
|
|
12267
12269
|
mimeType: string;
|
|
12268
12270
|
format: "error";
|
|
@@ -12280,6 +12282,7 @@ export type ConversionOptions = {
|
|
|
12280
12282
|
images?: EmbeddedImageConversionOptions & {
|
|
12281
12283
|
convertOGImage?: boolean;
|
|
12282
12284
|
};
|
|
12285
|
+
hostname?: string;
|
|
12283
12286
|
};
|
|
12284
12287
|
docx?: {
|
|
12285
12288
|
images?: EmbeddedImageConversionOptions;
|
package/index.d.ts
CHANGED
|
@@ -11554,6 +11554,7 @@ type MarkdownDocument = {
|
|
|
11554
11554
|
};
|
|
11555
11555
|
type ConversionResponse =
|
|
11556
11556
|
| {
|
|
11557
|
+
id: string;
|
|
11557
11558
|
name: string;
|
|
11558
11559
|
mimeType: string;
|
|
11559
11560
|
format: "markdown";
|
|
@@ -11561,6 +11562,7 @@ type ConversionResponse =
|
|
|
11561
11562
|
data: string;
|
|
11562
11563
|
}
|
|
11563
11564
|
| {
|
|
11565
|
+
id: string;
|
|
11564
11566
|
name: string;
|
|
11565
11567
|
mimeType: string;
|
|
11566
11568
|
format: "error";
|
|
@@ -11578,6 +11580,7 @@ type ConversionOptions = {
|
|
|
11578
11580
|
images?: EmbeddedImageConversionOptions & {
|
|
11579
11581
|
convertOGImage?: boolean;
|
|
11580
11582
|
};
|
|
11583
|
+
hostname?: string;
|
|
11581
11584
|
};
|
|
11582
11585
|
docx?: {
|
|
11583
11586
|
images?: EmbeddedImageConversionOptions;
|
package/index.ts
CHANGED
|
@@ -11512,6 +11512,7 @@ export type MarkdownDocument = {
|
|
|
11512
11512
|
};
|
|
11513
11513
|
export type ConversionResponse =
|
|
11514
11514
|
| {
|
|
11515
|
+
id: string;
|
|
11515
11516
|
name: string;
|
|
11516
11517
|
mimeType: string;
|
|
11517
11518
|
format: "markdown";
|
|
@@ -11519,6 +11520,7 @@ export type ConversionResponse =
|
|
|
11519
11520
|
data: string;
|
|
11520
11521
|
}
|
|
11521
11522
|
| {
|
|
11523
|
+
id: string;
|
|
11522
11524
|
name: string;
|
|
11523
11525
|
mimeType: string;
|
|
11524
11526
|
format: "error";
|
|
@@ -11536,6 +11538,7 @@ export type ConversionOptions = {
|
|
|
11536
11538
|
images?: EmbeddedImageConversionOptions & {
|
|
11537
11539
|
convertOGImage?: boolean;
|
|
11538
11540
|
};
|
|
11541
|
+
hostname?: string;
|
|
11539
11542
|
};
|
|
11540
11543
|
docx?: {
|
|
11541
11544
|
images?: EmbeddedImageConversionOptions;
|
package/latest/index.d.ts
CHANGED
|
@@ -11694,6 +11694,7 @@ type MarkdownDocument = {
|
|
|
11694
11694
|
};
|
|
11695
11695
|
type ConversionResponse =
|
|
11696
11696
|
| {
|
|
11697
|
+
id: string;
|
|
11697
11698
|
name: string;
|
|
11698
11699
|
mimeType: string;
|
|
11699
11700
|
format: "markdown";
|
|
@@ -11701,6 +11702,7 @@ type ConversionResponse =
|
|
|
11701
11702
|
data: string;
|
|
11702
11703
|
}
|
|
11703
11704
|
| {
|
|
11705
|
+
id: string;
|
|
11704
11706
|
name: string;
|
|
11705
11707
|
mimeType: string;
|
|
11706
11708
|
format: "error";
|
|
@@ -11718,6 +11720,7 @@ type ConversionOptions = {
|
|
|
11718
11720
|
images?: EmbeddedImageConversionOptions & {
|
|
11719
11721
|
convertOGImage?: boolean;
|
|
11720
11722
|
};
|
|
11723
|
+
hostname?: string;
|
|
11721
11724
|
};
|
|
11722
11725
|
docx?: {
|
|
11723
11726
|
images?: EmbeddedImageConversionOptions;
|
package/latest/index.ts
CHANGED
|
@@ -11652,6 +11652,7 @@ export type MarkdownDocument = {
|
|
|
11652
11652
|
};
|
|
11653
11653
|
export type ConversionResponse =
|
|
11654
11654
|
| {
|
|
11655
|
+
id: string;
|
|
11655
11656
|
name: string;
|
|
11656
11657
|
mimeType: string;
|
|
11657
11658
|
format: "markdown";
|
|
@@ -11659,6 +11660,7 @@ export type ConversionResponse =
|
|
|
11659
11660
|
data: string;
|
|
11660
11661
|
}
|
|
11661
11662
|
| {
|
|
11663
|
+
id: string;
|
|
11662
11664
|
name: string;
|
|
11663
11665
|
mimeType: string;
|
|
11664
11666
|
format: "error";
|
|
@@ -11676,6 +11678,7 @@ export type ConversionOptions = {
|
|
|
11676
11678
|
images?: EmbeddedImageConversionOptions & {
|
|
11677
11679
|
convertOGImage?: boolean;
|
|
11678
11680
|
};
|
|
11681
|
+
hostname?: string;
|
|
11679
11682
|
};
|
|
11680
11683
|
docx?: {
|
|
11681
11684
|
images?: EmbeddedImageConversionOptions;
|
package/oldest/index.d.ts
CHANGED
|
@@ -11554,6 +11554,7 @@ type MarkdownDocument = {
|
|
|
11554
11554
|
};
|
|
11555
11555
|
type ConversionResponse =
|
|
11556
11556
|
| {
|
|
11557
|
+
id: string;
|
|
11557
11558
|
name: string;
|
|
11558
11559
|
mimeType: string;
|
|
11559
11560
|
format: "markdown";
|
|
@@ -11561,6 +11562,7 @@ type ConversionResponse =
|
|
|
11561
11562
|
data: string;
|
|
11562
11563
|
}
|
|
11563
11564
|
| {
|
|
11565
|
+
id: string;
|
|
11564
11566
|
name: string;
|
|
11565
11567
|
mimeType: string;
|
|
11566
11568
|
format: "error";
|
|
@@ -11578,6 +11580,7 @@ type ConversionOptions = {
|
|
|
11578
11580
|
images?: EmbeddedImageConversionOptions & {
|
|
11579
11581
|
convertOGImage?: boolean;
|
|
11580
11582
|
};
|
|
11583
|
+
hostname?: string;
|
|
11581
11584
|
};
|
|
11582
11585
|
docx?: {
|
|
11583
11586
|
images?: EmbeddedImageConversionOptions;
|
package/oldest/index.ts
CHANGED
|
@@ -11512,6 +11512,7 @@ export type MarkdownDocument = {
|
|
|
11512
11512
|
};
|
|
11513
11513
|
export type ConversionResponse =
|
|
11514
11514
|
| {
|
|
11515
|
+
id: string;
|
|
11515
11516
|
name: string;
|
|
11516
11517
|
mimeType: string;
|
|
11517
11518
|
format: "markdown";
|
|
@@ -11519,6 +11520,7 @@ export type ConversionResponse =
|
|
|
11519
11520
|
data: string;
|
|
11520
11521
|
}
|
|
11521
11522
|
| {
|
|
11523
|
+
id: string;
|
|
11522
11524
|
name: string;
|
|
11523
11525
|
mimeType: string;
|
|
11524
11526
|
format: "error";
|
|
@@ -11536,6 +11538,7 @@ export type ConversionOptions = {
|
|
|
11536
11538
|
images?: EmbeddedImageConversionOptions & {
|
|
11537
11539
|
convertOGImage?: boolean;
|
|
11538
11540
|
};
|
|
11541
|
+
hostname?: string;
|
|
11539
11542
|
};
|
|
11540
11543
|
docx?: {
|
|
11541
11544
|
images?: EmbeddedImageConversionOptions;
|
package/package.json
CHANGED