@randock/nameshift-api-client 0.0.281 → 0.0.282

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.281
1
+ ## @randock/nameshift-api-client@0.0.282
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.281 --save
39
+ npm install @randock/nameshift-api-client@0.0.282 --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
- cfd2ce5aa7910076c2a05751cc24b218409036647f2a970b86392f2c813d97cab71159ca649b4640fd5d5c334e9d1e77
47
+ ec9d210210caa6ba8f59c17894bf90dcf69145a95e8869bdbeecdd523d2a6d3c870ad4e115197248ab839c0046ceab30
@@ -48,6 +48,12 @@ export interface IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDto {
48
48
  * @memberof IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDto
49
49
  */
50
50
  domain: IntersectionDomainDtoWithAccountDto;
51
+ /**
52
+ *
53
+ * @type {string}
54
+ * @memberof IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDto
55
+ */
56
+ manualType: IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoManualTypeEnum | null;
51
57
  /**
52
58
  *
53
59
  * @type {BuyerDto}
@@ -118,6 +124,16 @@ export declare const IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoLas
118
124
  readonly ADMIN: "admin";
119
125
  };
120
126
  export type IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoLastOfferByEnum = typeof IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoLastOfferByEnum[keyof typeof IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoLastOfferByEnum];
127
+ /**
128
+ * @export
129
+ */
130
+ export declare const IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoManualTypeEnum: {
131
+ readonly BUY_NOW: "buy_now";
132
+ readonly OFFER: "offer";
133
+ readonly LEASE_TO_OWN: "lease_to_own";
134
+ readonly RENT: "rent";
135
+ };
136
+ export type IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoManualTypeEnum = typeof IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoManualTypeEnum[keyof typeof IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoManualTypeEnum];
121
137
  /**
122
138
  * Check if a given object implements the IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDto interface.
123
139
  */
@@ -13,7 +13,7 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoLastOfferByEnum = exports.IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoStatusEnum = void 0;
16
+ exports.IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoManualTypeEnum = exports.IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoLastOfferByEnum = exports.IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoStatusEnum = void 0;
17
17
  exports.instanceOfIntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDto = instanceOfIntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDto;
18
18
  exports.IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoFromJSON = IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoFromJSON;
19
19
  exports.IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoFromJSONTyped = IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoFromJSONTyped;
@@ -41,6 +41,15 @@ exports.IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoLastOfferByEnum
41
41
  AI: 'ai',
42
42
  ADMIN: 'admin'
43
43
  };
44
+ /**
45
+ * @export
46
+ */
47
+ exports.IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoManualTypeEnum = {
48
+ BUY_NOW: 'buy_now',
49
+ OFFER: 'offer',
50
+ LEASE_TO_OWN: 'lease_to_own',
51
+ RENT: 'rent'
52
+ };
44
53
  /**
45
54
  * Check if a given object implements the IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDto interface.
46
55
  */
@@ -55,6 +64,8 @@ function instanceOfIntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDto(valu
55
64
  return false;
56
65
  if (!('domain' in value) || value['domain'] === undefined)
57
66
  return false;
67
+ if (!('manualType' in value) || value['manualType'] === undefined)
68
+ return false;
58
69
  if (!('buyer' in value) || value['buyer'] === undefined)
59
70
  return false;
60
71
  if (!('archived' in value) || value['archived'] === undefined)
@@ -86,6 +97,7 @@ function IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoFromJSONTyped(j
86
97
  'lastOffer': (0, MoneyDto_1.MoneyDtoFromJSON)(json['lastOffer']),
87
98
  'lastOfferBy': json['lastOfferBy'],
88
99
  'domain': (0, IntersectionDomainDtoWithAccountDto_1.IntersectionDomainDtoWithAccountDtoFromJSON)(json['domain']),
100
+ 'manualType': json['manualType'],
89
101
  'buyer': (0, BuyerDto_1.BuyerDtoFromJSON)(json['buyer']),
90
102
  'archived': json['archived'],
91
103
  'createdAt': (new Date(json['createdAt'])),
@@ -110,6 +122,7 @@ function IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoToJSONTyped(val
110
122
  'lastOffer': (0, MoneyDto_1.MoneyDtoToJSON)(value['lastOffer']),
111
123
  'lastOfferBy': value['lastOfferBy'],
112
124
  'domain': (0, IntersectionDomainDtoWithAccountDto_1.IntersectionDomainDtoWithAccountDtoToJSON)(value['domain']),
125
+ 'manualType': value['manualType'],
113
126
  'buyer': (0, BuyerDto_1.BuyerDtoToJSON)(value['buyer']),
114
127
  'archived': value['archived'],
115
128
  'createdAt': ((value['createdAt']).toISOString()),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randock/nameshift-api-client",
3
- "version": "0.0.281",
3
+ "version": "0.0.282",
4
4
  "description": "OpenAPI client for @randock/nameshift-api-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -71,6 +71,12 @@ export interface IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDto {
71
71
  * @memberof IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDto
72
72
  */
73
73
  domain: IntersectionDomainDtoWithAccountDto;
74
+ /**
75
+ *
76
+ * @type {string}
77
+ * @memberof IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDto
78
+ */
79
+ manualType: IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoManualTypeEnum | null;
74
80
  /**
75
81
  *
76
82
  * @type {BuyerDto}
@@ -145,6 +151,17 @@ export const IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoLastOfferBy
145
151
  } as const;
146
152
  export type IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoLastOfferByEnum = typeof IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoLastOfferByEnum[keyof typeof IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoLastOfferByEnum];
147
153
 
154
+ /**
155
+ * @export
156
+ */
157
+ export const IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoManualTypeEnum = {
158
+ BUY_NOW: 'buy_now',
159
+ OFFER: 'offer',
160
+ LEASE_TO_OWN: 'lease_to_own',
161
+ RENT: 'rent'
162
+ } as const;
163
+ export type IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoManualTypeEnum = typeof IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoManualTypeEnum[keyof typeof IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoManualTypeEnum];
164
+
148
165
 
149
166
  /**
150
167
  * Check if a given object implements the IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDto interface.
@@ -155,6 +172,7 @@ export function instanceOfIntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsD
155
172
  if (!('lastOffer' in value) || value['lastOffer'] === undefined) return false;
156
173
  if (!('lastOfferBy' in value) || value['lastOfferBy'] === undefined) return false;
157
174
  if (!('domain' in value) || value['domain'] === undefined) return false;
175
+ if (!('manualType' in value) || value['manualType'] === undefined) return false;
158
176
  if (!('buyer' in value) || value['buyer'] === undefined) return false;
159
177
  if (!('archived' in value) || value['archived'] === undefined) return false;
160
178
  if (!('createdAt' in value) || value['createdAt'] === undefined) return false;
@@ -181,6 +199,7 @@ export function IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoFromJSON
181
199
  'lastOffer': MoneyDtoFromJSON(json['lastOffer']),
182
200
  'lastOfferBy': json['lastOfferBy'],
183
201
  'domain': IntersectionDomainDtoWithAccountDtoFromJSON(json['domain']),
202
+ 'manualType': json['manualType'],
184
203
  'buyer': BuyerDtoFromJSON(json['buyer']),
185
204
  'archived': json['archived'],
186
205
  'createdAt': (new Date(json['createdAt'])),
@@ -208,6 +227,7 @@ export function IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoToJSONTy
208
227
  'lastOffer': MoneyDtoToJSON(value['lastOffer']),
209
228
  'lastOfferBy': value['lastOfferBy'],
210
229
  'domain': IntersectionDomainDtoWithAccountDtoToJSON(value['domain']),
230
+ 'manualType': value['manualType'],
211
231
  'buyer': BuyerDtoToJSON(value['buyer']),
212
232
  'archived': value['archived'],
213
233
  'createdAt': ((value['createdAt']).toISOString()),