@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 CHANGED
@@ -1,4 +1,4 @@
1
- ## @randock/nameshift-api-client@0.0.277
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.277 --save
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
- f48e1477b01ef4d17b4ec2cf2fdce77f26d6c43224f7d90b0026bb6a2c31c510094b31159c2d0fa67a577e1222bec5f6
47
+ 168e067783527c183d729160d5252b016b806dba21bf7caa3ab79bc2f72555e1cca4a61f1cdbe8cf3f273a17e597fd4d
@@ -26,7 +26,7 @@ export interface SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel {
26
26
  * @type {string}
27
27
  * @memberof SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel
28
28
  */
29
- offerHandler: string;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randock/nameshift-api-client",
3
- "version": "0.0.277",
3
+ "version": "0.0.278",
4
4
  "description": "OpenAPI client for @randock/nameshift-api-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -30,7 +30,7 @@ export interface SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel {
30
30
  * @type {string}
31
31
  * @memberof SendAdminLeadAiPriceNegotiatorAgentChatMessageInputAiModel
32
32
  */
33
- offerHandler: string;
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
  }