fusio-sdk 3.0.2 → 3.0.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.
@@ -9,4 +9,5 @@ export interface MarketplaceApp {
9
9
  website?: string;
10
10
  downloadUrl?: string;
11
11
  sha1Hash?: string;
12
+ startUrl?: string;
12
13
  }
@@ -2,6 +2,7 @@
2
2
  * UserAccount automatically generated by SDKgen please do not edit this file manually
3
3
  * {@link https://sdkgen.app}
4
4
  */
5
+ import { UserPlan } from "./UserPlan";
5
6
  import { Metadata } from "./Metadata";
6
7
  export interface UserAccount {
7
8
  id?: number;
@@ -11,6 +12,7 @@ export interface UserAccount {
11
12
  email?: string;
12
13
  points?: number;
13
14
  scopes?: Array<string>;
15
+ plans?: Array<UserPlan>;
14
16
  metadata?: Metadata;
15
17
  date?: string;
16
18
  }
@@ -0,0 +1,11 @@
1
+ /**
2
+ * UserPlan automatically generated by SDKgen please do not edit this file manually
3
+ * {@link https://sdkgen.app}
4
+ */
5
+ export interface UserPlan {
6
+ id?: number;
7
+ name?: string;
8
+ price?: number;
9
+ points?: number;
10
+ period?: number;
11
+ }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * UserPlan automatically generated by SDKgen please do not edit this file manually
3
+ * {@link https://sdkgen.app}
4
+ */
5
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fusio-sdk",
3
- "version": "3.0.2",
3
+ "version": "3.0.3",
4
4
  "description": "SDK to talk to the Fusio API",
5
5
  "keywords": [
6
6
  "API",