@randock/nameshift-api-client 0.0.277 → 0.0.278
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 +3 -3
- package/dist/models/SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel.d.ts +1 -1
- package/dist/models/SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel.js +1 -3
- package/package.json +1 -1
- package/src/models/SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel.ts +2 -3
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @randock/nameshift-api-client@0.0.
|
|
1
|
+
## @randock/nameshift-api-client@0.0.278
|
|
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 @randock/nameshift-api-client@0.0.
|
|
39
|
+
npm install @randock/nameshift-api-client@0.0.278 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -44,4 +44,4 @@ _unPublished (not recommended):_
|
|
|
44
44
|
```
|
|
45
45
|
npm install PATH_TO_GENERATED_PACKAGE --save
|
|
46
46
|
```
|
|
47
|
-
|
|
47
|
+
168e067783527c183d729160d5252b016b806dba21bf7caa3ab79bc2f72555e1cca4a61f1cdbe8cf3f273a17e597fd4d
|
|
@@ -26,7 +26,7 @@ export interface SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel {
|
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel
|
|
28
28
|
*/
|
|
29
|
-
offerHandler
|
|
29
|
+
offerHandler?: string | null;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
32
|
* @type {string}
|
|
@@ -24,8 +24,6 @@ exports.SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelToJSONTyped =
|
|
|
24
24
|
function instanceOfSendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel(value) {
|
|
25
25
|
if (!('conversationAnalyzer' in value) || value['conversationAnalyzer'] === undefined)
|
|
26
26
|
return false;
|
|
27
|
-
if (!('offerHandler' in value) || value['offerHandler'] === undefined)
|
|
28
|
-
return false;
|
|
29
27
|
if (!('messageHandler' in value) || value['messageHandler'] === undefined)
|
|
30
28
|
return false;
|
|
31
29
|
return true;
|
|
@@ -39,7 +37,7 @@ function SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelFromJSONTyped
|
|
|
39
37
|
}
|
|
40
38
|
return {
|
|
41
39
|
'conversationAnalyzer': json['conversationAnalyzer'],
|
|
42
|
-
'offerHandler': json['offerHandler'],
|
|
40
|
+
'offerHandler': json['offerHandler'] == null ? undefined : json['offerHandler'],
|
|
43
41
|
'messageHandler': json['messageHandler'],
|
|
44
42
|
};
|
|
45
43
|
}
|
package/package.json
CHANGED
|
@@ -30,7 +30,7 @@ export interface SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel {
|
|
|
30
30
|
* @type {string}
|
|
31
31
|
* @memberof SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel
|
|
32
32
|
*/
|
|
33
|
-
offerHandler
|
|
33
|
+
offerHandler?: string | null;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
36
|
* @type {string}
|
|
@@ -44,7 +44,6 @@ export interface SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel {
|
|
|
44
44
|
*/
|
|
45
45
|
export function instanceOfSendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel(value: object): value is SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel {
|
|
46
46
|
if (!('conversationAnalyzer' in value) || value['conversationAnalyzer'] === undefined) return false;
|
|
47
|
-
if (!('offerHandler' in value) || value['offerHandler'] === undefined) return false;
|
|
48
47
|
if (!('messageHandler' in value) || value['messageHandler'] === undefined) return false;
|
|
49
48
|
return true;
|
|
50
49
|
}
|
|
@@ -60,7 +59,7 @@ export function SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModelFromJS
|
|
|
60
59
|
return {
|
|
61
60
|
|
|
62
61
|
'conversationAnalyzer': json['conversationAnalyzer'],
|
|
63
|
-
'offerHandler': json['offerHandler'],
|
|
62
|
+
'offerHandler': json['offerHandler'] == null ? undefined : json['offerHandler'],
|
|
64
63
|
'messageHandler': json['messageHandler'],
|
|
65
64
|
};
|
|
66
65
|
}
|