@lwshen/vault-hub-ts-fetch-client 1.2.2 → 1.2.4

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
- ## @lwshen/vault-hub-ts-fetch-client@v1.2.2
1
+ ## @lwshen/vault-hub-ts-fetch-client@v1.2.4
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 @lwshen/vault-hub-ts-fetch-client@v1.2.2 --save
39
+ npm install @lwshen/vault-hub-ts-fetch-client@v1.2.4 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -33,12 +33,6 @@ export interface UpdateAPIKeyRequest {
33
33
  * @memberof UpdateAPIKeyRequest
34
34
  */
35
35
  expiresAt?: Date;
36
- /**
37
- * Enable or disable the API key
38
- * @type {boolean}
39
- * @memberof UpdateAPIKeyRequest
40
- */
41
- isActive?: boolean;
42
36
  }
43
37
  /**
44
38
  * Check if a given object implements the UpdateAPIKeyRequest interface.
@@ -35,7 +35,6 @@ function UpdateAPIKeyRequestFromJSONTyped(json, ignoreDiscriminator) {
35
35
  'name': json['name'] == null ? undefined : json['name'],
36
36
  'vaultUniqueIds': json['vaultUniqueIds'] == null ? undefined : json['vaultUniqueIds'],
37
37
  'expiresAt': json['expiresAt'] == null ? undefined : (new Date(json['expiresAt'])),
38
- 'isActive': json['isActive'] == null ? undefined : json['isActive'],
39
38
  };
40
39
  }
41
40
  function UpdateAPIKeyRequestToJSON(json) {
@@ -50,6 +49,5 @@ function UpdateAPIKeyRequestToJSONTyped(value, ignoreDiscriminator) {
50
49
  'name': value['name'],
51
50
  'vaultUniqueIds': value['vaultUniqueIds'],
52
51
  'expiresAt': value['expiresAt'] == null ? undefined : ((value['expiresAt']).toISOString()),
53
- 'isActive': value['isActive'],
54
52
  };
55
53
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lwshen/vault-hub-ts-fetch-client",
3
- "version": "v1.2.2",
3
+ "version": "v1.2.4",
4
4
  "description": "OpenAPI client for @lwshen/vault-hub-ts-fetch-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -37,12 +37,6 @@ export interface UpdateAPIKeyRequest {
37
37
  * @memberof UpdateAPIKeyRequest
38
38
  */
39
39
  expiresAt?: Date;
40
- /**
41
- * Enable or disable the API key
42
- * @type {boolean}
43
- * @memberof UpdateAPIKeyRequest
44
- */
45
- isActive?: boolean;
46
40
  }
47
41
 
48
42
  /**
@@ -65,7 +59,6 @@ export function UpdateAPIKeyRequestFromJSONTyped(json: any, ignoreDiscriminator:
65
59
  'name': json['name'] == null ? undefined : json['name'],
66
60
  'vaultUniqueIds': json['vaultUniqueIds'] == null ? undefined : json['vaultUniqueIds'],
67
61
  'expiresAt': json['expiresAt'] == null ? undefined : (new Date(json['expiresAt'])),
68
- 'isActive': json['isActive'] == null ? undefined : json['isActive'],
69
62
  };
70
63
  }
71
64
 
@@ -83,7 +76,6 @@ export function UpdateAPIKeyRequestToJSONTyped(value?: UpdateAPIKeyRequest | nul
83
76
  'name': value['name'],
84
77
  'vaultUniqueIds': value['vaultUniqueIds'],
85
78
  'expiresAt': value['expiresAt'] == null ? undefined : ((value['expiresAt']).toISOString()),
86
- 'isActive': value['isActive'],
87
79
  };
88
80
  }
89
81