Skip to content

Commit fc201e6

Browse files
committed
Release 0.0.6
1 parent 249c929 commit fc201e6

27 files changed

+76
-412
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fileforge",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"private": false,
55
"repository": "https://github.com/OnedocLabs/fileforge-node-sdk",
66
"license": "MIT",
File renamed without changes.

src/api/resources/pdf/client/requests/PdfConvertDocxRequest.ts renamed to src/api/client/requests/ConvertDocxRequest.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
* This file was auto-generated by Fern from our API Definition.
33
*/
44

5-
import * as FileForge from "../../../../index";
5+
import * as FileForge from "../../index";
66

77
/**
88
* @example
99
* {}
1010
*/
11-
export interface PdfConvertDocxRequest {
11+
export interface ConvertDocxRequest {
1212
/**
1313
* Conversion options. This field is required even if empty.
1414
*
@@ -34,5 +34,5 @@ export interface PdfConvertDocxRequest {
3434
*
3535
* There will not be an error if a variable is not found in the document, nor if variables found in the document are not in the options.
3636
*/
37-
options: FileForge.PdfConvertDocxRequestOptions;
37+
options: FileForge.ConvertDocxRequestOptions;
3838
}

src/api/resources/pdf/client/requests/PdfGenerateRequest.ts renamed to src/api/client/requests/GenerateRequest.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
* This file was auto-generated by Fern from our API Definition.
33
*/
44

5-
import * as FileForge from "../../../../index";
5+
import * as FileForge from "../../index";
66

77
/**
88
* @example
99
* {}
1010
*/
11-
export interface PdfGenerateRequest {
11+
export interface GenerateRequest {
1212
/** Conversion options. This field is required even if empty. */
13-
options: FileForge.PdfGenerateRequestOptions;
13+
options: FileForge.GenerateRequestOptions;
1414
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/**
2+
* This file was auto-generated by Fern from our API Definition.
3+
*/
4+
5+
import * as FileForge from "../../index";
6+
7+
/**
8+
* @example
9+
* {}
10+
*/
11+
export interface MergeRequest {
12+
options: FileForge.MergeRequestOptions;
13+
}

src/api/client/requests/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export { type ConvertDocxRequest } from "./ConvertDocxRequest";
2+
export { type GenerateRequest } from "./GenerateRequest";
3+
export { type MergeRequest } from "./MergeRequest";

src/api/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
export * from "./resources";
21
export * from "./types";
32
export * from "./errors";
3+
export * from "./client";

src/api/resources/index.ts

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)