@dynamic-labs/sdk-api 0.0.335 → 0.0.337
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.
- package/package.json +1 -1
- package/src/apis/AllowlistsApi.cjs +1 -0
- package/src/apis/AllowlistsApi.js +1 -0
- package/src/apis/AnalyticsApi.cjs +1 -0
- package/src/apis/AnalyticsApi.js +1 -0
- package/src/apis/ChainalysisApi.cjs +1 -0
- package/src/apis/ChainalysisApi.js +1 -0
- package/src/apis/ChainsApi.cjs +1 -0
- package/src/apis/ChainsApi.js +1 -0
- package/src/apis/EnvironmentsApi.cjs +1 -0
- package/src/apis/EnvironmentsApi.js +1 -0
- package/src/apis/EventsApi.cjs +1 -0
- package/src/apis/EventsApi.js +1 -0
- package/src/apis/ExportsApi.cjs +1 -0
- package/src/apis/ExportsApi.js +1 -0
- package/src/apis/GatesApi.cjs +1 -0
- package/src/apis/GatesApi.js +1 -0
- package/src/apis/InvitesApi.cjs +1 -0
- package/src/apis/InvitesApi.js +1 -0
- package/src/apis/MembersApi.cjs +1 -0
- package/src/apis/MembersApi.js +1 -0
- package/src/apis/OrganizationsApi.cjs +1 -0
- package/src/apis/OrganizationsApi.js +1 -0
- package/src/apis/OriginsApi.cjs +1 -0
- package/src/apis/OriginsApi.js +1 -0
- package/src/apis/ProjectsApi.cjs +1 -0
- package/src/apis/ProjectsApi.js +1 -0
- package/src/apis/SDKApi.cjs +57 -0
- package/src/apis/SDKApi.d.ts +23 -1
- package/src/apis/SDKApi.js +57 -0
- package/src/apis/SDKViewsApi.cjs +1 -0
- package/src/apis/SDKViewsApi.js +1 -0
- package/src/apis/SessionsApi.cjs +1 -0
- package/src/apis/SessionsApi.js +1 -0
- package/src/apis/SettingsApi.cjs +1 -0
- package/src/apis/SettingsApi.js +1 -0
- package/src/apis/TokensApi.cjs +1 -0
- package/src/apis/TokensApi.js +1 -0
- package/src/apis/UsersApi.cjs +1 -0
- package/src/apis/UsersApi.js +1 -0
- package/src/apis/VisitsApi.cjs +1 -0
- package/src/apis/VisitsApi.js +1 -0
- package/src/apis/WalletsApi.cjs +1 -0
- package/src/apis/WalletsApi.js +1 -0
- package/src/apis/WebhooksApi.cjs +1 -0
- package/src/apis/WebhooksApi.js +1 -0
- package/src/index.cjs +24 -0
- package/src/index.js +5 -0
- package/src/models/HealthcheckResponse.cjs +33 -0
- package/src/models/HealthcheckResponse.d.ts +28 -0
- package/src/models/HealthcheckResponse.js +27 -0
- package/src/models/HealthcheckStatus.cjs +40 -0
- package/src/models/HealthcheckStatus.d.ts +23 -0
- package/src/models/HealthcheckStatus.js +34 -0
- package/src/models/ProjectSettingsSdk.cjs +3 -0
- package/src/models/ProjectSettingsSdk.d.ts +7 -0
- package/src/models/ProjectSettingsSdk.js +3 -0
- package/src/models/ProjectSettingsSdkEmbeddedWallets.cjs +43 -0
- package/src/models/ProjectSettingsSdkEmbeddedWallets.d.ts +53 -0
- package/src/models/ProjectSettingsSdkEmbeddedWallets.js +37 -0
- package/src/models/SupportedSecurityMethod.cjs +49 -0
- package/src/models/SupportedSecurityMethod.d.ts +45 -0
- package/src/models/SupportedSecurityMethod.js +43 -0
- package/src/models/SupportedSecurityMethods.cjs +36 -0
- package/src/models/SupportedSecurityMethods.d.ts +34 -0
- package/src/models/SupportedSecurityMethods.js +30 -0
- package/src/models/TimeUnitEnum.cjs +1 -0
- package/src/models/TimeUnitEnum.d.ts +2 -1
- package/src/models/TimeUnitEnum.js +1 -0
- package/src/models/UserPasskey.cjs +2 -0
- package/src/models/UserPasskey.d.ts +6 -0
- package/src/models/UserPasskey.js +2 -0
- package/src/models/index.d.ts +5 -0
package/src/index.cjs
CHANGED
|
@@ -91,6 +91,8 @@ var GateUpdateRequest = require('./models/GateUpdateRequest.cjs');
|
|
|
91
91
|
var GatesResponse = require('./models/GatesResponse.cjs');
|
|
92
92
|
var GetUserPasskeysResponse = require('./models/GetUserPasskeysResponse.cjs');
|
|
93
93
|
var HCaptchaSettings = require('./models/HCaptchaSettings.cjs');
|
|
94
|
+
var HealthcheckResponse = require('./models/HealthcheckResponse.cjs');
|
|
95
|
+
var HealthcheckStatus = require('./models/HealthcheckStatus.cjs');
|
|
94
96
|
var InitEmailAuthRequest = require('./models/InitEmailAuthRequest.cjs');
|
|
95
97
|
var InitEmailAuthResponse = require('./models/InitEmailAuthResponse.cjs');
|
|
96
98
|
var InitPasskeyRecoveryRequest = require('./models/InitPasskeyRecoveryRequest.cjs');
|
|
@@ -162,6 +164,7 @@ var ProjectSettingsGeneral = require('./models/ProjectSettingsGeneral.cjs');
|
|
|
162
164
|
var ProjectSettingsKyc = require('./models/ProjectSettingsKyc.cjs');
|
|
163
165
|
var ProjectSettingsPrivacy = require('./models/ProjectSettingsPrivacy.cjs');
|
|
164
166
|
var ProjectSettingsSdk = require('./models/ProjectSettingsSdk.cjs');
|
|
167
|
+
var ProjectSettingsSdkEmbeddedWallets = require('./models/ProjectSettingsSdkEmbeddedWallets.cjs');
|
|
165
168
|
var ProjectSettingsSdkSocialSignIn = require('./models/ProjectSettingsSdkSocialSignIn.cjs');
|
|
166
169
|
var ProjectSettingsSdkWalletConnect = require('./models/ProjectSettingsSdkWalletConnect.cjs');
|
|
167
170
|
var ProjectSettingsSecurity = require('./models/ProjectSettingsSecurity.cjs');
|
|
@@ -192,6 +195,8 @@ var SocialSignInProviderEnum = require('./models/SocialSignInProviderEnum.cjs');
|
|
|
192
195
|
var SubscriptionAdvancedScopeEnum = require('./models/SubscriptionAdvancedScopeEnum.cjs');
|
|
193
196
|
var SubscriptionFreeScopeEnum = require('./models/SubscriptionFreeScopeEnum.cjs');
|
|
194
197
|
var SupportedOnrampsResponse = require('./models/SupportedOnrampsResponse.cjs');
|
|
198
|
+
var SupportedSecurityMethod = require('./models/SupportedSecurityMethod.cjs');
|
|
199
|
+
var SupportedSecurityMethods = require('./models/SupportedSecurityMethods.cjs');
|
|
195
200
|
var TimeUnitEnum = require('./models/TimeUnitEnum.cjs');
|
|
196
201
|
var Token = require('./models/Token.cjs');
|
|
197
202
|
var TokenAddress = require('./models/TokenAddress.cjs');
|
|
@@ -524,6 +529,16 @@ exports.GetUserPasskeysResponseToJSON = GetUserPasskeysResponse.GetUserPasskeysR
|
|
|
524
529
|
exports.HCaptchaSettingsFromJSON = HCaptchaSettings.HCaptchaSettingsFromJSON;
|
|
525
530
|
exports.HCaptchaSettingsFromJSONTyped = HCaptchaSettings.HCaptchaSettingsFromJSONTyped;
|
|
526
531
|
exports.HCaptchaSettingsToJSON = HCaptchaSettings.HCaptchaSettingsToJSON;
|
|
532
|
+
exports.HealthcheckResponseFromJSON = HealthcheckResponse.HealthcheckResponseFromJSON;
|
|
533
|
+
exports.HealthcheckResponseFromJSONTyped = HealthcheckResponse.HealthcheckResponseFromJSONTyped;
|
|
534
|
+
exports.HealthcheckResponseToJSON = HealthcheckResponse.HealthcheckResponseToJSON;
|
|
535
|
+
Object.defineProperty(exports, 'HealthcheckStatus', {
|
|
536
|
+
enumerable: true,
|
|
537
|
+
get: function () { return HealthcheckStatus.HealthcheckStatus; }
|
|
538
|
+
});
|
|
539
|
+
exports.HealthcheckStatusFromJSON = HealthcheckStatus.HealthcheckStatusFromJSON;
|
|
540
|
+
exports.HealthcheckStatusFromJSONTyped = HealthcheckStatus.HealthcheckStatusFromJSONTyped;
|
|
541
|
+
exports.HealthcheckStatusToJSON = HealthcheckStatus.HealthcheckStatusToJSON;
|
|
527
542
|
exports.InitEmailAuthRequestFromJSON = InitEmailAuthRequest.InitEmailAuthRequestFromJSON;
|
|
528
543
|
exports.InitEmailAuthRequestFromJSONTyped = InitEmailAuthRequest.InitEmailAuthRequestFromJSONTyped;
|
|
529
544
|
exports.InitEmailAuthRequestToJSON = InitEmailAuthRequest.InitEmailAuthRequestToJSON;
|
|
@@ -753,6 +768,9 @@ exports.ProjectSettingsPrivacyToJSON = ProjectSettingsPrivacy.ProjectSettingsPri
|
|
|
753
768
|
exports.ProjectSettingsSdkFromJSON = ProjectSettingsSdk.ProjectSettingsSdkFromJSON;
|
|
754
769
|
exports.ProjectSettingsSdkFromJSONTyped = ProjectSettingsSdk.ProjectSettingsSdkFromJSONTyped;
|
|
755
770
|
exports.ProjectSettingsSdkToJSON = ProjectSettingsSdk.ProjectSettingsSdkToJSON;
|
|
771
|
+
exports.ProjectSettingsSdkEmbeddedWalletsFromJSON = ProjectSettingsSdkEmbeddedWallets.ProjectSettingsSdkEmbeddedWalletsFromJSON;
|
|
772
|
+
exports.ProjectSettingsSdkEmbeddedWalletsFromJSONTyped = ProjectSettingsSdkEmbeddedWallets.ProjectSettingsSdkEmbeddedWalletsFromJSONTyped;
|
|
773
|
+
exports.ProjectSettingsSdkEmbeddedWalletsToJSON = ProjectSettingsSdkEmbeddedWallets.ProjectSettingsSdkEmbeddedWalletsToJSON;
|
|
756
774
|
exports.ProjectSettingsSdkSocialSignInFromJSON = ProjectSettingsSdkSocialSignIn.ProjectSettingsSdkSocialSignInFromJSON;
|
|
757
775
|
exports.ProjectSettingsSdkSocialSignInFromJSONTyped = ProjectSettingsSdkSocialSignIn.ProjectSettingsSdkSocialSignInFromJSONTyped;
|
|
758
776
|
exports.ProjectSettingsSdkSocialSignInToJSON = ProjectSettingsSdkSocialSignIn.ProjectSettingsSdkSocialSignInToJSON;
|
|
@@ -879,6 +897,12 @@ exports.SubscriptionFreeScopeEnumToJSON = SubscriptionFreeScopeEnum.Subscription
|
|
|
879
897
|
exports.SupportedOnrampsResponseFromJSON = SupportedOnrampsResponse.SupportedOnrampsResponseFromJSON;
|
|
880
898
|
exports.SupportedOnrampsResponseFromJSONTyped = SupportedOnrampsResponse.SupportedOnrampsResponseFromJSONTyped;
|
|
881
899
|
exports.SupportedOnrampsResponseToJSON = SupportedOnrampsResponse.SupportedOnrampsResponseToJSON;
|
|
900
|
+
exports.SupportedSecurityMethodFromJSON = SupportedSecurityMethod.SupportedSecurityMethodFromJSON;
|
|
901
|
+
exports.SupportedSecurityMethodFromJSONTyped = SupportedSecurityMethod.SupportedSecurityMethodFromJSONTyped;
|
|
902
|
+
exports.SupportedSecurityMethodToJSON = SupportedSecurityMethod.SupportedSecurityMethodToJSON;
|
|
903
|
+
exports.SupportedSecurityMethodsFromJSON = SupportedSecurityMethods.SupportedSecurityMethodsFromJSON;
|
|
904
|
+
exports.SupportedSecurityMethodsFromJSONTyped = SupportedSecurityMethods.SupportedSecurityMethodsFromJSONTyped;
|
|
905
|
+
exports.SupportedSecurityMethodsToJSON = SupportedSecurityMethods.SupportedSecurityMethodsToJSON;
|
|
882
906
|
Object.defineProperty(exports, 'TimeUnitEnum', {
|
|
883
907
|
enumerable: true,
|
|
884
908
|
get: function () { return TimeUnitEnum.TimeUnitEnum; }
|
package/src/index.js
CHANGED
|
@@ -87,6 +87,8 @@ export { GateUpdateRequestFromJSON, GateUpdateRequestFromJSONTyped, GateUpdateRe
|
|
|
87
87
|
export { GatesResponseFromJSON, GatesResponseFromJSONTyped, GatesResponseToJSON } from './models/GatesResponse.js';
|
|
88
88
|
export { GetUserPasskeysResponseFromJSON, GetUserPasskeysResponseFromJSONTyped, GetUserPasskeysResponseToJSON } from './models/GetUserPasskeysResponse.js';
|
|
89
89
|
export { HCaptchaSettingsFromJSON, HCaptchaSettingsFromJSONTyped, HCaptchaSettingsToJSON } from './models/HCaptchaSettings.js';
|
|
90
|
+
export { HealthcheckResponseFromJSON, HealthcheckResponseFromJSONTyped, HealthcheckResponseToJSON } from './models/HealthcheckResponse.js';
|
|
91
|
+
export { HealthcheckStatus, HealthcheckStatusFromJSON, HealthcheckStatusFromJSONTyped, HealthcheckStatusToJSON } from './models/HealthcheckStatus.js';
|
|
90
92
|
export { InitEmailAuthRequestFromJSON, InitEmailAuthRequestFromJSONTyped, InitEmailAuthRequestToJSON } from './models/InitEmailAuthRequest.js';
|
|
91
93
|
export { InitEmailAuthResponseFromJSON, InitEmailAuthResponseFromJSONTyped, InitEmailAuthResponseToJSON } from './models/InitEmailAuthResponse.js';
|
|
92
94
|
export { InitPasskeyRecoveryRequestFromJSON, InitPasskeyRecoveryRequestFromJSONTyped, InitPasskeyRecoveryRequestToJSON } from './models/InitPasskeyRecoveryRequest.js';
|
|
@@ -158,6 +160,7 @@ export { ProjectSettingsGeneralFromJSON, ProjectSettingsGeneralFromJSONTyped, Pr
|
|
|
158
160
|
export { ProjectSettingsKycFromJSON, ProjectSettingsKycFromJSONTyped, ProjectSettingsKycToJSON } from './models/ProjectSettingsKyc.js';
|
|
159
161
|
export { ProjectSettingsPrivacyFromJSON, ProjectSettingsPrivacyFromJSONTyped, ProjectSettingsPrivacyToJSON } from './models/ProjectSettingsPrivacy.js';
|
|
160
162
|
export { ProjectSettingsSdkFromJSON, ProjectSettingsSdkFromJSONTyped, ProjectSettingsSdkToJSON } from './models/ProjectSettingsSdk.js';
|
|
163
|
+
export { ProjectSettingsSdkEmbeddedWalletsFromJSON, ProjectSettingsSdkEmbeddedWalletsFromJSONTyped, ProjectSettingsSdkEmbeddedWalletsToJSON } from './models/ProjectSettingsSdkEmbeddedWallets.js';
|
|
161
164
|
export { ProjectSettingsSdkSocialSignInFromJSON, ProjectSettingsSdkSocialSignInFromJSONTyped, ProjectSettingsSdkSocialSignInToJSON } from './models/ProjectSettingsSdkSocialSignIn.js';
|
|
162
165
|
export { ProjectSettingsSdkWalletConnectFromJSON, ProjectSettingsSdkWalletConnectFromJSONTyped, ProjectSettingsSdkWalletConnectToJSON } from './models/ProjectSettingsSdkWalletConnect.js';
|
|
163
166
|
export { ProjectSettingsSecurityFromJSON, ProjectSettingsSecurityFromJSONTyped, ProjectSettingsSecurityToJSON } from './models/ProjectSettingsSecurity.js';
|
|
@@ -188,6 +191,8 @@ export { SocialSignInProviderEnum, SocialSignInProviderEnumFromJSON, SocialSignI
|
|
|
188
191
|
export { SubscriptionAdvancedScopeEnum, SubscriptionAdvancedScopeEnumFromJSON, SubscriptionAdvancedScopeEnumFromJSONTyped, SubscriptionAdvancedScopeEnumToJSON } from './models/SubscriptionAdvancedScopeEnum.js';
|
|
189
192
|
export { SubscriptionFreeScopeEnum, SubscriptionFreeScopeEnumFromJSON, SubscriptionFreeScopeEnumFromJSONTyped, SubscriptionFreeScopeEnumToJSON } from './models/SubscriptionFreeScopeEnum.js';
|
|
190
193
|
export { SupportedOnrampsResponseFromJSON, SupportedOnrampsResponseFromJSONTyped, SupportedOnrampsResponseToJSON } from './models/SupportedOnrampsResponse.js';
|
|
194
|
+
export { SupportedSecurityMethodFromJSON, SupportedSecurityMethodFromJSONTyped, SupportedSecurityMethodToJSON } from './models/SupportedSecurityMethod.js';
|
|
195
|
+
export { SupportedSecurityMethodsFromJSON, SupportedSecurityMethodsFromJSONTyped, SupportedSecurityMethodsToJSON } from './models/SupportedSecurityMethods.js';
|
|
191
196
|
export { TimeUnitEnum, TimeUnitEnumFromJSON, TimeUnitEnumFromJSONTyped, TimeUnitEnumToJSON } from './models/TimeUnitEnum.js';
|
|
192
197
|
export { TokenFromJSON, TokenFromJSONTyped, TokenToJSON } from './models/Token.js';
|
|
193
198
|
export { TokenAddressFromJSON, TokenAddressFromJSONTyped, TokenAddressToJSON } from './models/TokenAddress.js';
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var HealthcheckStatus = require('./HealthcheckStatus.cjs');
|
|
6
|
+
|
|
7
|
+
/* tslint:disable */
|
|
8
|
+
function HealthcheckResponseFromJSON(json) {
|
|
9
|
+
return HealthcheckResponseFromJSONTyped(json);
|
|
10
|
+
}
|
|
11
|
+
function HealthcheckResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
12
|
+
if ((json === undefined) || (json === null)) {
|
|
13
|
+
return json;
|
|
14
|
+
}
|
|
15
|
+
return {
|
|
16
|
+
'status': HealthcheckStatus.HealthcheckStatusFromJSON(json['status']),
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
function HealthcheckResponseToJSON(value) {
|
|
20
|
+
if (value === undefined) {
|
|
21
|
+
return undefined;
|
|
22
|
+
}
|
|
23
|
+
if (value === null) {
|
|
24
|
+
return null;
|
|
25
|
+
}
|
|
26
|
+
return {
|
|
27
|
+
'status': HealthcheckStatus.HealthcheckStatusToJSON(value.status),
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
exports.HealthcheckResponseFromJSON = HealthcheckResponseFromJSON;
|
|
32
|
+
exports.HealthcheckResponseFromJSONTyped = HealthcheckResponseFromJSONTyped;
|
|
33
|
+
exports.HealthcheckResponseToJSON = HealthcheckResponseToJSON;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Dashboard API
|
|
3
|
+
* Dashboard API documentation
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { HealthcheckStatus } from './HealthcheckStatus';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface HealthcheckResponse
|
|
17
|
+
*/
|
|
18
|
+
export interface HealthcheckResponse {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {HealthcheckStatus}
|
|
22
|
+
* @memberof HealthcheckResponse
|
|
23
|
+
*/
|
|
24
|
+
status: HealthcheckStatus;
|
|
25
|
+
}
|
|
26
|
+
export declare function HealthcheckResponseFromJSON(json: any): HealthcheckResponse;
|
|
27
|
+
export declare function HealthcheckResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): HealthcheckResponse;
|
|
28
|
+
export declare function HealthcheckResponseToJSON(value?: HealthcheckResponse | null): any;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { HealthcheckStatusFromJSON, HealthcheckStatusToJSON } from './HealthcheckStatus.js';
|
|
2
|
+
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
function HealthcheckResponseFromJSON(json) {
|
|
5
|
+
return HealthcheckResponseFromJSONTyped(json);
|
|
6
|
+
}
|
|
7
|
+
function HealthcheckResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
8
|
+
if ((json === undefined) || (json === null)) {
|
|
9
|
+
return json;
|
|
10
|
+
}
|
|
11
|
+
return {
|
|
12
|
+
'status': HealthcheckStatusFromJSON(json['status']),
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
function HealthcheckResponseToJSON(value) {
|
|
16
|
+
if (value === undefined) {
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
if (value === null) {
|
|
20
|
+
return null;
|
|
21
|
+
}
|
|
22
|
+
return {
|
|
23
|
+
'status': HealthcheckStatusToJSON(value.status),
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export { HealthcheckResponseFromJSON, HealthcheckResponseFromJSONTyped, HealthcheckResponseToJSON };
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
/* tslint:disable */
|
|
6
|
+
/* eslint-disable */
|
|
7
|
+
/**
|
|
8
|
+
* Dashboard API
|
|
9
|
+
* Dashboard API documentation
|
|
10
|
+
*
|
|
11
|
+
* The version of the OpenAPI document: 1.0.0
|
|
12
|
+
*
|
|
13
|
+
*
|
|
14
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
15
|
+
* https://openapi-generator.tech
|
|
16
|
+
* Do not edit the class manually.
|
|
17
|
+
*/
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @enum {string}
|
|
22
|
+
*/
|
|
23
|
+
exports.HealthcheckStatus = void 0;
|
|
24
|
+
(function (HealthcheckStatus) {
|
|
25
|
+
HealthcheckStatus["Healthy"] = "healthy";
|
|
26
|
+
HealthcheckStatus["Unhealthy"] = "unhealthy";
|
|
27
|
+
})(exports.HealthcheckStatus || (exports.HealthcheckStatus = {}));
|
|
28
|
+
function HealthcheckStatusFromJSON(json) {
|
|
29
|
+
return HealthcheckStatusFromJSONTyped(json);
|
|
30
|
+
}
|
|
31
|
+
function HealthcheckStatusFromJSONTyped(json, ignoreDiscriminator) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
function HealthcheckStatusToJSON(value) {
|
|
35
|
+
return value;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
exports.HealthcheckStatusFromJSON = HealthcheckStatusFromJSON;
|
|
39
|
+
exports.HealthcheckStatusFromJSONTyped = HealthcheckStatusFromJSONTyped;
|
|
40
|
+
exports.HealthcheckStatusToJSON = HealthcheckStatusToJSON;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Dashboard API
|
|
3
|
+
* Dashboard API documentation
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @enum {string}
|
|
16
|
+
*/
|
|
17
|
+
export declare enum HealthcheckStatus {
|
|
18
|
+
Healthy = "healthy",
|
|
19
|
+
Unhealthy = "unhealthy"
|
|
20
|
+
}
|
|
21
|
+
export declare function HealthcheckStatusFromJSON(json: any): HealthcheckStatus;
|
|
22
|
+
export declare function HealthcheckStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): HealthcheckStatus;
|
|
23
|
+
export declare function HealthcheckStatusToJSON(value?: HealthcheckStatus | null): any;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Dashboard API
|
|
5
|
+
* Dashboard API documentation
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @enum {string}
|
|
18
|
+
*/
|
|
19
|
+
var HealthcheckStatus;
|
|
20
|
+
(function (HealthcheckStatus) {
|
|
21
|
+
HealthcheckStatus["Healthy"] = "healthy";
|
|
22
|
+
HealthcheckStatus["Unhealthy"] = "unhealthy";
|
|
23
|
+
})(HealthcheckStatus || (HealthcheckStatus = {}));
|
|
24
|
+
function HealthcheckStatusFromJSON(json) {
|
|
25
|
+
return HealthcheckStatusFromJSONTyped(json);
|
|
26
|
+
}
|
|
27
|
+
function HealthcheckStatusFromJSONTyped(json, ignoreDiscriminator) {
|
|
28
|
+
return json;
|
|
29
|
+
}
|
|
30
|
+
function HealthcheckStatusToJSON(value) {
|
|
31
|
+
return value;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export { HealthcheckStatus, HealthcheckStatusFromJSON, HealthcheckStatusFromJSONTyped, HealthcheckStatusToJSON };
|
|
@@ -4,6 +4,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var runtime = require('../runtime.cjs');
|
|
6
6
|
var EmbeddedWalletSecurityMethod = require('./EmbeddedWalletSecurityMethod.cjs');
|
|
7
|
+
var ProjectSettingsSdkEmbeddedWallets = require('./ProjectSettingsSdkEmbeddedWallets.cjs');
|
|
7
8
|
var ProjectSettingsSdkSocialSignIn = require('./ProjectSettingsSdkSocialSignIn.cjs');
|
|
8
9
|
var ProjectSettingsSdkWalletConnect = require('./ProjectSettingsSdkWalletConnect.cjs');
|
|
9
10
|
var SdkView = require('./SdkView.cjs');
|
|
@@ -26,6 +27,7 @@ function ProjectSettingsSdkFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
26
27
|
'automaticEmbeddedWalletCreation': !runtime.exists(json, 'automaticEmbeddedWalletCreation') ? undefined : json['automaticEmbeddedWalletCreation'],
|
|
27
28
|
'passkeyEmbeddedWalletRecoveryEnabled': !runtime.exists(json, 'passkeyEmbeddedWalletRecoveryEnabled') ? undefined : json['passkeyEmbeddedWalletRecoveryEnabled'],
|
|
28
29
|
'embeddedWalletSecurityMethods': !runtime.exists(json, 'embeddedWalletSecurityMethods') ? undefined : (json['embeddedWalletSecurityMethods'].map(EmbeddedWalletSecurityMethod.EmbeddedWalletSecurityMethodFromJSON)),
|
|
30
|
+
'embeddedWallets': !runtime.exists(json, 'embeddedWallets') ? undefined : ProjectSettingsSdkEmbeddedWallets.ProjectSettingsSdkEmbeddedWalletsFromJSON(json['embeddedWallets']),
|
|
29
31
|
'walletConnect': !runtime.exists(json, 'walletConnect') ? undefined : ProjectSettingsSdkWalletConnect.ProjectSettingsSdkWalletConnectFromJSON(json['walletConnect']),
|
|
30
32
|
'confirmEmailProviderForVerify': !runtime.exists(json, 'confirmEmailProviderForVerify') ? undefined : json['confirmEmailProviderForVerify'],
|
|
31
33
|
'displayDynamicMessaging': !runtime.exists(json, 'displayDynamicMessaging') ? undefined : json['displayDynamicMessaging'],
|
|
@@ -51,6 +53,7 @@ function ProjectSettingsSdkToJSON(value) {
|
|
|
51
53
|
'automaticEmbeddedWalletCreation': value.automaticEmbeddedWalletCreation,
|
|
52
54
|
'passkeyEmbeddedWalletRecoveryEnabled': value.passkeyEmbeddedWalletRecoveryEnabled,
|
|
53
55
|
'embeddedWalletSecurityMethods': value.embeddedWalletSecurityMethods === undefined ? undefined : (value.embeddedWalletSecurityMethods.map(EmbeddedWalletSecurityMethod.EmbeddedWalletSecurityMethodToJSON)),
|
|
56
|
+
'embeddedWallets': ProjectSettingsSdkEmbeddedWallets.ProjectSettingsSdkEmbeddedWalletsToJSON(value.embeddedWallets),
|
|
54
57
|
'walletConnect': ProjectSettingsSdkWalletConnect.ProjectSettingsSdkWalletConnectToJSON(value.walletConnect),
|
|
55
58
|
'confirmEmailProviderForVerify': value.confirmEmailProviderForVerify,
|
|
56
59
|
'displayDynamicMessaging': value.displayDynamicMessaging,
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { EmbeddedWalletSecurityMethod } from './EmbeddedWalletSecurityMethod';
|
|
13
|
+
import { ProjectSettingsSdkEmbeddedWallets } from './ProjectSettingsSdkEmbeddedWallets';
|
|
13
14
|
import { ProjectSettingsSdkSocialSignIn } from './ProjectSettingsSdkSocialSignIn';
|
|
14
15
|
import { ProjectSettingsSdkWalletConnect } from './ProjectSettingsSdkWalletConnect';
|
|
15
16
|
import { SdkView } from './SdkView';
|
|
@@ -73,6 +74,12 @@ export interface ProjectSettingsSdk {
|
|
|
73
74
|
* @memberof ProjectSettingsSdk
|
|
74
75
|
*/
|
|
75
76
|
embeddedWalletSecurityMethods?: Array<EmbeddedWalletSecurityMethod>;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {ProjectSettingsSdkEmbeddedWallets}
|
|
80
|
+
* @memberof ProjectSettingsSdk
|
|
81
|
+
*/
|
|
82
|
+
embeddedWallets?: ProjectSettingsSdkEmbeddedWallets;
|
|
76
83
|
/**
|
|
77
84
|
*
|
|
78
85
|
* @type {ProjectSettingsSdkWalletConnect}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { exists } from '../runtime.js';
|
|
2
2
|
import { EmbeddedWalletSecurityMethodFromJSON, EmbeddedWalletSecurityMethodToJSON } from './EmbeddedWalletSecurityMethod.js';
|
|
3
|
+
import { ProjectSettingsSdkEmbeddedWalletsFromJSON, ProjectSettingsSdkEmbeddedWalletsToJSON } from './ProjectSettingsSdkEmbeddedWallets.js';
|
|
3
4
|
import { ProjectSettingsSdkSocialSignInFromJSON, ProjectSettingsSdkSocialSignInToJSON } from './ProjectSettingsSdkSocialSignIn.js';
|
|
4
5
|
import { ProjectSettingsSdkWalletConnectFromJSON, ProjectSettingsSdkWalletConnectToJSON } from './ProjectSettingsSdkWalletConnect.js';
|
|
5
6
|
import { SdkViewFromJSON, SdkViewToJSON } from './SdkView.js';
|
|
@@ -22,6 +23,7 @@ function ProjectSettingsSdkFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
22
23
|
'automaticEmbeddedWalletCreation': !exists(json, 'automaticEmbeddedWalletCreation') ? undefined : json['automaticEmbeddedWalletCreation'],
|
|
23
24
|
'passkeyEmbeddedWalletRecoveryEnabled': !exists(json, 'passkeyEmbeddedWalletRecoveryEnabled') ? undefined : json['passkeyEmbeddedWalletRecoveryEnabled'],
|
|
24
25
|
'embeddedWalletSecurityMethods': !exists(json, 'embeddedWalletSecurityMethods') ? undefined : (json['embeddedWalletSecurityMethods'].map(EmbeddedWalletSecurityMethodFromJSON)),
|
|
26
|
+
'embeddedWallets': !exists(json, 'embeddedWallets') ? undefined : ProjectSettingsSdkEmbeddedWalletsFromJSON(json['embeddedWallets']),
|
|
25
27
|
'walletConnect': !exists(json, 'walletConnect') ? undefined : ProjectSettingsSdkWalletConnectFromJSON(json['walletConnect']),
|
|
26
28
|
'confirmEmailProviderForVerify': !exists(json, 'confirmEmailProviderForVerify') ? undefined : json['confirmEmailProviderForVerify'],
|
|
27
29
|
'displayDynamicMessaging': !exists(json, 'displayDynamicMessaging') ? undefined : json['displayDynamicMessaging'],
|
|
@@ -47,6 +49,7 @@ function ProjectSettingsSdkToJSON(value) {
|
|
|
47
49
|
'automaticEmbeddedWalletCreation': value.automaticEmbeddedWalletCreation,
|
|
48
50
|
'passkeyEmbeddedWalletRecoveryEnabled': value.passkeyEmbeddedWalletRecoveryEnabled,
|
|
49
51
|
'embeddedWalletSecurityMethods': value.embeddedWalletSecurityMethods === undefined ? undefined : (value.embeddedWalletSecurityMethods.map(EmbeddedWalletSecurityMethodToJSON)),
|
|
52
|
+
'embeddedWallets': ProjectSettingsSdkEmbeddedWalletsToJSON(value.embeddedWallets),
|
|
50
53
|
'walletConnect': ProjectSettingsSdkWalletConnectToJSON(value.walletConnect),
|
|
51
54
|
'confirmEmailProviderForVerify': value.confirmEmailProviderForVerify,
|
|
52
55
|
'displayDynamicMessaging': value.displayDynamicMessaging,
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var runtime = require('../runtime.cjs');
|
|
6
|
+
var Duration = require('./Duration.cjs');
|
|
7
|
+
var SupportedSecurityMethods = require('./SupportedSecurityMethods.cjs');
|
|
8
|
+
|
|
9
|
+
/* tslint:disable */
|
|
10
|
+
function ProjectSettingsSdkEmbeddedWalletsFromJSON(json) {
|
|
11
|
+
return ProjectSettingsSdkEmbeddedWalletsFromJSONTyped(json);
|
|
12
|
+
}
|
|
13
|
+
function ProjectSettingsSdkEmbeddedWalletsFromJSONTyped(json, ignoreDiscriminator) {
|
|
14
|
+
if ((json === undefined) || (json === null)) {
|
|
15
|
+
return json;
|
|
16
|
+
}
|
|
17
|
+
return {
|
|
18
|
+
'automaticEmbeddedWalletCreation': !runtime.exists(json, 'automaticEmbeddedWalletCreation') ? undefined : json['automaticEmbeddedWalletCreation'],
|
|
19
|
+
'emailRecoveryEnabled': !runtime.exists(json, 'emailRecoveryEnabled') ? undefined : json['emailRecoveryEnabled'],
|
|
20
|
+
'forceAuthenticatorAtSignup': !runtime.exists(json, 'forceAuthenticatorAtSignup') ? undefined : json['forceAuthenticatorAtSignup'],
|
|
21
|
+
'sessionKeyDuration': !runtime.exists(json, 'sessionKeyDuration') ? undefined : Duration.DurationFromJSON(json['sessionKeyDuration']),
|
|
22
|
+
'supportedSecurityMethods': !runtime.exists(json, 'supportedSecurityMethods') ? undefined : SupportedSecurityMethods.SupportedSecurityMethodsFromJSON(json['supportedSecurityMethods']),
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
function ProjectSettingsSdkEmbeddedWalletsToJSON(value) {
|
|
26
|
+
if (value === undefined) {
|
|
27
|
+
return undefined;
|
|
28
|
+
}
|
|
29
|
+
if (value === null) {
|
|
30
|
+
return null;
|
|
31
|
+
}
|
|
32
|
+
return {
|
|
33
|
+
'automaticEmbeddedWalletCreation': value.automaticEmbeddedWalletCreation,
|
|
34
|
+
'emailRecoveryEnabled': value.emailRecoveryEnabled,
|
|
35
|
+
'forceAuthenticatorAtSignup': value.forceAuthenticatorAtSignup,
|
|
36
|
+
'sessionKeyDuration': Duration.DurationToJSON(value.sessionKeyDuration),
|
|
37
|
+
'supportedSecurityMethods': SupportedSecurityMethods.SupportedSecurityMethodsToJSON(value.supportedSecurityMethods),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
exports.ProjectSettingsSdkEmbeddedWalletsFromJSON = ProjectSettingsSdkEmbeddedWalletsFromJSON;
|
|
42
|
+
exports.ProjectSettingsSdkEmbeddedWalletsFromJSONTyped = ProjectSettingsSdkEmbeddedWalletsFromJSONTyped;
|
|
43
|
+
exports.ProjectSettingsSdkEmbeddedWalletsToJSON = ProjectSettingsSdkEmbeddedWalletsToJSON;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Dashboard API
|
|
3
|
+
* Dashboard API documentation
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { Duration } from './Duration';
|
|
13
|
+
import { SupportedSecurityMethods } from './SupportedSecurityMethods';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface ProjectSettingsSdkEmbeddedWallets
|
|
18
|
+
*/
|
|
19
|
+
export interface ProjectSettingsSdkEmbeddedWallets {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {boolean}
|
|
23
|
+
* @memberof ProjectSettingsSdkEmbeddedWallets
|
|
24
|
+
*/
|
|
25
|
+
automaticEmbeddedWalletCreation?: boolean;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {boolean}
|
|
29
|
+
* @memberof ProjectSettingsSdkEmbeddedWallets
|
|
30
|
+
*/
|
|
31
|
+
emailRecoveryEnabled?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {boolean}
|
|
35
|
+
* @memberof ProjectSettingsSdkEmbeddedWallets
|
|
36
|
+
*/
|
|
37
|
+
forceAuthenticatorAtSignup?: boolean;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Duration}
|
|
41
|
+
* @memberof ProjectSettingsSdkEmbeddedWallets
|
|
42
|
+
*/
|
|
43
|
+
sessionKeyDuration?: Duration;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {SupportedSecurityMethods}
|
|
47
|
+
* @memberof ProjectSettingsSdkEmbeddedWallets
|
|
48
|
+
*/
|
|
49
|
+
supportedSecurityMethods?: SupportedSecurityMethods;
|
|
50
|
+
}
|
|
51
|
+
export declare function ProjectSettingsSdkEmbeddedWalletsFromJSON(json: any): ProjectSettingsSdkEmbeddedWallets;
|
|
52
|
+
export declare function ProjectSettingsSdkEmbeddedWalletsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectSettingsSdkEmbeddedWallets;
|
|
53
|
+
export declare function ProjectSettingsSdkEmbeddedWalletsToJSON(value?: ProjectSettingsSdkEmbeddedWallets | null): any;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { exists } from '../runtime.js';
|
|
2
|
+
import { DurationFromJSON, DurationToJSON } from './Duration.js';
|
|
3
|
+
import { SupportedSecurityMethodsFromJSON, SupportedSecurityMethodsToJSON } from './SupportedSecurityMethods.js';
|
|
4
|
+
|
|
5
|
+
/* tslint:disable */
|
|
6
|
+
function ProjectSettingsSdkEmbeddedWalletsFromJSON(json) {
|
|
7
|
+
return ProjectSettingsSdkEmbeddedWalletsFromJSONTyped(json);
|
|
8
|
+
}
|
|
9
|
+
function ProjectSettingsSdkEmbeddedWalletsFromJSONTyped(json, ignoreDiscriminator) {
|
|
10
|
+
if ((json === undefined) || (json === null)) {
|
|
11
|
+
return json;
|
|
12
|
+
}
|
|
13
|
+
return {
|
|
14
|
+
'automaticEmbeddedWalletCreation': !exists(json, 'automaticEmbeddedWalletCreation') ? undefined : json['automaticEmbeddedWalletCreation'],
|
|
15
|
+
'emailRecoveryEnabled': !exists(json, 'emailRecoveryEnabled') ? undefined : json['emailRecoveryEnabled'],
|
|
16
|
+
'forceAuthenticatorAtSignup': !exists(json, 'forceAuthenticatorAtSignup') ? undefined : json['forceAuthenticatorAtSignup'],
|
|
17
|
+
'sessionKeyDuration': !exists(json, 'sessionKeyDuration') ? undefined : DurationFromJSON(json['sessionKeyDuration']),
|
|
18
|
+
'supportedSecurityMethods': !exists(json, 'supportedSecurityMethods') ? undefined : SupportedSecurityMethodsFromJSON(json['supportedSecurityMethods']),
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
function ProjectSettingsSdkEmbeddedWalletsToJSON(value) {
|
|
22
|
+
if (value === undefined) {
|
|
23
|
+
return undefined;
|
|
24
|
+
}
|
|
25
|
+
if (value === null) {
|
|
26
|
+
return null;
|
|
27
|
+
}
|
|
28
|
+
return {
|
|
29
|
+
'automaticEmbeddedWalletCreation': value.automaticEmbeddedWalletCreation,
|
|
30
|
+
'emailRecoveryEnabled': value.emailRecoveryEnabled,
|
|
31
|
+
'forceAuthenticatorAtSignup': value.forceAuthenticatorAtSignup,
|
|
32
|
+
'sessionKeyDuration': DurationToJSON(value.sessionKeyDuration),
|
|
33
|
+
'supportedSecurityMethods': SupportedSecurityMethodsToJSON(value.supportedSecurityMethods),
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export { ProjectSettingsSdkEmbeddedWalletsFromJSON, ProjectSettingsSdkEmbeddedWalletsFromJSONTyped, ProjectSettingsSdkEmbeddedWalletsToJSON };
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
/* tslint:disable */
|
|
6
|
+
/* eslint-disable */
|
|
7
|
+
/**
|
|
8
|
+
* Dashboard API
|
|
9
|
+
* Dashboard API documentation
|
|
10
|
+
*
|
|
11
|
+
* The version of the OpenAPI document: 1.0.0
|
|
12
|
+
*
|
|
13
|
+
*
|
|
14
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
15
|
+
* https://openapi-generator.tech
|
|
16
|
+
* Do not edit the class manually.
|
|
17
|
+
*/
|
|
18
|
+
function SupportedSecurityMethodFromJSON(json) {
|
|
19
|
+
return SupportedSecurityMethodFromJSONTyped(json);
|
|
20
|
+
}
|
|
21
|
+
function SupportedSecurityMethodFromJSONTyped(json, ignoreDiscriminator) {
|
|
22
|
+
if ((json === undefined) || (json === null)) {
|
|
23
|
+
return json;
|
|
24
|
+
}
|
|
25
|
+
return {
|
|
26
|
+
'isDefault': json['isDefault'],
|
|
27
|
+
'isEnabled': json['isEnabled'],
|
|
28
|
+
'isPermanentAuthenticator': json['isPermanentAuthenticator'],
|
|
29
|
+
'listPosition': json['listPosition'],
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
function SupportedSecurityMethodToJSON(value) {
|
|
33
|
+
if (value === undefined) {
|
|
34
|
+
return undefined;
|
|
35
|
+
}
|
|
36
|
+
if (value === null) {
|
|
37
|
+
return null;
|
|
38
|
+
}
|
|
39
|
+
return {
|
|
40
|
+
'isDefault': value.isDefault,
|
|
41
|
+
'isEnabled': value.isEnabled,
|
|
42
|
+
'isPermanentAuthenticator': value.isPermanentAuthenticator,
|
|
43
|
+
'listPosition': value.listPosition,
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
exports.SupportedSecurityMethodFromJSON = SupportedSecurityMethodFromJSON;
|
|
48
|
+
exports.SupportedSecurityMethodFromJSONTyped = SupportedSecurityMethodFromJSONTyped;
|
|
49
|
+
exports.SupportedSecurityMethodToJSON = SupportedSecurityMethodToJSON;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Dashboard API
|
|
3
|
+
* Dashboard API documentation
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface SupportedSecurityMethod
|
|
16
|
+
*/
|
|
17
|
+
export interface SupportedSecurityMethod {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {boolean}
|
|
21
|
+
* @memberof SupportedSecurityMethod
|
|
22
|
+
*/
|
|
23
|
+
isDefault: boolean;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {boolean}
|
|
27
|
+
* @memberof SupportedSecurityMethod
|
|
28
|
+
*/
|
|
29
|
+
isEnabled: boolean;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {boolean}
|
|
33
|
+
* @memberof SupportedSecurityMethod
|
|
34
|
+
*/
|
|
35
|
+
isPermanentAuthenticator: boolean;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof SupportedSecurityMethod
|
|
40
|
+
*/
|
|
41
|
+
listPosition: number;
|
|
42
|
+
}
|
|
43
|
+
export declare function SupportedSecurityMethodFromJSON(json: any): SupportedSecurityMethod;
|
|
44
|
+
export declare function SupportedSecurityMethodFromJSONTyped(json: any, ignoreDiscriminator: boolean): SupportedSecurityMethod;
|
|
45
|
+
export declare function SupportedSecurityMethodToJSON(value?: SupportedSecurityMethod | null): any;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Dashboard API
|
|
5
|
+
* Dashboard API documentation
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
function SupportedSecurityMethodFromJSON(json) {
|
|
15
|
+
return SupportedSecurityMethodFromJSONTyped(json);
|
|
16
|
+
}
|
|
17
|
+
function SupportedSecurityMethodFromJSONTyped(json, ignoreDiscriminator) {
|
|
18
|
+
if ((json === undefined) || (json === null)) {
|
|
19
|
+
return json;
|
|
20
|
+
}
|
|
21
|
+
return {
|
|
22
|
+
'isDefault': json['isDefault'],
|
|
23
|
+
'isEnabled': json['isEnabled'],
|
|
24
|
+
'isPermanentAuthenticator': json['isPermanentAuthenticator'],
|
|
25
|
+
'listPosition': json['listPosition'],
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
function SupportedSecurityMethodToJSON(value) {
|
|
29
|
+
if (value === undefined) {
|
|
30
|
+
return undefined;
|
|
31
|
+
}
|
|
32
|
+
if (value === null) {
|
|
33
|
+
return null;
|
|
34
|
+
}
|
|
35
|
+
return {
|
|
36
|
+
'isDefault': value.isDefault,
|
|
37
|
+
'isEnabled': value.isEnabled,
|
|
38
|
+
'isPermanentAuthenticator': value.isPermanentAuthenticator,
|
|
39
|
+
'listPosition': value.listPosition,
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export { SupportedSecurityMethodFromJSON, SupportedSecurityMethodFromJSONTyped, SupportedSecurityMethodToJSON };
|