@ossy/sdk 0.11.0 → 0.11.2

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.
@@ -139,6 +139,8 @@ declare class SDK {
139
139
  get auth(): {
140
140
  signUp: (_payload?: Required<{
141
141
  email: string;
142
+ firstName: string;
143
+ lastName: string;
142
144
  } | undefined>) => Promise<any>;
143
145
  signIn: (_payload?: Required<{
144
146
  email: string;
@@ -90,6 +90,8 @@ export declare const ResourcesRename: Action<{
90
90
  }>;
91
91
  export declare const AuthSignUp: Action<{
92
92
  email: string;
93
+ firstName: string;
94
+ lastName: string;
93
95
  }>;
94
96
  export declare const AuthSignIn: Action<{
95
97
  email: string;
@@ -107,6 +107,8 @@ export declare class SDK {
107
107
  get auth(): {
108
108
  signUp: (_payload?: Required<{
109
109
  email: string;
110
+ firstName: string;
111
+ lastName: string;
110
112
  } | undefined>) => Promise<any>;
111
113
  signIn: (_payload?: Required<{
112
114
  email: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ossy/sdk",
3
3
  "description": "Sofware Development Kit for interacting with our services",
4
- "version": "0.11.0",
4
+ "version": "0.11.2",
5
5
  "url": "git://github.com/ossy-se/packages/sdk",
6
6
  "source": "src/public.index.ts",
7
7
  "main": "build/public.index.js",
@@ -21,7 +21,7 @@
21
21
  },
22
22
  "license": "MIT",
23
23
  "dependencies": {
24
- "@ossy/types": "^0.4.0"
24
+ "@ossy/types": "^0.4.2"
25
25
  },
26
26
  "scripts": {
27
27
  "start": "",
@@ -36,5 +36,5 @@
36
36
  "/build",
37
37
  "README.md"
38
38
  ],
39
- "gitHead": "ed1343d2ac7fa32121aa4b2074a01ac3562a2d75"
39
+ "gitHead": "77d8a2c75c8bbeff5ef0093f062e06f42badd9ef"
40
40
  }