@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230617.1 → 1.20230710.1
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/.openapi-generator/FILES +2 -0
- package/api/check-batches-api.ts +97 -0
- package/api/claim-adjudication-api.ts +6 -6
- package/api/user-api.ts +40 -11
- package/models/check-edit-result-list-vbaresponse.ts +45 -0
- package/models/check-edit-result.ts +60 -0
- package/models/index.ts +2 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -1141,6 +1141,8 @@ models/check-batch-list-vbaresponse.ts
|
|
|
1141
1141
|
models/check-batch-vbaresponse.ts
|
|
1142
1142
|
models/check-batch.ts
|
|
1143
1143
|
models/check-edit-list-vbaresponse.ts
|
|
1144
|
+
models/check-edit-result-list-vbaresponse.ts
|
|
1145
|
+
models/check-edit-result.ts
|
|
1144
1146
|
models/check-edit-set-detail-list-vbaresponse.ts
|
|
1145
1147
|
models/check-edit-set-detail-vbaresponse.ts
|
|
1146
1148
|
models/check-edit-set-detail.ts
|
package/api/check-batches-api.ts
CHANGED
|
@@ -27,6 +27,8 @@ import { CheckBatchListVBAResponse } from '../models';
|
|
|
27
27
|
// @ts-ignore
|
|
28
28
|
import { CheckBatchVBAResponse } from '../models';
|
|
29
29
|
// @ts-ignore
|
|
30
|
+
import { CheckEditResultListVBAResponse } from '../models';
|
|
31
|
+
// @ts-ignore
|
|
30
32
|
import { MultiCodeResponseListVBAResponse } from '../models';
|
|
31
33
|
/**
|
|
32
34
|
* CheckBatchesApi - axios parameter creator
|
|
@@ -34,6 +36,54 @@ import { MultiCodeResponseListVBAResponse } from '../models';
|
|
|
34
36
|
*/
|
|
35
37
|
export const CheckBatchesApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
36
38
|
return {
|
|
39
|
+
/**
|
|
40
|
+
* Runs all configured check edits based on Check Batch and returns the results of those edits.
|
|
41
|
+
* @summary CheckBatch CheckEdit
|
|
42
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
43
|
+
* @param {number} checkBatch Check Batch
|
|
44
|
+
* @param {*} [options] Override http request option.
|
|
45
|
+
* @throws {RequiredError}
|
|
46
|
+
*/
|
|
47
|
+
checkBatchCheckEdit: async (vbasoftwareDatabase: string, checkBatch: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
48
|
+
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
49
|
+
assertParamExists('checkBatchCheckEdit', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
50
|
+
// verify required parameter 'checkBatch' is not null or undefined
|
|
51
|
+
assertParamExists('checkBatchCheckEdit', 'checkBatch', checkBatch)
|
|
52
|
+
const localVarPath = `/check-batches-check-edit/{checkBatch}`
|
|
53
|
+
.replace(`{${"checkBatch"}}`, encodeURIComponent(String(checkBatch)));
|
|
54
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
55
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
56
|
+
let baseOptions;
|
|
57
|
+
if (configuration) {
|
|
58
|
+
baseOptions = configuration.baseOptions;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
62
|
+
const localVarHeaderParameter = {} as any;
|
|
63
|
+
const localVarQueryParameter = {} as any;
|
|
64
|
+
|
|
65
|
+
// authentication apiKeyAuth required
|
|
66
|
+
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
67
|
+
|
|
68
|
+
// authentication bearerAuth required
|
|
69
|
+
// http bearer authentication required
|
|
70
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
71
|
+
|
|
72
|
+
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
73
|
+
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
79
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
80
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
81
|
+
|
|
82
|
+
return {
|
|
83
|
+
url: toPathString(localVarUrlObj),
|
|
84
|
+
options: localVarRequestOptions,
|
|
85
|
+
};
|
|
86
|
+
},
|
|
37
87
|
/**
|
|
38
88
|
* Creates a new CheckBatch
|
|
39
89
|
* @summary Create CheckBatch
|
|
@@ -348,6 +398,18 @@ export const CheckBatchesApiAxiosParamCreator = function (configuration?: Config
|
|
|
348
398
|
export const CheckBatchesApiFp = function(configuration?: Configuration) {
|
|
349
399
|
const localVarAxiosParamCreator = CheckBatchesApiAxiosParamCreator(configuration)
|
|
350
400
|
return {
|
|
401
|
+
/**
|
|
402
|
+
* Runs all configured check edits based on Check Batch and returns the results of those edits.
|
|
403
|
+
* @summary CheckBatch CheckEdit
|
|
404
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
405
|
+
* @param {number} checkBatch Check Batch
|
|
406
|
+
* @param {*} [options] Override http request option.
|
|
407
|
+
* @throws {RequiredError}
|
|
408
|
+
*/
|
|
409
|
+
async checkBatchCheckEdit(vbasoftwareDatabase: string, checkBatch: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CheckEditResultListVBAResponse>> {
|
|
410
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.checkBatchCheckEdit(vbasoftwareDatabase, checkBatch, options);
|
|
411
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
412
|
+
},
|
|
351
413
|
/**
|
|
352
414
|
* Creates a new CheckBatch
|
|
353
415
|
* @summary Create CheckBatch
|
|
@@ -432,6 +494,17 @@ export const CheckBatchesApiFp = function(configuration?: Configuration) {
|
|
|
432
494
|
export const CheckBatchesApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
433
495
|
const localVarFp = CheckBatchesApiFp(configuration)
|
|
434
496
|
return {
|
|
497
|
+
/**
|
|
498
|
+
* Runs all configured check edits based on Check Batch and returns the results of those edits.
|
|
499
|
+
* @summary CheckBatch CheckEdit
|
|
500
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
501
|
+
* @param {number} checkBatch Check Batch
|
|
502
|
+
* @param {*} [options] Override http request option.
|
|
503
|
+
* @throws {RequiredError}
|
|
504
|
+
*/
|
|
505
|
+
checkBatchCheckEdit(vbasoftwareDatabase: string, checkBatch: number, options?: any): AxiosPromise<CheckEditResultListVBAResponse> {
|
|
506
|
+
return localVarFp.checkBatchCheckEdit(vbasoftwareDatabase, checkBatch, options).then((request) => request(axios, basePath));
|
|
507
|
+
},
|
|
435
508
|
/**
|
|
436
509
|
* Creates a new CheckBatch
|
|
437
510
|
* @summary Create CheckBatch
|
|
@@ -509,6 +582,17 @@ export const CheckBatchesApiFactory = function (configuration?: Configuration, b
|
|
|
509
582
|
* @interface CheckBatchesApi
|
|
510
583
|
*/
|
|
511
584
|
export interface CheckBatchesApiInterface {
|
|
585
|
+
/**
|
|
586
|
+
* Runs all configured check edits based on Check Batch and returns the results of those edits.
|
|
587
|
+
* @summary CheckBatch CheckEdit
|
|
588
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
589
|
+
* @param {number} checkBatch Check Batch
|
|
590
|
+
* @param {*} [options] Override http request option.
|
|
591
|
+
* @throws {RequiredError}
|
|
592
|
+
* @memberof CheckBatchesApiInterface
|
|
593
|
+
*/
|
|
594
|
+
checkBatchCheckEdit(vbasoftwareDatabase: string, checkBatch: number, options?: AxiosRequestConfig): AxiosPromise<CheckEditResultListVBAResponse>;
|
|
595
|
+
|
|
512
596
|
/**
|
|
513
597
|
* Creates a new CheckBatch
|
|
514
598
|
* @summary Create CheckBatch
|
|
@@ -586,6 +670,19 @@ export interface CheckBatchesApiInterface {
|
|
|
586
670
|
* @extends {BaseAPI}
|
|
587
671
|
*/
|
|
588
672
|
export class CheckBatchesApi extends BaseAPI implements CheckBatchesApiInterface {
|
|
673
|
+
/**
|
|
674
|
+
* Runs all configured check edits based on Check Batch and returns the results of those edits.
|
|
675
|
+
* @summary CheckBatch CheckEdit
|
|
676
|
+
* @param {string} vbasoftwareDatabase Target database
|
|
677
|
+
* @param {number} checkBatch Check Batch
|
|
678
|
+
* @param {*} [options] Override http request option.
|
|
679
|
+
* @throws {RequiredError}
|
|
680
|
+
* @memberof CheckBatchesApi
|
|
681
|
+
*/
|
|
682
|
+
public checkBatchCheckEdit(vbasoftwareDatabase: string, checkBatch: number, options?: AxiosRequestConfig) {
|
|
683
|
+
return CheckBatchesApiFp(this.configuration).checkBatchCheckEdit(vbasoftwareDatabase, checkBatch, options).then((request) => request(this.axios, this.basePath));
|
|
684
|
+
}
|
|
685
|
+
|
|
589
686
|
/**
|
|
590
687
|
* Creates a new CheckBatch
|
|
591
688
|
* @summary Create CheckBatch
|
|
@@ -54,7 +54,7 @@ export const ClaimAdjudicationApiAxiosParamCreator = function (configuration?: C
|
|
|
54
54
|
baseOptions = configuration.baseOptions;
|
|
55
55
|
}
|
|
56
56
|
|
|
57
|
-
const localVarRequestOptions = { method: '
|
|
57
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
58
58
|
const localVarHeaderParameter = {} as any;
|
|
59
59
|
const localVarQueryParameter = {} as any;
|
|
60
60
|
|
|
@@ -106,7 +106,7 @@ export const ClaimAdjudicationApiAxiosParamCreator = function (configuration?: C
|
|
|
106
106
|
baseOptions = configuration.baseOptions;
|
|
107
107
|
}
|
|
108
108
|
|
|
109
|
-
const localVarRequestOptions = { method: '
|
|
109
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
110
110
|
const localVarHeaderParameter = {} as any;
|
|
111
111
|
const localVarQueryParameter = {} as any;
|
|
112
112
|
|
|
@@ -154,7 +154,7 @@ export const ClaimAdjudicationApiAxiosParamCreator = function (configuration?: C
|
|
|
154
154
|
baseOptions = configuration.baseOptions;
|
|
155
155
|
}
|
|
156
156
|
|
|
157
|
-
const localVarRequestOptions = { method: '
|
|
157
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
158
158
|
const localVarHeaderParameter = {} as any;
|
|
159
159
|
const localVarQueryParameter = {} as any;
|
|
160
160
|
|
|
@@ -206,7 +206,7 @@ export const ClaimAdjudicationApiAxiosParamCreator = function (configuration?: C
|
|
|
206
206
|
baseOptions = configuration.baseOptions;
|
|
207
207
|
}
|
|
208
208
|
|
|
209
|
-
const localVarRequestOptions = { method: '
|
|
209
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
210
210
|
const localVarHeaderParameter = {} as any;
|
|
211
211
|
const localVarQueryParameter = {} as any;
|
|
212
212
|
|
|
@@ -258,7 +258,7 @@ export const ClaimAdjudicationApiAxiosParamCreator = function (configuration?: C
|
|
|
258
258
|
baseOptions = configuration.baseOptions;
|
|
259
259
|
}
|
|
260
260
|
|
|
261
|
-
const localVarRequestOptions = { method: '
|
|
261
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
262
262
|
const localVarHeaderParameter = {} as any;
|
|
263
263
|
const localVarQueryParameter = {} as any;
|
|
264
264
|
|
|
@@ -306,7 +306,7 @@ export const ClaimAdjudicationApiAxiosParamCreator = function (configuration?: C
|
|
|
306
306
|
baseOptions = configuration.baseOptions;
|
|
307
307
|
}
|
|
308
308
|
|
|
309
|
-
const localVarRequestOptions = { method: '
|
|
309
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
310
310
|
const localVarHeaderParameter = {} as any;
|
|
311
311
|
const localVarQueryParameter = {} as any;
|
|
312
312
|
|
package/api/user-api.ts
CHANGED
|
@@ -461,14 +461,23 @@ export const UserApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
461
461
|
/**
|
|
462
462
|
* Uses the Refresh Token to obtain new JWT tokens to extend the user\'s session.
|
|
463
463
|
* @summary Refresh User Tokens
|
|
464
|
+
* @param {string} vbasoftwareClientId Client ID
|
|
465
|
+
* @param {string} vbasoftwareClientCode Client Code
|
|
464
466
|
* @param {string} vbasoftwareDatabase Target database
|
|
467
|
+
* @param {string} expiredIdToken Expired Id Token
|
|
465
468
|
* @param {string} refreshToken Refresh Token
|
|
466
469
|
* @param {*} [options] Override http request option.
|
|
467
470
|
* @throws {RequiredError}
|
|
468
471
|
*/
|
|
469
|
-
refreshUserTokens: async (vbasoftwareDatabase: string, refreshToken: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
472
|
+
refreshUserTokens: async (vbasoftwareClientId: string, vbasoftwareClientCode: string, vbasoftwareDatabase: string, expiredIdToken: string, refreshToken: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
473
|
+
// verify required parameter 'vbasoftwareClientId' is not null or undefined
|
|
474
|
+
assertParamExists('refreshUserTokens', 'vbasoftwareClientId', vbasoftwareClientId)
|
|
475
|
+
// verify required parameter 'vbasoftwareClientCode' is not null or undefined
|
|
476
|
+
assertParamExists('refreshUserTokens', 'vbasoftwareClientCode', vbasoftwareClientCode)
|
|
470
477
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
471
478
|
assertParamExists('refreshUserTokens', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
479
|
+
// verify required parameter 'expiredIdToken' is not null or undefined
|
|
480
|
+
assertParamExists('refreshUserTokens', 'expiredIdToken', expiredIdToken)
|
|
472
481
|
// verify required parameter 'refreshToken' is not null or undefined
|
|
473
482
|
assertParamExists('refreshUserTokens', 'refreshToken', refreshToken)
|
|
474
483
|
const localVarPath = `/user-refresh-tokens`;
|
|
@@ -486,14 +495,22 @@ export const UserApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
486
495
|
// authentication apiKeyAuth required
|
|
487
496
|
await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
|
|
488
497
|
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
498
|
+
if (vbasoftwareClientId !== undefined && vbasoftwareClientId !== null) {
|
|
499
|
+
localVarHeaderParameter['vbasoftware-client-id'] = String(vbasoftwareClientId);
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
if (vbasoftwareClientCode !== undefined && vbasoftwareClientCode !== null) {
|
|
503
|
+
localVarHeaderParameter['vbasoftware-client-code'] = String(vbasoftwareClientCode);
|
|
504
|
+
}
|
|
492
505
|
|
|
493
506
|
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
494
507
|
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
495
508
|
}
|
|
496
509
|
|
|
510
|
+
if (expiredIdToken !== undefined && expiredIdToken !== null) {
|
|
511
|
+
localVarHeaderParameter['expired-id-token'] = String(expiredIdToken);
|
|
512
|
+
}
|
|
513
|
+
|
|
497
514
|
if (refreshToken !== undefined && refreshToken !== null) {
|
|
498
515
|
localVarHeaderParameter['refresh-token'] = String(refreshToken);
|
|
499
516
|
}
|
|
@@ -945,13 +962,16 @@ export const UserApiFp = function(configuration?: Configuration) {
|
|
|
945
962
|
/**
|
|
946
963
|
* Uses the Refresh Token to obtain new JWT tokens to extend the user\'s session.
|
|
947
964
|
* @summary Refresh User Tokens
|
|
965
|
+
* @param {string} vbasoftwareClientId Client ID
|
|
966
|
+
* @param {string} vbasoftwareClientCode Client Code
|
|
948
967
|
* @param {string} vbasoftwareDatabase Target database
|
|
968
|
+
* @param {string} expiredIdToken Expired Id Token
|
|
949
969
|
* @param {string} refreshToken Refresh Token
|
|
950
970
|
* @param {*} [options] Override http request option.
|
|
951
971
|
* @throws {RequiredError}
|
|
952
972
|
*/
|
|
953
|
-
async refreshUserTokens(vbasoftwareDatabase: string, refreshToken: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserAuthenticationResponseVBAResponse>> {
|
|
954
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.refreshUserTokens(vbasoftwareDatabase, refreshToken, options);
|
|
973
|
+
async refreshUserTokens(vbasoftwareClientId: string, vbasoftwareClientCode: string, vbasoftwareDatabase: string, expiredIdToken: string, refreshToken: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserAuthenticationResponseVBAResponse>> {
|
|
974
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.refreshUserTokens(vbasoftwareClientId, vbasoftwareClientCode, vbasoftwareDatabase, expiredIdToken, refreshToken, options);
|
|
955
975
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
956
976
|
},
|
|
957
977
|
/**
|
|
@@ -1135,13 +1155,16 @@ export const UserApiFactory = function (configuration?: Configuration, basePath?
|
|
|
1135
1155
|
/**
|
|
1136
1156
|
* Uses the Refresh Token to obtain new JWT tokens to extend the user\'s session.
|
|
1137
1157
|
* @summary Refresh User Tokens
|
|
1158
|
+
* @param {string} vbasoftwareClientId Client ID
|
|
1159
|
+
* @param {string} vbasoftwareClientCode Client Code
|
|
1138
1160
|
* @param {string} vbasoftwareDatabase Target database
|
|
1161
|
+
* @param {string} expiredIdToken Expired Id Token
|
|
1139
1162
|
* @param {string} refreshToken Refresh Token
|
|
1140
1163
|
* @param {*} [options] Override http request option.
|
|
1141
1164
|
* @throws {RequiredError}
|
|
1142
1165
|
*/
|
|
1143
|
-
refreshUserTokens(vbasoftwareDatabase: string, refreshToken: string, options?: any): AxiosPromise<UserAuthenticationResponseVBAResponse> {
|
|
1144
|
-
return localVarFp.refreshUserTokens(vbasoftwareDatabase, refreshToken, options).then((request) => request(axios, basePath));
|
|
1166
|
+
refreshUserTokens(vbasoftwareClientId: string, vbasoftwareClientCode: string, vbasoftwareDatabase: string, expiredIdToken: string, refreshToken: string, options?: any): AxiosPromise<UserAuthenticationResponseVBAResponse> {
|
|
1167
|
+
return localVarFp.refreshUserTokens(vbasoftwareClientId, vbasoftwareClientCode, vbasoftwareDatabase, expiredIdToken, refreshToken, options).then((request) => request(axios, basePath));
|
|
1145
1168
|
},
|
|
1146
1169
|
/**
|
|
1147
1170
|
* Create or Update multiple Users at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
@@ -1317,13 +1340,16 @@ export interface UserApiInterface {
|
|
|
1317
1340
|
/**
|
|
1318
1341
|
* Uses the Refresh Token to obtain new JWT tokens to extend the user\'s session.
|
|
1319
1342
|
* @summary Refresh User Tokens
|
|
1343
|
+
* @param {string} vbasoftwareClientId Client ID
|
|
1344
|
+
* @param {string} vbasoftwareClientCode Client Code
|
|
1320
1345
|
* @param {string} vbasoftwareDatabase Target database
|
|
1346
|
+
* @param {string} expiredIdToken Expired Id Token
|
|
1321
1347
|
* @param {string} refreshToken Refresh Token
|
|
1322
1348
|
* @param {*} [options] Override http request option.
|
|
1323
1349
|
* @throws {RequiredError}
|
|
1324
1350
|
* @memberof UserApiInterface
|
|
1325
1351
|
*/
|
|
1326
|
-
refreshUserTokens(vbasoftwareDatabase: string, refreshToken: string, options?: AxiosRequestConfig): AxiosPromise<UserAuthenticationResponseVBAResponse>;
|
|
1352
|
+
refreshUserTokens(vbasoftwareClientId: string, vbasoftwareClientCode: string, vbasoftwareDatabase: string, expiredIdToken: string, refreshToken: string, options?: AxiosRequestConfig): AxiosPromise<UserAuthenticationResponseVBAResponse>;
|
|
1327
1353
|
|
|
1328
1354
|
/**
|
|
1329
1355
|
* Create or Update multiple Users at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
@@ -1515,14 +1541,17 @@ export class UserApi extends BaseAPI implements UserApiInterface {
|
|
|
1515
1541
|
/**
|
|
1516
1542
|
* Uses the Refresh Token to obtain new JWT tokens to extend the user\'s session.
|
|
1517
1543
|
* @summary Refresh User Tokens
|
|
1544
|
+
* @param {string} vbasoftwareClientId Client ID
|
|
1545
|
+
* @param {string} vbasoftwareClientCode Client Code
|
|
1518
1546
|
* @param {string} vbasoftwareDatabase Target database
|
|
1547
|
+
* @param {string} expiredIdToken Expired Id Token
|
|
1519
1548
|
* @param {string} refreshToken Refresh Token
|
|
1520
1549
|
* @param {*} [options] Override http request option.
|
|
1521
1550
|
* @throws {RequiredError}
|
|
1522
1551
|
* @memberof UserApi
|
|
1523
1552
|
*/
|
|
1524
|
-
public refreshUserTokens(vbasoftwareDatabase: string, refreshToken: string, options?: AxiosRequestConfig) {
|
|
1525
|
-
return UserApiFp(this.configuration).refreshUserTokens(vbasoftwareDatabase, refreshToken, options).then((request) => request(this.axios, this.basePath));
|
|
1553
|
+
public refreshUserTokens(vbasoftwareClientId: string, vbasoftwareClientCode: string, vbasoftwareDatabase: string, expiredIdToken: string, refreshToken: string, options?: AxiosRequestConfig) {
|
|
1554
|
+
return UserApiFp(this.configuration).refreshUserTokens(vbasoftwareClientId, vbasoftwareClientCode, vbasoftwareDatabase, expiredIdToken, refreshToken, options).then((request) => request(this.axios, this.basePath));
|
|
1526
1555
|
}
|
|
1527
1556
|
|
|
1528
1557
|
/**
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* VBASoftware
|
|
5
|
+
* APIs for VBASoftware
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { CheckEditResult } from './check-edit-result';
|
|
17
|
+
import { Debug } from './debug';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface CheckEditResultListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface CheckEditResultListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<CheckEditResult>}
|
|
29
|
+
* @memberof CheckEditResultListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<CheckEditResult> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof CheckEditResultListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof CheckEditResultListVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* VBASoftware
|
|
5
|
+
* APIs for VBASoftware
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface CheckEditResult
|
|
21
|
+
*/
|
|
22
|
+
export interface CheckEditResult {
|
|
23
|
+
/**
|
|
24
|
+
* Sequenced Unique Key for the Edit being performent.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof CheckEditResult
|
|
27
|
+
*/
|
|
28
|
+
'unique_Key': number;
|
|
29
|
+
/**
|
|
30
|
+
* Object used by the check edit to process.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CheckEditResult
|
|
33
|
+
*/
|
|
34
|
+
'checkEdit_Object'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
* Description of the check edit.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CheckEditResult
|
|
39
|
+
*/
|
|
40
|
+
'description'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
* Name for the check edit.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof CheckEditResult
|
|
45
|
+
*/
|
|
46
|
+
'display'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
* The result of the Check Edit being performed. 0 is Success. If -1 then error has occurred, look at Result_Message. If > 0, then edit has found a problem that needs user review.
|
|
49
|
+
* @type {number}
|
|
50
|
+
* @memberof CheckEditResult
|
|
51
|
+
*/
|
|
52
|
+
'result'?: number | null;
|
|
53
|
+
/**
|
|
54
|
+
* If there is an error in Result (-1), then this will hold the Result error message.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof CheckEditResult
|
|
57
|
+
*/
|
|
58
|
+
'result_Message'?: string | null;
|
|
59
|
+
}
|
|
60
|
+
|
package/models/index.ts
CHANGED
|
@@ -349,6 +349,8 @@ export * from './check-batch-list-vbaresponse';
|
|
|
349
349
|
export * from './check-batch-vbaresponse';
|
|
350
350
|
export * from './check-edit';
|
|
351
351
|
export * from './check-edit-list-vbaresponse';
|
|
352
|
+
export * from './check-edit-result';
|
|
353
|
+
export * from './check-edit-result-list-vbaresponse';
|
|
352
354
|
export * from './check-edit-set-detail';
|
|
353
355
|
export * from './check-edit-set-detail-list-vbaresponse';
|
|
354
356
|
export * from './check-edit-set-detail-vbaresponse';
|