@tryfinch/finch-api 5.14.1 → 5.14.3
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 +26 -0
- package/README.md +6 -3
- package/package.json +1 -1
- package/resources/account.d.ts +5 -2
- package/resources/account.d.ts.map +1 -1
- package/resources/account.js.map +1 -1
- package/resources/account.mjs.map +1 -1
- package/resources/shared.d.ts +30 -15
- package/resources/shared.d.ts.map +1 -1
- package/src/resources/account.ts +5 -2
- package/src/resources/shared.ts +30 -15
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 5.14.3 (2023-12-20)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v5.14.2...v5.14.3](https://github.com/Finch-API/finch-api-node/compare/v5.14.2...v5.14.3)
|
|
6
|
+
|
|
7
|
+
### Documentation
|
|
8
|
+
|
|
9
|
+
* reformat README.md ([#259](https://github.com/Finch-API/finch-api-node/issues/259)) ([aeadd81](https://github.com/Finch-API/finch-api-node/commit/aeadd812236bad61610280946b98db000e27aad3))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Refactors
|
|
13
|
+
|
|
14
|
+
* write jest config in typescript ([#257](https://github.com/Finch-API/finch-api-node/issues/257)) ([b19f8be](https://github.com/Finch-API/finch-api-node/commit/b19f8be4a71e4b0ae70d198fb6fde1656ed562b3))
|
|
15
|
+
|
|
16
|
+
## 5.14.2 (2023-12-19)
|
|
17
|
+
|
|
18
|
+
Full Changelog: [v5.14.1...v5.14.2](https://github.com/Finch-API/finch-api-node/compare/v5.14.1...v5.14.2)
|
|
19
|
+
|
|
20
|
+
### Chores
|
|
21
|
+
|
|
22
|
+
* **deps:** update jest ([#254](https://github.com/Finch-API/finch-api-node/issues/254)) ([2e9e648](https://github.com/Finch-API/finch-api-node/commit/2e9e648d9fd234d18b9d04c0dc20052b70ad43e8))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Documentation
|
|
26
|
+
|
|
27
|
+
* replace <br> tags with newlines ([#256](https://github.com/Finch-API/finch-api-node/issues/256)) ([53245a5](https://github.com/Finch-API/finch-api-node/commit/53245a5eddd523bc8f376a84d4a29b172b4308a2))
|
|
28
|
+
|
|
3
29
|
## 5.14.1 (2023-12-17)
|
|
4
30
|
|
|
5
31
|
Full Changelog: [v5.14.0...v5.14.1](https://github.com/Finch-API/finch-api-node/compare/v5.14.0...v5.14.1)
|
package/README.md
CHANGED
|
@@ -18,6 +18,7 @@ yarn add @tryfinch/finch-api
|
|
|
18
18
|
|
|
19
19
|
The full API of this library can be found in [api.md](https://www.github.com/Finch-API/finch-api-node/blob/main/api.md).
|
|
20
20
|
|
|
21
|
+
<!-- prettier-ignore -->
|
|
21
22
|
```js
|
|
22
23
|
import Finch from '@tryfinch/finch-api';
|
|
23
24
|
|
|
@@ -39,6 +40,7 @@ main();
|
|
|
39
40
|
|
|
40
41
|
This library includes TypeScript definitions for all request params and response fields. You may import and use them like so:
|
|
41
42
|
|
|
43
|
+
<!-- prettier-ignore -->
|
|
42
44
|
```ts
|
|
43
45
|
import Finch from '@tryfinch/finch-api';
|
|
44
46
|
|
|
@@ -61,6 +63,7 @@ When the library is unable to connect to the API,
|
|
|
61
63
|
or if the API returns a non-success status code (i.e., 4xx or 5xx response),
|
|
62
64
|
a subclass of `APIError` will be thrown:
|
|
63
65
|
|
|
66
|
+
<!-- prettier-ignore -->
|
|
64
67
|
```ts
|
|
65
68
|
async function main() {
|
|
66
69
|
const company = await finch.hris.company.retrieve().catch((err) => {
|
|
@@ -217,6 +220,7 @@ The "raw" `Response` returned by `fetch()` can be accessed through the `.asRespo
|
|
|
217
220
|
|
|
218
221
|
You can also use the `.withResponse()` method to get the raw `Response` along with the parsed data.
|
|
219
222
|
|
|
223
|
+
<!-- prettier-ignore -->
|
|
220
224
|
```ts
|
|
221
225
|
const finch = new Finch();
|
|
222
226
|
|
|
@@ -239,12 +243,11 @@ If you would prefer to use a global, web-standards-compliant `fetch` function ev
|
|
|
239
243
|
(for example, if you are running Node with `--experimental-fetch` or using NextJS which polyfills with `undici`),
|
|
240
244
|
add the following import before your first import `from "Finch"`:
|
|
241
245
|
|
|
242
|
-
<!-- prettier-ignore -->
|
|
243
246
|
```ts
|
|
244
247
|
// Tell TypeScript and the package to use the global web fetch instead of node-fetch.
|
|
245
248
|
// Note, despite the name, this does not add any polyfills, but expects them to be provided if needed.
|
|
246
|
-
import
|
|
247
|
-
import Finch from
|
|
249
|
+
import '@tryfinch/finch-api/shims/web';
|
|
250
|
+
import Finch from '@tryfinch/finch-api';
|
|
248
251
|
```
|
|
249
252
|
|
|
250
253
|
To do the inverse, add `import "@tryfinch/finch-api/shims/node"` (which does import polyfills).
|
package/package.json
CHANGED
package/resources/account.d.ts
CHANGED
|
@@ -37,8 +37,11 @@ export interface Introspection {
|
|
|
37
37
|
*/
|
|
38
38
|
company_id: string;
|
|
39
39
|
/**
|
|
40
|
-
* The type of the connection associated with the token
|
|
41
|
-
*
|
|
40
|
+
* The type of the connection associated with the token.
|
|
41
|
+
*
|
|
42
|
+
* `provider` - connection to an external provider
|
|
43
|
+
*
|
|
44
|
+
* `finch` - finch-generated data.
|
|
42
45
|
*/
|
|
43
46
|
connection_type: 'provider' | 'finch';
|
|
44
47
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../src/resources/account.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,IAAI,MAAM,0BAA0B,CAAC;AACjD,OAAO,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAC3D,OAAO,KAAK,UAAU,MAAM,uCAAuC,CAAC;AAEpE,qBAAa,OAAQ,SAAQ,WAAW;IACtC;;;;OAIG;IACH,UAAU,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,UAAU,CAAC,kBAAkB,CAAC;IAI9E;;OAEG;IACH,UAAU,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC;CAG1E;AAED,MAAM,WAAW,kBAAkB;IACjC;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,aAAa;IAC5B;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,WAAW,EAAE,YAAY,GAAG,aAAa,GAAG,SAAS,CAAC;IAEtD;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB
|
|
1
|
+
{"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../src/resources/account.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,IAAI,MAAM,0BAA0B,CAAC;AACjD,OAAO,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAC3D,OAAO,KAAK,UAAU,MAAM,uCAAuC,CAAC;AAEpE,qBAAa,OAAQ,SAAQ,WAAW;IACtC;;;;OAIG;IACH,UAAU,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,UAAU,CAAC,kBAAkB,CAAC;IAI9E;;OAEG;IACH,UAAU,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC;CAG1E;AAED,MAAM,WAAW,kBAAkB;IACjC;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,aAAa;IAC5B;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,WAAW,EAAE,YAAY,GAAG,aAAa,GAAG,SAAS,CAAC;IAEtD;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;;;;;OAMG;IACH,eAAe,EAAE,UAAU,GAAG,OAAO,CAAC;IAEtC;;;;OAIG;IACH,MAAM,EAAE,OAAO,CAAC;IAEhB;;OAEG;IACH,mBAAmB,EAAE,MAAM,CAAC;IAE5B;;OAEG;IACH,QAAQ,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAExB;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,yBAAiB,OAAO,CAAC;IACvB,MAAM,QAAQ,kBAAkB,GAAG,UAAU,CAAC,kBAAkB,CAAC;IACjE,MAAM,QAAQ,aAAa,GAAG,UAAU,CAAC,aAAa,CAAC;CACxD"}
|
package/resources/account.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"account.js","sourceRoot":"","sources":["../src/resources/account.ts"],"names":[],"mappings":";AAAA,qDAAqD;;;AAGrD,2DAA2D;AAG3D,MAAa,OAAQ,SAAQ,sBAAW;IACtC;;;;OAIG;IACH,UAAU,CAAC,OAA6B;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,aAAa,EAAE,OAAO,CAAC,CAAC;IACnD,CAAC;IAED;;OAEG;IACH,UAAU,CAAC,OAA6B;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,aAAa,EAAE,OAAO,CAAC,CAAC;IAClD,CAAC;CACF;AAhBD,0BAgBC;
|
|
1
|
+
{"version":3,"file":"account.js","sourceRoot":"","sources":["../src/resources/account.ts"],"names":[],"mappings":";AAAA,qDAAqD;;;AAGrD,2DAA2D;AAG3D,MAAa,OAAQ,SAAQ,sBAAW;IACtC;;;;OAIG;IACH,UAAU,CAAC,OAA6B;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,aAAa,EAAE,OAAO,CAAC,CAAC;IACnD,CAAC;IAED;;OAEG;IACH,UAAU,CAAC,OAA6B;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,aAAa,EAAE,OAAO,CAAC,CAAC;IAClD,CAAC;CACF;AAhBD,0BAgBC;AA8DD,WAAiB,OAAO;AAGxB,CAAC,EAHgB,OAAO,GAAP,eAAO,KAAP,eAAO,QAGvB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"account.mjs","sourceRoot":"","sources":["../src/resources/account.ts"],"names":[],"mappings":"AAAA,qDAAqD;OAG9C,EAAE,WAAW,EAAE,MAAM,8BAA8B;AAG1D,MAAM,OAAO,OAAQ,SAAQ,WAAW;IACtC;;;;OAIG;IACH,UAAU,CAAC,OAA6B;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,aAAa,EAAE,OAAO,CAAC,CAAC;IACnD,CAAC;IAED;;OAEG;IACH,UAAU,CAAC,OAA6B;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,aAAa,EAAE,OAAO,CAAC,CAAC;IAClD,CAAC;CACF;
|
|
1
|
+
{"version":3,"file":"account.mjs","sourceRoot":"","sources":["../src/resources/account.ts"],"names":[],"mappings":"AAAA,qDAAqD;OAG9C,EAAE,WAAW,EAAE,MAAM,8BAA8B;AAG1D,MAAM,OAAO,OAAQ,SAAQ,WAAW;IACtC;;;;OAIG;IACH,UAAU,CAAC,OAA6B;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,aAAa,EAAE,OAAO,CAAC,CAAC;IACnD,CAAC;IAED;;OAEG;IACH,UAAU,CAAC,OAA6B;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,aAAa,EAAE,OAAO,CAAC,CAAC;IAClD,CAAC;CACF;AA8DD,WAAiB,OAAO;AAGxB,CAAC,EAHgB,OAAO,KAAP,OAAO,QAGvB"}
|
package/resources/shared.d.ts
CHANGED
|
@@ -1,50 +1,65 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* - `supported`: This operation is supported by both the provider and Finch
|
|
2
|
+
* - `supported`: This operation is supported by both the provider and Finch
|
|
3
|
+
*
|
|
3
4
|
* - `not_supported_by_finch`: This operation is not supported by Finch but
|
|
4
|
-
* supported by the provider
|
|
5
|
+
* supported by the provider
|
|
6
|
+
*
|
|
5
7
|
* - `not_supported_by_provider`: This operation is not supported by the provider,
|
|
6
|
-
* so Finch cannot support
|
|
8
|
+
* so Finch cannot support
|
|
9
|
+
*
|
|
7
10
|
* - `client_access_only`: This behavior is supported by the provider, but only
|
|
8
11
|
* available to the client and not to Finch
|
|
9
12
|
*/
|
|
10
13
|
export type OperationSupport = 'supported' | 'not_supported_by_finch' | 'not_supported_by_provider' | 'client_access_only';
|
|
11
14
|
export interface OperationSupportMatrix {
|
|
12
15
|
/**
|
|
13
|
-
* - `supported`: This operation is supported by both the provider and Finch
|
|
16
|
+
* - `supported`: This operation is supported by both the provider and Finch
|
|
17
|
+
*
|
|
14
18
|
* - `not_supported_by_finch`: This operation is not supported by Finch but
|
|
15
|
-
* supported by the provider
|
|
19
|
+
* supported by the provider
|
|
20
|
+
*
|
|
16
21
|
* - `not_supported_by_provider`: This operation is not supported by the provider,
|
|
17
|
-
* so Finch cannot support
|
|
22
|
+
* so Finch cannot support
|
|
23
|
+
*
|
|
18
24
|
* - `client_access_only`: This behavior is supported by the provider, but only
|
|
19
25
|
* available to the client and not to Finch
|
|
20
26
|
*/
|
|
21
27
|
create?: OperationSupport;
|
|
22
28
|
/**
|
|
23
|
-
* - `supported`: This operation is supported by both the provider and Finch
|
|
29
|
+
* - `supported`: This operation is supported by both the provider and Finch
|
|
30
|
+
*
|
|
24
31
|
* - `not_supported_by_finch`: This operation is not supported by Finch but
|
|
25
|
-
* supported by the provider
|
|
32
|
+
* supported by the provider
|
|
33
|
+
*
|
|
26
34
|
* - `not_supported_by_provider`: This operation is not supported by the provider,
|
|
27
|
-
* so Finch cannot support
|
|
35
|
+
* so Finch cannot support
|
|
36
|
+
*
|
|
28
37
|
* - `client_access_only`: This behavior is supported by the provider, but only
|
|
29
38
|
* available to the client and not to Finch
|
|
30
39
|
*/
|
|
31
40
|
delete?: OperationSupport;
|
|
32
41
|
/**
|
|
33
|
-
* - `supported`: This operation is supported by both the provider and Finch
|
|
42
|
+
* - `supported`: This operation is supported by both the provider and Finch
|
|
43
|
+
*
|
|
34
44
|
* - `not_supported_by_finch`: This operation is not supported by Finch but
|
|
35
|
-
* supported by the provider
|
|
45
|
+
* supported by the provider
|
|
46
|
+
*
|
|
36
47
|
* - `not_supported_by_provider`: This operation is not supported by the provider,
|
|
37
|
-
* so Finch cannot support
|
|
48
|
+
* so Finch cannot support
|
|
49
|
+
*
|
|
38
50
|
* - `client_access_only`: This behavior is supported by the provider, but only
|
|
39
51
|
* available to the client and not to Finch
|
|
40
52
|
*/
|
|
41
53
|
read?: OperationSupport;
|
|
42
54
|
/**
|
|
43
|
-
* - `supported`: This operation is supported by both the provider and Finch
|
|
55
|
+
* - `supported`: This operation is supported by both the provider and Finch
|
|
56
|
+
*
|
|
44
57
|
* - `not_supported_by_finch`: This operation is not supported by Finch but
|
|
45
|
-
* supported by the provider
|
|
58
|
+
* supported by the provider
|
|
59
|
+
*
|
|
46
60
|
* - `not_supported_by_provider`: This operation is not supported by the provider,
|
|
47
|
-
* so Finch cannot support
|
|
61
|
+
* so Finch cannot support
|
|
62
|
+
*
|
|
48
63
|
* - `client_access_only`: This behavior is supported by the provider, but only
|
|
49
64
|
* available to the client and not to Finch
|
|
50
65
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shared.d.ts","sourceRoot":"","sources":["../src/resources/shared.ts"],"names":[],"mappings":"AAEA
|
|
1
|
+
{"version":3,"file":"shared.d.ts","sourceRoot":"","sources":["../src/resources/shared.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;;GAWG;AACH,MAAM,MAAM,gBAAgB,GACxB,WAAW,GACX,wBAAwB,GACxB,2BAA2B,GAC3B,oBAAoB,CAAC;AAEzB,MAAM,WAAW,sBAAsB;IACrC;;;;;;;;;;;OAWG;IACH,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAE1B;;;;;;;;;;;OAWG;IACH,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAE1B;;;;;;;;;;;OAWG;IACH,IAAI,CAAC,EAAE,gBAAgB,CAAC;IAExB;;;;;;;;;;;OAWG;IACH,MAAM,CAAC,EAAE,gBAAgB,CAAC;CAC3B;AAED,MAAM,WAAW,MAAM;IACrB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB"}
|
package/src/resources/account.ts
CHANGED
|
@@ -51,8 +51,11 @@ export interface Introspection {
|
|
|
51
51
|
company_id: string;
|
|
52
52
|
|
|
53
53
|
/**
|
|
54
|
-
* The type of the connection associated with the token
|
|
55
|
-
*
|
|
54
|
+
* The type of the connection associated with the token.
|
|
55
|
+
*
|
|
56
|
+
* `provider` - connection to an external provider
|
|
57
|
+
*
|
|
58
|
+
* `finch` - finch-generated data.
|
|
56
59
|
*/
|
|
57
60
|
connection_type: 'provider' | 'finch';
|
|
58
61
|
|
package/src/resources/shared.ts
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless.
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
|
-
* - `supported`: This operation is supported by both the provider and Finch
|
|
4
|
+
* - `supported`: This operation is supported by both the provider and Finch
|
|
5
|
+
*
|
|
5
6
|
* - `not_supported_by_finch`: This operation is not supported by Finch but
|
|
6
|
-
* supported by the provider
|
|
7
|
+
* supported by the provider
|
|
8
|
+
*
|
|
7
9
|
* - `not_supported_by_provider`: This operation is not supported by the provider,
|
|
8
|
-
* so Finch cannot support
|
|
10
|
+
* so Finch cannot support
|
|
11
|
+
*
|
|
9
12
|
* - `client_access_only`: This behavior is supported by the provider, but only
|
|
10
13
|
* available to the client and not to Finch
|
|
11
14
|
*/
|
|
@@ -17,44 +20,56 @@ export type OperationSupport =
|
|
|
17
20
|
|
|
18
21
|
export interface OperationSupportMatrix {
|
|
19
22
|
/**
|
|
20
|
-
* - `supported`: This operation is supported by both the provider and Finch
|
|
23
|
+
* - `supported`: This operation is supported by both the provider and Finch
|
|
24
|
+
*
|
|
21
25
|
* - `not_supported_by_finch`: This operation is not supported by Finch but
|
|
22
|
-
* supported by the provider
|
|
26
|
+
* supported by the provider
|
|
27
|
+
*
|
|
23
28
|
* - `not_supported_by_provider`: This operation is not supported by the provider,
|
|
24
|
-
* so Finch cannot support
|
|
29
|
+
* so Finch cannot support
|
|
30
|
+
*
|
|
25
31
|
* - `client_access_only`: This behavior is supported by the provider, but only
|
|
26
32
|
* available to the client and not to Finch
|
|
27
33
|
*/
|
|
28
34
|
create?: OperationSupport;
|
|
29
35
|
|
|
30
36
|
/**
|
|
31
|
-
* - `supported`: This operation is supported by both the provider and Finch
|
|
37
|
+
* - `supported`: This operation is supported by both the provider and Finch
|
|
38
|
+
*
|
|
32
39
|
* - `not_supported_by_finch`: This operation is not supported by Finch but
|
|
33
|
-
* supported by the provider
|
|
40
|
+
* supported by the provider
|
|
41
|
+
*
|
|
34
42
|
* - `not_supported_by_provider`: This operation is not supported by the provider,
|
|
35
|
-
* so Finch cannot support
|
|
43
|
+
* so Finch cannot support
|
|
44
|
+
*
|
|
36
45
|
* - `client_access_only`: This behavior is supported by the provider, but only
|
|
37
46
|
* available to the client and not to Finch
|
|
38
47
|
*/
|
|
39
48
|
delete?: OperationSupport;
|
|
40
49
|
|
|
41
50
|
/**
|
|
42
|
-
* - `supported`: This operation is supported by both the provider and Finch
|
|
51
|
+
* - `supported`: This operation is supported by both the provider and Finch
|
|
52
|
+
*
|
|
43
53
|
* - `not_supported_by_finch`: This operation is not supported by Finch but
|
|
44
|
-
* supported by the provider
|
|
54
|
+
* supported by the provider
|
|
55
|
+
*
|
|
45
56
|
* - `not_supported_by_provider`: This operation is not supported by the provider,
|
|
46
|
-
* so Finch cannot support
|
|
57
|
+
* so Finch cannot support
|
|
58
|
+
*
|
|
47
59
|
* - `client_access_only`: This behavior is supported by the provider, but only
|
|
48
60
|
* available to the client and not to Finch
|
|
49
61
|
*/
|
|
50
62
|
read?: OperationSupport;
|
|
51
63
|
|
|
52
64
|
/**
|
|
53
|
-
* - `supported`: This operation is supported by both the provider and Finch
|
|
65
|
+
* - `supported`: This operation is supported by both the provider and Finch
|
|
66
|
+
*
|
|
54
67
|
* - `not_supported_by_finch`: This operation is not supported by Finch but
|
|
55
|
-
* supported by the provider
|
|
68
|
+
* supported by the provider
|
|
69
|
+
*
|
|
56
70
|
* - `not_supported_by_provider`: This operation is not supported by the provider,
|
|
57
|
-
* so Finch cannot support
|
|
71
|
+
* so Finch cannot support
|
|
72
|
+
*
|
|
58
73
|
* - `client_access_only`: This behavior is supported by the provider, but only
|
|
59
74
|
* available to the client and not to Finch
|
|
60
75
|
*/
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '5.14.
|
|
1
|
+
export const VERSION = '5.14.3'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "5.14.
|
|
1
|
+
export declare const VERSION = "5.14.3";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '5.14.
|
|
1
|
+
export const VERSION = '5.14.3'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|