@equisoft/account-service-sdk-typescript 10.6.1-snapshot.20260109153709 → 10.6.1-snapshot.20260113201251

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.
@@ -86,11 +86,11 @@ export declare class OAuthApi extends runtime.BaseAPI {
86
86
  /**
87
87
  * Get a list of all OAuth Scopes.
88
88
  */
89
- listOAuthClients1Raw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<OAuthScope>>>;
89
+ listOAuthScopesRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<OAuthScope>>>;
90
90
  /**
91
91
  * Get a list of all OAuth Scopes.
92
92
  */
93
- listOAuthClients1(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<OAuthScope>>;
93
+ listOAuthScopes(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<OAuthScope>>;
94
94
  /**
95
95
  * OAuth Client login
96
96
  */
@@ -218,7 +218,7 @@ class OAuthApi extends runtime.BaseAPI {
218
218
  /**
219
219
  * Get a list of all OAuth Scopes.
220
220
  */
221
- listOAuthClients1Raw(initOverrides) {
221
+ listOAuthScopesRaw(initOverrides) {
222
222
  return __awaiter(this, void 0, void 0, function* () {
223
223
  const queryParameters = {};
224
224
  const headerParameters = {};
@@ -242,9 +242,9 @@ class OAuthApi extends runtime.BaseAPI {
242
242
  /**
243
243
  * Get a list of all OAuth Scopes.
244
244
  */
245
- listOAuthClients1(initOverrides) {
245
+ listOAuthScopes(initOverrides) {
246
246
  return __awaiter(this, void 0, void 0, function* () {
247
- const response = yield this.listOAuthClients1Raw(initOverrides);
247
+ const response = yield this.listOAuthScopesRaw(initOverrides);
248
248
  return yield response.value();
249
249
  });
250
250
  }
@@ -86,11 +86,11 @@ export declare class OAuthApi extends runtime.BaseAPI {
86
86
  /**
87
87
  * Get a list of all OAuth Scopes.
88
88
  */
89
- listOAuthClients1Raw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<OAuthScope>>>;
89
+ listOAuthScopesRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<OAuthScope>>>;
90
90
  /**
91
91
  * Get a list of all OAuth Scopes.
92
92
  */
93
- listOAuthClients1(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<OAuthScope>>;
93
+ listOAuthScopes(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<OAuthScope>>;
94
94
  /**
95
95
  * OAuth Client login
96
96
  */
@@ -215,7 +215,7 @@ export class OAuthApi extends runtime.BaseAPI {
215
215
  /**
216
216
  * Get a list of all OAuth Scopes.
217
217
  */
218
- listOAuthClients1Raw(initOverrides) {
218
+ listOAuthScopesRaw(initOverrides) {
219
219
  return __awaiter(this, void 0, void 0, function* () {
220
220
  const queryParameters = {};
221
221
  const headerParameters = {};
@@ -239,9 +239,9 @@ export class OAuthApi extends runtime.BaseAPI {
239
239
  /**
240
240
  * Get a list of all OAuth Scopes.
241
241
  */
242
- listOAuthClients1(initOverrides) {
242
+ listOAuthScopes(initOverrides) {
243
243
  return __awaiter(this, void 0, void 0, function* () {
244
- const response = yield this.listOAuthClients1Raw(initOverrides);
244
+ const response = yield this.listOAuthScopesRaw(initOverrides);
245
245
  return yield response.value();
246
246
  });
247
247
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equisoft/account-service-sdk-typescript",
3
- "version": "10.6.1-snapshot.20260109153709",
3
+ "version": "10.6.1-snapshot.20260113201251",
4
4
  "description": "OpenAPI client for @equisoft/account-service-sdk-typescript",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -312,7 +312,7 @@ export class OAuthApi extends runtime.BaseAPI {
312
312
  /**
313
313
  * Get a list of all OAuth Scopes.
314
314
  */
315
- async listOAuthClients1Raw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<OAuthScope>>> {
315
+ async listOAuthScopesRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<OAuthScope>>> {
316
316
  const queryParameters: any = {};
317
317
 
318
318
  const headerParameters: runtime.HTTPHeaders = {};
@@ -339,8 +339,8 @@ export class OAuthApi extends runtime.BaseAPI {
339
339
  /**
340
340
  * Get a list of all OAuth Scopes.
341
341
  */
342
- async listOAuthClients1(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<OAuthScope>> {
343
- const response = await this.listOAuthClients1Raw(initOverrides);
342
+ async listOAuthScopes(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<OAuthScope>> {
343
+ const response = await this.listOAuthScopesRaw(initOverrides);
344
344
  return await response.value();
345
345
  }
346
346