conductor-node 12.7.0 → 12.8.1
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/CHANGELOG.md +23 -0
- package/README.md +4 -4
- package/package.json +1 -1
- package/resources/qbd/index.d.ts +2 -1
- package/resources/qbd/index.d.ts.map +1 -1
- package/resources/qbd/index.js +3 -2
- package/resources/qbd/index.js.map +1 -1
- package/resources/qbd/index.mjs +2 -1
- package/resources/qbd/index.mjs.map +1 -1
- package/resources/qbd/other-names.d.ts +690 -0
- package/resources/qbd/other-names.d.ts.map +1 -0
- package/resources/qbd/other-names.js +88 -0
- package/resources/qbd/other-names.js.map +1 -0
- package/resources/qbd/other-names.mjs +84 -0
- package/resources/qbd/other-names.mjs.map +1 -0
- package/resources/qbd/payment-methods.d.ts +35 -13
- package/resources/qbd/payment-methods.d.ts.map +1 -1
- package/resources/qbd/payment-methods.js +7 -14
- package/resources/qbd/payment-methods.js.map +1 -1
- package/resources/qbd/payment-methods.mjs +6 -12
- package/resources/qbd/payment-methods.mjs.map +1 -1
- package/resources/qbd/qbd.d.ts +6 -2
- package/resources/qbd/qbd.d.ts.map +1 -1
- package/resources/qbd/qbd.js +4 -1
- package/resources/qbd/qbd.js.map +1 -1
- package/resources/qbd/qbd.mjs +5 -2
- package/resources/qbd/qbd.mjs.map +1 -1
- package/src/_shims/auto/runtime-bun.ts +1 -1
- package/src/_shims/auto/runtime-node.ts +1 -1
- package/src/_shims/auto/runtime.ts +1 -1
- package/src/_shims/auto/types-node.ts +1 -1
- package/src/_shims/bun-runtime.ts +2 -2
- package/src/_shims/index.d.ts +3 -3
- package/src/_shims/index.mjs +1 -1
- package/src/_shims/node-runtime.ts +3 -3
- package/src/_shims/registry.ts +1 -1
- package/src/_shims/web-runtime.ts +3 -3
- package/src/core.ts +5 -5
- package/src/error.ts +1 -1
- package/src/index.ts +13 -13
- package/src/internal/qs/formats.ts +1 -1
- package/src/internal/qs/index.ts +3 -3
- package/src/internal/qs/stringify.ts +3 -3
- package/src/internal/qs/utils.ts +2 -2
- package/src/pagination.ts +1 -1
- package/src/resource.ts +1 -1
- package/src/resources/auth-sessions.ts +2 -2
- package/src/resources/end-users.ts +3 -3
- package/src/resources/index.ts +3 -3
- package/src/resources/qbd/account-tax-lines.ts +2 -2
- package/src/resources/qbd/accounts.ts +2 -2
- package/src/resources/qbd/bill-check-payments.ts +3 -3
- package/src/resources/qbd/bill-credit-card-payments.ts +3 -3
- package/src/resources/qbd/bills.ts +3 -3
- package/src/resources/qbd/checks.ts +3 -3
- package/src/resources/qbd/classes.ts +2 -2
- package/src/resources/qbd/company.ts +2 -2
- package/src/resources/qbd/credit-card-charges.ts +3 -3
- package/src/resources/qbd/credit-card-credits.ts +3 -3
- package/src/resources/qbd/credit-memos.ts +3 -3
- package/src/resources/qbd/customers.ts +3 -3
- package/src/resources/qbd/date-driven-terms.ts +2 -2
- package/src/resources/qbd/discount-items.ts +3 -3
- package/src/resources/qbd/employees.ts +3 -3
- package/src/resources/qbd/estimates.ts +3 -3
- package/src/resources/qbd/index.ts +56 -47
- package/src/resources/qbd/inventory-adjustments.ts +2 -2
- package/src/resources/qbd/inventory-assembly-items.ts +3 -3
- package/src/resources/qbd/inventory-items.ts +3 -3
- package/src/resources/qbd/inventory-sites.ts +2 -2
- package/src/resources/qbd/invoices.ts +3 -3
- package/src/resources/qbd/item-groups.ts +3 -3
- package/src/resources/qbd/item-receipts.ts +3 -3
- package/src/resources/qbd/item-sites.ts +3 -3
- package/src/resources/qbd/journal-entries.ts +3 -3
- package/src/resources/qbd/non-inventory-items.ts +3 -3
- package/src/resources/qbd/other-names.ts +855 -0
- package/src/resources/qbd/payment-methods.ts +42 -18
- package/src/resources/qbd/payroll-wage-items.ts +3 -3
- package/src/resources/qbd/preferences.ts +2 -2
- package/src/resources/qbd/price-levels.ts +2 -2
- package/src/resources/qbd/purchase-orders.ts +3 -3
- package/src/resources/qbd/qbd.ts +116 -95
- package/src/resources/qbd/receive-payments.ts +3 -3
- package/src/resources/qbd/sales-orders.ts +3 -3
- package/src/resources/qbd/sales-receipts.ts +3 -3
- package/src/resources/qbd/sales-representatives.ts +2 -2
- package/src/resources/qbd/sales-tax-codes.ts +2 -2
- package/src/resources/qbd/sales-tax-items.ts +3 -3
- package/src/resources/qbd/service-items.ts +3 -3
- package/src/resources/qbd/standard-terms.ts +2 -2
- package/src/resources/qbd/subtotal-items.ts +3 -3
- package/src/resources/qbd/time-tracking-activities.ts +3 -3
- package/src/resources/qbd/transactions.ts +3 -3
- package/src/resources/qbd/transfers.ts +3 -3
- package/src/resources/qbd/vendor-credits.ts +3 -3
- package/src/resources/qbd/vendors.ts +3 -3
- package/src/resources/qbd.ts +1 -1
- package/src/resources.ts +1 -1
- package/src/shims/node.ts +3 -3
- package/src/shims/web.ts +3 -3
- package/src/uploads.ts +4 -4
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"qbd.mjs","sourceRoot":"","sources":["../../src/resources/qbd/qbd.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;OAEf,KAAK,kBAAkB;OACvB,EAIL,eAAe,GAChB;OACM,KAAK,WAAW;OAChB,EAOL,QAAQ,GACT;OACM,KAAK,oBAAoB;OACzB,EAQL,iBAAiB,EACjB,2BAA2B,GAC5B;OACM,KAAK,yBAAyB;OAC9B,EAOL,sBAAsB,EACtB,gCAAgC,GACjC;OACM,KAAK,QAAQ;OACb,EAQL,KAAK,EACL,eAAe,GAChB;OACM,KAAK,SAAS;OACd,EAQL,MAAM,EACN,gBAAgB,GACjB;OACM,KAAK,UAAU;OACf,EAOL,OAAO,GACR;OACM,KAAK,UAAU;OACf,EAAW,eAAe,EAAyB;OACnD,KAAK,oBAAoB;OACzB,EAQL,iBAAiB,EACjB,2BAA2B,GAC5B;OACM,KAAK,oBAAoB;OACzB,EAQL,iBAAiB,EACjB,2BAA2B,GAC5B;OACM,KAAK,cAAc;OACnB,EAQL,WAAW,EACX,qBAAqB,GACtB;OACM,KAAK,YAAY;OACjB,EAML,SAAS,EACT,mBAAmB,GACpB;OACM,KAAK,kBAAkB;OACvB,EAML,eAAe,GAChB;OACM,KAAK,gBAAgB;OACrB,EAML,aAAa,EACb,uBAAuB,GACxB;OACM,KAAK,YAAY;OACjB,EAML,SAAS,EACT,mBAAmB,GACpB;OACM,KAAK,YAAY;OACjB,EAQL,SAAS,EACT,mBAAmB,GACpB;OACM,KAAK,uBAAuB;OAC5B,EASL,oBAAoB,GACrB;OACM,KAAK,yBAAyB;OAC9B,EAML,sBAAsB,EACtB,gCAAgC,GACjC;OACM,KAAK,iBAAiB;OACtB,EAML,cAAc,EACd,wBAAwB,GACzB;OACM,KAAK,iBAAiB;OACtB,EAOL,cAAc,GACf;OACM,KAAK,WAAW;OAChB,EAQL,QAAQ,EACR,kBAAkB,GACnB;OACM,KAAK,aAAa;OAClB,EAML,UAAU,EACV,oBAAoB,GACrB;OACM,KAAK,eAAe;OACpB,EAQL,YAAY,EACZ,sBAAsB,GACvB;OACM,KAAK,YAAY;OACjB,EAIL,SAAS,EACT,mBAAmB,GACpB;OACM,KAAK,iBAAiB;OACtB,EACL,cAAc,EACd,wBAAwB,GAQzB;OACM,KAAK,oBAAoB;OACzB,EAML,iBAAiB,EACjB,2BAA2B,GAC5B;OACM,KAAK,iBAAiB;OACtB,
|
|
1
|
+
{"version":3,"file":"qbd.mjs","sourceRoot":"","sources":["../../src/resources/qbd/qbd.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Disclaimer: modules in _shims aren't intended to be imported by SDK users.
|
|
3
3
|
*/
|
|
4
|
-
import { type Shims } from
|
|
5
|
-
import { getRuntime as getWebRuntime } from
|
|
4
|
+
import { type Shims } from "./registry.js";
|
|
5
|
+
import { getRuntime as getWebRuntime } from "./web-runtime.js";
|
|
6
6
|
import { ReadStream as FsReadStream } from 'node:fs';
|
|
7
7
|
|
|
8
8
|
export function getRuntime(): Shims {
|
package/src/_shims/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Disclaimer: modules in _shims aren't intended to be imported by SDK users.
|
|
3
3
|
*/
|
|
4
|
-
import { manual } from
|
|
5
|
-
import * as auto from "./auto/types";
|
|
6
|
-
import { type RequestOptions } from
|
|
4
|
+
import { manual } from "./manual-types.js";
|
|
5
|
+
import * as auto from "./auto/types.js";
|
|
6
|
+
import { type RequestOptions } from "../core.js";
|
|
7
7
|
|
|
8
8
|
type SelectType<Manual, Auto> = unknown extends Manual ? Auto : Manual;
|
|
9
9
|
|
package/src/_shims/index.mjs
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Disclaimer: modules in _shims aren't intended to be imported by SDK users.
|
|
3
3
|
*/
|
|
4
4
|
import * as shims from './registry.mjs';
|
|
5
|
-
import * as auto from "./auto/runtime";
|
|
5
|
+
import * as auto from "./auto/runtime.mjs";
|
|
6
6
|
export const init = () => {
|
|
7
7
|
if (!shims.kind) shims.setShims(auto.getRuntime(), { auto: true });
|
|
8
8
|
};
|
|
@@ -10,9 +10,9 @@ import { ReadStream as FsReadStream } from 'node:fs';
|
|
|
10
10
|
import { type Agent } from 'node:http';
|
|
11
11
|
import { FormDataEncoder } from 'form-data-encoder';
|
|
12
12
|
import { Readable } from 'node:stream';
|
|
13
|
-
import { type RequestOptions } from
|
|
14
|
-
import { MultipartBody } from
|
|
15
|
-
import { type Shims } from
|
|
13
|
+
import { type RequestOptions } from "../core.js";
|
|
14
|
+
import { MultipartBody } from "./MultipartBody.js";
|
|
15
|
+
import { type Shims } from "./registry.js";
|
|
16
16
|
import { ReadableStream } from 'node:stream/web';
|
|
17
17
|
|
|
18
18
|
type FileFromPathOptions = Omit<FilePropertyBag, 'lastModified'>;
|
package/src/_shims/registry.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Disclaimer: modules in _shims aren't intended to be imported by SDK users.
|
|
3
3
|
*/
|
|
4
|
-
import { MultipartBody } from
|
|
5
|
-
import { type RequestOptions } from
|
|
6
|
-
import { type Shims } from
|
|
4
|
+
import { MultipartBody } from "./MultipartBody.js";
|
|
5
|
+
import { type RequestOptions } from "../core.js";
|
|
6
|
+
import { type Shims } from "./registry.js";
|
|
7
7
|
|
|
8
8
|
export function getRuntime({ manuallyImported }: { manuallyImported?: boolean } = {}): Shims {
|
|
9
9
|
const recommendation =
|
package/src/core.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { VERSION } from
|
|
1
|
+
import { VERSION } from "./version.js";
|
|
2
2
|
import {
|
|
3
3
|
ConductorError,
|
|
4
4
|
APIError,
|
|
5
5
|
APIConnectionError,
|
|
6
6
|
APIConnectionTimeoutError,
|
|
7
7
|
APIUserAbortError,
|
|
8
|
-
} from
|
|
8
|
+
} from "./error.js";
|
|
9
9
|
import {
|
|
10
10
|
kind as shimsKind,
|
|
11
11
|
type Readable,
|
|
@@ -17,19 +17,19 @@ import {
|
|
|
17
17
|
type Response,
|
|
18
18
|
type HeadersInit,
|
|
19
19
|
init,
|
|
20
|
-
} from
|
|
20
|
+
} from "./_shims/index.js";
|
|
21
21
|
|
|
22
22
|
// try running side effects outside of _shims/index to workaround https://github.com/vercel/next.js/issues/76881
|
|
23
23
|
init();
|
|
24
24
|
|
|
25
25
|
export { type Response };
|
|
26
|
-
import { BlobLike, isBlobLike, isMultipartBody } from
|
|
26
|
+
import { BlobLike, isBlobLike, isMultipartBody } from "./uploads.js";
|
|
27
27
|
export {
|
|
28
28
|
maybeMultipartFormRequestOptions,
|
|
29
29
|
multipartFormRequestOptions,
|
|
30
30
|
createForm,
|
|
31
31
|
type Uploadable,
|
|
32
|
-
} from
|
|
32
|
+
} from "./uploads.js";
|
|
33
33
|
|
|
34
34
|
export type Fetch = (url: RequestInfo, init?: RequestInit) => Promise<Response>;
|
|
35
35
|
|
package/src/error.ts
CHANGED
package/src/index.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
import { type Agent } from
|
|
4
|
-
import * as qs from
|
|
5
|
-
import * as Core from
|
|
6
|
-
import * as Errors from
|
|
7
|
-
import * as Pagination from
|
|
8
|
-
import { type CursorPageParams, CursorPageResponse } from
|
|
9
|
-
import * as Uploads from
|
|
10
|
-
import * as API from
|
|
11
|
-
import { AuthSession, AuthSessionCreateParams, AuthSessions } from
|
|
3
|
+
import { type Agent } from "./_shims/index.js";
|
|
4
|
+
import * as qs from "./internal/qs.js";
|
|
5
|
+
import * as Core from "./core.js";
|
|
6
|
+
import * as Errors from "./error.js";
|
|
7
|
+
import * as Pagination from "./pagination.js";
|
|
8
|
+
import { type CursorPageParams, CursorPageResponse } from "./pagination.js";
|
|
9
|
+
import * as Uploads from "./uploads.js";
|
|
10
|
+
import * as API from "./resources/index.js";
|
|
11
|
+
import { AuthSession, AuthSessionCreateParams, AuthSessions } from "./resources/auth-sessions.js";
|
|
12
12
|
import {
|
|
13
13
|
EndUser,
|
|
14
14
|
EndUserCreateParams,
|
|
@@ -17,8 +17,8 @@ import {
|
|
|
17
17
|
EndUserPassthroughParams,
|
|
18
18
|
EndUserPassthroughResponse,
|
|
19
19
|
EndUsers,
|
|
20
|
-
} from
|
|
21
|
-
import { Qbd, QbdHealthCheckParams, QbdHealthCheckResponse } from
|
|
20
|
+
} from "./resources/end-users.js";
|
|
21
|
+
import { Qbd, QbdHealthCheckParams, QbdHealthCheckResponse } from "./resources/qbd/qbd.js";
|
|
22
22
|
|
|
23
23
|
export interface ClientOptions {
|
|
24
24
|
/**
|
|
@@ -209,7 +209,7 @@ export declare namespace Conductor {
|
|
|
209
209
|
};
|
|
210
210
|
}
|
|
211
211
|
|
|
212
|
-
export { toFile, fileFromPath } from
|
|
212
|
+
export { toFile, fileFromPath } from "./uploads.js";
|
|
213
213
|
export {
|
|
214
214
|
ConductorError,
|
|
215
215
|
APIError,
|
|
@@ -224,6 +224,6 @@ export {
|
|
|
224
224
|
InternalServerError,
|
|
225
225
|
PermissionDeniedError,
|
|
226
226
|
UnprocessableEntityError,
|
|
227
|
-
} from
|
|
227
|
+
} from "./error.js";
|
|
228
228
|
|
|
229
229
|
export default Conductor;
|
package/src/internal/qs/index.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { default_format, formatters, RFC1738, RFC3986 } from
|
|
1
|
+
import { default_format, formatters, RFC1738, RFC3986 } from "./formats.js";
|
|
2
2
|
|
|
3
3
|
const formats = {
|
|
4
4
|
formatters,
|
|
@@ -7,7 +7,7 @@ const formats = {
|
|
|
7
7
|
default: default_format,
|
|
8
8
|
};
|
|
9
9
|
|
|
10
|
-
export { stringify } from
|
|
10
|
+
export { stringify } from "./stringify.js";
|
|
11
11
|
export { formats };
|
|
12
12
|
|
|
13
|
-
export type { DefaultDecoder, DefaultEncoder, Format, ParseOptions, StringifyOptions } from
|
|
13
|
+
export type { DefaultDecoder, DefaultEncoder, Format, ParseOptions, StringifyOptions } from "./types.js";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { encode, is_buffer, maybe_map } from
|
|
2
|
-
import { default_format, formatters } from
|
|
3
|
-
import type { NonNullableProperties, StringifyOptions } from
|
|
1
|
+
import { encode, is_buffer, maybe_map } from "./utils.js";
|
|
2
|
+
import { default_format, formatters } from "./formats.js";
|
|
3
|
+
import type { NonNullableProperties, StringifyOptions } from "./types.js";
|
|
4
4
|
|
|
5
5
|
const has = Object.prototype.hasOwnProperty;
|
|
6
6
|
|
package/src/internal/qs/utils.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { RFC1738 } from
|
|
2
|
-
import type { DefaultEncoder, Format } from
|
|
1
|
+
import { RFC1738 } from "./formats.js";
|
|
2
|
+
import type { DefaultEncoder, Format } from "./types.js";
|
|
3
3
|
|
|
4
4
|
const has = Object.prototype.hasOwnProperty;
|
|
5
5
|
const is_array = Array.isArray;
|
package/src/pagination.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
import { AbstractPage, Response, APIClient, FinalRequestOptions, PageInfo } from
|
|
3
|
+
import { AbstractPage, Response, APIClient, FinalRequestOptions, PageInfo } from "./core.js";
|
|
4
4
|
|
|
5
5
|
export interface CursorPageResponse<Item> {
|
|
6
6
|
data: Array<Item>;
|
package/src/resource.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
import { APIResource } from
|
|
4
|
-
import * as Core from
|
|
3
|
+
import { APIResource } from "../resource.js";
|
|
4
|
+
import * as Core from "../core.js";
|
|
5
5
|
|
|
6
6
|
export class AuthSessions extends APIResource {
|
|
7
7
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
import { APIResource } from
|
|
4
|
-
import { isRequestOptions } from
|
|
5
|
-
import * as Core from
|
|
3
|
+
import { APIResource } from "../resource.js";
|
|
4
|
+
import { isRequestOptions } from "../core.js";
|
|
5
|
+
import * as Core from "../core.js";
|
|
6
6
|
|
|
7
7
|
export class EndUsers extends APIResource {
|
|
8
8
|
/**
|
package/src/resources/index.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
export { AuthSessions, type AuthSession, type AuthSessionCreateParams } from
|
|
3
|
+
export { AuthSessions, type AuthSession, type AuthSessionCreateParams } from "./auth-sessions.js";
|
|
4
4
|
export {
|
|
5
5
|
EndUsers,
|
|
6
6
|
type EndUser,
|
|
@@ -9,5 +9,5 @@ export {
|
|
|
9
9
|
type EndUserPassthroughResponse,
|
|
10
10
|
type EndUserCreateParams,
|
|
11
11
|
type EndUserPassthroughParams,
|
|
12
|
-
} from
|
|
13
|
-
export { Qbd, type QbdHealthCheckResponse, type QbdHealthCheckParams } from
|
|
12
|
+
} from "./end-users.js";
|
|
13
|
+
export { Qbd, type QbdHealthCheckResponse, type QbdHealthCheckParams } from "./qbd/qbd.js";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
import { APIResource } from
|
|
4
|
-
import * as Core from
|
|
3
|
+
import { APIResource } from "../../resource.js";
|
|
4
|
+
import * as Core from "../../core.js";
|
|
5
5
|
|
|
6
6
|
export class AccountTaxLines extends APIResource {
|
|
7
7
|
/**
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
import { APIResource } from
|
|
4
|
-
import * as Core from
|
|
3
|
+
import { APIResource } from "../../resource.js";
|
|
4
|
+
import * as Core from "../../core.js";
|
|
5
5
|
|
|
6
6
|
export class Accounts extends APIResource {
|
|
7
7
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
import { APIResource } from
|
|
4
|
-
import * as Core from
|
|
5
|
-
import { CursorPage, type CursorPageParams } from
|
|
3
|
+
import { APIResource } from "../../resource.js";
|
|
4
|
+
import * as Core from "../../core.js";
|
|
5
|
+
import { CursorPage, type CursorPageParams } from "../../pagination.js";
|
|
6
6
|
|
|
7
7
|
export class BillCheckPayments extends APIResource {
|
|
8
8
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
import { APIResource } from
|
|
4
|
-
import * as Core from
|
|
5
|
-
import { CursorPage, type CursorPageParams } from
|
|
3
|
+
import { APIResource } from "../../resource.js";
|
|
4
|
+
import * as Core from "../../core.js";
|
|
5
|
+
import { CursorPage, type CursorPageParams } from "../../pagination.js";
|
|
6
6
|
|
|
7
7
|
export class BillCreditCardPayments extends APIResource {
|
|
8
8
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
import { APIResource } from
|
|
4
|
-
import * as Core from
|
|
5
|
-
import { CursorPage, type CursorPageParams } from
|
|
3
|
+
import { APIResource } from "../../resource.js";
|
|
4
|
+
import * as Core from "../../core.js";
|
|
5
|
+
import { CursorPage, type CursorPageParams } from "../../pagination.js";
|
|
6
6
|
|
|
7
7
|
export class Bills extends APIResource {
|
|
8
8
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
import { APIResource } from
|
|
4
|
-
import * as Core from
|
|
5
|
-
import { CursorPage, type CursorPageParams } from
|
|
3
|
+
import { APIResource } from "../../resource.js";
|
|
4
|
+
import * as Core from "../../core.js";
|
|
5
|
+
import { CursorPage, type CursorPageParams } from "../../pagination.js";
|
|
6
6
|
|
|
7
7
|
export class Checks extends APIResource {
|
|
8
8
|
/**
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
import { APIResource } from
|
|
4
|
-
import * as Core from
|
|
3
|
+
import { APIResource } from "../../resource.js";
|
|
4
|
+
import * as Core from "../../core.js";
|
|
5
5
|
|
|
6
6
|
export class Classes extends APIResource {
|
|
7
7
|
/**
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
import { APIResource } from
|
|
4
|
-
import * as Core from
|
|
3
|
+
import { APIResource } from "../../resource.js";
|
|
4
|
+
import * as Core from "../../core.js";
|
|
5
5
|
|
|
6
6
|
export class CompanyResource extends APIResource {
|
|
7
7
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
import { APIResource } from
|
|
4
|
-
import * as Core from
|
|
5
|
-
import { CursorPage, type CursorPageParams } from
|
|
3
|
+
import { APIResource } from "../../resource.js";
|
|
4
|
+
import * as Core from "../../core.js";
|
|
5
|
+
import { CursorPage, type CursorPageParams } from "../../pagination.js";
|
|
6
6
|
|
|
7
7
|
export class CreditCardCharges extends APIResource {
|
|
8
8
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
import { APIResource } from
|
|
4
|
-
import * as Core from
|
|
5
|
-
import { CursorPage, type CursorPageParams } from
|
|
3
|
+
import { APIResource } from "../../resource.js";
|
|
4
|
+
import * as Core from "../../core.js";
|
|
5
|
+
import { CursorPage, type CursorPageParams } from "../../pagination.js";
|
|
6
6
|
|
|
7
7
|
export class CreditCardCredits extends APIResource {
|
|
8
8
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
import { APIResource } from
|
|
4
|
-
import * as Core from
|
|
5
|
-
import { CursorPage, type CursorPageParams } from
|
|
3
|
+
import { APIResource } from "../../resource.js";
|
|
4
|
+
import * as Core from "../../core.js";
|
|
5
|
+
import { CursorPage, type CursorPageParams } from "../../pagination.js";
|
|
6
6
|
|
|
7
7
|
export class CreditMemos extends APIResource {
|
|
8
8
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
import { APIResource } from
|
|
4
|
-
import * as Core from
|
|
5
|
-
import { CursorPage, type CursorPageParams } from
|
|
3
|
+
import { APIResource } from "../../resource.js";
|
|
4
|
+
import * as Core from "../../core.js";
|
|
5
|
+
import { CursorPage, type CursorPageParams } from "../../pagination.js";
|
|
6
6
|
|
|
7
7
|
export class Customers extends APIResource {
|
|
8
8
|
/**
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
import { APIResource } from
|
|
4
|
-
import * as Core from
|
|
3
|
+
import { APIResource } from "../../resource.js";
|
|
4
|
+
import * as Core from "../../core.js";
|
|
5
5
|
|
|
6
6
|
export class DateDrivenTerms extends APIResource {
|
|
7
7
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
import { APIResource } from
|
|
4
|
-
import * as Core from
|
|
5
|
-
import { CursorPage, type CursorPageParams } from
|
|
3
|
+
import { APIResource } from "../../resource.js";
|
|
4
|
+
import * as Core from "../../core.js";
|
|
5
|
+
import { CursorPage, type CursorPageParams } from "../../pagination.js";
|
|
6
6
|
|
|
7
7
|
export class DiscountItems extends APIResource {
|
|
8
8
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
import { APIResource } from
|
|
4
|
-
import * as Core from
|
|
5
|
-
import { CursorPage, type CursorPageParams } from
|
|
3
|
+
import { APIResource } from "../../resource.js";
|
|
4
|
+
import * as Core from "../../core.js";
|
|
5
|
+
import { CursorPage, type CursorPageParams } from "../../pagination.js";
|
|
6
6
|
|
|
7
7
|
export class Employees extends APIResource {
|
|
8
8
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
import { APIResource } from
|
|
4
|
-
import * as Core from
|
|
5
|
-
import { CursorPage, type CursorPageParams } from
|
|
3
|
+
import { APIResource } from "../../resource.js";
|
|
4
|
+
import * as Core from "../../core.js";
|
|
5
|
+
import { CursorPage, type CursorPageParams } from "../../pagination.js";
|
|
6
6
|
|
|
7
7
|
export class Estimates extends APIResource {
|
|
8
8
|
/**
|