@verdocs/js-sdk 3.7.1 → 3.7.4
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/Users/Profiles.d.ts +8 -1
- package/package.json +1 -1
package/Users/Profiles.d.ts
CHANGED
|
@@ -115,11 +115,18 @@ export declare const updateProfile: (endpoint: VerdocsEndpoint, profileId: strin
|
|
|
115
115
|
*/
|
|
116
116
|
export declare const deleteProfile: (endpoint: VerdocsEndpoint, profileId: string) => Promise<any>;
|
|
117
117
|
export interface ICreateBusinessAccountRequest {
|
|
118
|
-
orgName: string;
|
|
119
118
|
email: string;
|
|
120
119
|
password: string;
|
|
121
120
|
firstName: string;
|
|
122
121
|
lastName: string;
|
|
122
|
+
orgName: string;
|
|
123
|
+
industry?: string;
|
|
124
|
+
size?: string;
|
|
125
|
+
source?: string;
|
|
126
|
+
referral?: string;
|
|
127
|
+
coupon?: string;
|
|
128
|
+
reason?: string;
|
|
129
|
+
hearabout?: string;
|
|
123
130
|
}
|
|
124
131
|
/**
|
|
125
132
|
* Create a user account and parent organization. This endpoint is for creating a new organization. Users joining an
|