@randock/nameshift-api-client 0.0.396 → 0.0.397

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.396
1
+ ## @randock/nameshift-api-client@0.0.397
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.396 --save
39
+ npm install @randock/nameshift-api-client@0.0.397 --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
- 180d2bdc7565cd5cadb1e2655181eb91493a18b893d66da6890e51415260c8e6b2b7cdb76f0837597de674fc14f108c5
47
+ 582690c719875a7b8b63fa164d06ca2cb0ab4f64886b99a254b06266cc50c828a1ea71a2f6b91125f56cc3528abbd788
@@ -27,18 +27,6 @@ export interface AuctionsStatsDto {
27
27
  * @memberof AuctionsStatsDto
28
28
  */
29
29
  totalAuctionsCount: number;
30
- /**
31
- * Number of finished auctions that ended with a sale (had a bid)
32
- * @type {number}
33
- * @memberof AuctionsStatsDto
34
- */
35
- finishedAuctionsWithSaleCount: number;
36
- /**
37
- * Number of finished auctions that ended without a sale (no bid)
38
- * @type {number}
39
- * @memberof AuctionsStatsDto
40
- */
41
- finishedAuctionsWithoutSaleCount: number;
42
30
  /**
43
31
  * Total number of distinct accounts that use paid auctions
44
32
  * @type {number}
@@ -26,10 +26,6 @@ function instanceOfAuctionsStatsDto(value) {
26
26
  return false;
27
27
  if (!('totalAuctionsCount' in value) || value['totalAuctionsCount'] === undefined)
28
28
  return false;
29
- if (!('finishedAuctionsWithSaleCount' in value) || value['finishedAuctionsWithSaleCount'] === undefined)
30
- return false;
31
- if (!('finishedAuctionsWithoutSaleCount' in value) || value['finishedAuctionsWithoutSaleCount'] === undefined)
32
- return false;
33
29
  if (!('accountsUsingPaidAuctionsCount' in value) || value['accountsUsingPaidAuctionsCount'] === undefined)
34
30
  return false;
35
31
  return true;
@@ -44,8 +40,6 @@ function AuctionsStatsDtoFromJSONTyped(json, ignoreDiscriminator) {
44
40
  return {
45
41
  'paidAuctionsCount': json['paidAuctionsCount'],
46
42
  'totalAuctionsCount': json['totalAuctionsCount'],
47
- 'finishedAuctionsWithSaleCount': json['finishedAuctionsWithSaleCount'],
48
- 'finishedAuctionsWithoutSaleCount': json['finishedAuctionsWithoutSaleCount'],
49
43
  'accountsUsingPaidAuctionsCount': json['accountsUsingPaidAuctionsCount'],
50
44
  };
51
45
  }
@@ -60,8 +54,6 @@ function AuctionsStatsDtoToJSONTyped(value, ignoreDiscriminator) {
60
54
  return {
61
55
  'paidAuctionsCount': value['paidAuctionsCount'],
62
56
  'totalAuctionsCount': value['totalAuctionsCount'],
63
- 'finishedAuctionsWithSaleCount': value['finishedAuctionsWithSaleCount'],
64
- 'finishedAuctionsWithoutSaleCount': value['finishedAuctionsWithoutSaleCount'],
65
57
  'accountsUsingPaidAuctionsCount': value['accountsUsingPaidAuctionsCount'],
66
58
  };
67
59
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randock/nameshift-api-client",
3
- "version": "0.0.396",
3
+ "version": "0.0.397",
4
4
  "description": "OpenAPI client for @randock/nameshift-api-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -31,18 +31,6 @@ export interface AuctionsStatsDto {
31
31
  * @memberof AuctionsStatsDto
32
32
  */
33
33
  totalAuctionsCount: number;
34
- /**
35
- * Number of finished auctions that ended with a sale (had a bid)
36
- * @type {number}
37
- * @memberof AuctionsStatsDto
38
- */
39
- finishedAuctionsWithSaleCount: number;
40
- /**
41
- * Number of finished auctions that ended without a sale (no bid)
42
- * @type {number}
43
- * @memberof AuctionsStatsDto
44
- */
45
- finishedAuctionsWithoutSaleCount: number;
46
34
  /**
47
35
  * Total number of distinct accounts that use paid auctions
48
36
  * @type {number}
@@ -57,8 +45,6 @@ export interface AuctionsStatsDto {
57
45
  export function instanceOfAuctionsStatsDto(value: object): value is AuctionsStatsDto {
58
46
  if (!('paidAuctionsCount' in value) || value['paidAuctionsCount'] === undefined) return false;
59
47
  if (!('totalAuctionsCount' in value) || value['totalAuctionsCount'] === undefined) return false;
60
- if (!('finishedAuctionsWithSaleCount' in value) || value['finishedAuctionsWithSaleCount'] === undefined) return false;
61
- if (!('finishedAuctionsWithoutSaleCount' in value) || value['finishedAuctionsWithoutSaleCount'] === undefined) return false;
62
48
  if (!('accountsUsingPaidAuctionsCount' in value) || value['accountsUsingPaidAuctionsCount'] === undefined) return false;
63
49
  return true;
64
50
  }
@@ -75,8 +61,6 @@ export function AuctionsStatsDtoFromJSONTyped(json: any, ignoreDiscriminator: bo
75
61
 
76
62
  'paidAuctionsCount': json['paidAuctionsCount'],
77
63
  'totalAuctionsCount': json['totalAuctionsCount'],
78
- 'finishedAuctionsWithSaleCount': json['finishedAuctionsWithSaleCount'],
79
- 'finishedAuctionsWithoutSaleCount': json['finishedAuctionsWithoutSaleCount'],
80
64
  'accountsUsingPaidAuctionsCount': json['accountsUsingPaidAuctionsCount'],
81
65
  };
82
66
  }
@@ -94,8 +78,6 @@ export function AuctionsStatsDtoToJSONTyped(value?: AuctionsStatsDto | null, ign
94
78
 
95
79
  'paidAuctionsCount': value['paidAuctionsCount'],
96
80
  'totalAuctionsCount': value['totalAuctionsCount'],
97
- 'finishedAuctionsWithSaleCount': value['finishedAuctionsWithSaleCount'],
98
- 'finishedAuctionsWithoutSaleCount': value['finishedAuctionsWithoutSaleCount'],
99
81
  'accountsUsingPaidAuctionsCount': value['accountsUsingPaidAuctionsCount'],
100
82
  };
101
83
  }