@outseta/api-client 0.3.28 → 0.3.29
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/package.json +1 -1
- package/src/generated/crm/crm.ts +9 -2
- package/src/generated/models/accountWebhookEntityPersonAccountItemPerson.ts +2 -0
- package/src/generated/models/accountWebhookEntityPrimaryContact.ts +2 -0
- package/src/generated/models/dealWebhookEntityOwner.ts +2 -0
- package/src/generated/models/personAllOf.ts +2 -0
- package/src/generated/models/personWebhookEntity.ts +2 -0
package/package.json
CHANGED
package/src/generated/crm/crm.ts
CHANGED
|
@@ -1381,13 +1381,20 @@ export type personForgotPasswordResponse200 = {
|
|
|
1381
1381
|
data: Blob
|
|
1382
1382
|
status: 200
|
|
1383
1383
|
}
|
|
1384
|
+
|
|
1385
|
+
export type personForgotPasswordResponse401 = {
|
|
1386
|
+
data: void
|
|
1387
|
+
status: 401
|
|
1388
|
+
}
|
|
1384
1389
|
|
|
1385
1390
|
export type personForgotPasswordResponseSuccess = (personForgotPasswordResponse200) & {
|
|
1386
1391
|
headers: Headers;
|
|
1387
1392
|
};
|
|
1388
|
-
|
|
1393
|
+
export type personForgotPasswordResponseError = (personForgotPasswordResponse401) & {
|
|
1394
|
+
headers: Headers;
|
|
1395
|
+
};
|
|
1389
1396
|
|
|
1390
|
-
export type personForgotPasswordResponse = (personForgotPasswordResponseSuccess)
|
|
1397
|
+
export type personForgotPasswordResponse = (personForgotPasswordResponseSuccess | personForgotPasswordResponseError)
|
|
1391
1398
|
|
|
1392
1399
|
export const getPersonForgotPasswordUrl = () => {
|
|
1393
1400
|
|
|
@@ -97,6 +97,8 @@ export type AccountWebhookEntityPersonAccountItemPerson = {
|
|
|
97
97
|
/** @nullable */
|
|
98
98
|
Password?: string | null;
|
|
99
99
|
/** @nullable */
|
|
100
|
+
RecaptchaToken?: string | null;
|
|
101
|
+
/** @nullable */
|
|
100
102
|
UserAgentPlatformBrowser?: string | null;
|
|
101
103
|
HasUnsubscribed?: boolean;
|
|
102
104
|
IsConnectedToDiscord?: boolean;
|
|
@@ -97,6 +97,8 @@ export type AccountWebhookEntityPrimaryContact = {
|
|
|
97
97
|
/** @nullable */
|
|
98
98
|
Password?: string | null;
|
|
99
99
|
/** @nullable */
|
|
100
|
+
RecaptchaToken?: string | null;
|
|
101
|
+
/** @nullable */
|
|
100
102
|
UserAgentPlatformBrowser?: string | null;
|
|
101
103
|
HasUnsubscribed?: boolean;
|
|
102
104
|
IsConnectedToDiscord?: boolean;
|
|
@@ -97,6 +97,8 @@ export type DealWebhookEntityOwner = {
|
|
|
97
97
|
/** @nullable */
|
|
98
98
|
Password?: string | null;
|
|
99
99
|
/** @nullable */
|
|
100
|
+
RecaptchaToken?: string | null;
|
|
101
|
+
/** @nullable */
|
|
100
102
|
UserAgentPlatformBrowser?: string | null;
|
|
101
103
|
HasUnsubscribed?: boolean;
|
|
102
104
|
IsConnectedToDiscord?: boolean;
|
|
@@ -101,6 +101,8 @@ export type PersonAllOf = {
|
|
|
101
101
|
/** @nullable */
|
|
102
102
|
Password?: string | null;
|
|
103
103
|
/** @nullable */
|
|
104
|
+
RecaptchaToken?: string | null;
|
|
105
|
+
/** @nullable */
|
|
104
106
|
UserAgentPlatformBrowser?: string | null;
|
|
105
107
|
HasUnsubscribed?: boolean;
|
|
106
108
|
/** @nullable */
|
|
@@ -113,6 +113,8 @@ export interface PersonWebhookEntity {
|
|
|
113
113
|
/** @nullable */
|
|
114
114
|
Password?: string | null;
|
|
115
115
|
/** @nullable */
|
|
116
|
+
RecaptchaToken?: string | null;
|
|
117
|
+
/** @nullable */
|
|
116
118
|
UserAgentPlatformBrowser?: string | null;
|
|
117
119
|
HasUnsubscribed?: boolean;
|
|
118
120
|
/** @nullable */
|