@equisoft/account-service-sdk-typescript 10.2.1-snapshot.20251023145701 → 10.2.1-snapshot.20251023170305

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.
@@ -35,12 +35,6 @@ export interface OAuthClient {
35
35
  * @memberof OAuthClient
36
36
  */
37
37
  displayName: string;
38
- /**
39
- *
40
- * @type {string}
41
- * @memberof OAuthClient
42
- */
43
- clientSecret: string | null;
44
38
  /**
45
39
  *
46
40
  * @type {boolean}
@@ -20,8 +20,6 @@ export function instanceOfOAuthClient(value) {
20
20
  return false;
21
21
  if (!('displayName' in value) || value['displayName'] === undefined)
22
22
  return false;
23
- if (!('clientSecret' in value) || value['clientSecret'] === undefined)
24
- return false;
25
23
  if (!('trusted' in value) || value['trusted'] === undefined)
26
24
  return false;
27
25
  if (!('system' in value) || value['system'] === undefined)
@@ -53,7 +51,6 @@ export function OAuthClientFromJSONTyped(json, ignoreDiscriminator) {
53
51
  'clientId': json['clientId'],
54
52
  'name': json['name'] == null ? undefined : json['name'],
55
53
  'displayName': json['displayName'],
56
- 'clientSecret': json['clientSecret'],
57
54
  'trusted': json['trusted'],
58
55
  'system': json['system'],
59
56
  'audiences': json['audiences'],
@@ -79,7 +76,6 @@ export function OAuthClientToJSONTyped(value, ignoreDiscriminator = false) {
79
76
  'clientId': value['clientId'],
80
77
  'name': value['name'],
81
78
  'displayName': value['displayName'],
82
- 'clientSecret': value['clientSecret'],
83
79
  'trusted': value['trusted'],
84
80
  'system': value['system'],
85
81
  'audiences': value['audiences'],
@@ -35,12 +35,6 @@ export interface OAuthClient {
35
35
  * @memberof OAuthClient
36
36
  */
37
37
  displayName: string;
38
- /**
39
- *
40
- * @type {string}
41
- * @memberof OAuthClient
42
- */
43
- clientSecret: string | null;
44
38
  /**
45
39
  *
46
40
  * @type {boolean}
@@ -27,8 +27,6 @@ function instanceOfOAuthClient(value) {
27
27
  return false;
28
28
  if (!('displayName' in value) || value['displayName'] === undefined)
29
29
  return false;
30
- if (!('clientSecret' in value) || value['clientSecret'] === undefined)
31
- return false;
32
30
  if (!('trusted' in value) || value['trusted'] === undefined)
33
31
  return false;
34
32
  if (!('system' in value) || value['system'] === undefined)
@@ -60,7 +58,6 @@ function OAuthClientFromJSONTyped(json, ignoreDiscriminator) {
60
58
  'clientId': json['clientId'],
61
59
  'name': json['name'] == null ? undefined : json['name'],
62
60
  'displayName': json['displayName'],
63
- 'clientSecret': json['clientSecret'],
64
61
  'trusted': json['trusted'],
65
62
  'system': json['system'],
66
63
  'audiences': json['audiences'],
@@ -86,7 +83,6 @@ function OAuthClientToJSONTyped(value, ignoreDiscriminator = false) {
86
83
  'clientId': value['clientId'],
87
84
  'name': value['name'],
88
85
  'displayName': value['displayName'],
89
- 'clientSecret': value['clientSecret'],
90
86
  'trusted': value['trusted'],
91
87
  'system': value['system'],
92
88
  'audiences': value['audiences'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equisoft/account-service-sdk-typescript",
3
- "version": "10.2.1-snapshot.20251023145701",
3
+ "version": "10.2.1-snapshot.20251023170305",
4
4
  "description": "OpenAPI client for @equisoft/account-service-sdk-typescript",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -46,12 +46,6 @@ export interface OAuthClient {
46
46
  * @memberof OAuthClient
47
47
  */
48
48
  displayName: string;
49
- /**
50
- *
51
- * @type {string}
52
- * @memberof OAuthClient
53
- */
54
- clientSecret: string | null;
55
49
  /**
56
50
  *
57
51
  * @type {boolean}
@@ -132,7 +126,6 @@ export interface OAuthClient {
132
126
  export function instanceOfOAuthClient(value: object): value is OAuthClient {
133
127
  if (!('clientId' in value) || value['clientId'] === undefined) return false;
134
128
  if (!('displayName' in value) || value['displayName'] === undefined) return false;
135
- if (!('clientSecret' in value) || value['clientSecret'] === undefined) return false;
136
129
  if (!('trusted' in value) || value['trusted'] === undefined) return false;
137
130
  if (!('system' in value) || value['system'] === undefined) return false;
138
131
  if (!('audiences' in value) || value['audiences'] === undefined) return false;
@@ -158,7 +151,6 @@ export function OAuthClientFromJSONTyped(json: any, ignoreDiscriminator: boolean
158
151
  'clientId': json['clientId'],
159
152
  'name': json['name'] == null ? undefined : json['name'],
160
153
  'displayName': json['displayName'],
161
- 'clientSecret': json['clientSecret'],
162
154
  'trusted': json['trusted'],
163
155
  'system': json['system'],
164
156
  'audiences': json['audiences'],
@@ -188,7 +180,6 @@ export function OAuthClientToJSONTyped(value?: OAuthClient | null, ignoreDiscrim
188
180
  'clientId': value['clientId'],
189
181
  'name': value['name'],
190
182
  'displayName': value['displayName'],
191
- 'clientSecret': value['clientSecret'],
192
183
  'trusted': value['trusted'],
193
184
  'system': value['system'],
194
185
  'audiences': value['audiences'],