@randock/nameshift-api-client 0.0.277 → 0.0.279

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.279
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.279 --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
+ 1c224dbb8a4c47c0ef62976234c7cbe3e025656fb57a2623dd51b313708677447630424a481ebfe0a797a92661296dd6
@@ -70,6 +70,7 @@ export interface BuyerDomainTransferListItemDto {
70
70
  */
71
71
  export declare const BuyerDomainTransferListItemDtoInvoiceStatusEnum: {
72
72
  readonly DRAFT: "draft";
73
+ readonly PENDING_PAYMENT: "pending_payment";
73
74
  readonly PAID: "paid";
74
75
  readonly CANCELLED: "cancelled";
75
76
  };
@@ -25,6 +25,7 @@ var BuyerDomainTransferListItemDomainDto_1 = require("./BuyerDomainTransferListI
25
25
  */
26
26
  exports.BuyerDomainTransferListItemDtoInvoiceStatusEnum = {
27
27
  DRAFT: 'draft',
28
+ PENDING_PAYMENT: 'pending_payment',
28
29
  PAID: 'paid',
29
30
  CANCELLED: 'cancelled'
30
31
  };
@@ -27,6 +27,7 @@ export interface ChangeOrderStatusInput {
27
27
  */
28
28
  export declare const ChangeOrderStatusInputStatusEnum: {
29
29
  readonly DRAFT: "draft";
30
+ readonly PENDING_PAYMENT: "pending_payment";
30
31
  readonly PAID: "paid";
31
32
  readonly CANCELLED: "cancelled";
32
33
  };
@@ -24,6 +24,7 @@ exports.ChangeOrderStatusInputToJSONTyped = ChangeOrderStatusInputToJSONTyped;
24
24
  */
25
25
  exports.ChangeOrderStatusInputStatusEnum = {
26
26
  DRAFT: 'draft',
27
+ PENDING_PAYMENT: 'pending_payment',
27
28
  PAID: 'paid',
28
29
  CANCELLED: 'cancelled'
29
30
  };
@@ -72,6 +72,7 @@ export interface InvoiceDto {
72
72
  */
73
73
  export declare const InvoiceDtoStatusEnum: {
74
74
  readonly DRAFT: "draft";
75
+ readonly PENDING_PAYMENT: "pending_payment";
75
76
  readonly PAID: "paid";
76
77
  readonly CANCELLED: "cancelled";
77
78
  };
@@ -27,6 +27,7 @@ var MoneyDto_1 = require("./MoneyDto");
27
27
  */
28
28
  exports.InvoiceDtoStatusEnum = {
29
29
  DRAFT: 'draft',
30
+ PENDING_PAYMENT: 'pending_payment',
30
31
  PAID: 'paid',
31
32
  CANCELLED: 'cancelled'
32
33
  };
@@ -110,6 +110,7 @@ export interface OrderDto {
110
110
  */
111
111
  export declare const OrderDtoStatusEnum: {
112
112
  readonly DRAFT: "draft";
113
+ readonly PENDING_PAYMENT: "pending_payment";
113
114
  readonly PAID: "paid";
114
115
  readonly CANCELLED: "cancelled";
115
116
  };
@@ -29,6 +29,7 @@ var AddressDto_1 = require("./AddressDto");
29
29
  */
30
30
  exports.OrderDtoStatusEnum = {
31
31
  DRAFT: 'draft',
32
+ PENDING_PAYMENT: 'pending_payment',
32
33
  PAID: 'paid',
33
34
  CANCELLED: 'cancelled'
34
35
  };
@@ -85,6 +85,7 @@ export interface OrderListItemDto {
85
85
  */
86
86
  export declare const OrderListItemDtoStatusEnum: {
87
87
  readonly DRAFT: "draft";
88
+ readonly PENDING_PAYMENT: "pending_payment";
88
89
  readonly PAID: "paid";
89
90
  readonly CANCELLED: "cancelled";
90
91
  };
@@ -28,6 +28,7 @@ var OrderListItemDtoSellerAccount_1 = require("./OrderListItemDtoSellerAccount")
28
28
  */
29
29
  exports.OrderListItemDtoStatusEnum = {
30
30
  DRAFT: 'draft',
31
+ PENDING_PAYMENT: 'pending_payment',
31
32
  PAID: 'paid',
32
33
  CANCELLED: 'cancelled'
33
34
  };
@@ -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.279",
4
4
  "description": "OpenAPI client for @randock/nameshift-api-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -83,6 +83,7 @@ export interface BuyerDomainTransferListItemDto {
83
83
  */
84
84
  export const BuyerDomainTransferListItemDtoInvoiceStatusEnum = {
85
85
  DRAFT: 'draft',
86
+ PENDING_PAYMENT: 'pending_payment',
86
87
  PAID: 'paid',
87
88
  CANCELLED: 'cancelled'
88
89
  } as const;
@@ -33,6 +33,7 @@ export interface ChangeOrderStatusInput {
33
33
  */
34
34
  export const ChangeOrderStatusInputStatusEnum = {
35
35
  DRAFT: 'draft',
36
+ PENDING_PAYMENT: 'pending_payment',
36
37
  PAID: 'paid',
37
38
  CANCELLED: 'cancelled'
38
39
  } as const;
@@ -97,6 +97,7 @@ export interface InvoiceDto {
97
97
  */
98
98
  export const InvoiceDtoStatusEnum = {
99
99
  DRAFT: 'draft',
100
+ PENDING_PAYMENT: 'pending_payment',
100
101
  PAID: 'paid',
101
102
  CANCELLED: 'cancelled'
102
103
  } as const;
@@ -147,6 +147,7 @@ export interface OrderDto {
147
147
  */
148
148
  export const OrderDtoStatusEnum = {
149
149
  DRAFT: 'draft',
150
+ PENDING_PAYMENT: 'pending_payment',
150
151
  PAID: 'paid',
151
152
  CANCELLED: 'cancelled'
152
153
  } as const;
@@ -116,6 +116,7 @@ export interface OrderListItemDto {
116
116
  */
117
117
  export const OrderListItemDtoStatusEnum = {
118
118
  DRAFT: 'draft',
119
+ PENDING_PAYMENT: 'pending_payment',
119
120
  PAID: 'paid',
120
121
  CANCELLED: 'cancelled'
121
122
  } as const;
@@ -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
  }