orb-billing 2.4.0 → 2.5.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.
Files changed (45) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/index.d.mts +224 -5
  3. package/index.d.ts +224 -5
  4. package/index.d.ts.map +1 -1
  5. package/index.js +132 -10
  6. package/index.js.map +1 -1
  7. package/index.mjs +129 -5
  8. package/index.mjs.map +1 -1
  9. package/package.json +1 -1
  10. package/resources/alerts.d.ts +84 -0
  11. package/resources/alerts.d.ts.map +1 -0
  12. package/resources/alerts.js +17 -0
  13. package/resources/alerts.js.map +1 -0
  14. package/resources/alerts.mjs +13 -0
  15. package/resources/alerts.mjs.map +1 -0
  16. package/resources/customers/customers.d.ts +592 -432
  17. package/resources/customers/customers.d.ts.map +1 -1
  18. package/resources/customers/customers.js.map +1 -1
  19. package/resources/customers/customers.mjs.map +1 -1
  20. package/resources/index.d.ts +1 -0
  21. package/resources/index.d.ts.map +1 -1
  22. package/resources/index.js +3 -1
  23. package/resources/index.js.map +1 -1
  24. package/resources/index.mjs +1 -0
  25. package/resources/index.mjs.map +1 -1
  26. package/resources/invoices.d.ts +296 -216
  27. package/resources/invoices.d.ts.map +1 -1
  28. package/resources/invoices.js.map +1 -1
  29. package/resources/invoices.mjs.map +1 -1
  30. package/src/index.ts +303 -6
  31. package/src/resources/alerts.ts +100 -0
  32. package/src/resources/customers/customers.ts +728 -424
  33. package/src/resources/index.ts +1 -0
  34. package/src/resources/invoices.ts +364 -212
  35. package/src/version.ts +1 -1
  36. package/version.d.ts +1 -1
  37. package/version.js +1 -1
  38. package/version.mjs +1 -1
  39. package/client.d.ts +0 -222
  40. package/client.d.ts.map +0 -1
  41. package/client.js +0 -156
  42. package/client.js.map +0 -1
  43. package/client.mjs +0 -129
  44. package/client.mjs.map +0 -1
  45. package/src/client.ts +0 -301
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.5.1 (2024-05-08)
4
+
5
+ Full Changelog: [v2.5.0...v2.5.1](https://github.com/orbcorp/orb-node/compare/v2.5.0...v2.5.1)
6
+
7
+ ### Chores
8
+
9
+ * remove unintentional file inclusion ([71a97f9](https://github.com/orbcorp/orb-node/commit/71a97f9114b56b7f9b4bc60b638028d046859b62))
10
+
11
+ ## 2.5.0 (2024-05-08)
12
+
13
+ Full Changelog: [v2.4.1...v2.5.0](https://github.com/orbcorp/orb-node/compare/v2.4.1...v2.5.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** add method to enable alerts ([#186](https://github.com/orbcorp/orb-node/issues/186)) ([e8b9215](https://github.com/orbcorp/orb-node/commit/e8b9215034f2c507ff148d2b1c7e39c6c4597d92))
18
+
19
+ ## 2.4.1 (2024-05-03)
20
+
21
+ Full Changelog: [v2.4.0...v2.4.1](https://github.com/orbcorp/orb-node/compare/v2.4.0...v2.4.1)
22
+
23
+ ### Bug Fixes
24
+
25
+ * **package:** revert recent client file change ([#182](https://github.com/orbcorp/orb-node/issues/182)) ([682eecb](https://github.com/orbcorp/orb-node/commit/682eecb4c8ccf726e81d1ea088cb0f966e545aa6))
26
+
3
27
  ## 2.4.0 (2024-05-02)
4
28
 
5
29
  Full Changelog: [v2.3.0...v2.4.0](https://github.com/orbcorp/orb-node/compare/v2.3.0...v2.4.0)
package/index.d.mts CHANGED
@@ -1,10 +1,229 @@
1
+ import * as Core from "./core.js";
1
2
  import * as Errors from "./error.js";
3
+ import { type Agent } from "./_shims/index.js";
2
4
  import * as Uploads from "./uploads.js";
3
- import { Orb } from "./client.js";
4
- export { Orb };
5
- export default Orb;
5
+ import * as Pagination from 'orb-billing/pagination';
6
+ import * as API from 'orb-billing/resources/index';
7
+ export interface ClientOptions {
8
+ /**
9
+ * Defaults to process.env['ORB_API_KEY'].
10
+ */
11
+ apiKey?: string | undefined;
12
+ /**
13
+ * Defaults to process.env['ORB_WEBHOOK_SECRET'].
14
+ */
15
+ webhookSecret?: string | null | undefined;
16
+ /**
17
+ * Override the default base URL for the API, e.g., "https://api.example.com/v2/"
18
+ *
19
+ * Defaults to process.env['ORB_BASE_URL'].
20
+ */
21
+ baseURL?: string | null | undefined;
22
+ /**
23
+ * The maximum amount of time (in milliseconds) that the client should wait for a response
24
+ * from the server before timing out a single request.
25
+ *
26
+ * Note that request timeouts are retried by default, so in a worst-case scenario you may wait
27
+ * much longer than this timeout before the promise succeeds or fails.
28
+ */
29
+ timeout?: number;
30
+ /**
31
+ * An HTTP agent used to manage HTTP(S) connections.
32
+ *
33
+ * If not provided, an agent will be constructed by default in the Node.js environment,
34
+ * otherwise no agent is used.
35
+ */
36
+ httpAgent?: Agent;
37
+ /**
38
+ * Specify a custom `fetch` function implementation.
39
+ *
40
+ * If not provided, we use `node-fetch` on Node.js and otherwise expect that `fetch` is
41
+ * defined globally.
42
+ */
43
+ fetch?: Core.Fetch | undefined;
44
+ /**
45
+ * The maximum number of times that the client will retry a request in case of a
46
+ * temporary failure, like a network error or a 5XX error from the server.
47
+ *
48
+ * @default 2
49
+ */
50
+ maxRetries?: number;
51
+ /**
52
+ * Default headers to include with every request to the API.
53
+ *
54
+ * These can be removed in individual requests by explicitly setting the
55
+ * header to `undefined` or `null` in request options.
56
+ */
57
+ defaultHeaders?: Core.Headers;
58
+ /**
59
+ * Default query parameters to include with every request to the API.
60
+ *
61
+ * These can be removed in individual requests by explicitly setting the
62
+ * param to `undefined` in request options.
63
+ */
64
+ defaultQuery?: Core.DefaultQuery;
65
+ }
66
+ /** API Client for interfacing with the Orb API. */
67
+ export declare class Orb extends Core.APIClient {
68
+ apiKey: string;
69
+ webhookSecret: string | null;
70
+ private _options;
71
+ /**
72
+ * API Client for interfacing with the Orb API.
73
+ *
74
+ * @param {string | undefined} [opts.apiKey=process.env['ORB_API_KEY'] ?? undefined]
75
+ * @param {string | null | undefined} [opts.webhookSecret=process.env['ORB_WEBHOOK_SECRET'] ?? null]
76
+ * @param {string} [opts.baseURL=process.env['ORB_BASE_URL'] ?? https://api.withorb.com/v1] - Override the default base URL for the API.
77
+ * @param {number} [opts.timeout=1 minute] - The maximum amount of time (in milliseconds) the client will wait for a response before timing out.
78
+ * @param {number} [opts.httpAgent] - An HTTP agent used to manage HTTP(s) connections.
79
+ * @param {Core.Fetch} [opts.fetch] - Specify a custom `fetch` function implementation.
80
+ * @param {number} [opts.maxRetries=2] - The maximum number of times the client will retry a request.
81
+ * @param {Core.Headers} opts.defaultHeaders - Default headers to include with every request to the API.
82
+ * @param {Core.DefaultQuery} opts.defaultQuery - Default query parameters to include with every request to the API.
83
+ */
84
+ constructor({ baseURL, apiKey, webhookSecret, ...opts }?: ClientOptions);
85
+ topLevel: API.TopLevel;
86
+ coupons: API.Coupons;
87
+ creditNotes: API.CreditNotes;
88
+ customers: API.Customers;
89
+ events: API.Events;
90
+ invoiceLineItems: API.InvoiceLineItems;
91
+ invoices: API.Invoices;
92
+ items: API.Items;
93
+ metrics: API.Metrics;
94
+ plans: API.Plans;
95
+ prices: API.Prices;
96
+ subscriptions: API.Subscriptions;
97
+ webhooks: API.Webhooks;
98
+ alerts: API.Alerts;
99
+ protected defaultQuery(): Core.DefaultQuery | undefined;
100
+ protected defaultHeaders(opts: Core.FinalRequestOptions): Core.Headers;
101
+ protected authHeaders(opts: Core.FinalRequestOptions): Core.Headers;
102
+ protected stringifyQuery(query: Record<string, unknown>): string;
103
+ static Orb: typeof Orb;
104
+ static OrbError: typeof Errors.OrbError;
105
+ static APIError: typeof Errors.APIError;
106
+ static APIConnectionError: typeof Errors.APIConnectionError;
107
+ static APIConnectionTimeoutError: typeof Errors.APIConnectionTimeoutError;
108
+ static APIUserAbortError: typeof Errors.APIUserAbortError;
109
+ static URLNotFound: typeof Errors.URLNotFound;
110
+ static NotFoundError: typeof Errors.NotFoundError;
111
+ static ConflictError: typeof Errors.ConflictError;
112
+ static RateLimitError: typeof Errors.RateLimitError;
113
+ static BadRequestError: typeof Errors.BadRequestError;
114
+ static RequestTooLarge: typeof Errors.RequestTooLarge;
115
+ static TooManyRequests: typeof Errors.TooManyRequests;
116
+ static ResourceNotFound: typeof Errors.ResourceNotFound;
117
+ static ResourceConflict: typeof Errors.ResourceConflict;
118
+ static ResourceTooLarge: typeof Errors.ResourceTooLarge;
119
+ static AuthenticationError: typeof Errors.AuthenticationError;
120
+ static InternalServerError: typeof Errors.InternalServerError;
121
+ static ConstraintViolation: typeof Errors.ConstraintViolation;
122
+ static FeatureNotAvailable: typeof Errors.FeatureNotAvailable;
123
+ static PermissionDeniedError: typeof Errors.PermissionDeniedError;
124
+ static RequestValidationError: typeof Errors.RequestValidationError;
125
+ static OrbAuthenticationError: typeof Errors.OrbAuthenticationError;
126
+ static OrbInternalServerError: typeof Errors.OrbInternalServerError;
127
+ static UnprocessableEntityError: typeof Errors.UnprocessableEntityError;
128
+ static DuplicateResourceCreation: typeof Errors.DuplicateResourceCreation;
129
+ static toFile: typeof Uploads.toFile;
130
+ static fileFromPath: typeof Uploads.fileFromPath;
131
+ }
132
+ export declare const OrbError: typeof Errors.OrbError, APIError: typeof Errors.APIError, APIConnectionError: typeof Errors.APIConnectionError, APIConnectionTimeoutError: typeof Errors.APIConnectionTimeoutError, APIUserAbortError: typeof Errors.APIUserAbortError, URLNotFound: typeof Errors.URLNotFound, NotFoundError: typeof Errors.NotFoundError, ConflictError: typeof Errors.ConflictError, RateLimitError: typeof Errors.RateLimitError, BadRequestError: typeof Errors.BadRequestError, RequestTooLarge: typeof Errors.RequestTooLarge, TooManyRequests: typeof Errors.TooManyRequests, ResourceNotFound: typeof Errors.ResourceNotFound, ResourceConflict: typeof Errors.ResourceConflict, ResourceTooLarge: typeof Errors.ResourceTooLarge, AuthenticationError: typeof Errors.AuthenticationError, InternalServerError: typeof Errors.InternalServerError, ConstraintViolation: typeof Errors.ConstraintViolation, FeatureNotAvailable: typeof Errors.FeatureNotAvailable, PermissionDeniedError: typeof Errors.PermissionDeniedError, RequestValidationError: typeof Errors.RequestValidationError, OrbAuthenticationError: typeof Errors.OrbAuthenticationError, OrbInternalServerError: typeof Errors.OrbInternalServerError, UnprocessableEntityError: typeof Errors.UnprocessableEntityError, DuplicateResourceCreation: typeof Errors.DuplicateResourceCreation;
6
133
  export import toFile = Uploads.toFile;
7
134
  export import fileFromPath = Uploads.fileFromPath;
8
- export declare const OrbError: typeof Errors.OrbError, APIError: typeof Errors.APIError, APIConnectionError: typeof Errors.APIConnectionError, APIConnectionTimeoutError: typeof Errors.APIConnectionTimeoutError, APIUserAbortError: typeof Errors.APIUserAbortError, URLNotFound: typeof Errors.URLNotFound, NotFoundError: typeof Errors.NotFoundError, ConflictError: typeof Errors.ConflictError, RateLimitError: typeof Errors.RateLimitError, BadRequestError: typeof Errors.BadRequestError, RequestTooLarge: typeof Errors.RequestTooLarge, TooManyRequests: typeof Errors.TooManyRequests, ResourceNotFound: typeof Errors.ResourceNotFound, ResourceConflict: typeof Errors.ResourceConflict, ResourceTooLarge: typeof Errors.ResourceTooLarge, AuthenticationError: typeof Errors.AuthenticationError, InternalServerError: typeof Errors.InternalServerError, ConstraintViolation: typeof Errors.ConstraintViolation, FeatureNotAvailable: typeof Errors.FeatureNotAvailable, PermissionDeniedError: typeof Errors.PermissionDeniedError, RequestValidationError: typeof Errors.RequestValidationError, OrbAuthenticationError: typeof Errors.OrbAuthenticationError, OrbInternalServerError: typeof Errors.OrbInternalServerError, UnprocessableEntityError: typeof Errors.UnprocessableEntityError, DuplicateResourceCreation: typeof Errors.DuplicateResourceCreation;
9
- export * from "./client.js";
135
+ export declare namespace Orb {
136
+ export import RequestOptions = Core.RequestOptions;
137
+ export import Page = Pagination.Page;
138
+ export import PageParams = Pagination.PageParams;
139
+ export import PageResponse = Pagination.PageResponse;
140
+ export import TopLevel = API.TopLevel;
141
+ export import TopLevelPingResponse = API.TopLevelPingResponse;
142
+ export import Coupons = API.Coupons;
143
+ export import Coupon = API.Coupon;
144
+ export import CouponsPage = API.CouponsPage;
145
+ export import CouponCreateParams = API.CouponCreateParams;
146
+ export import CouponListParams = API.CouponListParams;
147
+ export import CreditNotes = API.CreditNotes;
148
+ export import CreditNote = API.CreditNote;
149
+ export import CreditNotesPage = API.CreditNotesPage;
150
+ export import CreditNoteListParams = API.CreditNoteListParams;
151
+ export import Customers = API.Customers;
152
+ export import Customer = API.Customer;
153
+ export import CustomersPage = API.CustomersPage;
154
+ export import CustomerCreateParams = API.CustomerCreateParams;
155
+ export import CustomerUpdateParams = API.CustomerUpdateParams;
156
+ export import CustomerListParams = API.CustomerListParams;
157
+ export import CustomerUpdateByExternalIDParams = API.CustomerUpdateByExternalIDParams;
158
+ export import Events = API.Events;
159
+ export import EventUpdateResponse = API.EventUpdateResponse;
160
+ export import EventDeprecateResponse = API.EventDeprecateResponse;
161
+ export import EventIngestResponse = API.EventIngestResponse;
162
+ export import EventSearchResponse = API.EventSearchResponse;
163
+ export import EventUpdateParams = API.EventUpdateParams;
164
+ export import EventIngestParams = API.EventIngestParams;
165
+ export import EventSearchParams = API.EventSearchParams;
166
+ export import InvoiceLineItems = API.InvoiceLineItems;
167
+ export import InvoiceLineItemCreateResponse = API.InvoiceLineItemCreateResponse;
168
+ export import InvoiceLineItemCreateParams = API.InvoiceLineItemCreateParams;
169
+ export import Invoices = API.Invoices;
170
+ export import Invoice = API.Invoice;
171
+ export import InvoiceFetchUpcomingResponse = API.InvoiceFetchUpcomingResponse;
172
+ export import InvoicesPage = API.InvoicesPage;
173
+ export import InvoiceCreateParams = API.InvoiceCreateParams;
174
+ export import InvoiceListParams = API.InvoiceListParams;
175
+ export import InvoiceFetchUpcomingParams = API.InvoiceFetchUpcomingParams;
176
+ export import InvoiceMarkPaidParams = API.InvoiceMarkPaidParams;
177
+ export import Items = API.Items;
178
+ export import Item = API.Item;
179
+ export import ItemsPage = API.ItemsPage;
180
+ export import ItemCreateParams = API.ItemCreateParams;
181
+ export import ItemListParams = API.ItemListParams;
182
+ export import Metrics = API.Metrics;
183
+ export import MetricCreateResponse = API.MetricCreateResponse;
184
+ export import MetricListResponse = API.MetricListResponse;
185
+ export import MetricFetchResponse = API.MetricFetchResponse;
186
+ export import MetricListResponsesPage = API.MetricListResponsesPage;
187
+ export import MetricCreateParams = API.MetricCreateParams;
188
+ export import MetricListParams = API.MetricListParams;
189
+ export import Plans = API.Plans;
190
+ export import Plan = API.Plan;
191
+ export import PlansPage = API.PlansPage;
192
+ export import PlanCreateParams = API.PlanCreateParams;
193
+ export import PlanUpdateParams = API.PlanUpdateParams;
194
+ export import PlanListParams = API.PlanListParams;
195
+ export import Prices = API.Prices;
196
+ export import EvaluatePriceGroup = API.EvaluatePriceGroup;
197
+ export import Price = API.Price;
198
+ export import PriceEvaluateResponse = API.PriceEvaluateResponse;
199
+ export import PricesPage = API.PricesPage;
200
+ export import PriceCreateParams = API.PriceCreateParams;
201
+ export import PriceListParams = API.PriceListParams;
202
+ export import PriceEvaluateParams = API.PriceEvaluateParams;
203
+ export import Subscriptions = API.Subscriptions;
204
+ export import Subscription = API.Subscription;
205
+ export import SubscriptionUsage = API.SubscriptionUsage;
206
+ export import SubscriptionFetchCostsResponse = API.SubscriptionFetchCostsResponse;
207
+ export import SubscriptionFetchScheduleResponse = API.SubscriptionFetchScheduleResponse;
208
+ export import SubscriptionsPage = API.SubscriptionsPage;
209
+ export import SubscriptionFetchScheduleResponsesPage = API.SubscriptionFetchScheduleResponsesPage;
210
+ export import SubscriptionCreateParams = API.SubscriptionCreateParams;
211
+ export import SubscriptionUpdateParams = API.SubscriptionUpdateParams;
212
+ export import SubscriptionListParams = API.SubscriptionListParams;
213
+ export import SubscriptionCancelParams = API.SubscriptionCancelParams;
214
+ export import SubscriptionFetchCostsParams = API.SubscriptionFetchCostsParams;
215
+ export import SubscriptionFetchScheduleParams = API.SubscriptionFetchScheduleParams;
216
+ export import SubscriptionFetchUsageParams = API.SubscriptionFetchUsageParams;
217
+ export import SubscriptionPriceIntervalsParams = API.SubscriptionPriceIntervalsParams;
218
+ export import SubscriptionSchedulePlanChangeParams = API.SubscriptionSchedulePlanChangeParams;
219
+ export import SubscriptionTriggerPhaseParams = API.SubscriptionTriggerPhaseParams;
220
+ export import SubscriptionUnscheduleFixedFeeQuantityUpdatesParams = API.SubscriptionUnscheduleFixedFeeQuantityUpdatesParams;
221
+ export import SubscriptionUpdateFixedFeeQuantityParams = API.SubscriptionUpdateFixedFeeQuantityParams;
222
+ export import Alerts = API.Alerts;
223
+ export import Alert = API.Alert;
224
+ export import BillingCycleRelativeDate = API.BillingCycleRelativeDate;
225
+ export import Discount = API.Discount;
226
+ export import PaginationMetadata = API.PaginationMetadata;
227
+ }
228
+ export default Orb;
10
229
  //# sourceMappingURL=index.d.ts.map
package/index.d.ts CHANGED
@@ -1,10 +1,229 @@
1
+ import * as Core from "./core.js";
1
2
  import * as Errors from "./error.js";
3
+ import { type Agent } from "./_shims/index.js";
2
4
  import * as Uploads from "./uploads.js";
3
- import { Orb } from "./client.js";
4
- export { Orb };
5
- export default Orb;
5
+ import * as Pagination from 'orb-billing/pagination';
6
+ import * as API from 'orb-billing/resources/index';
7
+ export interface ClientOptions {
8
+ /**
9
+ * Defaults to process.env['ORB_API_KEY'].
10
+ */
11
+ apiKey?: string | undefined;
12
+ /**
13
+ * Defaults to process.env['ORB_WEBHOOK_SECRET'].
14
+ */
15
+ webhookSecret?: string | null | undefined;
16
+ /**
17
+ * Override the default base URL for the API, e.g., "https://api.example.com/v2/"
18
+ *
19
+ * Defaults to process.env['ORB_BASE_URL'].
20
+ */
21
+ baseURL?: string | null | undefined;
22
+ /**
23
+ * The maximum amount of time (in milliseconds) that the client should wait for a response
24
+ * from the server before timing out a single request.
25
+ *
26
+ * Note that request timeouts are retried by default, so in a worst-case scenario you may wait
27
+ * much longer than this timeout before the promise succeeds or fails.
28
+ */
29
+ timeout?: number;
30
+ /**
31
+ * An HTTP agent used to manage HTTP(S) connections.
32
+ *
33
+ * If not provided, an agent will be constructed by default in the Node.js environment,
34
+ * otherwise no agent is used.
35
+ */
36
+ httpAgent?: Agent;
37
+ /**
38
+ * Specify a custom `fetch` function implementation.
39
+ *
40
+ * If not provided, we use `node-fetch` on Node.js and otherwise expect that `fetch` is
41
+ * defined globally.
42
+ */
43
+ fetch?: Core.Fetch | undefined;
44
+ /**
45
+ * The maximum number of times that the client will retry a request in case of a
46
+ * temporary failure, like a network error or a 5XX error from the server.
47
+ *
48
+ * @default 2
49
+ */
50
+ maxRetries?: number;
51
+ /**
52
+ * Default headers to include with every request to the API.
53
+ *
54
+ * These can be removed in individual requests by explicitly setting the
55
+ * header to `undefined` or `null` in request options.
56
+ */
57
+ defaultHeaders?: Core.Headers;
58
+ /**
59
+ * Default query parameters to include with every request to the API.
60
+ *
61
+ * These can be removed in individual requests by explicitly setting the
62
+ * param to `undefined` in request options.
63
+ */
64
+ defaultQuery?: Core.DefaultQuery;
65
+ }
66
+ /** API Client for interfacing with the Orb API. */
67
+ export declare class Orb extends Core.APIClient {
68
+ apiKey: string;
69
+ webhookSecret: string | null;
70
+ private _options;
71
+ /**
72
+ * API Client for interfacing with the Orb API.
73
+ *
74
+ * @param {string | undefined} [opts.apiKey=process.env['ORB_API_KEY'] ?? undefined]
75
+ * @param {string | null | undefined} [opts.webhookSecret=process.env['ORB_WEBHOOK_SECRET'] ?? null]
76
+ * @param {string} [opts.baseURL=process.env['ORB_BASE_URL'] ?? https://api.withorb.com/v1] - Override the default base URL for the API.
77
+ * @param {number} [opts.timeout=1 minute] - The maximum amount of time (in milliseconds) the client will wait for a response before timing out.
78
+ * @param {number} [opts.httpAgent] - An HTTP agent used to manage HTTP(s) connections.
79
+ * @param {Core.Fetch} [opts.fetch] - Specify a custom `fetch` function implementation.
80
+ * @param {number} [opts.maxRetries=2] - The maximum number of times the client will retry a request.
81
+ * @param {Core.Headers} opts.defaultHeaders - Default headers to include with every request to the API.
82
+ * @param {Core.DefaultQuery} opts.defaultQuery - Default query parameters to include with every request to the API.
83
+ */
84
+ constructor({ baseURL, apiKey, webhookSecret, ...opts }?: ClientOptions);
85
+ topLevel: API.TopLevel;
86
+ coupons: API.Coupons;
87
+ creditNotes: API.CreditNotes;
88
+ customers: API.Customers;
89
+ events: API.Events;
90
+ invoiceLineItems: API.InvoiceLineItems;
91
+ invoices: API.Invoices;
92
+ items: API.Items;
93
+ metrics: API.Metrics;
94
+ plans: API.Plans;
95
+ prices: API.Prices;
96
+ subscriptions: API.Subscriptions;
97
+ webhooks: API.Webhooks;
98
+ alerts: API.Alerts;
99
+ protected defaultQuery(): Core.DefaultQuery | undefined;
100
+ protected defaultHeaders(opts: Core.FinalRequestOptions): Core.Headers;
101
+ protected authHeaders(opts: Core.FinalRequestOptions): Core.Headers;
102
+ protected stringifyQuery(query: Record<string, unknown>): string;
103
+ static Orb: typeof Orb;
104
+ static OrbError: typeof Errors.OrbError;
105
+ static APIError: typeof Errors.APIError;
106
+ static APIConnectionError: typeof Errors.APIConnectionError;
107
+ static APIConnectionTimeoutError: typeof Errors.APIConnectionTimeoutError;
108
+ static APIUserAbortError: typeof Errors.APIUserAbortError;
109
+ static URLNotFound: typeof Errors.URLNotFound;
110
+ static NotFoundError: typeof Errors.NotFoundError;
111
+ static ConflictError: typeof Errors.ConflictError;
112
+ static RateLimitError: typeof Errors.RateLimitError;
113
+ static BadRequestError: typeof Errors.BadRequestError;
114
+ static RequestTooLarge: typeof Errors.RequestTooLarge;
115
+ static TooManyRequests: typeof Errors.TooManyRequests;
116
+ static ResourceNotFound: typeof Errors.ResourceNotFound;
117
+ static ResourceConflict: typeof Errors.ResourceConflict;
118
+ static ResourceTooLarge: typeof Errors.ResourceTooLarge;
119
+ static AuthenticationError: typeof Errors.AuthenticationError;
120
+ static InternalServerError: typeof Errors.InternalServerError;
121
+ static ConstraintViolation: typeof Errors.ConstraintViolation;
122
+ static FeatureNotAvailable: typeof Errors.FeatureNotAvailable;
123
+ static PermissionDeniedError: typeof Errors.PermissionDeniedError;
124
+ static RequestValidationError: typeof Errors.RequestValidationError;
125
+ static OrbAuthenticationError: typeof Errors.OrbAuthenticationError;
126
+ static OrbInternalServerError: typeof Errors.OrbInternalServerError;
127
+ static UnprocessableEntityError: typeof Errors.UnprocessableEntityError;
128
+ static DuplicateResourceCreation: typeof Errors.DuplicateResourceCreation;
129
+ static toFile: typeof Uploads.toFile;
130
+ static fileFromPath: typeof Uploads.fileFromPath;
131
+ }
132
+ export declare const OrbError: typeof Errors.OrbError, APIError: typeof Errors.APIError, APIConnectionError: typeof Errors.APIConnectionError, APIConnectionTimeoutError: typeof Errors.APIConnectionTimeoutError, APIUserAbortError: typeof Errors.APIUserAbortError, URLNotFound: typeof Errors.URLNotFound, NotFoundError: typeof Errors.NotFoundError, ConflictError: typeof Errors.ConflictError, RateLimitError: typeof Errors.RateLimitError, BadRequestError: typeof Errors.BadRequestError, RequestTooLarge: typeof Errors.RequestTooLarge, TooManyRequests: typeof Errors.TooManyRequests, ResourceNotFound: typeof Errors.ResourceNotFound, ResourceConflict: typeof Errors.ResourceConflict, ResourceTooLarge: typeof Errors.ResourceTooLarge, AuthenticationError: typeof Errors.AuthenticationError, InternalServerError: typeof Errors.InternalServerError, ConstraintViolation: typeof Errors.ConstraintViolation, FeatureNotAvailable: typeof Errors.FeatureNotAvailable, PermissionDeniedError: typeof Errors.PermissionDeniedError, RequestValidationError: typeof Errors.RequestValidationError, OrbAuthenticationError: typeof Errors.OrbAuthenticationError, OrbInternalServerError: typeof Errors.OrbInternalServerError, UnprocessableEntityError: typeof Errors.UnprocessableEntityError, DuplicateResourceCreation: typeof Errors.DuplicateResourceCreation;
6
133
  export import toFile = Uploads.toFile;
7
134
  export import fileFromPath = Uploads.fileFromPath;
8
- export declare const OrbError: typeof Errors.OrbError, APIError: typeof Errors.APIError, APIConnectionError: typeof Errors.APIConnectionError, APIConnectionTimeoutError: typeof Errors.APIConnectionTimeoutError, APIUserAbortError: typeof Errors.APIUserAbortError, URLNotFound: typeof Errors.URLNotFound, NotFoundError: typeof Errors.NotFoundError, ConflictError: typeof Errors.ConflictError, RateLimitError: typeof Errors.RateLimitError, BadRequestError: typeof Errors.BadRequestError, RequestTooLarge: typeof Errors.RequestTooLarge, TooManyRequests: typeof Errors.TooManyRequests, ResourceNotFound: typeof Errors.ResourceNotFound, ResourceConflict: typeof Errors.ResourceConflict, ResourceTooLarge: typeof Errors.ResourceTooLarge, AuthenticationError: typeof Errors.AuthenticationError, InternalServerError: typeof Errors.InternalServerError, ConstraintViolation: typeof Errors.ConstraintViolation, FeatureNotAvailable: typeof Errors.FeatureNotAvailable, PermissionDeniedError: typeof Errors.PermissionDeniedError, RequestValidationError: typeof Errors.RequestValidationError, OrbAuthenticationError: typeof Errors.OrbAuthenticationError, OrbInternalServerError: typeof Errors.OrbInternalServerError, UnprocessableEntityError: typeof Errors.UnprocessableEntityError, DuplicateResourceCreation: typeof Errors.DuplicateResourceCreation;
9
- export * from "./client.js";
135
+ export declare namespace Orb {
136
+ export import RequestOptions = Core.RequestOptions;
137
+ export import Page = Pagination.Page;
138
+ export import PageParams = Pagination.PageParams;
139
+ export import PageResponse = Pagination.PageResponse;
140
+ export import TopLevel = API.TopLevel;
141
+ export import TopLevelPingResponse = API.TopLevelPingResponse;
142
+ export import Coupons = API.Coupons;
143
+ export import Coupon = API.Coupon;
144
+ export import CouponsPage = API.CouponsPage;
145
+ export import CouponCreateParams = API.CouponCreateParams;
146
+ export import CouponListParams = API.CouponListParams;
147
+ export import CreditNotes = API.CreditNotes;
148
+ export import CreditNote = API.CreditNote;
149
+ export import CreditNotesPage = API.CreditNotesPage;
150
+ export import CreditNoteListParams = API.CreditNoteListParams;
151
+ export import Customers = API.Customers;
152
+ export import Customer = API.Customer;
153
+ export import CustomersPage = API.CustomersPage;
154
+ export import CustomerCreateParams = API.CustomerCreateParams;
155
+ export import CustomerUpdateParams = API.CustomerUpdateParams;
156
+ export import CustomerListParams = API.CustomerListParams;
157
+ export import CustomerUpdateByExternalIDParams = API.CustomerUpdateByExternalIDParams;
158
+ export import Events = API.Events;
159
+ export import EventUpdateResponse = API.EventUpdateResponse;
160
+ export import EventDeprecateResponse = API.EventDeprecateResponse;
161
+ export import EventIngestResponse = API.EventIngestResponse;
162
+ export import EventSearchResponse = API.EventSearchResponse;
163
+ export import EventUpdateParams = API.EventUpdateParams;
164
+ export import EventIngestParams = API.EventIngestParams;
165
+ export import EventSearchParams = API.EventSearchParams;
166
+ export import InvoiceLineItems = API.InvoiceLineItems;
167
+ export import InvoiceLineItemCreateResponse = API.InvoiceLineItemCreateResponse;
168
+ export import InvoiceLineItemCreateParams = API.InvoiceLineItemCreateParams;
169
+ export import Invoices = API.Invoices;
170
+ export import Invoice = API.Invoice;
171
+ export import InvoiceFetchUpcomingResponse = API.InvoiceFetchUpcomingResponse;
172
+ export import InvoicesPage = API.InvoicesPage;
173
+ export import InvoiceCreateParams = API.InvoiceCreateParams;
174
+ export import InvoiceListParams = API.InvoiceListParams;
175
+ export import InvoiceFetchUpcomingParams = API.InvoiceFetchUpcomingParams;
176
+ export import InvoiceMarkPaidParams = API.InvoiceMarkPaidParams;
177
+ export import Items = API.Items;
178
+ export import Item = API.Item;
179
+ export import ItemsPage = API.ItemsPage;
180
+ export import ItemCreateParams = API.ItemCreateParams;
181
+ export import ItemListParams = API.ItemListParams;
182
+ export import Metrics = API.Metrics;
183
+ export import MetricCreateResponse = API.MetricCreateResponse;
184
+ export import MetricListResponse = API.MetricListResponse;
185
+ export import MetricFetchResponse = API.MetricFetchResponse;
186
+ export import MetricListResponsesPage = API.MetricListResponsesPage;
187
+ export import MetricCreateParams = API.MetricCreateParams;
188
+ export import MetricListParams = API.MetricListParams;
189
+ export import Plans = API.Plans;
190
+ export import Plan = API.Plan;
191
+ export import PlansPage = API.PlansPage;
192
+ export import PlanCreateParams = API.PlanCreateParams;
193
+ export import PlanUpdateParams = API.PlanUpdateParams;
194
+ export import PlanListParams = API.PlanListParams;
195
+ export import Prices = API.Prices;
196
+ export import EvaluatePriceGroup = API.EvaluatePriceGroup;
197
+ export import Price = API.Price;
198
+ export import PriceEvaluateResponse = API.PriceEvaluateResponse;
199
+ export import PricesPage = API.PricesPage;
200
+ export import PriceCreateParams = API.PriceCreateParams;
201
+ export import PriceListParams = API.PriceListParams;
202
+ export import PriceEvaluateParams = API.PriceEvaluateParams;
203
+ export import Subscriptions = API.Subscriptions;
204
+ export import Subscription = API.Subscription;
205
+ export import SubscriptionUsage = API.SubscriptionUsage;
206
+ export import SubscriptionFetchCostsResponse = API.SubscriptionFetchCostsResponse;
207
+ export import SubscriptionFetchScheduleResponse = API.SubscriptionFetchScheduleResponse;
208
+ export import SubscriptionsPage = API.SubscriptionsPage;
209
+ export import SubscriptionFetchScheduleResponsesPage = API.SubscriptionFetchScheduleResponsesPage;
210
+ export import SubscriptionCreateParams = API.SubscriptionCreateParams;
211
+ export import SubscriptionUpdateParams = API.SubscriptionUpdateParams;
212
+ export import SubscriptionListParams = API.SubscriptionListParams;
213
+ export import SubscriptionCancelParams = API.SubscriptionCancelParams;
214
+ export import SubscriptionFetchCostsParams = API.SubscriptionFetchCostsParams;
215
+ export import SubscriptionFetchScheduleParams = API.SubscriptionFetchScheduleParams;
216
+ export import SubscriptionFetchUsageParams = API.SubscriptionFetchUsageParams;
217
+ export import SubscriptionPriceIntervalsParams = API.SubscriptionPriceIntervalsParams;
218
+ export import SubscriptionSchedulePlanChangeParams = API.SubscriptionSchedulePlanChangeParams;
219
+ export import SubscriptionTriggerPhaseParams = API.SubscriptionTriggerPhaseParams;
220
+ export import SubscriptionUnscheduleFixedFeeQuantityUpdatesParams = API.SubscriptionUnscheduleFixedFeeQuantityUpdatesParams;
221
+ export import SubscriptionUpdateFixedFeeQuantityParams = API.SubscriptionUpdateFixedFeeQuantityParams;
222
+ export import Alerts = API.Alerts;
223
+ export import Alert = API.Alert;
224
+ export import BillingCycleRelativeDate = API.BillingCycleRelativeDate;
225
+ export import Discount = API.Discount;
226
+ export import PaginationMetadata = API.PaginationMetadata;
227
+ }
228
+ export default Orb;
10
229
  //# sourceMappingURL=index.d.ts.map
package/index.d.ts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["src/index.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,MAAM,SAAS,CAAC;AAClC,OAAO,KAAK,OAAO,MAAM,WAAW,CAAC;AACrC,OAAO,EAAE,GAAG,EAAE,MAAM,UAAU,CAAC;AAE/B,OAAO,EAAE,GAAG,EAAE,CAAC;AACf,eAAe,GAAG,CAAC;AAEnB,MAAM,QAAQ,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;AACtC,MAAM,QAAQ,YAAY,GAAG,OAAO,CAAC,YAAY,CAAC;AAElD,eAAO,MACL,QAAQ,0BACR,QAAQ,0BACR,kBAAkB,oCAClB,yBAAyB,2CACzB,iBAAiB,mCACjB,WAAW,6BACX,aAAa,+BACb,aAAa,+BACb,cAAc,gCACd,eAAe,iCACf,eAAe,iCACf,eAAe,iCACf,gBAAgB,kCAChB,gBAAgB,kCAChB,gBAAgB,kCAChB,mBAAmB,qCACnB,mBAAmB,qCACnB,mBAAmB,qCACnB,mBAAmB,qCACnB,qBAAqB,uCACrB,sBAAsB,wCACtB,sBAAsB,wCACtB,sBAAsB,wCACtB,wBAAwB,0CACxB,yBAAyB,yCACjB,CAAC;AAEX,cAAc,UAAU,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["src/index.ts"],"names":[],"mappings":"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"}