@randock/nameshift-api-client 0.0.172 → 0.0.173
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.
|
|
1
|
+
## @randock/nameshift-api-client@0.0.173
|
|
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.173 --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
|
+
f13f78bd05a7946ac71984a731b3a5ba23b6ed30c5d3c606747e5b7f83bd7345d7eb986f998416b3e0d77bb8af049758
|
|
@@ -83,6 +83,7 @@ export type IntersectionTaskListTaskDtoPriorityEnum = typeof IntersectionTaskLis
|
|
|
83
83
|
export declare const IntersectionTaskListTaskDtoTypeEnum: {
|
|
84
84
|
readonly LEAD: "lead";
|
|
85
85
|
readonly DOMAIN_TRANSFER: "domain_transfer";
|
|
86
|
+
readonly ORDER: "order";
|
|
86
87
|
};
|
|
87
88
|
export type IntersectionTaskListTaskDtoTypeEnum = typeof IntersectionTaskListTaskDtoTypeEnum[keyof typeof IntersectionTaskListTaskDtoTypeEnum];
|
|
88
89
|
/**
|
|
@@ -36,7 +36,8 @@ exports.IntersectionTaskListTaskDtoPriorityEnum = {
|
|
|
36
36
|
*/
|
|
37
37
|
exports.IntersectionTaskListTaskDtoTypeEnum = {
|
|
38
38
|
LEAD: 'lead',
|
|
39
|
-
DOMAIN_TRANSFER: 'domain_transfer'
|
|
39
|
+
DOMAIN_TRANSFER: 'domain_transfer',
|
|
40
|
+
ORDER: 'order'
|
|
40
41
|
};
|
|
41
42
|
/**
|
|
42
43
|
* Check if a given object implements the IntersectionTaskListTaskDto interface.
|
package/package.json
CHANGED
|
@@ -114,7 +114,8 @@ export type IntersectionTaskListTaskDtoPriorityEnum = typeof IntersectionTaskLis
|
|
|
114
114
|
*/
|
|
115
115
|
export const IntersectionTaskListTaskDtoTypeEnum = {
|
|
116
116
|
LEAD: 'lead',
|
|
117
|
-
DOMAIN_TRANSFER: 'domain_transfer'
|
|
117
|
+
DOMAIN_TRANSFER: 'domain_transfer',
|
|
118
|
+
ORDER: 'order'
|
|
118
119
|
} as const;
|
|
119
120
|
export type IntersectionTaskListTaskDtoTypeEnum = typeof IntersectionTaskListTaskDtoTypeEnum[keyof typeof IntersectionTaskListTaskDtoTypeEnum];
|
|
120
121
|
|