@dynamic-labs/sdk-api 0.0.586 → 0.0.588
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/index.cjs +4 -0
- package/src/index.js +1 -0
- package/src/models/BadGateway.cjs +43 -0
- package/src/models/BadGateway.d.ts +27 -0
- package/src/models/BadGateway.js +37 -0
- package/src/models/CustomHostnameCreateRequest.cjs +4 -12
- package/src/models/CustomHostnameCreateRequest.d.ts +7 -0
- package/src/models/CustomHostnameCreateRequest.js +4 -12
- package/src/models/index.d.ts +1 -0
package/package.json
CHANGED
package/src/index.cjs
CHANGED
|
@@ -55,6 +55,7 @@ var AuthenticatorAttachment = require('./models/AuthenticatorAttachment.cjs');
|
|
|
55
55
|
var AuthenticatorAttestationResponse = require('./models/AuthenticatorAttestationResponse.cjs');
|
|
56
56
|
var AuthenticatorSelectionCriteria = require('./models/AuthenticatorSelectionCriteria.cjs');
|
|
57
57
|
var AuthenticatorTransportProtocol = require('./models/AuthenticatorTransportProtocol.cjs');
|
|
58
|
+
var BadGateway = require('./models/BadGateway.cjs');
|
|
58
59
|
var BadRequest = require('./models/BadRequest.cjs');
|
|
59
60
|
var BaseUser = require('./models/BaseUser.cjs');
|
|
60
61
|
var BillingSubscription = require('./models/BillingSubscription.cjs');
|
|
@@ -564,6 +565,9 @@ Object.defineProperty(exports, 'AuthenticatorTransportProtocol', {
|
|
|
564
565
|
exports.AuthenticatorTransportProtocolFromJSON = AuthenticatorTransportProtocol.AuthenticatorTransportProtocolFromJSON;
|
|
565
566
|
exports.AuthenticatorTransportProtocolFromJSONTyped = AuthenticatorTransportProtocol.AuthenticatorTransportProtocolFromJSONTyped;
|
|
566
567
|
exports.AuthenticatorTransportProtocolToJSON = AuthenticatorTransportProtocol.AuthenticatorTransportProtocolToJSON;
|
|
568
|
+
exports.BadGatewayFromJSON = BadGateway.BadGatewayFromJSON;
|
|
569
|
+
exports.BadGatewayFromJSONTyped = BadGateway.BadGatewayFromJSONTyped;
|
|
570
|
+
exports.BadGatewayToJSON = BadGateway.BadGatewayToJSON;
|
|
567
571
|
exports.BadRequestFromJSON = BadRequest.BadRequestFromJSON;
|
|
568
572
|
exports.BadRequestFromJSONTyped = BadRequest.BadRequestFromJSONTyped;
|
|
569
573
|
exports.BadRequestToJSON = BadRequest.BadRequestToJSON;
|
package/src/index.js
CHANGED
|
@@ -51,6 +51,7 @@ export { AuthenticatorAttachment, AuthenticatorAttachmentFromJSON, Authenticator
|
|
|
51
51
|
export { AuthenticatorAttestationResponseFromJSON, AuthenticatorAttestationResponseFromJSONTyped, AuthenticatorAttestationResponseToJSON } from './models/AuthenticatorAttestationResponse.js';
|
|
52
52
|
export { AuthenticatorSelectionCriteriaFromJSON, AuthenticatorSelectionCriteriaFromJSONTyped, AuthenticatorSelectionCriteriaToJSON } from './models/AuthenticatorSelectionCriteria.js';
|
|
53
53
|
export { AuthenticatorTransportProtocol, AuthenticatorTransportProtocolFromJSON, AuthenticatorTransportProtocolFromJSONTyped, AuthenticatorTransportProtocolToJSON } from './models/AuthenticatorTransportProtocol.js';
|
|
54
|
+
export { BadGatewayFromJSON, BadGatewayFromJSONTyped, BadGatewayToJSON } from './models/BadGateway.js';
|
|
54
55
|
export { BadRequestFromJSON, BadRequestFromJSONTyped, BadRequestToJSON } from './models/BadRequest.js';
|
|
55
56
|
export { BaseUserFromJSON, BaseUserFromJSONTyped, BaseUserToJSON } from './models/BaseUser.js';
|
|
56
57
|
export { BillingSubscriptionFromJSON, BillingSubscriptionFromJSONTyped, BillingSubscriptionToJSON } from './models/BillingSubscription.js';
|
|
@@ -0,0 +1,43 @@
|
|
|
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 BadGatewayFromJSON(json) {
|
|
19
|
+
return BadGatewayFromJSONTyped(json);
|
|
20
|
+
}
|
|
21
|
+
function BadGatewayFromJSONTyped(json, ignoreDiscriminator) {
|
|
22
|
+
if ((json === undefined) || (json === null)) {
|
|
23
|
+
return json;
|
|
24
|
+
}
|
|
25
|
+
return {
|
|
26
|
+
'error': json['error'],
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
function BadGatewayToJSON(value) {
|
|
30
|
+
if (value === undefined) {
|
|
31
|
+
return undefined;
|
|
32
|
+
}
|
|
33
|
+
if (value === null) {
|
|
34
|
+
return null;
|
|
35
|
+
}
|
|
36
|
+
return {
|
|
37
|
+
'error': value.error,
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
exports.BadGatewayFromJSON = BadGatewayFromJSON;
|
|
42
|
+
exports.BadGatewayFromJSONTyped = BadGatewayFromJSONTyped;
|
|
43
|
+
exports.BadGatewayToJSON = BadGatewayToJSON;
|
|
@@ -0,0 +1,27 @@
|
|
|
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 BadGateway
|
|
16
|
+
*/
|
|
17
|
+
export interface BadGateway {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof BadGateway
|
|
22
|
+
*/
|
|
23
|
+
error: string;
|
|
24
|
+
}
|
|
25
|
+
export declare function BadGatewayFromJSON(json: any): BadGateway;
|
|
26
|
+
export declare function BadGatewayFromJSONTyped(json: any, ignoreDiscriminator: boolean): BadGateway;
|
|
27
|
+
export declare function BadGatewayToJSON(value?: BadGateway | null): any;
|
|
@@ -0,0 +1,37 @@
|
|
|
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 BadGatewayFromJSON(json) {
|
|
15
|
+
return BadGatewayFromJSONTyped(json);
|
|
16
|
+
}
|
|
17
|
+
function BadGatewayFromJSONTyped(json, ignoreDiscriminator) {
|
|
18
|
+
if ((json === undefined) || (json === null)) {
|
|
19
|
+
return json;
|
|
20
|
+
}
|
|
21
|
+
return {
|
|
22
|
+
'error': json['error'],
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
function BadGatewayToJSON(value) {
|
|
26
|
+
if (value === undefined) {
|
|
27
|
+
return undefined;
|
|
28
|
+
}
|
|
29
|
+
if (value === null) {
|
|
30
|
+
return null;
|
|
31
|
+
}
|
|
32
|
+
return {
|
|
33
|
+
'error': value.error,
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export { BadGatewayFromJSON, BadGatewayFromJSONTyped, BadGatewayToJSON };
|
|
@@ -2,19 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
+
var CustomHostnameUsageEnum = require('./CustomHostnameUsageEnum.cjs');
|
|
6
|
+
|
|
5
7
|
/* 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
8
|
function CustomHostnameCreateRequestFromJSON(json) {
|
|
19
9
|
return CustomHostnameCreateRequestFromJSONTyped(json);
|
|
20
10
|
}
|
|
@@ -24,6 +14,7 @@ function CustomHostnameCreateRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
24
14
|
}
|
|
25
15
|
return {
|
|
26
16
|
'hostname': json['hostname'],
|
|
17
|
+
'usage': CustomHostnameUsageEnum.CustomHostnameUsageEnumFromJSON(json['usage']),
|
|
27
18
|
};
|
|
28
19
|
}
|
|
29
20
|
function CustomHostnameCreateRequestToJSON(value) {
|
|
@@ -35,6 +26,7 @@ function CustomHostnameCreateRequestToJSON(value) {
|
|
|
35
26
|
}
|
|
36
27
|
return {
|
|
37
28
|
'hostname': value.hostname,
|
|
29
|
+
'usage': CustomHostnameUsageEnum.CustomHostnameUsageEnumToJSON(value.usage),
|
|
38
30
|
};
|
|
39
31
|
}
|
|
40
32
|
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { CustomHostnameUsageEnum } from './CustomHostnameUsageEnum';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -21,6 +22,12 @@ export interface CustomHostnameCreateRequest {
|
|
|
21
22
|
* @memberof CustomHostnameCreateRequest
|
|
22
23
|
*/
|
|
23
24
|
hostname: string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {CustomHostnameUsageEnum}
|
|
28
|
+
* @memberof CustomHostnameCreateRequest
|
|
29
|
+
*/
|
|
30
|
+
usage: CustomHostnameUsageEnum;
|
|
24
31
|
}
|
|
25
32
|
export declare function CustomHostnameCreateRequestFromJSON(json: any): CustomHostnameCreateRequest;
|
|
26
33
|
export declare function CustomHostnameCreateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomHostnameCreateRequest;
|
|
@@ -1,16 +1,6 @@
|
|
|
1
|
+
import { CustomHostnameUsageEnumFromJSON, CustomHostnameUsageEnumToJSON } from './CustomHostnameUsageEnum.js';
|
|
2
|
+
|
|
1
3
|
/* 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
4
|
function CustomHostnameCreateRequestFromJSON(json) {
|
|
15
5
|
return CustomHostnameCreateRequestFromJSONTyped(json);
|
|
16
6
|
}
|
|
@@ -20,6 +10,7 @@ function CustomHostnameCreateRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
20
10
|
}
|
|
21
11
|
return {
|
|
22
12
|
'hostname': json['hostname'],
|
|
13
|
+
'usage': CustomHostnameUsageEnumFromJSON(json['usage']),
|
|
23
14
|
};
|
|
24
15
|
}
|
|
25
16
|
function CustomHostnameCreateRequestToJSON(value) {
|
|
@@ -31,6 +22,7 @@ function CustomHostnameCreateRequestToJSON(value) {
|
|
|
31
22
|
}
|
|
32
23
|
return {
|
|
33
24
|
'hostname': value.hostname,
|
|
25
|
+
'usage': CustomHostnameUsageEnumToJSON(value.usage),
|
|
34
26
|
};
|
|
35
27
|
}
|
|
36
28
|
|
package/src/models/index.d.ts
CHANGED
|
@@ -20,6 +20,7 @@ export * from './AuthenticatorAttachment';
|
|
|
20
20
|
export * from './AuthenticatorAttestationResponse';
|
|
21
21
|
export * from './AuthenticatorSelectionCriteria';
|
|
22
22
|
export * from './AuthenticatorTransportProtocol';
|
|
23
|
+
export * from './BadGateway';
|
|
23
24
|
export * from './BadRequest';
|
|
24
25
|
export * from './BaseUser';
|
|
25
26
|
export * from './BillingSubscription';
|