@equisoft/account-service-sdk-typescript 9.7.1-snapshot.20250623033825 → 9.7.1-snapshot.20250623164952

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.
@@ -90,6 +90,12 @@ export interface CreateOrUpdateOAuthClientPayload {
90
90
  additionalTokenFields?: {
91
91
  [key: string]: any;
92
92
  } | null;
93
+ /**
94
+ *
95
+ * @type {string}
96
+ * @memberof CreateOrUpdateOAuthClientPayload
97
+ */
98
+ ssoProvider?: string | null;
93
99
  }
94
100
  /**
95
101
  * Check if a given object implements the CreateOrUpdateOAuthClientPayload interface.
@@ -40,6 +40,7 @@ export function CreateOrUpdateOAuthClientPayloadFromJSONTyped(json, ignoreDiscri
40
40
  'serviceAccount': json['serviceAccount'] == null ? undefined : json['serviceAccount'],
41
41
  'serviceAccountDelegation': json['serviceAccountDelegation'] == null ? undefined : json['serviceAccountDelegation'],
42
42
  'additionalTokenFields': json['additionalTokenFields'] == null ? undefined : json['additionalTokenFields'],
43
+ 'ssoProvider': json['ssoProvider'] == null ? undefined : json['ssoProvider'],
43
44
  };
44
45
  }
45
46
  export function CreateOrUpdateOAuthClientPayloadToJSON(json) {
@@ -62,5 +63,6 @@ export function CreateOrUpdateOAuthClientPayloadToJSONTyped(value, ignoreDiscrim
62
63
  'serviceAccount': value['serviceAccount'],
63
64
  'serviceAccountDelegation': value['serviceAccountDelegation'],
64
65
  'additionalTokenFields': value['additionalTokenFields'],
66
+ 'ssoProvider': value['ssoProvider'],
65
67
  };
66
68
  }
@@ -96,6 +96,12 @@ export interface OAuthClient {
96
96
  additionalTokenFields?: {
97
97
  [key: string]: any;
98
98
  } | null;
99
+ /**
100
+ *
101
+ * @type {string}
102
+ * @memberof OAuthClient
103
+ */
104
+ ssoProvider?: string | null;
99
105
  }
100
106
  /**
101
107
  * Check if a given object implements the OAuthClient interface.
@@ -59,6 +59,7 @@ export function OAuthClientFromJSONTyped(json, ignoreDiscriminator) {
59
59
  'serviceAccount': json['serviceAccount'],
60
60
  'serviceAccountDelegation': json['serviceAccountDelegation'],
61
61
  'additionalTokenFields': json['additionalTokenFields'] == null ? undefined : json['additionalTokenFields'],
62
+ 'ssoProvider': json['ssoProvider'] == null ? undefined : json['ssoProvider'],
62
63
  };
63
64
  }
64
65
  export function OAuthClientToJSON(json) {
@@ -82,5 +83,6 @@ export function OAuthClientToJSONTyped(value, ignoreDiscriminator = false) {
82
83
  'serviceAccount': value['serviceAccount'],
83
84
  'serviceAccountDelegation': value['serviceAccountDelegation'],
84
85
  'additionalTokenFields': value['additionalTokenFields'],
86
+ 'ssoProvider': value['ssoProvider'],
85
87
  };
86
88
  }
@@ -90,6 +90,12 @@ export interface CreateOrUpdateOAuthClientPayload {
90
90
  additionalTokenFields?: {
91
91
  [key: string]: any;
92
92
  } | null;
93
+ /**
94
+ *
95
+ * @type {string}
96
+ * @memberof CreateOrUpdateOAuthClientPayload
97
+ */
98
+ ssoProvider?: string | null;
93
99
  }
94
100
  /**
95
101
  * Check if a given object implements the CreateOrUpdateOAuthClientPayload interface.
@@ -47,6 +47,7 @@ function CreateOrUpdateOAuthClientPayloadFromJSONTyped(json, ignoreDiscriminator
47
47
  'serviceAccount': json['serviceAccount'] == null ? undefined : json['serviceAccount'],
48
48
  'serviceAccountDelegation': json['serviceAccountDelegation'] == null ? undefined : json['serviceAccountDelegation'],
49
49
  'additionalTokenFields': json['additionalTokenFields'] == null ? undefined : json['additionalTokenFields'],
50
+ 'ssoProvider': json['ssoProvider'] == null ? undefined : json['ssoProvider'],
50
51
  };
51
52
  }
52
53
  function CreateOrUpdateOAuthClientPayloadToJSON(json) {
@@ -69,5 +70,6 @@ function CreateOrUpdateOAuthClientPayloadToJSONTyped(value, ignoreDiscriminator
69
70
  'serviceAccount': value['serviceAccount'],
70
71
  'serviceAccountDelegation': value['serviceAccountDelegation'],
71
72
  'additionalTokenFields': value['additionalTokenFields'],
73
+ 'ssoProvider': value['ssoProvider'],
72
74
  };
73
75
  }
@@ -96,6 +96,12 @@ export interface OAuthClient {
96
96
  additionalTokenFields?: {
97
97
  [key: string]: any;
98
98
  } | null;
99
+ /**
100
+ *
101
+ * @type {string}
102
+ * @memberof OAuthClient
103
+ */
104
+ ssoProvider?: string | null;
99
105
  }
100
106
  /**
101
107
  * Check if a given object implements the OAuthClient interface.
@@ -66,6 +66,7 @@ function OAuthClientFromJSONTyped(json, ignoreDiscriminator) {
66
66
  'serviceAccount': json['serviceAccount'],
67
67
  'serviceAccountDelegation': json['serviceAccountDelegation'],
68
68
  'additionalTokenFields': json['additionalTokenFields'] == null ? undefined : json['additionalTokenFields'],
69
+ 'ssoProvider': json['ssoProvider'] == null ? undefined : json['ssoProvider'],
69
70
  };
70
71
  }
71
72
  function OAuthClientToJSON(json) {
@@ -89,5 +90,6 @@ function OAuthClientToJSONTyped(value, ignoreDiscriminator = false) {
89
90
  'serviceAccount': value['serviceAccount'],
90
91
  'serviceAccountDelegation': value['serviceAccountDelegation'],
91
92
  'additionalTokenFields': value['additionalTokenFields'],
93
+ 'ssoProvider': value['ssoProvider'],
92
94
  };
93
95
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equisoft/account-service-sdk-typescript",
3
- "version": "9.7.1-snapshot.20250623033825",
3
+ "version": "9.7.1-snapshot.20250623164952",
4
4
  "description": "OpenAPI client for @equisoft/account-service-sdk-typescript",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -99,6 +99,12 @@ export interface CreateOrUpdateOAuthClientPayload {
99
99
  * @memberof CreateOrUpdateOAuthClientPayload
100
100
  */
101
101
  additionalTokenFields?: { [key: string]: any; } | null;
102
+ /**
103
+ *
104
+ * @type {string}
105
+ * @memberof CreateOrUpdateOAuthClientPayload
106
+ */
107
+ ssoProvider?: string | null;
102
108
  }
103
109
 
104
110
  /**
@@ -131,6 +137,7 @@ export function CreateOrUpdateOAuthClientPayloadFromJSONTyped(json: any, ignoreD
131
137
  'serviceAccount': json['serviceAccount'] == null ? undefined : json['serviceAccount'],
132
138
  'serviceAccountDelegation': json['serviceAccountDelegation'] == null ? undefined : json['serviceAccountDelegation'],
133
139
  'additionalTokenFields': json['additionalTokenFields'] == null ? undefined : json['additionalTokenFields'],
140
+ 'ssoProvider': json['ssoProvider'] == null ? undefined : json['ssoProvider'],
134
141
  };
135
142
  }
136
143
 
@@ -157,6 +164,7 @@ export function CreateOrUpdateOAuthClientPayloadToJSONTyped(value?: CreateOrUpda
157
164
  'serviceAccount': value['serviceAccount'],
158
165
  'serviceAccountDelegation': value['serviceAccountDelegation'],
159
166
  'additionalTokenFields': value['additionalTokenFields'],
167
+ 'ssoProvider': value['ssoProvider'],
160
168
  };
161
169
  }
162
170
 
@@ -105,6 +105,12 @@ export interface OAuthClient {
105
105
  * @memberof OAuthClient
106
106
  */
107
107
  additionalTokenFields?: { [key: string]: any; } | null;
108
+ /**
109
+ *
110
+ * @type {string}
111
+ * @memberof OAuthClient
112
+ */
113
+ ssoProvider?: string | null;
108
114
  }
109
115
 
110
116
  /**
@@ -147,6 +153,7 @@ export function OAuthClientFromJSONTyped(json: any, ignoreDiscriminator: boolean
147
153
  'serviceAccount': json['serviceAccount'],
148
154
  'serviceAccountDelegation': json['serviceAccountDelegation'],
149
155
  'additionalTokenFields': json['additionalTokenFields'] == null ? undefined : json['additionalTokenFields'],
156
+ 'ssoProvider': json['ssoProvider'] == null ? undefined : json['ssoProvider'],
150
157
  };
151
158
  }
152
159
 
@@ -174,6 +181,7 @@ export function OAuthClientToJSONTyped(value?: OAuthClient | null, ignoreDiscrim
174
181
  'serviceAccount': value['serviceAccount'],
175
182
  'serviceAccountDelegation': value['serviceAccountDelegation'],
176
183
  'additionalTokenFields': value['additionalTokenFields'],
184
+ 'ssoProvider': value['ssoProvider'],
177
185
  };
178
186
  }
179
187