fusio-sdk 4.0.0 → 4.0.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.
@@ -4,7 +4,7 @@
4
4
  */
5
5
  import { BackendActionExecuteRequestBody } from "./BackendActionExecuteRequestBody";
6
6
  export interface BackendActionExecuteRequest {
7
- method: string;
7
+ method?: string;
8
8
  uriFragments?: string;
9
9
  parameters?: string;
10
10
  headers?: string;
@@ -4,5 +4,5 @@
4
4
  */
5
5
  import { BackendUser } from "./BackendUser";
6
6
  export interface BackendUserCreate extends BackendUser {
7
- password: string;
7
+ password?: string;
8
8
  }
@@ -3,7 +3,7 @@
3
3
  * {@link https://sdkgen.app}
4
4
  */
5
5
  export interface CommonFormElement {
6
- element: string;
6
+ element?: string;
7
7
  name?: string;
8
8
  title?: string;
9
9
  help?: string;
@@ -3,7 +3,7 @@
3
3
  * {@link https://sdkgen.app}
4
4
  */
5
5
  export interface ConsumerAppCreate {
6
- name: string;
7
- url: string;
8
- scopes: Array<string>;
6
+ name?: string;
7
+ url?: string;
8
+ scopes?: Array<string>;
9
9
  }
@@ -3,7 +3,7 @@
3
3
  * {@link https://sdkgen.app}
4
4
  */
5
5
  export interface ConsumerAppUpdate {
6
- name: string;
7
- url: string;
8
- scopes: Array<string>;
6
+ name?: string;
7
+ url?: string;
8
+ scopes?: Array<string>;
9
9
  }
@@ -3,10 +3,10 @@
3
3
  * {@link https://sdkgen.app}
4
4
  */
5
5
  export interface ConsumerAuthorizeRequest {
6
- responseType: string;
7
- clientId: string;
6
+ responseType?: string;
7
+ clientId?: string;
8
8
  redirectUri?: string;
9
- scope: string;
9
+ scope?: string;
10
10
  state?: string;
11
- allow: boolean;
11
+ allow?: boolean;
12
12
  }
@@ -3,6 +3,6 @@
3
3
  * {@link https://sdkgen.app}
4
4
  */
5
5
  export interface ConsumerEventSubscriptionCreate {
6
- event: string;
7
- endpoint: string;
6
+ event?: string;
7
+ endpoint?: string;
8
8
  }
@@ -3,6 +3,6 @@
3
3
  * {@link https://sdkgen.app}
4
4
  */
5
5
  export interface ConsumerEventSubscriptionUpdate {
6
- event: string;
7
- endpoint: string;
6
+ event?: string;
7
+ endpoint?: string;
8
8
  }
@@ -3,5 +3,5 @@
3
3
  * {@link https://sdkgen.app}
4
4
  */
5
5
  export interface ConsumerUserActivate {
6
- token: string;
6
+ token?: string;
7
7
  }
@@ -3,6 +3,6 @@
3
3
  * {@link https://sdkgen.app}
4
4
  */
5
5
  export interface ConsumerUserEmail {
6
- email: string;
6
+ email?: string;
7
7
  captcha?: string;
8
8
  }
@@ -3,6 +3,6 @@
3
3
  * {@link https://sdkgen.app}
4
4
  */
5
5
  export interface ConsumerUserPasswordReset {
6
- token: string;
7
- newPassword: string;
6
+ token?: string;
7
+ newPassword?: string;
8
8
  }
@@ -3,8 +3,8 @@
3
3
  * {@link https://sdkgen.app}
4
4
  */
5
5
  export interface ConsumerUserRegister {
6
- name: string;
7
- email: string;
8
- password: string;
6
+ name?: string;
7
+ email?: string;
8
+ password?: string;
9
9
  captcha?: string;
10
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fusio-sdk",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
4
4
  "description": "SDK to talk to the Fusio API",
5
5
  "keywords": [
6
6
  "API",