@randock/nameshift-api-client 0.0.96 → 0.0.97

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.96
1
+ ## @randock/nameshift-api-client@0.0.97
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.96 --save
39
+ npm install @randock/nameshift-api-client@0.0.97 --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
- 2f97265201b4e7c71765cedf4c38792244e5f472a421a39926a0d93ab4cd7e0227b406d8f5987b08fb342de2cbe30b50
47
+ acb49cadda533eb11a45deb149fc5e5a13706274ef12ce1128454bf4ee2b79abc7f08ab0e96a33be177c756e829fe5c3
@@ -58,12 +58,6 @@ export interface CreateLeadInput {
58
58
  * @memberof CreateLeadInput
59
59
  */
60
60
  email: string;
61
- /**
62
- *
63
- * @type {string}
64
- * @memberof CreateLeadInput
65
- */
66
- companyName: string | null;
67
61
  }
68
62
  /**
69
63
  * @export
@@ -45,8 +45,6 @@ function instanceOfCreateLeadInput(value) {
45
45
  return false;
46
46
  if (!('email' in value) || value['email'] === undefined)
47
47
  return false;
48
- if (!('companyName' in value) || value['companyName'] === undefined)
49
- return false;
50
48
  return true;
51
49
  }
52
50
  function CreateLeadInputFromJSON(json) {
@@ -64,7 +62,6 @@ function CreateLeadInputFromJSONTyped(json, ignoreDiscriminator) {
64
62
  'firstname': json['firstname'],
65
63
  'lastname': json['lastname'],
66
64
  'email': json['email'],
67
- 'companyName': json['companyName'],
68
65
  };
69
66
  }
70
67
  function CreateLeadInputToJSON(value) {
@@ -79,6 +76,5 @@ function CreateLeadInputToJSON(value) {
79
76
  'firstname': value['firstname'],
80
77
  'lastname': value['lastname'],
81
78
  'email': value['email'],
82
- 'companyName': value['companyName'],
83
79
  };
84
80
  }
@@ -33,12 +33,6 @@ export interface UpdateLeadInput {
33
33
  * @memberof UpdateLeadInput
34
34
  */
35
35
  email: string;
36
- /**
37
- *
38
- * @type {string}
39
- * @memberof UpdateLeadInput
40
- */
41
- companyName: string | null;
42
36
  }
43
37
  /**
44
38
  * Check if a given object implements the UpdateLeadInput interface.
@@ -27,8 +27,6 @@ function instanceOfUpdateLeadInput(value) {
27
27
  return false;
28
28
  if (!('email' in value) || value['email'] === undefined)
29
29
  return false;
30
- if (!('companyName' in value) || value['companyName'] === undefined)
31
- return false;
32
30
  return true;
33
31
  }
34
32
  function UpdateLeadInputFromJSON(json) {
@@ -42,7 +40,6 @@ function UpdateLeadInputFromJSONTyped(json, ignoreDiscriminator) {
42
40
  'firstname': json['firstname'],
43
41
  'lastname': json['lastname'],
44
42
  'email': json['email'],
45
- 'companyName': json['companyName'],
46
43
  };
47
44
  }
48
45
  function UpdateLeadInputToJSON(value) {
@@ -53,6 +50,5 @@ function UpdateLeadInputToJSON(value) {
53
50
  'firstname': value['firstname'],
54
51
  'lastname': value['lastname'],
55
52
  'email': value['email'],
56
- 'companyName': value['companyName'],
57
53
  };
58
54
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randock/nameshift-api-client",
3
- "version": "0.0.96",
3
+ "version": "0.0.97",
4
4
  "description": "OpenAPI client for @randock/nameshift-api-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -68,12 +68,6 @@ export interface CreateLeadInput {
68
68
  * @memberof CreateLeadInput
69
69
  */
70
70
  email: string;
71
- /**
72
- *
73
- * @type {string}
74
- * @memberof CreateLeadInput
75
- */
76
- companyName: string | null;
77
71
  }
78
72
 
79
73
 
@@ -99,7 +93,6 @@ export function instanceOfCreateLeadInput(value: object): value is CreateLeadInp
99
93
  if (!('firstname' in value) || value['firstname'] === undefined) return false;
100
94
  if (!('lastname' in value) || value['lastname'] === undefined) return false;
101
95
  if (!('email' in value) || value['email'] === undefined) return false;
102
- if (!('companyName' in value) || value['companyName'] === undefined) return false;
103
96
  return true;
104
97
  }
105
98
 
@@ -120,7 +113,6 @@ export function CreateLeadInputFromJSONTyped(json: any, ignoreDiscriminator: boo
120
113
  'firstname': json['firstname'],
121
114
  'lastname': json['lastname'],
122
115
  'email': json['email'],
123
- 'companyName': json['companyName'],
124
116
  };
125
117
  }
126
118
 
@@ -137,7 +129,6 @@ export function CreateLeadInputToJSON(value?: CreateLeadInput | null): any {
137
129
  'firstname': value['firstname'],
138
130
  'lastname': value['lastname'],
139
131
  'email': value['email'],
140
- 'companyName': value['companyName'],
141
132
  };
142
133
  }
143
134
 
@@ -37,12 +37,6 @@ export interface UpdateLeadInput {
37
37
  * @memberof UpdateLeadInput
38
38
  */
39
39
  email: string;
40
- /**
41
- *
42
- * @type {string}
43
- * @memberof UpdateLeadInput
44
- */
45
- companyName: string | null;
46
40
  }
47
41
 
48
42
  /**
@@ -52,7 +46,6 @@ export function instanceOfUpdateLeadInput(value: object): value is UpdateLeadInp
52
46
  if (!('firstname' in value) || value['firstname'] === undefined) return false;
53
47
  if (!('lastname' in value) || value['lastname'] === undefined) return false;
54
48
  if (!('email' in value) || value['email'] === undefined) return false;
55
- if (!('companyName' in value) || value['companyName'] === undefined) return false;
56
49
  return true;
57
50
  }
58
51
 
@@ -69,7 +62,6 @@ export function UpdateLeadInputFromJSONTyped(json: any, ignoreDiscriminator: boo
69
62
  'firstname': json['firstname'],
70
63
  'lastname': json['lastname'],
71
64
  'email': json['email'],
72
- 'companyName': json['companyName'],
73
65
  };
74
66
  }
75
67
 
@@ -82,7 +74,6 @@ export function UpdateLeadInputToJSON(value?: UpdateLeadInput | null): any {
82
74
  'firstname': value['firstname'],
83
75
  'lastname': value['lastname'],
84
76
  'email': value['email'],
85
- 'companyName': value['companyName'],
86
77
  };
87
78
  }
88
79