ultracart_rest_api_v2_typescript 4.0.108-RC → 4.0.110-RC
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 +4 -2
- package/dist/models/ConversationEngagementEquationFunction.d.ts +2 -2
- package/dist/models/ConversationEngagementEquationFunction.js +2 -2
- package/dist/models/IntegrationLogQueryRequest.d.ts +6 -0
- package/dist/models/IntegrationLogQueryRequest.js +2 -0
- package/package.json +1 -1
- package/src/models/ConversationEngagementEquationFunction.ts +2 -2
- package/src/models/IntegrationLogQueryRequest.ts +8 -0
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## ultracart_rest_api_v2_typescript@4.0.
|
|
1
|
+
## ultracart_rest_api_v2_typescript@4.0.110-RC
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install ultracart_rest_api_v2_typescript@4.0.
|
|
39
|
+
npm install ultracart_rest_api_v2_typescript@4.0.110-RC --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -54,6 +54,8 @@ Not every change is committed to every SDK.
|
|
|
54
54
|
|
|
55
55
|
| Version | Date | Comments |
|
|
56
56
|
| --: | :-: | --- |
|
|
57
|
+
| 4.0.110-RC | 01/10/2023 | add method to query integration log record by oid |
|
|
58
|
+
| 4.0.109-RC | 01/10/2023 | bug fix for typescript enum error due to apost |
|
|
57
59
|
| 4.0.108-RC | 01/10/2023 | integration log tracking of associated auto order oids |
|
|
58
60
|
| 4.0.107-RC | 01/06/2023 | conversation search response object bug fix |
|
|
59
61
|
| 4.0.106-RC | 01/05/2023 | communications - added maximum_enrolled flag on flow object |
|
|
@@ -163,8 +163,8 @@ export type ConversationEngagementEquationFunctionReferringWebsiteLogicEnum = ty
|
|
|
163
163
|
*/
|
|
164
164
|
export declare const ConversationEngagementEquationFunctionTypeEnum: {
|
|
165
165
|
readonly CurrentPageUrl: "current page url";
|
|
166
|
-
readonly CustomersLocation: "
|
|
167
|
-
readonly CustomersBrowsingTime: "
|
|
166
|
+
readonly CustomersLocation: "customers location";
|
|
167
|
+
readonly CustomersBrowsingTime: "customers browsing time";
|
|
168
168
|
readonly NumberOfViewedPages: "number of viewed pages";
|
|
169
169
|
readonly ReferringWebsiteAddress: "referring website address";
|
|
170
170
|
readonly AnyPageFromSession: "any page from session";
|
|
@@ -72,8 +72,8 @@ exports.ConversationEngagementEquationFunctionReferringWebsiteLogicEnum = {
|
|
|
72
72
|
*/
|
|
73
73
|
exports.ConversationEngagementEquationFunctionTypeEnum = {
|
|
74
74
|
CurrentPageUrl: 'current page url',
|
|
75
|
-
CustomersLocation: '
|
|
76
|
-
CustomersBrowsingTime: '
|
|
75
|
+
CustomersLocation: 'customers location',
|
|
76
|
+
CustomersBrowsingTime: 'customers browsing time',
|
|
77
77
|
NumberOfViewedPages: 'number of viewed pages',
|
|
78
78
|
ReferringWebsiteAddress: 'referring website address',
|
|
79
79
|
AnyPageFromSession: 'any page from session'
|
|
@@ -51,6 +51,12 @@ export interface IntegrationLogQueryRequest {
|
|
|
51
51
|
* @memberof IntegrationLogQueryRequest
|
|
52
52
|
*/
|
|
53
53
|
file_names?: Array<string>;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {number}
|
|
57
|
+
* @memberof IntegrationLogQueryRequest
|
|
58
|
+
*/
|
|
59
|
+
integration_log_oid?: number;
|
|
54
60
|
/**
|
|
55
61
|
*
|
|
56
62
|
* @type {string}
|
|
@@ -30,6 +30,7 @@ function IntegrationLogQueryRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
30
30
|
'direction': !(0, runtime_1.exists)(json, 'direction') ? undefined : json['direction'],
|
|
31
31
|
'email': !(0, runtime_1.exists)(json, 'email') ? undefined : json['email'],
|
|
32
32
|
'file_names': !(0, runtime_1.exists)(json, 'file_names') ? undefined : json['file_names'],
|
|
33
|
+
'integration_log_oid': !(0, runtime_1.exists)(json, 'integration_log_oid') ? undefined : json['integration_log_oid'],
|
|
33
34
|
'item_id': !(0, runtime_1.exists)(json, 'item_id') ? undefined : json['item_id'],
|
|
34
35
|
'item_ipn_oid': !(0, runtime_1.exists)(json, 'item_ipn_oid') ? undefined : json['item_ipn_oid'],
|
|
35
36
|
'log_dts_begin': !(0, runtime_1.exists)(json, 'log_dts_begin') ? undefined : json['log_dts_begin'],
|
|
@@ -56,6 +57,7 @@ function IntegrationLogQueryRequestToJSON(value) {
|
|
|
56
57
|
'direction': value.direction,
|
|
57
58
|
'email': value.email,
|
|
58
59
|
'file_names': value.file_names,
|
|
60
|
+
'integration_log_oid': value.integration_log_oid,
|
|
59
61
|
'item_id': value.item_id,
|
|
60
62
|
'item_ipn_oid': value.item_ipn_oid,
|
|
61
63
|
'log_dts_begin': value.log_dts_begin,
|
package/package.json
CHANGED
|
@@ -175,8 +175,8 @@ export type ConversationEngagementEquationFunctionReferringWebsiteLogicEnum = ty
|
|
|
175
175
|
*/
|
|
176
176
|
export const ConversationEngagementEquationFunctionTypeEnum = {
|
|
177
177
|
CurrentPageUrl: 'current page url',
|
|
178
|
-
CustomersLocation: '
|
|
179
|
-
CustomersBrowsingTime: '
|
|
178
|
+
CustomersLocation: 'customers location',
|
|
179
|
+
CustomersBrowsingTime: 'customers browsing time',
|
|
180
180
|
NumberOfViewedPages: 'number of viewed pages',
|
|
181
181
|
ReferringWebsiteAddress: 'referring website address',
|
|
182
182
|
AnyPageFromSession: 'any page from session'
|
|
@@ -55,6 +55,12 @@ export interface IntegrationLogQueryRequest {
|
|
|
55
55
|
* @memberof IntegrationLogQueryRequest
|
|
56
56
|
*/
|
|
57
57
|
file_names?: Array<string>;
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @type {number}
|
|
61
|
+
* @memberof IntegrationLogQueryRequest
|
|
62
|
+
*/
|
|
63
|
+
integration_log_oid?: number;
|
|
58
64
|
/**
|
|
59
65
|
*
|
|
60
66
|
* @type {string}
|
|
@@ -127,6 +133,7 @@ export function IntegrationLogQueryRequestFromJSONTyped(json: any, ignoreDiscrim
|
|
|
127
133
|
'direction': !exists(json, 'direction') ? undefined : json['direction'],
|
|
128
134
|
'email': !exists(json, 'email') ? undefined : json['email'],
|
|
129
135
|
'file_names': !exists(json, 'file_names') ? undefined : json['file_names'],
|
|
136
|
+
'integration_log_oid': !exists(json, 'integration_log_oid') ? undefined : json['integration_log_oid'],
|
|
130
137
|
'item_id': !exists(json, 'item_id') ? undefined : json['item_id'],
|
|
131
138
|
'item_ipn_oid': !exists(json, 'item_ipn_oid') ? undefined : json['item_ipn_oid'],
|
|
132
139
|
'log_dts_begin': !exists(json, 'log_dts_begin') ? undefined : json['log_dts_begin'],
|
|
@@ -154,6 +161,7 @@ export function IntegrationLogQueryRequestToJSON(value?: IntegrationLogQueryRequ
|
|
|
154
161
|
'direction': value.direction,
|
|
155
162
|
'email': value.email,
|
|
156
163
|
'file_names': value.file_names,
|
|
164
|
+
'integration_log_oid': value.integration_log_oid,
|
|
157
165
|
'item_id': value.item_id,
|
|
158
166
|
'item_ipn_oid': value.item_ipn_oid,
|
|
159
167
|
'log_dts_begin': value.log_dts_begin,
|