@tryfinch/finch-api 5.12.1 → 5.14.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/CHANGELOG.md +17 -0
- package/index.d.mts +6 -1
- package/index.d.ts +6 -1
- package/index.d.ts.map +1 -1
- package/index.js +3 -0
- package/index.js.map +1 -1
- package/index.mjs +3 -0
- package/index.mjs.map +1 -1
- package/package.json +1 -1
- package/pagination.d.ts +25 -3
- package/pagination.d.ts.map +1 -1
- package/pagination.js +38 -1
- package/pagination.js.map +1 -1
- package/pagination.mjs +36 -0
- package/pagination.mjs.map +1 -1
- package/resources/account.d.ts +9 -0
- package/resources/account.d.ts.map +1 -1
- package/resources/account.js.map +1 -1
- package/resources/account.mjs.map +1 -1
- package/resources/hris/company.d.ts +1 -1
- package/resources/hris/company.d.ts.map +1 -1
- package/resources/hris/company.js.map +1 -1
- package/resources/hris/company.mjs.map +1 -1
- package/resources/hris/hris.d.ts +0 -11
- package/resources/hris/hris.d.ts.map +1 -1
- package/resources/hris/hris.js.map +1 -1
- package/resources/hris/hris.mjs.map +1 -1
- package/resources/hris/index.d.ts +1 -1
- package/resources/hris/index.d.ts.map +1 -1
- package/resources/hris/index.js.map +1 -1
- package/resources/hris/index.mjs.map +1 -1
- package/resources/hris/pay-statements.d.ts +2 -1
- package/resources/hris/pay-statements.d.ts.map +1 -1
- package/resources/hris/pay-statements.js.map +1 -1
- package/resources/hris/pay-statements.mjs.map +1 -1
- package/resources/index.d.ts +2 -1
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js +3 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs +1 -0
- package/resources/index.mjs.map +1 -1
- package/resources/jobs/automated.d.ts +101 -0
- package/resources/jobs/automated.d.ts.map +1 -0
- package/resources/jobs/automated.js +68 -0
- package/resources/jobs/automated.js.map +1 -0
- package/resources/jobs/automated.mjs +40 -0
- package/resources/jobs/automated.mjs.map +1 -0
- package/resources/jobs/index.d.ts +4 -0
- package/resources/jobs/index.d.ts.map +1 -0
- package/resources/jobs/index.js +12 -0
- package/resources/jobs/index.js.map +1 -0
- package/resources/jobs/index.mjs +5 -0
- package/resources/jobs/index.mjs.map +1 -0
- package/resources/jobs/jobs.d.ts +18 -0
- package/resources/jobs/jobs.d.ts.map +1 -0
- package/resources/jobs/jobs.js +44 -0
- package/resources/jobs/jobs.js.map +1 -0
- package/resources/jobs/jobs.mjs +17 -0
- package/resources/jobs/jobs.mjs.map +1 -0
- package/resources/jobs/manual.d.ts +22 -0
- package/resources/jobs/manual.d.ts.map +1 -0
- package/resources/jobs/manual.js +18 -0
- package/resources/jobs/manual.js.map +1 -0
- package/resources/jobs/manual.mjs +14 -0
- package/resources/jobs/manual.mjs.map +1 -0
- package/resources/shared.d.ts +10 -0
- package/resources/shared.d.ts.map +1 -1
- package/src/index.ts +8 -1
- package/src/pagination.ts +65 -3
- package/src/resources/account.ts +11 -0
- package/src/resources/hris/company.ts +9 -1
- package/src/resources/hris/hris.ts +0 -13
- package/src/resources/hris/index.ts +1 -1
- package/src/resources/hris/pay-statements.ts +2 -1
- package/src/resources/index.ts +2 -1
- package/src/resources/jobs/automated.ts +139 -0
- package/src/resources/jobs/index.ts +12 -0
- package/src/resources/jobs/jobs.ts +21 -0
- package/src/resources/jobs/manual.ts +30 -0
- package/src/resources/shared.ts +12 -0
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/src/pagination.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless.
|
|
2
2
|
|
|
3
3
|
import { AbstractPage, Response, APIClient, FinalRequestOptions, PageInfo } from './core';
|
|
4
|
+
import * as Shared from "./resources/shared";
|
|
4
5
|
import * as DirectoryAPI from "./resources/hris/directory";
|
|
5
|
-
import * as HRISAPI from "./resources/hris/hris";
|
|
6
6
|
|
|
7
7
|
export type SinglePageResponse<Item> = Item[];
|
|
8
8
|
|
|
@@ -80,7 +80,7 @@ export interface IndividualsPageResponse {
|
|
|
80
80
|
*/
|
|
81
81
|
individuals: Array<DirectoryAPI.IndividualInDirectory>;
|
|
82
82
|
|
|
83
|
-
paging:
|
|
83
|
+
paging: Shared.Paging;
|
|
84
84
|
}
|
|
85
85
|
|
|
86
86
|
export interface IndividualsPageParams {
|
|
@@ -99,7 +99,7 @@ export class IndividualsPage
|
|
|
99
99
|
extends AbstractPage<DirectoryAPI.IndividualInDirectory>
|
|
100
100
|
implements IndividualsPageResponse
|
|
101
101
|
{
|
|
102
|
-
paging:
|
|
102
|
+
paging: Shared.Paging;
|
|
103
103
|
|
|
104
104
|
/**
|
|
105
105
|
* The array of employees.
|
|
@@ -149,3 +149,65 @@ export class IndividualsPage
|
|
|
149
149
|
return null;
|
|
150
150
|
}
|
|
151
151
|
}
|
|
152
|
+
|
|
153
|
+
export interface PageResponse<Item> {
|
|
154
|
+
paging: Shared.Paging;
|
|
155
|
+
|
|
156
|
+
data?: Array<Item>;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
export interface PageParams {
|
|
160
|
+
/**
|
|
161
|
+
* Number of employees to return (defaults to all)
|
|
162
|
+
*/
|
|
163
|
+
limit?: number;
|
|
164
|
+
|
|
165
|
+
/**
|
|
166
|
+
* Index to start from (defaults to 0)
|
|
167
|
+
*/
|
|
168
|
+
offset?: number;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
export class Page<Item> extends AbstractPage<Item> implements PageResponse<Item> {
|
|
172
|
+
paging: Shared.Paging;
|
|
173
|
+
|
|
174
|
+
data: Array<Item>;
|
|
175
|
+
|
|
176
|
+
constructor(client: APIClient, response: Response, body: PageResponse<Item>, options: FinalRequestOptions) {
|
|
177
|
+
super(client, response, body, options);
|
|
178
|
+
|
|
179
|
+
this.paging = body.paging;
|
|
180
|
+
this.data = body.data || [];
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
getPaginatedItems(): Item[] {
|
|
184
|
+
return this.data;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
// @deprecated Please use `nextPageInfo()` instead
|
|
188
|
+
nextPageParams(): Partial<PageParams> | null {
|
|
189
|
+
const info = this.nextPageInfo();
|
|
190
|
+
if (!info) return null;
|
|
191
|
+
if ('params' in info) return info.params;
|
|
192
|
+
const params = Object.fromEntries(info.url.searchParams);
|
|
193
|
+
if (!Object.keys(params).length) return null;
|
|
194
|
+
return params;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
nextPageInfo(): PageInfo | null {
|
|
198
|
+
const offset = this.paging.offset;
|
|
199
|
+
if (!offset) return null;
|
|
200
|
+
|
|
201
|
+
const length = this.data.length;
|
|
202
|
+
const currentCount = offset + length;
|
|
203
|
+
|
|
204
|
+
const totalCount = this.paging.count;
|
|
205
|
+
if (!totalCount) return null;
|
|
206
|
+
|
|
207
|
+
if (currentCount < totalCount) {
|
|
208
|
+
return { params: { offset: currentCount } };
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
return null;
|
|
212
|
+
}
|
|
213
|
+
}
|
package/src/resources/account.ts
CHANGED
|
@@ -40,11 +40,22 @@ export interface Introspection {
|
|
|
40
40
|
*/
|
|
41
41
|
client_id: string;
|
|
42
42
|
|
|
43
|
+
/**
|
|
44
|
+
* The type of application associated with a token.
|
|
45
|
+
*/
|
|
46
|
+
client_type: 'production' | 'development' | 'sandbox';
|
|
47
|
+
|
|
43
48
|
/**
|
|
44
49
|
* The Finch uuid of the company associated with the `access_token`.
|
|
45
50
|
*/
|
|
46
51
|
company_id: string;
|
|
47
52
|
|
|
53
|
+
/**
|
|
54
|
+
* The type of the connection associated with the token.<br> `provider` -
|
|
55
|
+
* connection to an external provider<br> `finch` - finch-generated data.
|
|
56
|
+
*/
|
|
57
|
+
connection_type: 'provider' | 'finch';
|
|
58
|
+
|
|
48
59
|
/**
|
|
49
60
|
* Whether the connection associated with the `access_token` uses the Assisted
|
|
50
61
|
* Connect Flow. (`true` if using Assisted Connect, `false` if connection is
|
|
@@ -123,7 +123,15 @@ export namespace Company {
|
|
|
123
123
|
/**
|
|
124
124
|
* The tax payer type of the company.
|
|
125
125
|
*/
|
|
126
|
-
type?:
|
|
126
|
+
type?:
|
|
127
|
+
| 'llc'
|
|
128
|
+
| 'lp'
|
|
129
|
+
| 'corporation'
|
|
130
|
+
| 'sole_proprietor'
|
|
131
|
+
| 'non_profit'
|
|
132
|
+
| 'partnership'
|
|
133
|
+
| 'cooperative'
|
|
134
|
+
| null;
|
|
127
135
|
}
|
|
128
136
|
}
|
|
129
137
|
|
|
@@ -103,23 +103,10 @@ export interface Money {
|
|
|
103
103
|
currency?: string;
|
|
104
104
|
}
|
|
105
105
|
|
|
106
|
-
export interface Paging {
|
|
107
|
-
/**
|
|
108
|
-
* The total number of elements for the entire query (not just the given page)
|
|
109
|
-
*/
|
|
110
|
-
count?: number;
|
|
111
|
-
|
|
112
|
-
/**
|
|
113
|
-
* The current start index of the returned list of elements
|
|
114
|
-
*/
|
|
115
|
-
offset?: number;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
106
|
export namespace HRIS {
|
|
119
107
|
export import Income = HRISAPI.Income;
|
|
120
108
|
export import Location = HRISAPI.Location;
|
|
121
109
|
export import Money = HRISAPI.Money;
|
|
122
|
-
export import Paging = HRISAPI.Paging;
|
|
123
110
|
export import CompanyResource = CompanyAPI.CompanyResource;
|
|
124
111
|
export import Company = CompanyAPI.Company;
|
|
125
112
|
export import Directory = DirectoryAPI.Directory;
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
import * as Core from "../../core";
|
|
4
4
|
import { APIResource } from "../../resource";
|
|
5
5
|
import * as PayStatementsAPI from "./pay-statements";
|
|
6
|
+
import * as Shared from "../shared";
|
|
6
7
|
import * as HRISAPI from "./hris";
|
|
7
8
|
import * as BenefitsAPI from "./benefits/benefits";
|
|
8
9
|
import { ResponsesPage } from "../../pagination";
|
|
@@ -200,7 +201,7 @@ export interface PayStatementResponse {
|
|
|
200
201
|
}
|
|
201
202
|
|
|
202
203
|
export interface PayStatementResponseBody {
|
|
203
|
-
paging?:
|
|
204
|
+
paging?: Shared.Paging;
|
|
204
205
|
|
|
205
206
|
/**
|
|
206
207
|
* The array of pay statements for the current payment.
|
package/src/resources/index.ts
CHANGED
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
export * from './shared';
|
|
4
4
|
export { DisconnectResponse, Introspection, Account } from './account';
|
|
5
|
-
export { Income, Location, Money,
|
|
5
|
+
export { Income, Location, Money, HRIS } from './hris/hris';
|
|
6
|
+
export { Jobs } from './jobs/jobs';
|
|
6
7
|
export { Provider, ProvidersSinglePage, Providers } from './providers';
|
|
7
8
|
export {
|
|
8
9
|
RequestForwardingForwardResponse,
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec by Stainless.
|
|
2
|
+
|
|
3
|
+
import * as Core from "../../core";
|
|
4
|
+
import { APIResource } from "../../resource";
|
|
5
|
+
import { isRequestOptions } from "../../core";
|
|
6
|
+
import * as AutomatedAPI from "./automated";
|
|
7
|
+
import { Page, type PageParams } from "../../pagination";
|
|
8
|
+
|
|
9
|
+
export class Automated extends APIResource {
|
|
10
|
+
/**
|
|
11
|
+
* Enqueue an automated job. Currently, only the `data_sync_all` job type is
|
|
12
|
+
* supported, which will enqueue a job to re-sync all data for a connection.
|
|
13
|
+
* `data_sync_all` has a concurrency limit of 1 job at a time per connection. This
|
|
14
|
+
* means that if this endpoint is called while a job is already in progress for
|
|
15
|
+
* this connection, Finch will return the `job_id` of the job that is currently in
|
|
16
|
+
* progress. Finch allows a fixed window rate limit of 1 forced refresh per hour
|
|
17
|
+
* per connection.
|
|
18
|
+
*
|
|
19
|
+
* This endpoint is available for _Scale_ tier customers as an add-on. To request
|
|
20
|
+
* access to this endpoint, please contact your Finch account manager.
|
|
21
|
+
*/
|
|
22
|
+
create(
|
|
23
|
+
body: AutomatedCreateParams,
|
|
24
|
+
options?: Core.RequestOptions,
|
|
25
|
+
): Core.APIPromise<AutomatedCreateResponse> {
|
|
26
|
+
return this._client.post('/jobs/automated', { body, ...options });
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Get an automated job by `job_id`.
|
|
31
|
+
*/
|
|
32
|
+
retrieve(jobId: string, options?: Core.RequestOptions): Core.APIPromise<AutomatedAsyncJob> {
|
|
33
|
+
return this._client.get(`/jobs/automated/${jobId}`, options);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Get all automated jobs. Automated jobs are completed by a machine. By default,
|
|
38
|
+
* jobs are sorted in descending order by submission time. For scheduled jobs such
|
|
39
|
+
* as data syncs, only the next scheduled job is shown.
|
|
40
|
+
*/
|
|
41
|
+
list(
|
|
42
|
+
query?: AutomatedListParams,
|
|
43
|
+
options?: Core.RequestOptions,
|
|
44
|
+
): Core.PagePromise<AutomatedAsyncJobsPage, AutomatedAsyncJob>;
|
|
45
|
+
list(options?: Core.RequestOptions): Core.PagePromise<AutomatedAsyncJobsPage, AutomatedAsyncJob>;
|
|
46
|
+
list(
|
|
47
|
+
query: AutomatedListParams | Core.RequestOptions = {},
|
|
48
|
+
options?: Core.RequestOptions,
|
|
49
|
+
): Core.PagePromise<AutomatedAsyncJobsPage, AutomatedAsyncJob> {
|
|
50
|
+
if (isRequestOptions(query)) {
|
|
51
|
+
return this.list({}, query);
|
|
52
|
+
}
|
|
53
|
+
return this._client.getAPIList('/jobs/automated', AutomatedAsyncJobsPage, { query, ...options });
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
export class AutomatedAsyncJobsPage extends Page<AutomatedAsyncJob> {}
|
|
58
|
+
|
|
59
|
+
export interface AutomatedAsyncJob {
|
|
60
|
+
/**
|
|
61
|
+
* The datetime the job completed.
|
|
62
|
+
*/
|
|
63
|
+
completed_at: string | null;
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* The datetime when the job was created. for scheduled jobs, this will be the
|
|
67
|
+
* initial connection time. For ad-hoc jobs, this will be the time the creation
|
|
68
|
+
* request was received.
|
|
69
|
+
*/
|
|
70
|
+
created_at: string;
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* The id of the job that has been created.
|
|
74
|
+
*/
|
|
75
|
+
job_id: string;
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* The url that can be used to retrieve the job status
|
|
79
|
+
*/
|
|
80
|
+
job_url: string;
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* The datetime a job is scheduled to be run. For scheduled jobs, this datetime can
|
|
84
|
+
* be in the future if the job has not yet been enqueued. For ad-hoc jobs, this
|
|
85
|
+
* field will be null.
|
|
86
|
+
*/
|
|
87
|
+
scheduled_at: string | null;
|
|
88
|
+
|
|
89
|
+
/**
|
|
90
|
+
* The datetime a job entered into the job queue.
|
|
91
|
+
*/
|
|
92
|
+
started_at: string | null;
|
|
93
|
+
|
|
94
|
+
status: 'pending' | 'in_progress' | 'complete' | 'error' | 'reauth_error' | 'permissions_error';
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* Only `data_sync_all` currently supported
|
|
98
|
+
*/
|
|
99
|
+
type: 'data_sync_all';
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
export interface AutomatedCreateResponse {
|
|
103
|
+
/**
|
|
104
|
+
* The number of allowed refreshes per hour (per hour, fixed window)
|
|
105
|
+
*/
|
|
106
|
+
allowed_refreshes: number;
|
|
107
|
+
|
|
108
|
+
/**
|
|
109
|
+
* The id of the job that has been created.
|
|
110
|
+
*/
|
|
111
|
+
job_id: string;
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* The url that can be used to retrieve the job status
|
|
115
|
+
*/
|
|
116
|
+
job_url: string;
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* The number of remaining refreshes available (per hour, fixed window)
|
|
120
|
+
*/
|
|
121
|
+
remaining_refreshes: number;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
export interface AutomatedCreateParams {
|
|
125
|
+
/**
|
|
126
|
+
* The type of job to start. Currently the only supported type is `data_sync_all`
|
|
127
|
+
*/
|
|
128
|
+
type: 'data_sync_all';
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
export interface AutomatedListParams extends PageParams {}
|
|
132
|
+
|
|
133
|
+
export namespace Automated {
|
|
134
|
+
export import AutomatedAsyncJob = AutomatedAPI.AutomatedAsyncJob;
|
|
135
|
+
export import AutomatedCreateResponse = AutomatedAPI.AutomatedCreateResponse;
|
|
136
|
+
export import AutomatedAsyncJobsPage = AutomatedAPI.AutomatedAsyncJobsPage;
|
|
137
|
+
export import AutomatedCreateParams = AutomatedAPI.AutomatedCreateParams;
|
|
138
|
+
export import AutomatedListParams = AutomatedAPI.AutomatedListParams;
|
|
139
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec by Stainless.
|
|
2
|
+
|
|
3
|
+
export {
|
|
4
|
+
AutomatedAsyncJob,
|
|
5
|
+
AutomatedCreateResponse,
|
|
6
|
+
AutomatedCreateParams,
|
|
7
|
+
AutomatedListParams,
|
|
8
|
+
AutomatedAsyncJobsPage,
|
|
9
|
+
Automated,
|
|
10
|
+
} from './automated';
|
|
11
|
+
export { Jobs } from './jobs';
|
|
12
|
+
export { ManualAsyncJob, Manual } from './manual';
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec by Stainless.
|
|
2
|
+
|
|
3
|
+
import { APIResource } from "../../resource";
|
|
4
|
+
import * as AutomatedAPI from "./automated";
|
|
5
|
+
import * as ManualAPI from "./manual";
|
|
6
|
+
|
|
7
|
+
export class Jobs extends APIResource {
|
|
8
|
+
automated: AutomatedAPI.Automated = new AutomatedAPI.Automated(this._client);
|
|
9
|
+
manual: ManualAPI.Manual = new ManualAPI.Manual(this._client);
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export namespace Jobs {
|
|
13
|
+
export import Automated = AutomatedAPI.Automated;
|
|
14
|
+
export import AutomatedAsyncJob = AutomatedAPI.AutomatedAsyncJob;
|
|
15
|
+
export import AutomatedCreateResponse = AutomatedAPI.AutomatedCreateResponse;
|
|
16
|
+
export import AutomatedAsyncJobsPage = AutomatedAPI.AutomatedAsyncJobsPage;
|
|
17
|
+
export import AutomatedCreateParams = AutomatedAPI.AutomatedCreateParams;
|
|
18
|
+
export import AutomatedListParams = AutomatedAPI.AutomatedListParams;
|
|
19
|
+
export import Manual = ManualAPI.Manual;
|
|
20
|
+
export import ManualAsyncJob = ManualAPI.ManualAsyncJob;
|
|
21
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec by Stainless.
|
|
2
|
+
|
|
3
|
+
import * as Core from "../../core";
|
|
4
|
+
import { APIResource } from "../../resource";
|
|
5
|
+
import * as ManualAPI from "./manual";
|
|
6
|
+
|
|
7
|
+
export class Manual extends APIResource {
|
|
8
|
+
/**
|
|
9
|
+
* Get a manual job by `job_id`. Manual jobs are completed by a human and include
|
|
10
|
+
* Assisted Benefits jobs.
|
|
11
|
+
*/
|
|
12
|
+
retrieve(jobId: string, options?: Core.RequestOptions): Core.APIPromise<ManualAsyncJob> {
|
|
13
|
+
return this._client.get(`/jobs/manual/${jobId}`, options);
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface ManualAsyncJob {
|
|
18
|
+
/**
|
|
19
|
+
* Specific information about the job, such as individual statuses for batch jobs.
|
|
20
|
+
*/
|
|
21
|
+
body: Array<unknown> | null;
|
|
22
|
+
|
|
23
|
+
job_id: string;
|
|
24
|
+
|
|
25
|
+
status: 'pending' | 'in_progress' | 'error' | 'complete';
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export namespace Manual {
|
|
29
|
+
export import ManualAsyncJob = ManualAPI.ManualAsyncJob;
|
|
30
|
+
}
|
package/src/resources/shared.ts
CHANGED
|
@@ -60,3 +60,15 @@ export interface OperationSupportMatrix {
|
|
|
60
60
|
*/
|
|
61
61
|
update?: OperationSupport;
|
|
62
62
|
}
|
|
63
|
+
|
|
64
|
+
export interface Paging {
|
|
65
|
+
/**
|
|
66
|
+
* The total number of elements for the entire query (not just the given page)
|
|
67
|
+
*/
|
|
68
|
+
count?: number;
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* The current start index of the returned list of elements
|
|
72
|
+
*/
|
|
73
|
+
offset?: number;
|
|
74
|
+
}
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '5.
|
|
1
|
+
export const VERSION = '5.14.0'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "5.
|
|
1
|
+
export declare const VERSION = "5.14.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '5.
|
|
1
|
+
export const VERSION = '5.14.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|