@equisoft/equisoft-connect-sdk-typescript 13.50.0 → 13.50.1-snapshot.20260508183012
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/README.md +2 -2
- package/dist/apis/ContactsApi.js +2 -2
- package/dist/esm/apis/ContactsApi.js +2 -2
- package/docs/ContactsApi.md +2 -2
- package/package.json +1 -1
- package/src/apis/ContactsApi.ts +2 -2
package/README.md
CHANGED
|
@@ -55,9 +55,9 @@ All URIs are relative to *http://localhost*
|
|
|
55
55
|
| Class | Method | HTTP request | Description
|
|
56
56
|
| ----- | ------ | ------------ | -------------
|
|
57
57
|
*ContactsApi* | [**createContact**](docs/ContactsApi.md#createcontact) | **POST** /crm/api/v1/contacts | Create a contact
|
|
58
|
-
*ContactsApi* | [**createHousehold**](docs/ContactsApi.md#createhousehold) | **POST** /crm/api/v1/contacts/
|
|
58
|
+
*ContactsApi* | [**createHousehold**](docs/ContactsApi.md#createhousehold) | **POST** /crm/api/v1/contacts/households | Create a household (EXPERIMENTAL)
|
|
59
59
|
*ContactsApi* | [**getByUuid**](docs/ContactsApi.md#getbyuuid) | **GET** /crm/api/v1/contacts/{contactUuid} | Get contact by Uuid
|
|
60
|
-
*ContactsApi* | [**getHouseholdByUuid**](docs/ContactsApi.md#gethouseholdbyuuid) | **GET** /crm/api/v1/contacts/
|
|
60
|
+
*ContactsApi* | [**getHouseholdByUuid**](docs/ContactsApi.md#gethouseholdbyuuid) | **GET** /crm/api/v1/contacts/households/{householdUuid} | Gets a household by uuid (EXPERIMENTAL)
|
|
61
61
|
*ContactsApi* | [**listContact**](docs/ContactsApi.md#listcontact) | **GET** /crm/api/v1/contacts | List contact
|
|
62
62
|
*ContactsApi* | [**listContactDocument**](docs/ContactsApi.md#listcontactdocument) | **GET** /crm/api/v1/contacts/{contactUuid}/documents | List contact documents
|
|
63
63
|
*ContactsApi* | [**listContactInvestment**](docs/ContactsApi.md#listcontactinvestment) | **GET** /crm/api/v1/contacts/{contactUuid}/investmentAccounts | List contact investments
|
package/dist/apis/ContactsApi.js
CHANGED
|
@@ -99,7 +99,7 @@ class ContactsApi extends runtime.BaseAPI {
|
|
|
99
99
|
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
100
100
|
}
|
|
101
101
|
}
|
|
102
|
-
let urlPath = `/crm/api/v1/contacts/
|
|
102
|
+
let urlPath = `/crm/api/v1/contacts/households`;
|
|
103
103
|
return {
|
|
104
104
|
path: urlPath,
|
|
105
105
|
method: 'POST',
|
|
@@ -196,7 +196,7 @@ class ContactsApi extends runtime.BaseAPI {
|
|
|
196
196
|
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
197
197
|
}
|
|
198
198
|
}
|
|
199
|
-
let urlPath = `/crm/api/v1/contacts/
|
|
199
|
+
let urlPath = `/crm/api/v1/contacts/households/{householdUuid}`;
|
|
200
200
|
urlPath = urlPath.replace(`{${"householdUuid"}}`, encodeURIComponent(String(requestParameters['householdUuid'])));
|
|
201
201
|
return {
|
|
202
202
|
path: urlPath,
|
|
@@ -96,7 +96,7 @@ export class ContactsApi extends runtime.BaseAPI {
|
|
|
96
96
|
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
97
97
|
}
|
|
98
98
|
}
|
|
99
|
-
let urlPath = `/crm/api/v1/contacts/
|
|
99
|
+
let urlPath = `/crm/api/v1/contacts/households`;
|
|
100
100
|
return {
|
|
101
101
|
path: urlPath,
|
|
102
102
|
method: 'POST',
|
|
@@ -193,7 +193,7 @@ export class ContactsApi extends runtime.BaseAPI {
|
|
|
193
193
|
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
194
194
|
}
|
|
195
195
|
}
|
|
196
|
-
let urlPath = `/crm/api/v1/contacts/
|
|
196
|
+
let urlPath = `/crm/api/v1/contacts/households/{householdUuid}`;
|
|
197
197
|
urlPath = urlPath.replace(`{${"householdUuid"}}`, encodeURIComponent(String(requestParameters['householdUuid'])));
|
|
198
198
|
return {
|
|
199
199
|
path: urlPath,
|
package/docs/ContactsApi.md
CHANGED
|
@@ -5,9 +5,9 @@ All URIs are relative to *http://localhost*
|
|
|
5
5
|
| Method | HTTP request | Description |
|
|
6
6
|
|------------- | ------------- | -------------|
|
|
7
7
|
| [**createContact**](ContactsApi.md#createcontact) | **POST** /crm/api/v1/contacts | Create a contact |
|
|
8
|
-
| [**createHousehold**](ContactsApi.md#createhousehold) | **POST** /crm/api/v1/contacts/
|
|
8
|
+
| [**createHousehold**](ContactsApi.md#createhousehold) | **POST** /crm/api/v1/contacts/households | Create a household (EXPERIMENTAL) |
|
|
9
9
|
| [**getByUuid**](ContactsApi.md#getbyuuid) | **GET** /crm/api/v1/contacts/{contactUuid} | Get contact by Uuid |
|
|
10
|
-
| [**getHouseholdByUuid**](ContactsApi.md#gethouseholdbyuuid) | **GET** /crm/api/v1/contacts/
|
|
10
|
+
| [**getHouseholdByUuid**](ContactsApi.md#gethouseholdbyuuid) | **GET** /crm/api/v1/contacts/households/{householdUuid} | Gets a household by uuid (EXPERIMENTAL) |
|
|
11
11
|
| [**listContact**](ContactsApi.md#listcontact) | **GET** /crm/api/v1/contacts | List contact |
|
|
12
12
|
| [**listContactDocument**](ContactsApi.md#listcontactdocument) | **GET** /crm/api/v1/contacts/{contactUuid}/documents | List contact documents |
|
|
13
13
|
| [**listContactInvestment**](ContactsApi.md#listcontactinvestment) | **GET** /crm/api/v1/contacts/{contactUuid}/investmentAccounts | List contact investments |
|
package/package.json
CHANGED
package/src/apis/ContactsApi.ts
CHANGED
|
@@ -200,7 +200,7 @@ export class ContactsApi extends runtime.BaseAPI {
|
|
|
200
200
|
}
|
|
201
201
|
|
|
202
202
|
|
|
203
|
-
let urlPath = `/crm/api/v1/contacts/
|
|
203
|
+
let urlPath = `/crm/api/v1/contacts/households`;
|
|
204
204
|
|
|
205
205
|
return {
|
|
206
206
|
path: urlPath,
|
|
@@ -312,7 +312,7 @@ export class ContactsApi extends runtime.BaseAPI {
|
|
|
312
312
|
}
|
|
313
313
|
|
|
314
314
|
|
|
315
|
-
let urlPath = `/crm/api/v1/contacts/
|
|
315
|
+
let urlPath = `/crm/api/v1/contacts/households/{householdUuid}`;
|
|
316
316
|
urlPath = urlPath.replace(`{${"householdUuid"}}`, encodeURIComponent(String(requestParameters['householdUuid'])));
|
|
317
317
|
|
|
318
318
|
return {
|