keplar-api 0.0.7 → 0.0.8

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
- ## keplar-api@0.0.7
1
+ ## keplar-api@0.0.8
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 keplar-api@0.0.7 --save
39
+ npm install keplar-api@0.0.8 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -21,6 +21,12 @@ export interface ResponseConsentEvent {
21
21
  * @memberof ResponseConsentEvent
22
22
  */
23
23
  type: ResponseConsentEventTypeEnum;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof ResponseConsentEvent
28
+ */
29
+ email?: string;
24
30
  }
25
31
  /**
26
32
  * @export
@@ -42,6 +42,7 @@ function ResponseConsentEventFromJSONTyped(json, ignoreDiscriminator) {
42
42
  }
43
43
  return {
44
44
  'type': json['type'],
45
+ 'email': json['email'] == null ? undefined : json['email'],
45
46
  };
46
47
  }
47
48
  function ResponseConsentEventToJSON(json) {
@@ -54,5 +55,6 @@ function ResponseConsentEventToJSONTyped(value, ignoreDiscriminator) {
54
55
  }
55
56
  return {
56
57
  'type': value['type'],
58
+ 'email': value['email'],
57
59
  };
58
60
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keplar-api",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "OpenAPI client for keplar-api",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -25,6 +25,12 @@ export interface ResponseConsentEvent {
25
25
  * @memberof ResponseConsentEvent
26
26
  */
27
27
  type: ResponseConsentEventTypeEnum;
28
+ /**
29
+ *
30
+ * @type {string}
31
+ * @memberof ResponseConsentEvent
32
+ */
33
+ email?: string;
28
34
  }
29
35
 
30
36
 
@@ -56,6 +62,7 @@ export function ResponseConsentEventFromJSONTyped(json: any, ignoreDiscriminator
56
62
  return {
57
63
 
58
64
  'type': json['type'],
65
+ 'email': json['email'] == null ? undefined : json['email'],
59
66
  };
60
67
  }
61
68
 
@@ -71,6 +78,7 @@ export function ResponseConsentEventToJSONTyped(value?: ResponseConsentEvent | n
71
78
  return {
72
79
 
73
80
  'type': value['type'],
81
+ 'email': value['email'],
74
82
  };
75
83
  }
76
84