@equisoft/account-service-sdk-typescript 10.2.1-snapshot.20251020195303 → 10.2.1-snapshot.20251021121128
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/dist/apis/OAuthApi.d.ts +3 -3
- package/dist/apis/OAuthApi.js +4 -4
- package/dist/apis/OrganizationApi.d.ts +3 -3
- package/dist/apis/OrganizationApi.js +4 -4
- package/dist/esm/apis/OAuthApi.d.ts +3 -3
- package/dist/esm/apis/OAuthApi.js +4 -4
- package/dist/esm/apis/OrganizationApi.d.ts +3 -3
- package/dist/esm/apis/OrganizationApi.js +4 -4
- package/package.json +1 -1
- package/src/apis/OAuthApi.ts +5 -5
- package/src/apis/OrganizationApi.ts +5 -5
package/dist/apis/OAuthApi.d.ts
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import * as runtime from '../runtime';
|
|
13
13
|
import type { OAuthClient, OAuthClientListItem, OAuthClientLoginPayload, OAuthClientUpdated, UpdateOAuthClientPayload } from '../models/index';
|
|
14
|
-
export interface
|
|
14
|
+
export interface DeleteOAuthClientRequest {
|
|
15
15
|
clientId: string;
|
|
16
16
|
}
|
|
17
17
|
export interface GetOAuthClientRequest {
|
|
@@ -35,11 +35,11 @@ export declare class OAuthApi extends runtime.BaseAPI {
|
|
|
35
35
|
/**
|
|
36
36
|
* Delete OAuth client
|
|
37
37
|
*/
|
|
38
|
-
|
|
38
|
+
deleteOAuthClientRaw(requestParameters: DeleteOAuthClientRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
39
39
|
/**
|
|
40
40
|
* Delete OAuth client
|
|
41
41
|
*/
|
|
42
|
-
|
|
42
|
+
deleteOAuthClient(requestParameters: DeleteOAuthClientRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
43
43
|
/**
|
|
44
44
|
* Get detailed information about an OAuth client.
|
|
45
45
|
*/
|
package/dist/apis/OAuthApi.js
CHANGED
|
@@ -32,10 +32,10 @@ class OAuthApi extends runtime.BaseAPI {
|
|
|
32
32
|
/**
|
|
33
33
|
* Delete OAuth client
|
|
34
34
|
*/
|
|
35
|
-
|
|
35
|
+
deleteOAuthClientRaw(requestParameters, initOverrides) {
|
|
36
36
|
return __awaiter(this, void 0, void 0, function* () {
|
|
37
37
|
if (requestParameters['clientId'] == null) {
|
|
38
|
-
throw new runtime.RequiredError('clientId', 'Required parameter "clientId" was null or undefined when calling
|
|
38
|
+
throw new runtime.RequiredError('clientId', 'Required parameter "clientId" was null or undefined when calling deleteOAuthClient().');
|
|
39
39
|
}
|
|
40
40
|
const queryParameters = {};
|
|
41
41
|
const headerParameters = {};
|
|
@@ -59,9 +59,9 @@ class OAuthApi extends runtime.BaseAPI {
|
|
|
59
59
|
/**
|
|
60
60
|
* Delete OAuth client
|
|
61
61
|
*/
|
|
62
|
-
|
|
62
|
+
deleteOAuthClient(requestParameters, initOverrides) {
|
|
63
63
|
return __awaiter(this, void 0, void 0, function* () {
|
|
64
|
-
yield this.
|
|
64
|
+
yield this.deleteOAuthClientRaw(requestParameters, initOverrides);
|
|
65
65
|
});
|
|
66
66
|
}
|
|
67
67
|
/**
|
|
@@ -48,7 +48,7 @@ export interface DeactivateUserServiceRequest {
|
|
|
48
48
|
userUuid: string;
|
|
49
49
|
serviceCode: string;
|
|
50
50
|
}
|
|
51
|
-
export interface
|
|
51
|
+
export interface DeleteOrganizationRequest {
|
|
52
52
|
uuid: string;
|
|
53
53
|
}
|
|
54
54
|
export interface GetApplicableServiceProfilesRequest {
|
|
@@ -193,11 +193,11 @@ export declare class OrganizationApi extends runtime.BaseAPI {
|
|
|
193
193
|
/**
|
|
194
194
|
* Delete organization
|
|
195
195
|
*/
|
|
196
|
-
|
|
196
|
+
deleteOrganizationRaw(requestParameters: DeleteOrganizationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
197
197
|
/**
|
|
198
198
|
* Delete organization
|
|
199
199
|
*/
|
|
200
|
-
|
|
200
|
+
deleteOrganization(requestParameters: DeleteOrganizationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
201
201
|
/**
|
|
202
202
|
* Get applicable service profiles for an organization.
|
|
203
203
|
*/
|
|
@@ -367,10 +367,10 @@ class OrganizationApi extends runtime.BaseAPI {
|
|
|
367
367
|
/**
|
|
368
368
|
* Delete organization
|
|
369
369
|
*/
|
|
370
|
-
|
|
370
|
+
deleteOrganizationRaw(requestParameters, initOverrides) {
|
|
371
371
|
return __awaiter(this, void 0, void 0, function* () {
|
|
372
372
|
if (requestParameters['uuid'] == null) {
|
|
373
|
-
throw new runtime.RequiredError('uuid', 'Required parameter "uuid" was null or undefined when calling
|
|
373
|
+
throw new runtime.RequiredError('uuid', 'Required parameter "uuid" was null or undefined when calling deleteOrganization().');
|
|
374
374
|
}
|
|
375
375
|
const queryParameters = {};
|
|
376
376
|
const headerParameters = {};
|
|
@@ -394,9 +394,9 @@ class OrganizationApi extends runtime.BaseAPI {
|
|
|
394
394
|
/**
|
|
395
395
|
* Delete organization
|
|
396
396
|
*/
|
|
397
|
-
|
|
397
|
+
deleteOrganization(requestParameters, initOverrides) {
|
|
398
398
|
return __awaiter(this, void 0, void 0, function* () {
|
|
399
|
-
yield this.
|
|
399
|
+
yield this.deleteOrganizationRaw(requestParameters, initOverrides);
|
|
400
400
|
});
|
|
401
401
|
}
|
|
402
402
|
/**
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import * as runtime from '../runtime';
|
|
13
13
|
import type { OAuthClient, OAuthClientListItem, OAuthClientLoginPayload, OAuthClientUpdated, UpdateOAuthClientPayload } from '../models/index';
|
|
14
|
-
export interface
|
|
14
|
+
export interface DeleteOAuthClientRequest {
|
|
15
15
|
clientId: string;
|
|
16
16
|
}
|
|
17
17
|
export interface GetOAuthClientRequest {
|
|
@@ -35,11 +35,11 @@ export declare class OAuthApi extends runtime.BaseAPI {
|
|
|
35
35
|
/**
|
|
36
36
|
* Delete OAuth client
|
|
37
37
|
*/
|
|
38
|
-
|
|
38
|
+
deleteOAuthClientRaw(requestParameters: DeleteOAuthClientRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
39
39
|
/**
|
|
40
40
|
* Delete OAuth client
|
|
41
41
|
*/
|
|
42
|
-
|
|
42
|
+
deleteOAuthClient(requestParameters: DeleteOAuthClientRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
43
43
|
/**
|
|
44
44
|
* Get detailed information about an OAuth client.
|
|
45
45
|
*/
|
|
@@ -29,10 +29,10 @@ export class OAuthApi extends runtime.BaseAPI {
|
|
|
29
29
|
/**
|
|
30
30
|
* Delete OAuth client
|
|
31
31
|
*/
|
|
32
|
-
|
|
32
|
+
deleteOAuthClientRaw(requestParameters, initOverrides) {
|
|
33
33
|
return __awaiter(this, void 0, void 0, function* () {
|
|
34
34
|
if (requestParameters['clientId'] == null) {
|
|
35
|
-
throw new runtime.RequiredError('clientId', 'Required parameter "clientId" was null or undefined when calling
|
|
35
|
+
throw new runtime.RequiredError('clientId', 'Required parameter "clientId" was null or undefined when calling deleteOAuthClient().');
|
|
36
36
|
}
|
|
37
37
|
const queryParameters = {};
|
|
38
38
|
const headerParameters = {};
|
|
@@ -56,9 +56,9 @@ export class OAuthApi extends runtime.BaseAPI {
|
|
|
56
56
|
/**
|
|
57
57
|
* Delete OAuth client
|
|
58
58
|
*/
|
|
59
|
-
|
|
59
|
+
deleteOAuthClient(requestParameters, initOverrides) {
|
|
60
60
|
return __awaiter(this, void 0, void 0, function* () {
|
|
61
|
-
yield this.
|
|
61
|
+
yield this.deleteOAuthClientRaw(requestParameters, initOverrides);
|
|
62
62
|
});
|
|
63
63
|
}
|
|
64
64
|
/**
|
|
@@ -48,7 +48,7 @@ export interface DeactivateUserServiceRequest {
|
|
|
48
48
|
userUuid: string;
|
|
49
49
|
serviceCode: string;
|
|
50
50
|
}
|
|
51
|
-
export interface
|
|
51
|
+
export interface DeleteOrganizationRequest {
|
|
52
52
|
uuid: string;
|
|
53
53
|
}
|
|
54
54
|
export interface GetApplicableServiceProfilesRequest {
|
|
@@ -193,11 +193,11 @@ export declare class OrganizationApi extends runtime.BaseAPI {
|
|
|
193
193
|
/**
|
|
194
194
|
* Delete organization
|
|
195
195
|
*/
|
|
196
|
-
|
|
196
|
+
deleteOrganizationRaw(requestParameters: DeleteOrganizationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
197
197
|
/**
|
|
198
198
|
* Delete organization
|
|
199
199
|
*/
|
|
200
|
-
|
|
200
|
+
deleteOrganization(requestParameters: DeleteOrganizationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
201
201
|
/**
|
|
202
202
|
* Get applicable service profiles for an organization.
|
|
203
203
|
*/
|
|
@@ -364,10 +364,10 @@ export class OrganizationApi extends runtime.BaseAPI {
|
|
|
364
364
|
/**
|
|
365
365
|
* Delete organization
|
|
366
366
|
*/
|
|
367
|
-
|
|
367
|
+
deleteOrganizationRaw(requestParameters, initOverrides) {
|
|
368
368
|
return __awaiter(this, void 0, void 0, function* () {
|
|
369
369
|
if (requestParameters['uuid'] == null) {
|
|
370
|
-
throw new runtime.RequiredError('uuid', 'Required parameter "uuid" was null or undefined when calling
|
|
370
|
+
throw new runtime.RequiredError('uuid', 'Required parameter "uuid" was null or undefined when calling deleteOrganization().');
|
|
371
371
|
}
|
|
372
372
|
const queryParameters = {};
|
|
373
373
|
const headerParameters = {};
|
|
@@ -391,9 +391,9 @@ export class OrganizationApi extends runtime.BaseAPI {
|
|
|
391
391
|
/**
|
|
392
392
|
* Delete organization
|
|
393
393
|
*/
|
|
394
|
-
|
|
394
|
+
deleteOrganization(requestParameters, initOverrides) {
|
|
395
395
|
return __awaiter(this, void 0, void 0, function* () {
|
|
396
|
-
yield this.
|
|
396
|
+
yield this.deleteOrganizationRaw(requestParameters, initOverrides);
|
|
397
397
|
});
|
|
398
398
|
}
|
|
399
399
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equisoft/account-service-sdk-typescript",
|
|
3
|
-
"version": "10.2.1-snapshot.
|
|
3
|
+
"version": "10.2.1-snapshot.20251021121128",
|
|
4
4
|
"description": "OpenAPI client for @equisoft/account-service-sdk-typescript",
|
|
5
5
|
"author": "OpenAPI-Generator",
|
|
6
6
|
"repository": {
|
package/src/apis/OAuthApi.ts
CHANGED
|
@@ -37,7 +37,7 @@ import {
|
|
|
37
37
|
UpdateOAuthClientPayloadToJSON,
|
|
38
38
|
} from '../models/index';
|
|
39
39
|
|
|
40
|
-
export interface
|
|
40
|
+
export interface DeleteOAuthClientRequest {
|
|
41
41
|
clientId: string;
|
|
42
42
|
}
|
|
43
43
|
|
|
@@ -67,11 +67,11 @@ export class OAuthApi extends runtime.BaseAPI {
|
|
|
67
67
|
/**
|
|
68
68
|
* Delete OAuth client
|
|
69
69
|
*/
|
|
70
|
-
async
|
|
70
|
+
async deleteOAuthClientRaw(requestParameters: DeleteOAuthClientRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>> {
|
|
71
71
|
if (requestParameters['clientId'] == null) {
|
|
72
72
|
throw new runtime.RequiredError(
|
|
73
73
|
'clientId',
|
|
74
|
-
'Required parameter "clientId" was null or undefined when calling
|
|
74
|
+
'Required parameter "clientId" was null or undefined when calling deleteOAuthClient().'
|
|
75
75
|
);
|
|
76
76
|
}
|
|
77
77
|
|
|
@@ -101,8 +101,8 @@ export class OAuthApi extends runtime.BaseAPI {
|
|
|
101
101
|
/**
|
|
102
102
|
* Delete OAuth client
|
|
103
103
|
*/
|
|
104
|
-
async
|
|
105
|
-
await this.
|
|
104
|
+
async deleteOAuthClient(requestParameters: DeleteOAuthClientRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void> {
|
|
105
|
+
await this.deleteOAuthClientRaw(requestParameters, initOverrides);
|
|
106
106
|
}
|
|
107
107
|
|
|
108
108
|
/**
|
|
@@ -118,7 +118,7 @@ export interface DeactivateUserServiceRequest {
|
|
|
118
118
|
serviceCode: string;
|
|
119
119
|
}
|
|
120
120
|
|
|
121
|
-
export interface
|
|
121
|
+
export interface DeleteOrganizationRequest {
|
|
122
122
|
uuid: string;
|
|
123
123
|
}
|
|
124
124
|
|
|
@@ -658,11 +658,11 @@ export class OrganizationApi extends runtime.BaseAPI {
|
|
|
658
658
|
/**
|
|
659
659
|
* Delete organization
|
|
660
660
|
*/
|
|
661
|
-
async
|
|
661
|
+
async deleteOrganizationRaw(requestParameters: DeleteOrganizationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>> {
|
|
662
662
|
if (requestParameters['uuid'] == null) {
|
|
663
663
|
throw new runtime.RequiredError(
|
|
664
664
|
'uuid',
|
|
665
|
-
'Required parameter "uuid" was null or undefined when calling
|
|
665
|
+
'Required parameter "uuid" was null or undefined when calling deleteOrganization().'
|
|
666
666
|
);
|
|
667
667
|
}
|
|
668
668
|
|
|
@@ -692,8 +692,8 @@ export class OrganizationApi extends runtime.BaseAPI {
|
|
|
692
692
|
/**
|
|
693
693
|
* Delete organization
|
|
694
694
|
*/
|
|
695
|
-
async
|
|
696
|
-
await this.
|
|
695
|
+
async deleteOrganization(requestParameters: DeleteOrganizationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void> {
|
|
696
|
+
await this.deleteOrganizationRaw(requestParameters, initOverrides);
|
|
697
697
|
}
|
|
698
698
|
|
|
699
699
|
/**
|