@equisoft/account-service-sdk-typescript 10.1.1-snapshot.20250930154726 → 10.1.1-snapshot.20251003124210

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.
@@ -51,6 +51,24 @@ export interface OAuthClientListItem {
51
51
  * @memberof OAuthClientListItem
52
52
  */
53
53
  scopes: Array<string>;
54
+ /**
55
+ *
56
+ * @type {boolean}
57
+ * @memberof OAuthClientListItem
58
+ */
59
+ system: boolean;
60
+ /**
61
+ *
62
+ * @type {boolean}
63
+ * @memberof OAuthClientListItem
64
+ */
65
+ serviceAccount: boolean;
66
+ /**
67
+ *
68
+ * @type {string}
69
+ * @memberof OAuthClientListItem
70
+ */
71
+ ssoProvider?: string | null;
54
72
  }
55
73
  /**
56
74
  * Check if a given object implements the OAuthClientListItem interface.
@@ -27,6 +27,10 @@ export function instanceOfOAuthClientListItem(value) {
27
27
  return false;
28
28
  if (!('scopes' in value) || value['scopes'] === undefined)
29
29
  return false;
30
+ if (!('system' in value) || value['system'] === undefined)
31
+ return false;
32
+ if (!('serviceAccount' in value) || value['serviceAccount'] === undefined)
33
+ return false;
30
34
  return true;
31
35
  }
32
36
  export function OAuthClientListItemFromJSON(json) {
@@ -43,6 +47,9 @@ export function OAuthClientListItemFromJSONTyped(json, ignoreDiscriminator) {
43
47
  'redirectUris': json['redirectUris'],
44
48
  'grantTypes': json['grantTypes'],
45
49
  'scopes': json['scopes'],
50
+ 'system': json['system'],
51
+ 'serviceAccount': json['serviceAccount'],
52
+ 'ssoProvider': json['ssoProvider'] == null ? undefined : json['ssoProvider'],
46
53
  };
47
54
  }
48
55
  export function OAuthClientListItemToJSON(json) {
@@ -59,5 +66,8 @@ export function OAuthClientListItemToJSONTyped(value, ignoreDiscriminator = fals
59
66
  'redirectUris': value['redirectUris'],
60
67
  'grantTypes': value['grantTypes'],
61
68
  'scopes': value['scopes'],
69
+ 'system': value['system'],
70
+ 'serviceAccount': value['serviceAccount'],
71
+ 'ssoProvider': value['ssoProvider'],
62
72
  };
63
73
  }
@@ -51,6 +51,24 @@ export interface OAuthClientListItem {
51
51
  * @memberof OAuthClientListItem
52
52
  */
53
53
  scopes: Array<string>;
54
+ /**
55
+ *
56
+ * @type {boolean}
57
+ * @memberof OAuthClientListItem
58
+ */
59
+ system: boolean;
60
+ /**
61
+ *
62
+ * @type {boolean}
63
+ * @memberof OAuthClientListItem
64
+ */
65
+ serviceAccount: boolean;
66
+ /**
67
+ *
68
+ * @type {string}
69
+ * @memberof OAuthClientListItem
70
+ */
71
+ ssoProvider?: string | null;
54
72
  }
55
73
  /**
56
74
  * Check if a given object implements the OAuthClientListItem interface.
@@ -34,6 +34,10 @@ function instanceOfOAuthClientListItem(value) {
34
34
  return false;
35
35
  if (!('scopes' in value) || value['scopes'] === undefined)
36
36
  return false;
37
+ if (!('system' in value) || value['system'] === undefined)
38
+ return false;
39
+ if (!('serviceAccount' in value) || value['serviceAccount'] === undefined)
40
+ return false;
37
41
  return true;
38
42
  }
39
43
  function OAuthClientListItemFromJSON(json) {
@@ -50,6 +54,9 @@ function OAuthClientListItemFromJSONTyped(json, ignoreDiscriminator) {
50
54
  'redirectUris': json['redirectUris'],
51
55
  'grantTypes': json['grantTypes'],
52
56
  'scopes': json['scopes'],
57
+ 'system': json['system'],
58
+ 'serviceAccount': json['serviceAccount'],
59
+ 'ssoProvider': json['ssoProvider'] == null ? undefined : json['ssoProvider'],
53
60
  };
54
61
  }
55
62
  function OAuthClientListItemToJSON(json) {
@@ -66,5 +73,8 @@ function OAuthClientListItemToJSONTyped(value, ignoreDiscriminator = false) {
66
73
  'redirectUris': value['redirectUris'],
67
74
  'grantTypes': value['grantTypes'],
68
75
  'scopes': value['scopes'],
76
+ 'system': value['system'],
77
+ 'serviceAccount': value['serviceAccount'],
78
+ 'ssoProvider': value['ssoProvider'],
69
79
  };
70
80
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equisoft/account-service-sdk-typescript",
3
- "version": "10.1.1-snapshot.20250930154726",
3
+ "version": "10.1.1-snapshot.20251003124210",
4
4
  "description": "OpenAPI client for @equisoft/account-service-sdk-typescript",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -55,6 +55,24 @@ export interface OAuthClientListItem {
55
55
  * @memberof OAuthClientListItem
56
56
  */
57
57
  scopes: Array<string>;
58
+ /**
59
+ *
60
+ * @type {boolean}
61
+ * @memberof OAuthClientListItem
62
+ */
63
+ system: boolean;
64
+ /**
65
+ *
66
+ * @type {boolean}
67
+ * @memberof OAuthClientListItem
68
+ */
69
+ serviceAccount: boolean;
70
+ /**
71
+ *
72
+ * @type {string}
73
+ * @memberof OAuthClientListItem
74
+ */
75
+ ssoProvider?: string | null;
58
76
  }
59
77
 
60
78
  /**
@@ -67,6 +85,8 @@ export function instanceOfOAuthClientListItem(value: object): value is OAuthClie
67
85
  if (!('redirectUris' in value) || value['redirectUris'] === undefined) return false;
68
86
  if (!('grantTypes' in value) || value['grantTypes'] === undefined) return false;
69
87
  if (!('scopes' in value) || value['scopes'] === undefined) return false;
88
+ if (!('system' in value) || value['system'] === undefined) return false;
89
+ if (!('serviceAccount' in value) || value['serviceAccount'] === undefined) return false;
70
90
  return true;
71
91
  }
72
92
 
@@ -86,6 +106,9 @@ export function OAuthClientListItemFromJSONTyped(json: any, ignoreDiscriminator:
86
106
  'redirectUris': json['redirectUris'],
87
107
  'grantTypes': json['grantTypes'],
88
108
  'scopes': json['scopes'],
109
+ 'system': json['system'],
110
+ 'serviceAccount': json['serviceAccount'],
111
+ 'ssoProvider': json['ssoProvider'] == null ? undefined : json['ssoProvider'],
89
112
  };
90
113
  }
91
114
 
@@ -106,6 +129,9 @@ export function OAuthClientListItemToJSONTyped(value?: OAuthClientListItem | nul
106
129
  'redirectUris': value['redirectUris'],
107
130
  'grantTypes': value['grantTypes'],
108
131
  'scopes': value['scopes'],
132
+ 'system': value['system'],
133
+ 'serviceAccount': value['serviceAccount'],
134
+ 'ssoProvider': value['ssoProvider'],
109
135
  };
110
136
  }
111
137