@randock/nameshift-api-client 0.0.291 → 0.0.292
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.
|
|
1
|
+
## @randock/nameshift-api-client@0.0.292
|
|
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.
|
|
39
|
+
npm install @randock/nameshift-api-client@0.0.292 --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
|
-
|
|
47
|
+
7e7b7094a2d0fe8670a9f724a95b94592400b4a3feafe3b6523be5ff5d39445ae8ed3fa3a0f49df3ce206ff7e6834670
|
|
@@ -15,6 +15,12 @@
|
|
|
15
15
|
* @interface RegisterAccountInput
|
|
16
16
|
*/
|
|
17
17
|
export interface RegisterAccountInput {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof RegisterAccountInput
|
|
22
|
+
*/
|
|
23
|
+
affiliateIdentifier?: string | null;
|
|
18
24
|
/**
|
|
19
25
|
*
|
|
20
26
|
* @type {string}
|
|
@@ -69,12 +75,6 @@ export interface RegisterAccountInput {
|
|
|
69
75
|
* @memberof RegisterAccountInput
|
|
70
76
|
*/
|
|
71
77
|
timezone?: string;
|
|
72
|
-
/**
|
|
73
|
-
*
|
|
74
|
-
* @type {object}
|
|
75
|
-
* @memberof RegisterAccountInput
|
|
76
|
-
*/
|
|
77
|
-
affiliateIdentifier?: object | null;
|
|
78
78
|
}
|
|
79
79
|
/**
|
|
80
80
|
* @export
|
|
@@ -51,6 +51,7 @@ function RegisterAccountInputFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
51
51
|
return json;
|
|
52
52
|
}
|
|
53
53
|
return {
|
|
54
|
+
'affiliateIdentifier': json['affiliateIdentifier'] == null ? undefined : json['affiliateIdentifier'],
|
|
54
55
|
'locale': json['locale'],
|
|
55
56
|
'firstname': json['firstname'],
|
|
56
57
|
'lastname': json['lastname'],
|
|
@@ -60,7 +61,6 @@ function RegisterAccountInputFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
60
61
|
'adProgram': json['adProgram'] == null ? undefined : json['adProgram'],
|
|
61
62
|
'adId': json['adId'] == null ? undefined : json['adId'],
|
|
62
63
|
'timezone': json['timezone'] == null ? undefined : json['timezone'],
|
|
63
|
-
'affiliateIdentifier': json['affiliateIdentifier'] == null ? undefined : json['affiliateIdentifier'],
|
|
64
64
|
};
|
|
65
65
|
}
|
|
66
66
|
function RegisterAccountInputToJSON(json) {
|
|
@@ -72,6 +72,7 @@ function RegisterAccountInputToJSONTyped(value, ignoreDiscriminator) {
|
|
|
72
72
|
return value;
|
|
73
73
|
}
|
|
74
74
|
return {
|
|
75
|
+
'affiliateIdentifier': value['affiliateIdentifier'],
|
|
75
76
|
'locale': value['locale'],
|
|
76
77
|
'firstname': value['firstname'],
|
|
77
78
|
'lastname': value['lastname'],
|
|
@@ -81,6 +82,5 @@ function RegisterAccountInputToJSONTyped(value, ignoreDiscriminator) {
|
|
|
81
82
|
'adProgram': value['adProgram'],
|
|
82
83
|
'adId': value['adId'],
|
|
83
84
|
'timezone': value['timezone'],
|
|
84
|
-
'affiliateIdentifier': value['affiliateIdentifier'],
|
|
85
85
|
};
|
|
86
86
|
}
|
package/package.json
CHANGED
|
@@ -19,6 +19,12 @@ import { mapValues } from '../runtime';
|
|
|
19
19
|
* @interface RegisterAccountInput
|
|
20
20
|
*/
|
|
21
21
|
export interface RegisterAccountInput {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof RegisterAccountInput
|
|
26
|
+
*/
|
|
27
|
+
affiliateIdentifier?: string | null;
|
|
22
28
|
/**
|
|
23
29
|
*
|
|
24
30
|
* @type {string}
|
|
@@ -73,12 +79,6 @@ export interface RegisterAccountInput {
|
|
|
73
79
|
* @memberof RegisterAccountInput
|
|
74
80
|
*/
|
|
75
81
|
timezone?: string;
|
|
76
|
-
/**
|
|
77
|
-
*
|
|
78
|
-
* @type {object}
|
|
79
|
-
* @memberof RegisterAccountInput
|
|
80
|
-
*/
|
|
81
|
-
affiliateIdentifier?: object | null;
|
|
82
82
|
}
|
|
83
83
|
|
|
84
84
|
|
|
@@ -115,6 +115,7 @@ export function RegisterAccountInputFromJSONTyped(json: any, ignoreDiscriminator
|
|
|
115
115
|
}
|
|
116
116
|
return {
|
|
117
117
|
|
|
118
|
+
'affiliateIdentifier': json['affiliateIdentifier'] == null ? undefined : json['affiliateIdentifier'],
|
|
118
119
|
'locale': json['locale'],
|
|
119
120
|
'firstname': json['firstname'],
|
|
120
121
|
'lastname': json['lastname'],
|
|
@@ -124,7 +125,6 @@ export function RegisterAccountInputFromJSONTyped(json: any, ignoreDiscriminator
|
|
|
124
125
|
'adProgram': json['adProgram'] == null ? undefined : json['adProgram'],
|
|
125
126
|
'adId': json['adId'] == null ? undefined : json['adId'],
|
|
126
127
|
'timezone': json['timezone'] == null ? undefined : json['timezone'],
|
|
127
|
-
'affiliateIdentifier': json['affiliateIdentifier'] == null ? undefined : json['affiliateIdentifier'],
|
|
128
128
|
};
|
|
129
129
|
}
|
|
130
130
|
|
|
@@ -139,6 +139,7 @@ export function RegisterAccountInputToJSONTyped(value?: RegisterAccountInput | n
|
|
|
139
139
|
|
|
140
140
|
return {
|
|
141
141
|
|
|
142
|
+
'affiliateIdentifier': value['affiliateIdentifier'],
|
|
142
143
|
'locale': value['locale'],
|
|
143
144
|
'firstname': value['firstname'],
|
|
144
145
|
'lastname': value['lastname'],
|
|
@@ -148,7 +149,6 @@ export function RegisterAccountInputToJSONTyped(value?: RegisterAccountInput | n
|
|
|
148
149
|
'adProgram': value['adProgram'],
|
|
149
150
|
'adId': value['adId'],
|
|
150
151
|
'timezone': value['timezone'],
|
|
151
|
-
'affiliateIdentifier': value['affiliateIdentifier'],
|
|
152
152
|
};
|
|
153
153
|
}
|
|
154
154
|
|