@dynamic-labs/sdk-api 0.0.453 → 0.0.455
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 +3 -0
- package/src/apis/AllowlistsApi.js +3 -0
- package/src/apis/AnalyticsApi.cjs +3 -0
- package/src/apis/AnalyticsApi.js +3 -0
- package/src/apis/ChainalysisApi.cjs +3 -0
- package/src/apis/ChainalysisApi.js +3 -0
- package/src/apis/ChainsApi.cjs +3 -0
- package/src/apis/ChainsApi.js +3 -0
- package/src/apis/CustomFieldsApi.cjs +3 -0
- package/src/apis/CustomFieldsApi.js +3 -0
- package/src/apis/CustomHostnamesApi.cjs +154 -0
- package/src/apis/CustomHostnamesApi.d.ts +52 -0
- package/src/apis/CustomHostnamesApi.js +150 -0
- package/src/apis/EnvironmentsApi.cjs +3 -0
- package/src/apis/EnvironmentsApi.js +3 -0
- package/src/apis/EventsApi.cjs +3 -0
- package/src/apis/EventsApi.js +3 -0
- package/src/apis/ExportsApi.cjs +3 -0
- package/src/apis/ExportsApi.js +3 -0
- package/src/apis/GatesApi.cjs +3 -0
- package/src/apis/GatesApi.js +3 -0
- package/src/apis/InvitesApi.cjs +3 -0
- package/src/apis/InvitesApi.js +3 -0
- package/src/apis/MembersApi.cjs +3 -0
- package/src/apis/MembersApi.js +3 -0
- package/src/apis/MfaSettingsApi.cjs +3 -0
- package/src/apis/MfaSettingsApi.js +3 -0
- package/src/apis/OrganizationsApi.cjs +3 -0
- package/src/apis/OrganizationsApi.js +3 -0
- package/src/apis/OriginsApi.cjs +3 -0
- package/src/apis/OriginsApi.js +3 -0
- package/src/apis/ProjectsApi.cjs +3 -0
- package/src/apis/ProjectsApi.js +3 -0
- package/src/apis/SDKApi.cjs +3 -0
- package/src/apis/SDKApi.js +3 -0
- package/src/apis/SDKViewsApi.cjs +3 -0
- package/src/apis/SDKViewsApi.js +3 -0
- package/src/apis/SessionsApi.cjs +3 -0
- package/src/apis/SessionsApi.js +3 -0
- package/src/apis/SettingsApi.cjs +3 -0
- package/src/apis/SettingsApi.js +3 -0
- package/src/apis/TokensApi.cjs +3 -0
- package/src/apis/TokensApi.js +3 -0
- package/src/apis/UsersApi.cjs +3 -0
- package/src/apis/UsersApi.js +3 -0
- package/src/apis/VisitsApi.cjs +3 -0
- package/src/apis/VisitsApi.js +3 -0
- package/src/apis/WalletsApi.cjs +3 -0
- package/src/apis/WalletsApi.js +3 -0
- package/src/apis/WebhooksApi.cjs +3 -0
- package/src/apis/WebhooksApi.js +3 -0
- package/src/apis/index.d.ts +1 -0
- package/src/index.cjs +42 -0
- package/src/index.js +8 -0
- package/src/models/CustomHostname.cjs +43 -0
- package/src/models/CustomHostname.d.ts +53 -0
- package/src/models/CustomHostname.js +37 -0
- package/src/models/CustomHostnameCreateRequest.cjs +43 -0
- package/src/models/CustomHostnameCreateRequest.d.ts +27 -0
- package/src/models/CustomHostnameCreateRequest.js +37 -0
- package/src/models/CustomHostnameStatusEnum.cjs +41 -0
- package/src/models/CustomHostnameStatusEnum.d.ts +24 -0
- package/src/models/CustomHostnameStatusEnum.js +35 -0
- package/src/models/CustomHostnameVerificationRecord.cjs +40 -0
- package/src/models/CustomHostnameVerificationRecord.d.ts +47 -0
- package/src/models/CustomHostnameVerificationRecord.js +34 -0
- package/src/models/CustomHostnameVerificationType.cjs +41 -0
- package/src/models/CustomHostnameVerificationType.d.ts +24 -0
- package/src/models/CustomHostnameVerificationType.js +35 -0
- package/src/models/CustomHostnamesResponse.cjs +33 -0
- package/src/models/CustomHostnamesResponse.d.ts +28 -0
- package/src/models/CustomHostnamesResponse.js +27 -0
- package/src/models/DnsRecordType.cjs +40 -0
- package/src/models/DnsRecordType.d.ts +23 -0
- package/src/models/DnsRecordType.js +34 -0
- package/src/models/ProjectSettingsSdkEmbeddedWallets.cjs +2 -0
- package/src/models/ProjectSettingsSdkEmbeddedWallets.d.ts +6 -0
- package/src/models/ProjectSettingsSdkEmbeddedWallets.js +2 -0
- package/src/models/UnprocessableEntityErrorCode.cjs +1 -0
- package/src/models/UnprocessableEntityErrorCode.d.ts +2 -1
- package/src/models/UnprocessableEntityErrorCode.js +1 -0
- package/src/models/index.d.ts +7 -0
|
@@ -24,6 +24,9 @@ require('../models/ChainalysisCheckResultEnum.cjs');
|
|
|
24
24
|
require('../models/EmbeddedWalletProviderEnum.cjs');
|
|
25
25
|
require('../models/UserIdentifierTypeEnum.cjs');
|
|
26
26
|
require('../models/CurrencyType.cjs');
|
|
27
|
+
require('../models/CustomHostnameStatusEnum.cjs');
|
|
28
|
+
require('../models/CustomHostnameVerificationType.cjs');
|
|
29
|
+
require('../models/DnsRecordType.cjs');
|
|
27
30
|
require('../models/TimeUnitEnum.cjs');
|
|
28
31
|
require('../models/EmbeddedWalletAuthType.cjs');
|
|
29
32
|
require('../models/EmbeddedWalletSecurityMethod.cjs');
|
|
@@ -20,6 +20,9 @@ import '../models/ChainalysisCheckResultEnum.js';
|
|
|
20
20
|
import '../models/EmbeddedWalletProviderEnum.js';
|
|
21
21
|
import '../models/UserIdentifierTypeEnum.js';
|
|
22
22
|
import '../models/CurrencyType.js';
|
|
23
|
+
import '../models/CustomHostnameStatusEnum.js';
|
|
24
|
+
import '../models/CustomHostnameVerificationType.js';
|
|
25
|
+
import '../models/DnsRecordType.js';
|
|
23
26
|
import '../models/TimeUnitEnum.js';
|
|
24
27
|
import '../models/EmbeddedWalletAuthType.js';
|
|
25
28
|
import '../models/EmbeddedWalletSecurityMethod.js';
|
package/src/apis/OriginsApi.cjs
CHANGED
|
@@ -23,6 +23,9 @@ require('../models/ChainalysisCheckResultEnum.cjs');
|
|
|
23
23
|
require('../models/EmbeddedWalletProviderEnum.cjs');
|
|
24
24
|
require('../models/UserIdentifierTypeEnum.cjs');
|
|
25
25
|
require('../models/CurrencyType.cjs');
|
|
26
|
+
require('../models/CustomHostnameStatusEnum.cjs');
|
|
27
|
+
require('../models/CustomHostnameVerificationType.cjs');
|
|
28
|
+
require('../models/DnsRecordType.cjs');
|
|
26
29
|
require('../models/TimeUnitEnum.cjs');
|
|
27
30
|
require('../models/EmbeddedWalletAuthType.cjs');
|
|
28
31
|
require('../models/EmbeddedWalletSecurityMethod.cjs');
|
package/src/apis/OriginsApi.js
CHANGED
|
@@ -19,6 +19,9 @@ import '../models/ChainalysisCheckResultEnum.js';
|
|
|
19
19
|
import '../models/EmbeddedWalletProviderEnum.js';
|
|
20
20
|
import '../models/UserIdentifierTypeEnum.js';
|
|
21
21
|
import '../models/CurrencyType.js';
|
|
22
|
+
import '../models/CustomHostnameStatusEnum.js';
|
|
23
|
+
import '../models/CustomHostnameVerificationType.js';
|
|
24
|
+
import '../models/DnsRecordType.js';
|
|
22
25
|
import '../models/TimeUnitEnum.js';
|
|
23
26
|
import '../models/EmbeddedWalletAuthType.js';
|
|
24
27
|
import '../models/EmbeddedWalletSecurityMethod.js';
|
package/src/apis/ProjectsApi.cjs
CHANGED
|
@@ -24,6 +24,9 @@ require('../models/EmbeddedWalletProviderEnum.cjs');
|
|
|
24
24
|
var CreateProjectResponse = require('../models/CreateProjectResponse.cjs');
|
|
25
25
|
require('../models/UserIdentifierTypeEnum.cjs');
|
|
26
26
|
require('../models/CurrencyType.cjs');
|
|
27
|
+
require('../models/CustomHostnameStatusEnum.cjs');
|
|
28
|
+
require('../models/CustomHostnameVerificationType.cjs');
|
|
29
|
+
require('../models/DnsRecordType.cjs');
|
|
27
30
|
require('../models/TimeUnitEnum.cjs');
|
|
28
31
|
require('../models/EmbeddedWalletAuthType.cjs');
|
|
29
32
|
require('../models/EmbeddedWalletSecurityMethod.cjs');
|
package/src/apis/ProjectsApi.js
CHANGED
|
@@ -20,6 +20,9 @@ import '../models/EmbeddedWalletProviderEnum.js';
|
|
|
20
20
|
import { CreateProjectResponseFromJSON } from '../models/CreateProjectResponse.js';
|
|
21
21
|
import '../models/UserIdentifierTypeEnum.js';
|
|
22
22
|
import '../models/CurrencyType.js';
|
|
23
|
+
import '../models/CustomHostnameStatusEnum.js';
|
|
24
|
+
import '../models/CustomHostnameVerificationType.js';
|
|
25
|
+
import '../models/DnsRecordType.js';
|
|
23
26
|
import '../models/TimeUnitEnum.js';
|
|
24
27
|
import '../models/EmbeddedWalletAuthType.js';
|
|
25
28
|
import '../models/EmbeddedWalletSecurityMethod.js';
|
package/src/apis/SDKApi.cjs
CHANGED
|
@@ -27,6 +27,9 @@ var CreateEmbeddedWalletsRequest = require('../models/CreateEmbeddedWalletsReque
|
|
|
27
27
|
require('../models/UserIdentifierTypeEnum.cjs');
|
|
28
28
|
var Currency = require('../models/Currency.cjs');
|
|
29
29
|
require('../models/CurrencyType.cjs');
|
|
30
|
+
require('../models/CustomHostnameStatusEnum.cjs');
|
|
31
|
+
require('../models/CustomHostnameVerificationType.cjs');
|
|
32
|
+
require('../models/DnsRecordType.cjs');
|
|
30
33
|
require('../models/TimeUnitEnum.cjs');
|
|
31
34
|
var EmailProviderResponse = require('../models/EmailProviderResponse.cjs');
|
|
32
35
|
var EmailVerificationCreateRequest = require('../models/EmailVerificationCreateRequest.cjs');
|
package/src/apis/SDKApi.js
CHANGED
|
@@ -23,6 +23,9 @@ import { CreateEmbeddedWalletsRequestToJSON } from '../models/CreateEmbeddedWall
|
|
|
23
23
|
import '../models/UserIdentifierTypeEnum.js';
|
|
24
24
|
import { CurrencyFromJSON } from '../models/Currency.js';
|
|
25
25
|
import '../models/CurrencyType.js';
|
|
26
|
+
import '../models/CustomHostnameStatusEnum.js';
|
|
27
|
+
import '../models/CustomHostnameVerificationType.js';
|
|
28
|
+
import '../models/DnsRecordType.js';
|
|
26
29
|
import '../models/TimeUnitEnum.js';
|
|
27
30
|
import { EmailProviderResponseFromJSON } from '../models/EmailProviderResponse.js';
|
|
28
31
|
import { EmailVerificationCreateRequestToJSON } from '../models/EmailVerificationCreateRequest.js';
|
package/src/apis/SDKViewsApi.cjs
CHANGED
|
@@ -23,6 +23,9 @@ require('../models/ChainalysisCheckResultEnum.cjs');
|
|
|
23
23
|
require('../models/EmbeddedWalletProviderEnum.cjs');
|
|
24
24
|
require('../models/UserIdentifierTypeEnum.cjs');
|
|
25
25
|
require('../models/CurrencyType.cjs');
|
|
26
|
+
require('../models/CustomHostnameStatusEnum.cjs');
|
|
27
|
+
require('../models/CustomHostnameVerificationType.cjs');
|
|
28
|
+
require('../models/DnsRecordType.cjs');
|
|
26
29
|
require('../models/TimeUnitEnum.cjs');
|
|
27
30
|
require('../models/EmbeddedWalletAuthType.cjs');
|
|
28
31
|
require('../models/EmbeddedWalletSecurityMethod.cjs');
|
package/src/apis/SDKViewsApi.js
CHANGED
|
@@ -19,6 +19,9 @@ import '../models/ChainalysisCheckResultEnum.js';
|
|
|
19
19
|
import '../models/EmbeddedWalletProviderEnum.js';
|
|
20
20
|
import '../models/UserIdentifierTypeEnum.js';
|
|
21
21
|
import '../models/CurrencyType.js';
|
|
22
|
+
import '../models/CustomHostnameStatusEnum.js';
|
|
23
|
+
import '../models/CustomHostnameVerificationType.js';
|
|
24
|
+
import '../models/DnsRecordType.js';
|
|
22
25
|
import '../models/TimeUnitEnum.js';
|
|
23
26
|
import '../models/EmbeddedWalletAuthType.js';
|
|
24
27
|
import '../models/EmbeddedWalletSecurityMethod.js';
|
package/src/apis/SessionsApi.cjs
CHANGED
|
@@ -24,6 +24,9 @@ var Session = require('../models/Session.cjs');
|
|
|
24
24
|
require('../models/EmbeddedWalletProviderEnum.cjs');
|
|
25
25
|
require('../models/UserIdentifierTypeEnum.cjs');
|
|
26
26
|
require('../models/CurrencyType.cjs');
|
|
27
|
+
require('../models/CustomHostnameStatusEnum.cjs');
|
|
28
|
+
require('../models/CustomHostnameVerificationType.cjs');
|
|
29
|
+
require('../models/DnsRecordType.cjs');
|
|
27
30
|
require('../models/TimeUnitEnum.cjs');
|
|
28
31
|
require('../models/EmbeddedWalletAuthType.cjs');
|
|
29
32
|
require('../models/EmbeddedWalletSecurityMethod.cjs');
|
package/src/apis/SessionsApi.js
CHANGED
|
@@ -20,6 +20,9 @@ import { SessionFromJSON } from '../models/Session.js';
|
|
|
20
20
|
import '../models/EmbeddedWalletProviderEnum.js';
|
|
21
21
|
import '../models/UserIdentifierTypeEnum.js';
|
|
22
22
|
import '../models/CurrencyType.js';
|
|
23
|
+
import '../models/CustomHostnameStatusEnum.js';
|
|
24
|
+
import '../models/CustomHostnameVerificationType.js';
|
|
25
|
+
import '../models/DnsRecordType.js';
|
|
23
26
|
import '../models/TimeUnitEnum.js';
|
|
24
27
|
import '../models/EmbeddedWalletAuthType.js';
|
|
25
28
|
import '../models/EmbeddedWalletSecurityMethod.js';
|
package/src/apis/SettingsApi.cjs
CHANGED
|
@@ -23,6 +23,9 @@ require('../models/ChainalysisCheckResultEnum.cjs');
|
|
|
23
23
|
require('../models/EmbeddedWalletProviderEnum.cjs');
|
|
24
24
|
require('../models/UserIdentifierTypeEnum.cjs');
|
|
25
25
|
require('../models/CurrencyType.cjs');
|
|
26
|
+
require('../models/CustomHostnameStatusEnum.cjs');
|
|
27
|
+
require('../models/CustomHostnameVerificationType.cjs');
|
|
28
|
+
require('../models/DnsRecordType.cjs');
|
|
26
29
|
require('../models/TimeUnitEnum.cjs');
|
|
27
30
|
require('../models/EmbeddedWalletAuthType.cjs');
|
|
28
31
|
require('../models/EmbeddedWalletSecurityMethod.cjs');
|
package/src/apis/SettingsApi.js
CHANGED
|
@@ -19,6 +19,9 @@ import '../models/ChainalysisCheckResultEnum.js';
|
|
|
19
19
|
import '../models/EmbeddedWalletProviderEnum.js';
|
|
20
20
|
import '../models/UserIdentifierTypeEnum.js';
|
|
21
21
|
import '../models/CurrencyType.js';
|
|
22
|
+
import '../models/CustomHostnameStatusEnum.js';
|
|
23
|
+
import '../models/CustomHostnameVerificationType.js';
|
|
24
|
+
import '../models/DnsRecordType.js';
|
|
22
25
|
import '../models/TimeUnitEnum.js';
|
|
23
26
|
import '../models/EmbeddedWalletAuthType.js';
|
|
24
27
|
import '../models/EmbeddedWalletSecurityMethod.js';
|
package/src/apis/TokensApi.cjs
CHANGED
|
@@ -24,6 +24,9 @@ require('../models/EmbeddedWalletProviderEnum.cjs');
|
|
|
24
24
|
var CreateTokenResponse = require('../models/CreateTokenResponse.cjs');
|
|
25
25
|
require('../models/UserIdentifierTypeEnum.cjs');
|
|
26
26
|
require('../models/CurrencyType.cjs');
|
|
27
|
+
require('../models/CustomHostnameStatusEnum.cjs');
|
|
28
|
+
require('../models/CustomHostnameVerificationType.cjs');
|
|
29
|
+
require('../models/DnsRecordType.cjs');
|
|
27
30
|
require('../models/TimeUnitEnum.cjs');
|
|
28
31
|
require('../models/EmbeddedWalletAuthType.cjs');
|
|
29
32
|
require('../models/EmbeddedWalletSecurityMethod.cjs');
|
package/src/apis/TokensApi.js
CHANGED
|
@@ -20,6 +20,9 @@ import '../models/EmbeddedWalletProviderEnum.js';
|
|
|
20
20
|
import { CreateTokenResponseFromJSON } from '../models/CreateTokenResponse.js';
|
|
21
21
|
import '../models/UserIdentifierTypeEnum.js';
|
|
22
22
|
import '../models/CurrencyType.js';
|
|
23
|
+
import '../models/CustomHostnameStatusEnum.js';
|
|
24
|
+
import '../models/CustomHostnameVerificationType.js';
|
|
25
|
+
import '../models/DnsRecordType.js';
|
|
23
26
|
import '../models/TimeUnitEnum.js';
|
|
24
27
|
import '../models/EmbeddedWalletAuthType.js';
|
|
25
28
|
import '../models/EmbeddedWalletSecurityMethod.js';
|
package/src/apis/UsersApi.cjs
CHANGED
|
@@ -24,6 +24,9 @@ require('../models/ChainalysisCheckResultEnum.cjs');
|
|
|
24
24
|
require('../models/EmbeddedWalletProviderEnum.cjs');
|
|
25
25
|
require('../models/UserIdentifierTypeEnum.cjs');
|
|
26
26
|
require('../models/CurrencyType.cjs');
|
|
27
|
+
require('../models/CustomHostnameStatusEnum.cjs');
|
|
28
|
+
require('../models/CustomHostnameVerificationType.cjs');
|
|
29
|
+
require('../models/DnsRecordType.cjs');
|
|
27
30
|
require('../models/TimeUnitEnum.cjs');
|
|
28
31
|
require('../models/EmbeddedWalletAuthType.cjs');
|
|
29
32
|
require('../models/EmbeddedWalletSecurityMethod.cjs');
|
package/src/apis/UsersApi.js
CHANGED
|
@@ -20,6 +20,9 @@ import '../models/ChainalysisCheckResultEnum.js';
|
|
|
20
20
|
import '../models/EmbeddedWalletProviderEnum.js';
|
|
21
21
|
import '../models/UserIdentifierTypeEnum.js';
|
|
22
22
|
import '../models/CurrencyType.js';
|
|
23
|
+
import '../models/CustomHostnameStatusEnum.js';
|
|
24
|
+
import '../models/CustomHostnameVerificationType.js';
|
|
25
|
+
import '../models/DnsRecordType.js';
|
|
23
26
|
import '../models/TimeUnitEnum.js';
|
|
24
27
|
import '../models/EmbeddedWalletAuthType.js';
|
|
25
28
|
import '../models/EmbeddedWalletSecurityMethod.js';
|
package/src/apis/VisitsApi.cjs
CHANGED
|
@@ -23,6 +23,9 @@ require('../models/ChainalysisCheckResultEnum.cjs');
|
|
|
23
23
|
require('../models/EmbeddedWalletProviderEnum.cjs');
|
|
24
24
|
require('../models/UserIdentifierTypeEnum.cjs');
|
|
25
25
|
require('../models/CurrencyType.cjs');
|
|
26
|
+
require('../models/CustomHostnameStatusEnum.cjs');
|
|
27
|
+
require('../models/CustomHostnameVerificationType.cjs');
|
|
28
|
+
require('../models/DnsRecordType.cjs');
|
|
26
29
|
require('../models/TimeUnitEnum.cjs');
|
|
27
30
|
require('../models/EmbeddedWalletAuthType.cjs');
|
|
28
31
|
require('../models/EmbeddedWalletSecurityMethod.cjs');
|
package/src/apis/VisitsApi.js
CHANGED
|
@@ -19,6 +19,9 @@ import '../models/ChainalysisCheckResultEnum.js';
|
|
|
19
19
|
import '../models/EmbeddedWalletProviderEnum.js';
|
|
20
20
|
import '../models/UserIdentifierTypeEnum.js';
|
|
21
21
|
import '../models/CurrencyType.js';
|
|
22
|
+
import '../models/CustomHostnameStatusEnum.js';
|
|
23
|
+
import '../models/CustomHostnameVerificationType.js';
|
|
24
|
+
import '../models/DnsRecordType.js';
|
|
22
25
|
import '../models/TimeUnitEnum.js';
|
|
23
26
|
import '../models/EmbeddedWalletAuthType.js';
|
|
24
27
|
import '../models/EmbeddedWalletSecurityMethod.js';
|
package/src/apis/WalletsApi.cjs
CHANGED
|
@@ -26,6 +26,9 @@ var CreateUserEmbeddedWalletsFromFarcasterRequest = require('../models/CreateUse
|
|
|
26
26
|
var CreateUserEmbeddedWalletsRequest = require('../models/CreateUserEmbeddedWalletsRequest.cjs');
|
|
27
27
|
var CreateWalletRequest = require('../models/CreateWalletRequest.cjs');
|
|
28
28
|
require('../models/CurrencyType.cjs');
|
|
29
|
+
require('../models/CustomHostnameStatusEnum.cjs');
|
|
30
|
+
require('../models/CustomHostnameVerificationType.cjs');
|
|
31
|
+
require('../models/DnsRecordType.cjs');
|
|
29
32
|
require('../models/TimeUnitEnum.cjs');
|
|
30
33
|
require('../models/EmbeddedWalletAuthType.cjs');
|
|
31
34
|
require('../models/EmbeddedWalletSecurityMethod.cjs');
|
package/src/apis/WalletsApi.js
CHANGED
|
@@ -22,6 +22,9 @@ import { CreateUserEmbeddedWalletsFromFarcasterRequestToJSON } from '../models/C
|
|
|
22
22
|
import { CreateUserEmbeddedWalletsRequestToJSON } from '../models/CreateUserEmbeddedWalletsRequest.js';
|
|
23
23
|
import { CreateWalletRequestToJSON } from '../models/CreateWalletRequest.js';
|
|
24
24
|
import '../models/CurrencyType.js';
|
|
25
|
+
import '../models/CustomHostnameStatusEnum.js';
|
|
26
|
+
import '../models/CustomHostnameVerificationType.js';
|
|
27
|
+
import '../models/DnsRecordType.js';
|
|
25
28
|
import '../models/TimeUnitEnum.js';
|
|
26
29
|
import '../models/EmbeddedWalletAuthType.js';
|
|
27
30
|
import '../models/EmbeddedWalletSecurityMethod.js';
|
package/src/apis/WebhooksApi.cjs
CHANGED
|
@@ -23,6 +23,9 @@ require('../models/ChainalysisCheckResultEnum.cjs');
|
|
|
23
23
|
require('../models/EmbeddedWalletProviderEnum.cjs');
|
|
24
24
|
require('../models/UserIdentifierTypeEnum.cjs');
|
|
25
25
|
require('../models/CurrencyType.cjs');
|
|
26
|
+
require('../models/CustomHostnameStatusEnum.cjs');
|
|
27
|
+
require('../models/CustomHostnameVerificationType.cjs');
|
|
28
|
+
require('../models/DnsRecordType.cjs');
|
|
26
29
|
require('../models/TimeUnitEnum.cjs');
|
|
27
30
|
require('../models/EmbeddedWalletAuthType.cjs');
|
|
28
31
|
require('../models/EmbeddedWalletSecurityMethod.cjs');
|
package/src/apis/WebhooksApi.js
CHANGED
|
@@ -19,6 +19,9 @@ import '../models/ChainalysisCheckResultEnum.js';
|
|
|
19
19
|
import '../models/EmbeddedWalletProviderEnum.js';
|
|
20
20
|
import '../models/UserIdentifierTypeEnum.js';
|
|
21
21
|
import '../models/CurrencyType.js';
|
|
22
|
+
import '../models/CustomHostnameStatusEnum.js';
|
|
23
|
+
import '../models/CustomHostnameVerificationType.js';
|
|
24
|
+
import '../models/DnsRecordType.js';
|
|
22
25
|
import '../models/TimeUnitEnum.js';
|
|
23
26
|
import '../models/EmbeddedWalletAuthType.js';
|
|
24
27
|
import '../models/EmbeddedWalletSecurityMethod.js';
|
package/src/apis/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ export * from './AnalyticsApi';
|
|
|
3
3
|
export * from './ChainalysisApi';
|
|
4
4
|
export * from './ChainsApi';
|
|
5
5
|
export * from './CustomFieldsApi';
|
|
6
|
+
export * from './CustomHostnamesApi';
|
|
6
7
|
export * from './EnvironmentsApi';
|
|
7
8
|
export * from './EventsApi';
|
|
8
9
|
export * from './ExportsApi';
|
package/src/index.cjs
CHANGED
|
@@ -8,6 +8,7 @@ var AnalyticsApi = require('./apis/AnalyticsApi.cjs');
|
|
|
8
8
|
var ChainalysisApi = require('./apis/ChainalysisApi.cjs');
|
|
9
9
|
var ChainsApi = require('./apis/ChainsApi.cjs');
|
|
10
10
|
var CustomFieldsApi = require('./apis/CustomFieldsApi.cjs');
|
|
11
|
+
var CustomHostnamesApi = require('./apis/CustomHostnamesApi.cjs');
|
|
11
12
|
var EnvironmentsApi = require('./apis/EnvironmentsApi.cjs');
|
|
12
13
|
var EventsApi = require('./apis/EventsApi.cjs');
|
|
13
14
|
var ExportsApi = require('./apis/ExportsApi.cjs');
|
|
@@ -74,6 +75,13 @@ var CustomFieldRequest = require('./models/CustomFieldRequest.cjs');
|
|
|
74
75
|
var CustomFieldType = require('./models/CustomFieldType.cjs');
|
|
75
76
|
var CustomFieldValidValue = require('./models/CustomFieldValidValue.cjs');
|
|
76
77
|
var CustomFieldValidationRules = require('./models/CustomFieldValidationRules.cjs');
|
|
78
|
+
var CustomHostname = require('./models/CustomHostname.cjs');
|
|
79
|
+
var CustomHostnameCreateRequest = require('./models/CustomHostnameCreateRequest.cjs');
|
|
80
|
+
var CustomHostnameStatusEnum = require('./models/CustomHostnameStatusEnum.cjs');
|
|
81
|
+
var CustomHostnameVerificationRecord = require('./models/CustomHostnameVerificationRecord.cjs');
|
|
82
|
+
var CustomHostnameVerificationType = require('./models/CustomHostnameVerificationType.cjs');
|
|
83
|
+
var CustomHostnamesResponse = require('./models/CustomHostnamesResponse.cjs');
|
|
84
|
+
var DnsRecordType = require('./models/DnsRecordType.cjs');
|
|
77
85
|
var Duration = require('./models/Duration.cjs');
|
|
78
86
|
var DynamicJwt = require('./models/DynamicJwt.cjs');
|
|
79
87
|
var EmailProviderResponse = require('./models/EmailProviderResponse.cjs');
|
|
@@ -333,6 +341,7 @@ exports.AnalyticsApi = AnalyticsApi.AnalyticsApi;
|
|
|
333
341
|
exports.ChainalysisApi = ChainalysisApi.ChainalysisApi;
|
|
334
342
|
exports.ChainsApi = ChainsApi.ChainsApi;
|
|
335
343
|
exports.CustomFieldsApi = CustomFieldsApi.CustomFieldsApi;
|
|
344
|
+
exports.CustomHostnamesApi = CustomHostnamesApi.CustomHostnamesApi;
|
|
336
345
|
exports.EnvironmentsApi = EnvironmentsApi.EnvironmentsApi;
|
|
337
346
|
exports.EventsApi = EventsApi.EventsApi;
|
|
338
347
|
exports.ExportsApi = ExportsApi.ExportsApi;
|
|
@@ -541,6 +550,39 @@ exports.CustomFieldValidValueToJSON = CustomFieldValidValue.CustomFieldValidValu
|
|
|
541
550
|
exports.CustomFieldValidationRulesFromJSON = CustomFieldValidationRules.CustomFieldValidationRulesFromJSON;
|
|
542
551
|
exports.CustomFieldValidationRulesFromJSONTyped = CustomFieldValidationRules.CustomFieldValidationRulesFromJSONTyped;
|
|
543
552
|
exports.CustomFieldValidationRulesToJSON = CustomFieldValidationRules.CustomFieldValidationRulesToJSON;
|
|
553
|
+
exports.CustomHostnameFromJSON = CustomHostname.CustomHostnameFromJSON;
|
|
554
|
+
exports.CustomHostnameFromJSONTyped = CustomHostname.CustomHostnameFromJSONTyped;
|
|
555
|
+
exports.CustomHostnameToJSON = CustomHostname.CustomHostnameToJSON;
|
|
556
|
+
exports.CustomHostnameCreateRequestFromJSON = CustomHostnameCreateRequest.CustomHostnameCreateRequestFromJSON;
|
|
557
|
+
exports.CustomHostnameCreateRequestFromJSONTyped = CustomHostnameCreateRequest.CustomHostnameCreateRequestFromJSONTyped;
|
|
558
|
+
exports.CustomHostnameCreateRequestToJSON = CustomHostnameCreateRequest.CustomHostnameCreateRequestToJSON;
|
|
559
|
+
Object.defineProperty(exports, 'CustomHostnameStatusEnum', {
|
|
560
|
+
enumerable: true,
|
|
561
|
+
get: function () { return CustomHostnameStatusEnum.CustomHostnameStatusEnum; }
|
|
562
|
+
});
|
|
563
|
+
exports.CustomHostnameStatusEnumFromJSON = CustomHostnameStatusEnum.CustomHostnameStatusEnumFromJSON;
|
|
564
|
+
exports.CustomHostnameStatusEnumFromJSONTyped = CustomHostnameStatusEnum.CustomHostnameStatusEnumFromJSONTyped;
|
|
565
|
+
exports.CustomHostnameStatusEnumToJSON = CustomHostnameStatusEnum.CustomHostnameStatusEnumToJSON;
|
|
566
|
+
exports.CustomHostnameVerificationRecordFromJSON = CustomHostnameVerificationRecord.CustomHostnameVerificationRecordFromJSON;
|
|
567
|
+
exports.CustomHostnameVerificationRecordFromJSONTyped = CustomHostnameVerificationRecord.CustomHostnameVerificationRecordFromJSONTyped;
|
|
568
|
+
exports.CustomHostnameVerificationRecordToJSON = CustomHostnameVerificationRecord.CustomHostnameVerificationRecordToJSON;
|
|
569
|
+
Object.defineProperty(exports, 'CustomHostnameVerificationType', {
|
|
570
|
+
enumerable: true,
|
|
571
|
+
get: function () { return CustomHostnameVerificationType.CustomHostnameVerificationType; }
|
|
572
|
+
});
|
|
573
|
+
exports.CustomHostnameVerificationTypeFromJSON = CustomHostnameVerificationType.CustomHostnameVerificationTypeFromJSON;
|
|
574
|
+
exports.CustomHostnameVerificationTypeFromJSONTyped = CustomHostnameVerificationType.CustomHostnameVerificationTypeFromJSONTyped;
|
|
575
|
+
exports.CustomHostnameVerificationTypeToJSON = CustomHostnameVerificationType.CustomHostnameVerificationTypeToJSON;
|
|
576
|
+
exports.CustomHostnamesResponseFromJSON = CustomHostnamesResponse.CustomHostnamesResponseFromJSON;
|
|
577
|
+
exports.CustomHostnamesResponseFromJSONTyped = CustomHostnamesResponse.CustomHostnamesResponseFromJSONTyped;
|
|
578
|
+
exports.CustomHostnamesResponseToJSON = CustomHostnamesResponse.CustomHostnamesResponseToJSON;
|
|
579
|
+
Object.defineProperty(exports, 'DnsRecordType', {
|
|
580
|
+
enumerable: true,
|
|
581
|
+
get: function () { return DnsRecordType.DnsRecordType; }
|
|
582
|
+
});
|
|
583
|
+
exports.DnsRecordTypeFromJSON = DnsRecordType.DnsRecordTypeFromJSON;
|
|
584
|
+
exports.DnsRecordTypeFromJSONTyped = DnsRecordType.DnsRecordTypeFromJSONTyped;
|
|
585
|
+
exports.DnsRecordTypeToJSON = DnsRecordType.DnsRecordTypeToJSON;
|
|
544
586
|
exports.DurationFromJSON = Duration.DurationFromJSON;
|
|
545
587
|
exports.DurationFromJSONTyped = Duration.DurationFromJSONTyped;
|
|
546
588
|
exports.DurationToJSON = Duration.DurationToJSON;
|
package/src/index.js
CHANGED
|
@@ -4,6 +4,7 @@ export { AnalyticsApi } from './apis/AnalyticsApi.js';
|
|
|
4
4
|
export { ChainalysisApi } from './apis/ChainalysisApi.js';
|
|
5
5
|
export { ChainsApi } from './apis/ChainsApi.js';
|
|
6
6
|
export { CustomFieldsApi } from './apis/CustomFieldsApi.js';
|
|
7
|
+
export { CustomHostnamesApi } from './apis/CustomHostnamesApi.js';
|
|
7
8
|
export { EnvironmentsApi } from './apis/EnvironmentsApi.js';
|
|
8
9
|
export { EventsApi } from './apis/EventsApi.js';
|
|
9
10
|
export { ExportsApi } from './apis/ExportsApi.js';
|
|
@@ -70,6 +71,13 @@ export { CustomFieldRequestFromJSON, CustomFieldRequestFromJSONTyped, CustomFiel
|
|
|
70
71
|
export { CustomFieldType, CustomFieldTypeFromJSON, CustomFieldTypeFromJSONTyped, CustomFieldTypeToJSON } from './models/CustomFieldType.js';
|
|
71
72
|
export { CustomFieldValidValueFromJSON, CustomFieldValidValueFromJSONTyped, CustomFieldValidValueToJSON } from './models/CustomFieldValidValue.js';
|
|
72
73
|
export { CustomFieldValidationRulesFromJSON, CustomFieldValidationRulesFromJSONTyped, CustomFieldValidationRulesToJSON } from './models/CustomFieldValidationRules.js';
|
|
74
|
+
export { CustomHostnameFromJSON, CustomHostnameFromJSONTyped, CustomHostnameToJSON } from './models/CustomHostname.js';
|
|
75
|
+
export { CustomHostnameCreateRequestFromJSON, CustomHostnameCreateRequestFromJSONTyped, CustomHostnameCreateRequestToJSON } from './models/CustomHostnameCreateRequest.js';
|
|
76
|
+
export { CustomHostnameStatusEnum, CustomHostnameStatusEnumFromJSON, CustomHostnameStatusEnumFromJSONTyped, CustomHostnameStatusEnumToJSON } from './models/CustomHostnameStatusEnum.js';
|
|
77
|
+
export { CustomHostnameVerificationRecordFromJSON, CustomHostnameVerificationRecordFromJSONTyped, CustomHostnameVerificationRecordToJSON } from './models/CustomHostnameVerificationRecord.js';
|
|
78
|
+
export { CustomHostnameVerificationType, CustomHostnameVerificationTypeFromJSON, CustomHostnameVerificationTypeFromJSONTyped, CustomHostnameVerificationTypeToJSON } from './models/CustomHostnameVerificationType.js';
|
|
79
|
+
export { CustomHostnamesResponseFromJSON, CustomHostnamesResponseFromJSONTyped, CustomHostnamesResponseToJSON } from './models/CustomHostnamesResponse.js';
|
|
80
|
+
export { DnsRecordType, DnsRecordTypeFromJSON, DnsRecordTypeFromJSONTyped, DnsRecordTypeToJSON } from './models/DnsRecordType.js';
|
|
73
81
|
export { DurationFromJSON, DurationFromJSONTyped, DurationToJSON } from './models/Duration.js';
|
|
74
82
|
export { DynamicJwtFromJSON, DynamicJwtFromJSONTyped, DynamicJwtToJSON } from './models/DynamicJwt.js';
|
|
75
83
|
export { EmailProviderResponseFromJSON, EmailProviderResponseFromJSONTyped, EmailProviderResponseToJSON } from './models/EmailProviderResponse.js';
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var runtime = require('../runtime.cjs');
|
|
6
|
+
var CustomHostnameStatusEnum = require('./CustomHostnameStatusEnum.cjs');
|
|
7
|
+
var CustomHostnameVerificationRecord = require('./CustomHostnameVerificationRecord.cjs');
|
|
8
|
+
|
|
9
|
+
/* tslint:disable */
|
|
10
|
+
function CustomHostnameFromJSON(json) {
|
|
11
|
+
return CustomHostnameFromJSONTyped(json);
|
|
12
|
+
}
|
|
13
|
+
function CustomHostnameFromJSONTyped(json, ignoreDiscriminator) {
|
|
14
|
+
if ((json === undefined) || (json === null)) {
|
|
15
|
+
return json;
|
|
16
|
+
}
|
|
17
|
+
return {
|
|
18
|
+
'id': json['id'],
|
|
19
|
+
'hostname': json['hostname'],
|
|
20
|
+
'status': CustomHostnameStatusEnum.CustomHostnameStatusEnumFromJSON(json['status']),
|
|
21
|
+
'verificationRecords': (json['verificationRecords'].map(CustomHostnameVerificationRecord.CustomHostnameVerificationRecordFromJSON)),
|
|
22
|
+
'errors': !runtime.exists(json, 'errors') ? undefined : json['errors'],
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
function CustomHostnameToJSON(value) {
|
|
26
|
+
if (value === undefined) {
|
|
27
|
+
return undefined;
|
|
28
|
+
}
|
|
29
|
+
if (value === null) {
|
|
30
|
+
return null;
|
|
31
|
+
}
|
|
32
|
+
return {
|
|
33
|
+
'id': value.id,
|
|
34
|
+
'hostname': value.hostname,
|
|
35
|
+
'status': CustomHostnameStatusEnum.CustomHostnameStatusEnumToJSON(value.status),
|
|
36
|
+
'verificationRecords': (value.verificationRecords.map(CustomHostnameVerificationRecord.CustomHostnameVerificationRecordToJSON)),
|
|
37
|
+
'errors': value.errors,
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
exports.CustomHostnameFromJSON = CustomHostnameFromJSON;
|
|
42
|
+
exports.CustomHostnameFromJSONTyped = CustomHostnameFromJSONTyped;
|
|
43
|
+
exports.CustomHostnameToJSON = CustomHostnameToJSON;
|
|
@@ -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 { CustomHostnameStatusEnum } from './CustomHostnameStatusEnum';
|
|
13
|
+
import { CustomHostnameVerificationRecord } from './CustomHostnameVerificationRecord';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface CustomHostname
|
|
18
|
+
*/
|
|
19
|
+
export interface CustomHostname {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {string}
|
|
23
|
+
* @memberof CustomHostname
|
|
24
|
+
*/
|
|
25
|
+
id: string;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof CustomHostname
|
|
30
|
+
*/
|
|
31
|
+
hostname: string;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {CustomHostnameStatusEnum}
|
|
35
|
+
* @memberof CustomHostname
|
|
36
|
+
*/
|
|
37
|
+
status: CustomHostnameStatusEnum;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Array<CustomHostnameVerificationRecord>}
|
|
41
|
+
* @memberof CustomHostname
|
|
42
|
+
*/
|
|
43
|
+
verificationRecords: Array<CustomHostnameVerificationRecord>;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof CustomHostname
|
|
48
|
+
*/
|
|
49
|
+
errors?: string;
|
|
50
|
+
}
|
|
51
|
+
export declare function CustomHostnameFromJSON(json: any): CustomHostname;
|
|
52
|
+
export declare function CustomHostnameFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomHostname;
|
|
53
|
+
export declare function CustomHostnameToJSON(value?: CustomHostname | null): any;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { exists } from '../runtime.js';
|
|
2
|
+
import { CustomHostnameStatusEnumFromJSON, CustomHostnameStatusEnumToJSON } from './CustomHostnameStatusEnum.js';
|
|
3
|
+
import { CustomHostnameVerificationRecordFromJSON, CustomHostnameVerificationRecordToJSON } from './CustomHostnameVerificationRecord.js';
|
|
4
|
+
|
|
5
|
+
/* tslint:disable */
|
|
6
|
+
function CustomHostnameFromJSON(json) {
|
|
7
|
+
return CustomHostnameFromJSONTyped(json);
|
|
8
|
+
}
|
|
9
|
+
function CustomHostnameFromJSONTyped(json, ignoreDiscriminator) {
|
|
10
|
+
if ((json === undefined) || (json === null)) {
|
|
11
|
+
return json;
|
|
12
|
+
}
|
|
13
|
+
return {
|
|
14
|
+
'id': json['id'],
|
|
15
|
+
'hostname': json['hostname'],
|
|
16
|
+
'status': CustomHostnameStatusEnumFromJSON(json['status']),
|
|
17
|
+
'verificationRecords': (json['verificationRecords'].map(CustomHostnameVerificationRecordFromJSON)),
|
|
18
|
+
'errors': !exists(json, 'errors') ? undefined : json['errors'],
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
function CustomHostnameToJSON(value) {
|
|
22
|
+
if (value === undefined) {
|
|
23
|
+
return undefined;
|
|
24
|
+
}
|
|
25
|
+
if (value === null) {
|
|
26
|
+
return null;
|
|
27
|
+
}
|
|
28
|
+
return {
|
|
29
|
+
'id': value.id,
|
|
30
|
+
'hostname': value.hostname,
|
|
31
|
+
'status': CustomHostnameStatusEnumToJSON(value.status),
|
|
32
|
+
'verificationRecords': (value.verificationRecords.map(CustomHostnameVerificationRecordToJSON)),
|
|
33
|
+
'errors': value.errors,
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export { CustomHostnameFromJSON, CustomHostnameFromJSONTyped, CustomHostnameToJSON };
|
|
@@ -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 CustomHostnameCreateRequestFromJSON(json) {
|
|
19
|
+
return CustomHostnameCreateRequestFromJSONTyped(json);
|
|
20
|
+
}
|
|
21
|
+
function CustomHostnameCreateRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
22
|
+
if ((json === undefined) || (json === null)) {
|
|
23
|
+
return json;
|
|
24
|
+
}
|
|
25
|
+
return {
|
|
26
|
+
'hostname': json['hostname'],
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
function CustomHostnameCreateRequestToJSON(value) {
|
|
30
|
+
if (value === undefined) {
|
|
31
|
+
return undefined;
|
|
32
|
+
}
|
|
33
|
+
if (value === null) {
|
|
34
|
+
return null;
|
|
35
|
+
}
|
|
36
|
+
return {
|
|
37
|
+
'hostname': value.hostname,
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
exports.CustomHostnameCreateRequestFromJSON = CustomHostnameCreateRequestFromJSON;
|
|
42
|
+
exports.CustomHostnameCreateRequestFromJSONTyped = CustomHostnameCreateRequestFromJSONTyped;
|
|
43
|
+
exports.CustomHostnameCreateRequestToJSON = CustomHostnameCreateRequestToJSON;
|
|
@@ -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 CustomHostnameCreateRequest
|
|
16
|
+
*/
|
|
17
|
+
export interface CustomHostnameCreateRequest {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CustomHostnameCreateRequest
|
|
22
|
+
*/
|
|
23
|
+
hostname: string;
|
|
24
|
+
}
|
|
25
|
+
export declare function CustomHostnameCreateRequestFromJSON(json: any): CustomHostnameCreateRequest;
|
|
26
|
+
export declare function CustomHostnameCreateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomHostnameCreateRequest;
|
|
27
|
+
export declare function CustomHostnameCreateRequestToJSON(value?: CustomHostnameCreateRequest | 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 CustomHostnameCreateRequestFromJSON(json) {
|
|
15
|
+
return CustomHostnameCreateRequestFromJSONTyped(json);
|
|
16
|
+
}
|
|
17
|
+
function CustomHostnameCreateRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
18
|
+
if ((json === undefined) || (json === null)) {
|
|
19
|
+
return json;
|
|
20
|
+
}
|
|
21
|
+
return {
|
|
22
|
+
'hostname': json['hostname'],
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
function CustomHostnameCreateRequestToJSON(value) {
|
|
26
|
+
if (value === undefined) {
|
|
27
|
+
return undefined;
|
|
28
|
+
}
|
|
29
|
+
if (value === null) {
|
|
30
|
+
return null;
|
|
31
|
+
}
|
|
32
|
+
return {
|
|
33
|
+
'hostname': value.hostname,
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export { CustomHostnameCreateRequestFromJSON, CustomHostnameCreateRequestFromJSONTyped, CustomHostnameCreateRequestToJSON };
|