@dynamic-labs/sdk-api-core 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/sdk-api-core",
3
- "version": "0.0.586",
3
+ "version": "0.0.588",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
package/src/index.cjs CHANGED
@@ -18,6 +18,7 @@ var AuthenticatorAttachment = require('./models/AuthenticatorAttachment.cjs');
18
18
  var AuthenticatorAttestationResponse = require('./models/AuthenticatorAttestationResponse.cjs');
19
19
  var AuthenticatorSelectionCriteria = require('./models/AuthenticatorSelectionCriteria.cjs');
20
20
  var AuthenticatorTransportProtocol = require('./models/AuthenticatorTransportProtocol.cjs');
21
+ var BadGateway = require('./models/BadGateway.cjs');
21
22
  var BadRequest = require('./models/BadRequest.cjs');
22
23
  var BaseUser = require('./models/BaseUser.cjs');
23
24
  var ChainConfiguration = require('./models/ChainConfiguration.cjs');
@@ -342,6 +343,9 @@ Object.defineProperty(exports, 'AuthenticatorTransportProtocol', {
342
343
  exports.AuthenticatorTransportProtocolFromJSON = AuthenticatorTransportProtocol.AuthenticatorTransportProtocolFromJSON;
343
344
  exports.AuthenticatorTransportProtocolFromJSONTyped = AuthenticatorTransportProtocol.AuthenticatorTransportProtocolFromJSONTyped;
344
345
  exports.AuthenticatorTransportProtocolToJSON = AuthenticatorTransportProtocol.AuthenticatorTransportProtocolToJSON;
346
+ exports.BadGatewayFromJSON = BadGateway.BadGatewayFromJSON;
347
+ exports.BadGatewayFromJSONTyped = BadGateway.BadGatewayFromJSONTyped;
348
+ exports.BadGatewayToJSON = BadGateway.BadGatewayToJSON;
345
349
  exports.BadRequestFromJSON = BadRequest.BadRequestFromJSON;
346
350
  exports.BadRequestFromJSONTyped = BadRequest.BadRequestFromJSONTyped;
347
351
  exports.BadRequestToJSON = BadRequest.BadRequestToJSON;
package/src/index.js CHANGED
@@ -14,6 +14,7 @@ export { AuthenticatorAttachment, AuthenticatorAttachmentFromJSON, Authenticator
14
14
  export { AuthenticatorAttestationResponseFromJSON, AuthenticatorAttestationResponseFromJSONTyped, AuthenticatorAttestationResponseToJSON } from './models/AuthenticatorAttestationResponse.js';
15
15
  export { AuthenticatorSelectionCriteriaFromJSON, AuthenticatorSelectionCriteriaFromJSONTyped, AuthenticatorSelectionCriteriaToJSON } from './models/AuthenticatorSelectionCriteria.js';
16
16
  export { AuthenticatorTransportProtocol, AuthenticatorTransportProtocolFromJSON, AuthenticatorTransportProtocolFromJSONTyped, AuthenticatorTransportProtocolToJSON } from './models/AuthenticatorTransportProtocol.js';
17
+ export { BadGatewayFromJSON, BadGatewayFromJSONTyped, BadGatewayToJSON } from './models/BadGateway.js';
17
18
  export { BadRequestFromJSON, BadRequestFromJSONTyped, BadRequestToJSON } from './models/BadRequest.js';
18
19
  export { BaseUserFromJSON, BaseUserFromJSONTyped, BaseUserToJSON } from './models/BaseUser.js';
19
20
  export { ChainConfigurationFromJSON, ChainConfigurationFromJSONTyped, ChainConfigurationToJSON } from './models/ChainConfiguration.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 };
@@ -12,6 +12,7 @@ export * from './AuthenticatorAttachment';
12
12
  export * from './AuthenticatorAttestationResponse';
13
13
  export * from './AuthenticatorSelectionCriteria';
14
14
  export * from './AuthenticatorTransportProtocol';
15
+ export * from './BadGateway';
15
16
  export * from './BadRequest';
16
17
  export * from './BaseUser';
17
18
  export * from './ChainConfiguration';