@koine/api 1.0.70 → 1.0.73
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/package.json +2 -2
- package/typings.d.ts +2 -2
package/package.json
CHANGED
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
"typings": "./index.d.ts",
|
|
6
6
|
"dependencies": {},
|
|
7
7
|
"peerDependencies": {
|
|
8
|
-
"@koine/utils": "1.0.
|
|
8
|
+
"@koine/utils": "1.0.73",
|
|
9
9
|
"swr": "^2.0.0-beta.6",
|
|
10
10
|
"next": "^12.2.3",
|
|
11
11
|
"tslib": "^2.4.0"
|
|
12
12
|
},
|
|
13
|
-
"version": "1.0.
|
|
13
|
+
"version": "1.0.73",
|
|
14
14
|
"module": "./index.js",
|
|
15
15
|
"types": "./index.d.ts"
|
|
16
16
|
}
|
package/typings.d.ts
CHANGED
|
@@ -242,8 +242,8 @@ declare namespace Koine.Api {
|
|
|
242
242
|
TEndpoints extends Endpoints,
|
|
243
243
|
TEndpoint extends EndpointUrl<TEndpoints>,
|
|
244
244
|
TMethod extends RequestMethod,
|
|
245
|
-
TJson extends RequestJson
|
|
246
|
-
TQuery extends RequestQuery
|
|
245
|
+
TJson extends RequestJson,
|
|
246
|
+
TQuery extends RequestQuery
|
|
247
247
|
> = Omit<ClientOptions, "processReq"> & {
|
|
248
248
|
processReq?: EndpointRequestProcessor<TEndpoints, TEndpoint, TMethod>;
|
|
249
249
|
/**
|