@equisoft/account-service-sdk-typescript 10.2.1-snapshot.20251104213840 → 10.2.1-snapshot.20251106133325
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.
|
@@ -19,6 +19,8 @@ export function instanceOfOAuthClientSecret(value) {
|
|
|
19
19
|
return false;
|
|
20
20
|
if (!('description' in value) || value['description'] === undefined)
|
|
21
21
|
return false;
|
|
22
|
+
if (!('maskedSecret' in value) || value['maskedSecret'] === undefined)
|
|
23
|
+
return false;
|
|
22
24
|
if (!('createdAt' in value) || value['createdAt'] === undefined)
|
|
23
25
|
return false;
|
|
24
26
|
return true;
|
|
@@ -33,6 +35,7 @@ export function OAuthClientSecretFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
33
35
|
return {
|
|
34
36
|
'uuid': json['uuid'],
|
|
35
37
|
'description': json['description'],
|
|
38
|
+
'maskedSecret': json['maskedSecret'],
|
|
36
39
|
'createdAt': (new Date(json['createdAt'])),
|
|
37
40
|
};
|
|
38
41
|
}
|
|
@@ -46,6 +49,7 @@ export function OAuthClientSecretToJSONTyped(value, ignoreDiscriminator = false)
|
|
|
46
49
|
return {
|
|
47
50
|
'uuid': value['uuid'],
|
|
48
51
|
'description': value['description'],
|
|
52
|
+
'maskedSecret': value['maskedSecret'],
|
|
49
53
|
'createdAt': ((value['createdAt']).toISOString()),
|
|
50
54
|
};
|
|
51
55
|
}
|
|
@@ -26,6 +26,8 @@ function instanceOfOAuthClientSecret(value) {
|
|
|
26
26
|
return false;
|
|
27
27
|
if (!('description' in value) || value['description'] === undefined)
|
|
28
28
|
return false;
|
|
29
|
+
if (!('maskedSecret' in value) || value['maskedSecret'] === undefined)
|
|
30
|
+
return false;
|
|
29
31
|
if (!('createdAt' in value) || value['createdAt'] === undefined)
|
|
30
32
|
return false;
|
|
31
33
|
return true;
|
|
@@ -40,6 +42,7 @@ function OAuthClientSecretFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
40
42
|
return {
|
|
41
43
|
'uuid': json['uuid'],
|
|
42
44
|
'description': json['description'],
|
|
45
|
+
'maskedSecret': json['maskedSecret'],
|
|
43
46
|
'createdAt': (new Date(json['createdAt'])),
|
|
44
47
|
};
|
|
45
48
|
}
|
|
@@ -53,6 +56,7 @@ function OAuthClientSecretToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
53
56
|
return {
|
|
54
57
|
'uuid': value['uuid'],
|
|
55
58
|
'description': value['description'],
|
|
59
|
+
'maskedSecret': value['maskedSecret'],
|
|
56
60
|
'createdAt': ((value['createdAt']).toISOString()),
|
|
57
61
|
};
|
|
58
62
|
}
|
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.20251106133325",
|
|
4
4
|
"description": "OpenAPI client for @equisoft/account-service-sdk-typescript",
|
|
5
5
|
"author": "OpenAPI-Generator",
|
|
6
6
|
"repository": {
|
|
@@ -31,6 +31,12 @@ export interface OAuthClientSecret {
|
|
|
31
31
|
* @memberof OAuthClientSecret
|
|
32
32
|
*/
|
|
33
33
|
description: string;
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof OAuthClientSecret
|
|
38
|
+
*/
|
|
39
|
+
maskedSecret: string;
|
|
34
40
|
/**
|
|
35
41
|
*
|
|
36
42
|
* @type {Date}
|
|
@@ -45,6 +51,7 @@ export interface OAuthClientSecret {
|
|
|
45
51
|
export function instanceOfOAuthClientSecret(value: object): value is OAuthClientSecret {
|
|
46
52
|
if (!('uuid' in value) || value['uuid'] === undefined) return false;
|
|
47
53
|
if (!('description' in value) || value['description'] === undefined) return false;
|
|
54
|
+
if (!('maskedSecret' in value) || value['maskedSecret'] === undefined) return false;
|
|
48
55
|
if (!('createdAt' in value) || value['createdAt'] === undefined) return false;
|
|
49
56
|
return true;
|
|
50
57
|
}
|
|
@@ -61,6 +68,7 @@ export function OAuthClientSecretFromJSONTyped(json: any, ignoreDiscriminator: b
|
|
|
61
68
|
|
|
62
69
|
'uuid': json['uuid'],
|
|
63
70
|
'description': json['description'],
|
|
71
|
+
'maskedSecret': json['maskedSecret'],
|
|
64
72
|
'createdAt': (new Date(json['createdAt'])),
|
|
65
73
|
};
|
|
66
74
|
}
|
|
@@ -78,6 +86,7 @@ export function OAuthClientSecretToJSONTyped(value?: OAuthClientSecret | null, i
|
|
|
78
86
|
|
|
79
87
|
'uuid': value['uuid'],
|
|
80
88
|
'description': value['description'],
|
|
89
|
+
'maskedSecret': value['maskedSecret'],
|
|
81
90
|
'createdAt': ((value['createdAt']).toISOString()),
|
|
82
91
|
};
|
|
83
92
|
}
|