fusio-sdk 5.0.7 → 5.0.8
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/dist/BackendConnection.d.ts +1 -0
- package/dist/Client.d.ts +2 -2
- package/dist/Client.js +3 -3
- package/package.json +1 -1
package/dist/Client.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Client automatically generated by SDKgen please do not edit this file manually
|
|
3
3
|
* {@link https://sdkgen.app}
|
|
4
4
|
*/
|
|
5
|
-
import { ClientAbstract
|
|
5
|
+
import { ClientAbstract } from "sdkgen-client";
|
|
6
6
|
import { AuthorizationTag } from "./AuthorizationTag";
|
|
7
7
|
import { SystemTag } from "./SystemTag";
|
|
8
8
|
import { ConsumerTag } from "./ConsumerTag";
|
|
@@ -12,5 +12,5 @@ export declare class Client extends ClientAbstract {
|
|
|
12
12
|
system(): SystemTag;
|
|
13
13
|
consumer(): ConsumerTag;
|
|
14
14
|
backend(): BackendTag;
|
|
15
|
-
static build(
|
|
15
|
+
static build(): Client;
|
|
16
16
|
}
|
package/dist/Client.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* {@link https://sdkgen.app}
|
|
4
4
|
*/
|
|
5
5
|
import { ClientAbstract } from "sdkgen-client";
|
|
6
|
-
import {
|
|
6
|
+
import { Anonymous } from "sdkgen-client";
|
|
7
7
|
import { AuthorizationTag } from "./AuthorizationTag";
|
|
8
8
|
import { SystemTag } from "./SystemTag";
|
|
9
9
|
import { ConsumerTag } from "./ConsumerTag";
|
|
@@ -21,7 +21,7 @@ export class Client extends ClientAbstract {
|
|
|
21
21
|
backend() {
|
|
22
22
|
return new BackendTag(this.httpClient, this.parser);
|
|
23
23
|
}
|
|
24
|
-
static build(
|
|
25
|
-
return new Client('https://api.
|
|
24
|
+
static build() {
|
|
25
|
+
return new Client('https://api.sdkgen.app/', new Anonymous());
|
|
26
26
|
}
|
|
27
27
|
}
|