@randock/nameshift-api-client 0.0.94 → 0.0.95
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/IntersectionLeadDtoWithListFieldsDto.d.ts +1 -0
- package/dist/models/IntersectionLeadDtoWithListFieldsDto.js +1 -0
- package/dist/models/LeadMessageDto.d.ts +1 -0
- package/dist/models/LeadMessageDto.js +1 -0
- package/package.json +1 -1
- package/src/models/IntersectionLeadDtoWithListFieldsDto.ts +1 -0
- package/src/models/LeadMessageDto.ts +1 -0
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @randock/nameshift-api-client@0.0.
|
|
1
|
+
## @randock/nameshift-api-client@0.0.95
|
|
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.95 --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
|
+
0730c49193b8d29a0f5ada4191b390cdf4d43d2d7f900dcec5fad96c705b3cdbb830d9074fa4ba92dbbbda584f2c4dce
|
|
@@ -144,6 +144,7 @@ export type IntersectionLeadDtoWithListFieldsDtoLastMessageFromEnum = typeof Int
|
|
|
144
144
|
*/
|
|
145
145
|
export declare const IntersectionLeadDtoWithListFieldsDtoLastMessageTypeEnum: {
|
|
146
146
|
readonly OFFER: "offer";
|
|
147
|
+
readonly OFFER_ACCEPTED: "offer_accepted";
|
|
147
148
|
readonly OFFER_WITHDRAWN: "offer_withdrawn";
|
|
148
149
|
readonly OFFER_REJECTED: "offer_rejected";
|
|
149
150
|
readonly MESSAGE: "message";
|
|
@@ -53,6 +53,7 @@ exports.IntersectionLeadDtoWithListFieldsDtoLastMessageFromEnum = {
|
|
|
53
53
|
*/
|
|
54
54
|
exports.IntersectionLeadDtoWithListFieldsDtoLastMessageTypeEnum = {
|
|
55
55
|
OFFER: 'offer',
|
|
56
|
+
OFFER_ACCEPTED: 'offer_accepted',
|
|
56
57
|
OFFER_WITHDRAWN: 'offer_withdrawn',
|
|
57
58
|
OFFER_REJECTED: 'offer_rejected',
|
|
58
59
|
MESSAGE: 'message'
|
|
@@ -76,6 +76,7 @@ export interface LeadMessageDto {
|
|
|
76
76
|
*/
|
|
77
77
|
export declare const LeadMessageDtoTypeEnum: {
|
|
78
78
|
readonly OFFER: "offer";
|
|
79
|
+
readonly OFFER_ACCEPTED: "offer_accepted";
|
|
79
80
|
readonly OFFER_WITHDRAWN: "offer_withdrawn";
|
|
80
81
|
readonly OFFER_REJECTED: "offer_rejected";
|
|
81
82
|
readonly MESSAGE: "message";
|
package/package.json
CHANGED
|
@@ -169,6 +169,7 @@ export type IntersectionLeadDtoWithListFieldsDtoLastMessageFromEnum = typeof Int
|
|
|
169
169
|
*/
|
|
170
170
|
export const IntersectionLeadDtoWithListFieldsDtoLastMessageTypeEnum = {
|
|
171
171
|
OFFER: 'offer',
|
|
172
|
+
OFFER_ACCEPTED: 'offer_accepted',
|
|
172
173
|
OFFER_WITHDRAWN: 'offer_withdrawn',
|
|
173
174
|
OFFER_REJECTED: 'offer_rejected',
|
|
174
175
|
MESSAGE: 'message'
|