flexinet-api 0.0.465-prerelease0 → 0.0.469-prerelease0

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
- ## flexinet-api@0.0.465-prerelease0
1
+ ## flexinet-api@0.0.469-prerelease0
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). 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 flexinet-api@0.0.465-prerelease0 --save
39
+ npm install flexinet-api@0.0.469-prerelease0 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/api.ts CHANGED
@@ -175,6 +175,12 @@ export interface BalanceUpdateRequest {
175
175
  * @memberof BalanceUpdateRequest
176
176
  */
177
177
  'beneficiaryKind': BeneficiaryKind;
178
+ /**
179
+ *
180
+ * @type {TransactionKind}
181
+ * @memberof BalanceUpdateRequest
182
+ */
183
+ 'transactionKind'?: TransactionKind;
178
184
  }
179
185
 
180
186
 
@@ -5262,6 +5268,10 @@ export const OrderApiAxiosParamCreator = function (configuration?: Configuration
5262
5268
  const localVarHeaderParameter = {} as any;
5263
5269
  const localVarQueryParameter = {} as any;
5264
5270
 
5271
+ // authentication jwt required
5272
+ // http bearer authentication required
5273
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
5274
+
5265
5275
 
5266
5276
 
5267
5277
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -5376,6 +5386,10 @@ export const OrderApiAxiosParamCreator = function (configuration?: Configuration
5376
5386
  const localVarHeaderParameter = {} as any;
5377
5387
  const localVarQueryParameter = {} as any;
5378
5388
 
5389
+ // authentication jwt required
5390
+ // http bearer authentication required
5391
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
5392
+
5379
5393
  if (paginationToken !== undefined) {
5380
5394
  localVarQueryParameter['paginationToken'] = paginationToken;
5381
5395
  }
package/dist/api.d.ts CHANGED
@@ -158,6 +158,12 @@ export interface BalanceUpdateRequest {
158
158
  * @memberof BalanceUpdateRequest
159
159
  */
160
160
  'beneficiaryKind': BeneficiaryKind;
161
+ /**
162
+ *
163
+ * @type {TransactionKind}
164
+ * @memberof BalanceUpdateRequest
165
+ */
166
+ 'transactionKind'?: TransactionKind;
161
167
  }
162
168
  /**
163
169
  *
package/dist/api.js CHANGED
@@ -2247,6 +2247,9 @@ const OrderApiAxiosParamCreator = function (configuration) {
2247
2247
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
2248
2248
  const localVarHeaderParameter = {};
2249
2249
  const localVarQueryParameter = {};
2250
+ // authentication jwt required
2251
+ // http bearer authentication required
2252
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
2250
2253
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
2251
2254
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2252
2255
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -2342,6 +2345,9 @@ const OrderApiAxiosParamCreator = function (configuration) {
2342
2345
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
2343
2346
  const localVarHeaderParameter = {};
2344
2347
  const localVarQueryParameter = {};
2348
+ // authentication jwt required
2349
+ // http bearer authentication required
2350
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
2345
2351
  if (paginationToken !== undefined) {
2346
2352
  localVarQueryParameter['paginationToken'] = paginationToken;
2347
2353
  }
package/dist/esm/api.d.ts CHANGED
@@ -158,6 +158,12 @@ export interface BalanceUpdateRequest {
158
158
  * @memberof BalanceUpdateRequest
159
159
  */
160
160
  'beneficiaryKind': BeneficiaryKind;
161
+ /**
162
+ *
163
+ * @type {TransactionKind}
164
+ * @memberof BalanceUpdateRequest
165
+ */
166
+ 'transactionKind'?: TransactionKind;
161
167
  }
162
168
  /**
163
169
  *
package/dist/esm/api.js CHANGED
@@ -2206,6 +2206,9 @@ export const OrderApiAxiosParamCreator = function (configuration) {
2206
2206
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
2207
2207
  const localVarHeaderParameter = {};
2208
2208
  const localVarQueryParameter = {};
2209
+ // authentication jwt required
2210
+ // http bearer authentication required
2211
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
2209
2212
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2210
2213
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2211
2214
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -2301,6 +2304,9 @@ export const OrderApiAxiosParamCreator = function (configuration) {
2301
2304
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
2302
2305
  const localVarHeaderParameter = {};
2303
2306
  const localVarQueryParameter = {};
2307
+ // authentication jwt required
2308
+ // http bearer authentication required
2309
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
2304
2310
  if (paginationToken !== undefined) {
2305
2311
  localVarQueryParameter['paginationToken'] = paginationToken;
2306
2312
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flexinet-api",
3
- "version": "0.0.465-prerelease0",
3
+ "version": "0.0.469-prerelease0",
4
4
  "description": "OpenAPI client for flexinet-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {