yellowgrid-api-ts 3.2.144 → 3.2.145
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/api.ts +8 -0
- package/dist/api.d.ts +8 -0
- package/docs/CreditAccountEntity.md +2 -0
- package/docs/PortalAccountModel.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -1438,6 +1438,10 @@ export interface CreateCrmNoteBody {
|
|
|
1438
1438
|
* Credit Account
|
|
1439
1439
|
*/
|
|
1440
1440
|
export interface CreditAccountEntity {
|
|
1441
|
+
/**
|
|
1442
|
+
* Contact Email Domains
|
|
1443
|
+
*/
|
|
1444
|
+
'domains'?: Array<string>;
|
|
1441
1445
|
/**
|
|
1442
1446
|
* ID
|
|
1443
1447
|
*/
|
|
@@ -4378,6 +4382,10 @@ export interface PatchUpdateTcxPartnerIdRequest {
|
|
|
4378
4382
|
* Customer Account
|
|
4379
4383
|
*/
|
|
4380
4384
|
export interface PortalAccountModel {
|
|
4385
|
+
/**
|
|
4386
|
+
* Contact Email Domains
|
|
4387
|
+
*/
|
|
4388
|
+
'domains'?: Array<string>;
|
|
4381
4389
|
/**
|
|
4382
4390
|
* ID
|
|
4383
4391
|
*/
|
package/dist/api.d.ts
CHANGED
|
@@ -1415,6 +1415,10 @@ export interface CreateCrmNoteBody {
|
|
|
1415
1415
|
* Credit Account
|
|
1416
1416
|
*/
|
|
1417
1417
|
export interface CreditAccountEntity {
|
|
1418
|
+
/**
|
|
1419
|
+
* Contact Email Domains
|
|
1420
|
+
*/
|
|
1421
|
+
'domains'?: Array<string>;
|
|
1418
1422
|
/**
|
|
1419
1423
|
* ID
|
|
1420
1424
|
*/
|
|
@@ -4324,6 +4328,10 @@ export interface PatchUpdateTcxPartnerIdRequest {
|
|
|
4324
4328
|
* Customer Account
|
|
4325
4329
|
*/
|
|
4326
4330
|
export interface PortalAccountModel {
|
|
4331
|
+
/**
|
|
4332
|
+
* Contact Email Domains
|
|
4333
|
+
*/
|
|
4334
|
+
'domains'?: Array<string>;
|
|
4327
4335
|
/**
|
|
4328
4336
|
* ID
|
|
4329
4337
|
*/
|
|
@@ -6,6 +6,7 @@ Credit Account
|
|
|
6
6
|
|
|
7
7
|
Name | Type | Description | Notes
|
|
8
8
|
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**domains** | **Array<string>** | Contact Email Domains | [optional] [default to undefined]
|
|
9
10
|
**id** | **number** | ID | [optional] [default to undefined]
|
|
10
11
|
**name** | **string** | Contact Name | [optional] [default to undefined]
|
|
11
12
|
**email** | **string** | Email | [optional] [default to undefined]
|
|
@@ -36,6 +37,7 @@ Name | Type | Description | Notes
|
|
|
36
37
|
import { CreditAccountEntity } from 'yellowgrid-api-ts';
|
|
37
38
|
|
|
38
39
|
const instance: CreditAccountEntity = {
|
|
40
|
+
domains,
|
|
39
41
|
id,
|
|
40
42
|
name,
|
|
41
43
|
email,
|
|
@@ -6,6 +6,7 @@ Customer Account
|
|
|
6
6
|
|
|
7
7
|
Name | Type | Description | Notes
|
|
8
8
|
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**domains** | **Array<string>** | Contact Email Domains | [optional] [default to undefined]
|
|
9
10
|
**id** | **number** | ID | [optional] [default to undefined]
|
|
10
11
|
**name** | **string** | Contact Name | [optional] [default to undefined]
|
|
11
12
|
**email** | **string** | Email | [optional] [default to undefined]
|
|
@@ -38,6 +39,7 @@ Name | Type | Description | Notes
|
|
|
38
39
|
import { PortalAccountModel } from 'yellowgrid-api-ts';
|
|
39
40
|
|
|
40
41
|
const instance: PortalAccountModel = {
|
|
42
|
+
domains,
|
|
41
43
|
id,
|
|
42
44
|
name,
|
|
43
45
|
email,
|