mftsccs-browser 1.1.21 → 1.1.22

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.
@@ -1,3 +1,19 @@
1
1
  import { FreeschemaResponse } from "../DataStructures/Responses/StandardResponses";
2
2
  import { SignupModel } from "../DataStructures/SignupModel";
3
3
  export default function Signup(signupModel: SignupModel): Promise<FreeschemaResponse | undefined>;
4
+ /**
5
+ *
6
+ * @param signupData
7
+ * const signupData: any = {
8
+ * type: typeValue,
9
+ * username: usernameValue,
10
+ * title: genderValue,
11
+ * email: emailValue,
12
+ * password: passwordValue,
13
+ * timestamp: new Date().toISOString(),
14
+ * fname: firstNameValue,
15
+ * lname: lastNameValue,
16
+ * };
17
+ * @returns
18
+ */
19
+ export declare function SignupEntity(signupData: any): Promise<any>;
@@ -35,6 +35,7 @@ export { LoginToBackend } from './Api/Login';
35
35
  export { GetConnectionOfTheConcept } from './Api/GetConnectionOfTheConcept';
36
36
  export { default as Signup } from './Api/Signup';
37
37
  export { default as Signin } from './Api/Signin';
38
+ export { SignupEntity } from './Api/Signup';
38
39
  export { default as UpdateComposition } from './Services/UpdateComposition';
39
40
  export { SearchAllConcepts } from './Api/Search/Search';
40
41
  export { SearchWithLinker } from './Api/Search/SearchWithLinker';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mftsccs-browser",
3
- "version": "1.1.21",
3
+ "version": "1.1.22",
4
4
  "environment": "production",
5
5
  "description": "Full Pack of concept and connection system",
6
6
  "main": "dist/bundle.js",