@cloudcommerce/api 2.37.1 → 2.37.3
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/types/customers.d.ts +4 -0
- package/types/orders.d.ts +4 -0
package/package.json
CHANGED
package/types/customers.d.ts
CHANGED
|
@@ -53,6 +53,10 @@ export interface Customers {
|
|
|
53
53
|
* Code to identify the affiliate that referred the customer
|
|
54
54
|
*/
|
|
55
55
|
affiliate_code?: string;
|
|
56
|
+
/**
|
|
57
|
+
* Customer group indentifier
|
|
58
|
+
*/
|
|
59
|
+
group?: string;
|
|
56
60
|
/**
|
|
57
61
|
* UTM campaign HTTP parameters associated with this customer's first access
|
|
58
62
|
*/
|
package/types/orders.d.ts
CHANGED
|
@@ -344,6 +344,10 @@ export interface Orders {
|
|
|
344
344
|
* Registered company name or responsible fullname
|
|
345
345
|
*/
|
|
346
346
|
corporate_name?: string;
|
|
347
|
+
/**
|
|
348
|
+
* Customer group indentifier
|
|
349
|
+
*/
|
|
350
|
+
group?: string;
|
|
347
351
|
}[];
|
|
348
352
|
/**
|
|
349
353
|
* Whether the order is only budget, without payment transactions
|