@randock/nameshift-api-client 0.0.153 → 0.0.154

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.153
1
+ ## @randock/nameshift-api-client@0.0.154
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.153 --save
39
+ npm install @randock/nameshift-api-client@0.0.154 --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
- 3fd3f500169d8a48862a37f780be7da30ec535d90ec2a7aa0eb31ce0f8347761aaba9bac7054d82f8493b83b5a3d2316
47
+ 08dbef55cac20a164c2497cc3a9480b866b519266bb3750371edd070a84bd6d67bc4db7cde7cbc3e98d546aa5b28d8d6
@@ -28,6 +28,12 @@ export interface AccountSettingsInput {
28
28
  * @memberof AccountSettingsInput
29
29
  */
30
30
  defaultCurrencyCode?: string;
31
+ /**
32
+ *
33
+ * @type {string}
34
+ * @memberof AccountSettingsInput
35
+ */
36
+ sidnIdcode?: string;
31
37
  }
32
38
  /**
33
39
  * Check if a given object implements the AccountSettingsInput interface.
@@ -35,6 +35,7 @@ function AccountSettingsInputFromJSONTyped(json, ignoreDiscriminator) {
35
35
  return {
36
36
  'defaultStartingOffer': json['defaultStartingOffer'] == null ? undefined : (0, MoneyDto_1.MoneyDtoFromJSON)(json['defaultStartingOffer']),
37
37
  'defaultCurrencyCode': json['defaultCurrencyCode'] == null ? undefined : json['defaultCurrencyCode'],
38
+ 'sidnIdcode': json['sidnIdcode'] == null ? undefined : json['sidnIdcode'],
38
39
  };
39
40
  }
40
41
  function AccountSettingsInputToJSON(json) {
@@ -48,5 +49,6 @@ function AccountSettingsInputToJSONTyped(value, ignoreDiscriminator) {
48
49
  return {
49
50
  'defaultStartingOffer': (0, MoneyDto_1.MoneyDtoToJSON)(value['defaultStartingOffer']),
50
51
  'defaultCurrencyCode': value['defaultCurrencyCode'],
52
+ 'sidnIdcode': value['sidnIdcode'],
51
53
  };
52
54
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randock/nameshift-api-client",
3
- "version": "0.0.153",
3
+ "version": "0.0.154",
4
4
  "description": "OpenAPI client for @randock/nameshift-api-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -39,6 +39,12 @@ export interface AccountSettingsInput {
39
39
  * @memberof AccountSettingsInput
40
40
  */
41
41
  defaultCurrencyCode?: string;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof AccountSettingsInput
46
+ */
47
+ sidnIdcode?: string;
42
48
  }
43
49
 
44
50
  /**
@@ -60,6 +66,7 @@ export function AccountSettingsInputFromJSONTyped(json: any, ignoreDiscriminator
60
66
 
61
67
  'defaultStartingOffer': json['defaultStartingOffer'] == null ? undefined : MoneyDtoFromJSON(json['defaultStartingOffer']),
62
68
  'defaultCurrencyCode': json['defaultCurrencyCode'] == null ? undefined : json['defaultCurrencyCode'],
69
+ 'sidnIdcode': json['sidnIdcode'] == null ? undefined : json['sidnIdcode'],
63
70
  };
64
71
  }
65
72
 
@@ -76,6 +83,7 @@ export function AccountSettingsInputFromJSONTyped(json: any, ignoreDiscriminator
76
83
 
77
84
  'defaultStartingOffer': MoneyDtoToJSON(value['defaultStartingOffer']),
78
85
  'defaultCurrencyCode': value['defaultCurrencyCode'],
86
+ 'sidnIdcode': value['sidnIdcode'],
79
87
  };
80
88
  }
81
89