@unboundcx/sdk 2.6.15 → 2.6.16
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/services/messaging.js +10 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unboundcx/sdk",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.16",
|
|
4
4
|
"description": "Official JavaScript SDK for the Unbound API - A comprehensive toolkit for integrating with Unbound's communication, AI, and data management services",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
package/services/messaging.js
CHANGED
|
@@ -926,7 +926,7 @@ export class TenDlcBrandsService {
|
|
|
926
926
|
* @param {Object} params - Brand parameters
|
|
927
927
|
* @param {string} params.name - Brand display name (required)
|
|
928
928
|
* @param {string} params.entityType - Entity type: PRIVATE_PROFIT, PUBLIC_PROFIT, NON_PROFIT (required)
|
|
929
|
-
* @param {string} [params.cspId] - CSP ID for resellers
|
|
929
|
+
* @param {string} [params.cspId] - CSP ID for resellers
|
|
930
930
|
* @param {string} params.companyName - Company name (required)
|
|
931
931
|
* @param {string} [params.ein] - Employer Identification Number
|
|
932
932
|
* @param {string} params.address1 - Street address (required)
|
|
@@ -1072,6 +1072,8 @@ export class TenDlcBrandsService {
|
|
|
1072
1072
|
* @param {string} [params.state] - State
|
|
1073
1073
|
* @param {string} [params.postalCode] - Postal code
|
|
1074
1074
|
* @param {string} [params.country] - Country
|
|
1075
|
+
* @param {string} [params.pocFirstName] - Point of contact first name
|
|
1076
|
+
* @param {string} [params.pocLastName] - Point of contact last name
|
|
1075
1077
|
* @param {string} [params.pocEmail] - Point of contact email
|
|
1076
1078
|
* @param {string} [params.pocPhone] - Point of contact phone
|
|
1077
1079
|
* @param {string} [params.stockSymbol] - Stock symbol for public companies
|
|
@@ -1082,7 +1084,7 @@ export class TenDlcBrandsService {
|
|
|
1082
1084
|
* @param {string} [params.altBusinessIdType] - Alternative business ID type
|
|
1083
1085
|
* @param {string} [params.brandRelationship] - Brand relationship
|
|
1084
1086
|
* @param {string} [params.businessContactEmail] - Business contact email for 2025 compliance
|
|
1085
|
-
* @param {string} [params.firstName] - First name for 2025 compliance
|
|
1087
|
+
* @param {string} [params.firstName] - First name for 2025 compliance
|
|
1086
1088
|
* @param {string} [params.lastName] - Last name for 2025 compliance
|
|
1087
1089
|
* @param {string} [params.mobilePhone] - Mobile phone for 2025 compliance
|
|
1088
1090
|
* @returns {Promise<Object>} Updated brand details
|
|
@@ -1099,6 +1101,8 @@ export class TenDlcBrandsService {
|
|
|
1099
1101
|
state,
|
|
1100
1102
|
postalCode,
|
|
1101
1103
|
country,
|
|
1104
|
+
pocFirstName,
|
|
1105
|
+
pocLastName,
|
|
1102
1106
|
pocEmail,
|
|
1103
1107
|
pocPhone,
|
|
1104
1108
|
stockSymbol,
|
|
@@ -1128,6 +1132,8 @@ export class TenDlcBrandsService {
|
|
|
1128
1132
|
state: { type: 'string', required: false },
|
|
1129
1133
|
postalCode: { type: 'string', required: false },
|
|
1130
1134
|
country: { type: 'string', required: false },
|
|
1135
|
+
pocFirstName: { type: 'string', required: false },
|
|
1136
|
+
pocLastName: { type: 'string', required: false },
|
|
1131
1137
|
pocEmail: { type: 'string', required: false },
|
|
1132
1138
|
pocPhone: { type: 'string', required: false },
|
|
1133
1139
|
stockSymbol: { type: 'string', required: false },
|
|
@@ -1156,6 +1162,8 @@ export class TenDlcBrandsService {
|
|
|
1156
1162
|
if (state !== undefined) updateData.state = state;
|
|
1157
1163
|
if (postalCode !== undefined) updateData.postalCode = postalCode;
|
|
1158
1164
|
if (country !== undefined) updateData.country = country;
|
|
1165
|
+
if (pocFirstName !== undefined) updateData.pocFirstName = pocFirstName;
|
|
1166
|
+
if (pocLastName !== undefined) updateData.pocLastName = pocLastName;
|
|
1159
1167
|
if (pocEmail !== undefined) updateData.pocEmail = pocEmail;
|
|
1160
1168
|
if (pocPhone !== undefined) updateData.pocPhone = pocPhone;
|
|
1161
1169
|
if (stockSymbol !== undefined) updateData.stockSymbol = stockSymbol;
|