Skip to content

Commit

Permalink
Release 0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed May 16, 2024
1 parent 249c929 commit fc201e6
Show file tree
Hide file tree
Showing 27 changed files with 76 additions and 412 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fileforge",
"version": "0.0.5",
"version": "0.0.6",
"private": false,
"repository": "https://github.com/OnedocLabs/fileforge-node-sdk",
"license": "MIT",
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
* This file was auto-generated by Fern from our API Definition.
*/

import * as FileForge from "../../../../index";
import * as FileForge from "../../index";

/**
* @example
* {}
*/
export interface PdfConvertDocxRequest {
export interface ConvertDocxRequest {
/**
* Conversion options. This field is required even if empty.
*
Expand All @@ -34,5 +34,5 @@ export interface PdfConvertDocxRequest {
*
* 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.
*/
options: FileForge.PdfConvertDocxRequestOptions;
options: FileForge.ConvertDocxRequestOptions;
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
* This file was auto-generated by Fern from our API Definition.
*/

import * as FileForge from "../../../../index";
import * as FileForge from "../../index";

/**
* @example
* {}
*/
export interface PdfGenerateRequest {
export interface GenerateRequest {
/** Conversion options. This field is required even if empty. */
options: FileForge.PdfGenerateRequestOptions;
options: FileForge.GenerateRequestOptions;
}
13 changes: 13 additions & 0 deletions src/api/client/requests/MergeRequest.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/**
* This file was auto-generated by Fern from our API Definition.
*/

import * as FileForge from "../../index";

/**
* @example
* {}
*/
export interface MergeRequest {
options: FileForge.MergeRequestOptions;
}
3 changes: 3 additions & 0 deletions src/api/client/requests/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export { type ConvertDocxRequest } from "./ConvertDocxRequest";
export { type GenerateRequest } from "./GenerateRequest";
export { type MergeRequest } from "./MergeRequest";
2 changes: 1 addition & 1 deletion src/api/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from "./resources";
export * from "./types";
export * from "./errors";
export * from "./client";
3 changes: 0 additions & 3 deletions src/api/resources/index.ts

This file was deleted.

Loading

0 comments on commit fc201e6

Please sign in to comment.