@randock/nameshift-api-client 0.0.433 → 0.0.434

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.433
1
+ ## @randock/nameshift-api-client@0.0.434
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.433 --save
39
+ npm install @randock/nameshift-api-client@0.0.434 --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
- 87ef300a5de9fbd1c343994bd45dd3d7ffdd6ae9f17de4986f55e7ffef520001881355e40ba85bbad5820e7dbd17c410
47
+ 1f237760ed50f8bd92cc06ebdb34fc43eb6652cbd31e341203da9b624203782682bdd4de3bf0dedcbb33818c68a85e5f
@@ -28,6 +28,12 @@ export interface DomainStatsDto {
28
28
  * @memberof DomainStatsDto
29
29
  */
30
30
  scriptUrl: string;
31
+ /**
32
+ * The url for public stats for this website.
33
+ * @type {string}
34
+ * @memberof DomainStatsDto
35
+ */
36
+ hostUrl: string;
31
37
  /**
32
38
  * The url for public stats for this website.
33
39
  * @type {string}
@@ -35,6 +35,8 @@ function instanceOfDomainStatsDto(value) {
35
35
  return false;
36
36
  if (!('scriptUrl' in value) || value['scriptUrl'] === undefined)
37
37
  return false;
38
+ if (!('hostUrl' in value) || value['hostUrl'] === undefined)
39
+ return false;
38
40
  if (!('shareUrl' in value) || value['shareUrl'] === undefined)
39
41
  return false;
40
42
  if (!('chartUnit' in value) || value['chartUnit'] === undefined)
@@ -53,6 +55,7 @@ function DomainStatsDtoFromJSONTyped(json, ignoreDiscriminator) {
53
55
  return {
54
56
  'websiteId': json['websiteId'],
55
57
  'scriptUrl': json['scriptUrl'],
58
+ 'hostUrl': json['hostUrl'],
56
59
  'shareUrl': json['shareUrl'],
57
60
  'chartUnit': json['chartUnit'],
58
61
  'chartData': (json['chartData'] == null ? null : json['chartData'].map(ChartDataPoint_1.ChartDataPointFromJSON)),
@@ -69,6 +72,7 @@ function DomainStatsDtoToJSONTyped(value, ignoreDiscriminator) {
69
72
  return {
70
73
  'websiteId': value['websiteId'],
71
74
  'scriptUrl': value['scriptUrl'],
75
+ 'hostUrl': value['hostUrl'],
72
76
  'shareUrl': value['shareUrl'],
73
77
  'chartUnit': value['chartUnit'],
74
78
  'chartData': (value['chartData'] == null ? null : value['chartData'].map(ChartDataPoint_1.ChartDataPointToJSON)),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randock/nameshift-api-client",
3
- "version": "0.0.433",
3
+ "version": "0.0.434",
4
4
  "description": "OpenAPI client for @randock/nameshift-api-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -39,6 +39,12 @@ export interface DomainStatsDto {
39
39
  * @memberof DomainStatsDto
40
40
  */
41
41
  scriptUrl: string;
42
+ /**
43
+ * The url for public stats for this website.
44
+ * @type {string}
45
+ * @memberof DomainStatsDto
46
+ */
47
+ hostUrl: string;
42
48
  /**
43
49
  * The url for public stats for this website.
44
50
  * @type {string}
@@ -76,6 +82,7 @@ export type DomainStatsDtoChartUnitEnum = typeof DomainStatsDtoChartUnitEnum[key
76
82
  export function instanceOfDomainStatsDto(value: object): value is DomainStatsDto {
77
83
  if (!('websiteId' in value) || value['websiteId'] === undefined) return false;
78
84
  if (!('scriptUrl' in value) || value['scriptUrl'] === undefined) return false;
85
+ if (!('hostUrl' in value) || value['hostUrl'] === undefined) return false;
79
86
  if (!('shareUrl' in value) || value['shareUrl'] === undefined) return false;
80
87
  if (!('chartUnit' in value) || value['chartUnit'] === undefined) return false;
81
88
  if (!('chartData' in value) || value['chartData'] === undefined) return false;
@@ -94,6 +101,7 @@ export function DomainStatsDtoFromJSONTyped(json: any, ignoreDiscriminator: bool
94
101
 
95
102
  'websiteId': json['websiteId'],
96
103
  'scriptUrl': json['scriptUrl'],
104
+ 'hostUrl': json['hostUrl'],
97
105
  'shareUrl': json['shareUrl'],
98
106
  'chartUnit': json['chartUnit'],
99
107
  'chartData': (json['chartData'] == null ? null : (json['chartData'] as Array<any>).map(ChartDataPointFromJSON)),
@@ -113,6 +121,7 @@ export function DomainStatsDtoToJSONTyped(value?: DomainStatsDto | null, ignoreD
113
121
 
114
122
  'websiteId': value['websiteId'],
115
123
  'scriptUrl': value['scriptUrl'],
124
+ 'hostUrl': value['hostUrl'],
116
125
  'shareUrl': value['shareUrl'],
117
126
  'chartUnit': value['chartUnit'],
118
127
  'chartData': (value['chartData'] == null ? null : (value['chartData'] as Array<any>).map(ChartDataPointToJSON)),