@randock/nameshift-api-client 0.0.18 → 0.0.20
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/.openapi-generator/FILES +4 -1
- package/.openapi-generator/VERSION +1 -1
- package/README.md +6 -4
- package/dist/apis/AccountsApi.js +18 -18
- package/dist/apis/AuthApi.js +3 -3
- package/dist/apis/DomainsApi.d.ts +1 -1
- package/dist/apis/DomainsApi.js +30 -30
- package/dist/apis/DomainsPublicApi.d.ts +4 -12
- package/dist/apis/DomainsPublicApi.js +8 -50
- package/dist/apis/LeadsApi.js +18 -18
- package/dist/apis/LeadsPublicApi.js +3 -3
- package/dist/models/AccountAddressDto.js +21 -21
- package/dist/models/AccountAddressInput.js +21 -21
- package/dist/models/AccountDto.js +10 -12
- package/dist/models/AccountFinancialInput.js +16 -16
- package/dist/models/AccountSettingsInput.js +6 -11
- package/dist/models/BatchUpdate404Response.js +12 -15
- package/dist/models/BatchUpdateDomainsInput.js +10 -12
- package/dist/models/CreateLeadInput.js +22 -20
- package/dist/models/CreateLeadMessageInput.js +7 -10
- package/dist/models/DeleteDomainsInput.js +7 -10
- package/dist/models/DomainDto.d.ts +2 -2
- package/dist/models/DomainDto.js +25 -22
- package/dist/models/DomainSalesInformationDto.d.ts +51 -0
- package/dist/models/DomainSalesInformationDto.js +61 -0
- package/dist/models/DomainSellerDto.d.ts +37 -0
- package/dist/models/DomainSellerDto.js +51 -0
- package/dist/models/IntersectionAccountDtoWithFinancialDtoWithSettingsDtoWithAddressDto.js +19 -18
- package/dist/models/IntersectionDomainDtoWithAccountDto.d.ts +2 -2
- package/dist/models/IntersectionDomainDtoWithAccountDto.js +28 -24
- package/dist/models/IntersectionDomainDtoWithHijackerDtoWithAccountDto.d.ts +2 -2
- package/dist/models/IntersectionDomainDtoWithHijackerDtoWithAccountDto.js +31 -26
- package/dist/models/IntersectionLeadDtoWithLeadDetailsDto.js +22 -20
- package/dist/models/IntersectionLeadDtoWithListFieldsDto.js +40 -32
- package/dist/models/IntersectionLeadDtoWithListFieldsDtoLastMessageData.js +7 -10
- package/dist/models/IntersectionLeadDtoWithListFieldsDtoLastOffer.js +10 -12
- package/dist/models/LeadMessageData.js +7 -10
- package/dist/models/LeadMessageDto.js +25 -22
- package/dist/models/LeadMessageDtoData.js +7 -10
- package/dist/models/List200Response.js +13 -14
- package/dist/models/List400Response.js +12 -15
- package/dist/models/List401Response.js +12 -15
- package/dist/models/ListLeadMessagesDto.js +7 -10
- package/dist/models/Login401Response.js +12 -15
- package/dist/models/Login429Response.js +12 -15
- package/dist/models/LoginInput.js +10 -12
- package/dist/models/MoneyDto.js +10 -12
- package/dist/models/MoneyInput.js +10 -12
- package/dist/models/ObjectId.js +7 -10
- package/dist/models/PaginateResponse.js +13 -14
- package/dist/models/PaginateResponseLinks.d.ts +5 -5
- package/dist/models/PaginateResponseLinks.js +14 -19
- package/dist/models/PaginateResponseMeta.js +18 -23
- package/dist/models/PublicDomainControllerGetDomainSalesInformation404Response.d.ts +43 -0
- package/dist/models/PublicDomainControllerGetDomainSalesInformation404Response.js +53 -0
- package/dist/models/PutLeadInput.js +7 -10
- package/dist/models/TokenDto.js +7 -10
- package/dist/models/UpdateDomainInput.d.ts +2 -2
- package/dist/models/UpdateDomainInput.js +8 -13
- package/dist/models/UpdateFinancial400Response.js +12 -15
- package/dist/models/UpdateSettings400Response.js +12 -15
- package/dist/models/UpdateSettings401Response.js +12 -15
- package/dist/models/UpdateSettings429Response.js +12 -15
- package/dist/models/WithFinancialDtoInner.js +16 -16
- package/dist/models/WithSettingsInner.js +7 -10
- package/dist/models/index.d.ts +3 -1
- package/dist/models/index.js +3 -1
- package/dist/runtime.d.ts +2 -3
- package/dist/runtime.js +1 -6
- package/package.json +1 -1
- package/src/apis/AccountsApi.ts +36 -18
- package/src/apis/AuthApi.ts +6 -3
- package/src/apis/DomainsApi.ts +49 -31
- package/src/apis/DomainsPublicApi.ts +17 -46
- package/src/apis/LeadsApi.ts +36 -18
- package/src/apis/LeadsPublicApi.ts +6 -3
- package/src/models/AccountAddressDto.ts +17 -22
- package/src/models/AccountAddressInput.ts +17 -22
- package/src/models/AccountDto.ts +9 -14
- package/src/models/AccountFinancialInput.ts +13 -18
- package/src/models/AccountSettingsInput.ts +7 -12
- package/src/models/BatchUpdate404Response.ts +11 -16
- package/src/models/BatchUpdateDomainsInput.ts +9 -14
- package/src/models/CreateLeadInput.ts +17 -22
- package/src/models/CreateLeadMessageInput.ts +7 -12
- package/src/models/DeleteDomainsInput.ts +7 -12
- package/src/models/DomainDto.ts +21 -26
- package/src/models/DomainSalesInformationDto.ts +101 -0
- package/src/models/DomainSellerDto.ts +70 -0
- package/src/models/IntersectionAccountDtoWithFinancialDtoWithSettingsDtoWithAddressDto.ts +15 -20
- package/src/models/IntersectionDomainDtoWithAccountDto.ts +23 -28
- package/src/models/IntersectionDomainDtoWithHijackerDtoWithAccountDto.ts +25 -30
- package/src/models/IntersectionLeadDtoWithLeadDetailsDto.ts +17 -22
- package/src/models/IntersectionLeadDtoWithListFieldsDto.ts +29 -34
- package/src/models/IntersectionLeadDtoWithListFieldsDtoLastMessageData.ts +7 -12
- package/src/models/IntersectionLeadDtoWithListFieldsDtoLastOffer.ts +9 -14
- package/src/models/LeadMessageData.ts +7 -12
- package/src/models/LeadMessageDto.ts +19 -24
- package/src/models/LeadMessageDtoData.ts +7 -12
- package/src/models/List200Response.ts +11 -16
- package/src/models/List400Response.ts +11 -16
- package/src/models/List401Response.ts +11 -16
- package/src/models/ListLeadMessagesDto.ts +7 -12
- package/src/models/Login401Response.ts +11 -16
- package/src/models/Login429Response.ts +11 -16
- package/src/models/LoginInput.ts +9 -14
- package/src/models/MoneyDto.ts +9 -14
- package/src/models/MoneyInput.ts +9 -14
- package/src/models/ObjectId.ts +7 -12
- package/src/models/PaginateResponse.ts +11 -16
- package/src/models/PaginateResponseLinks.ts +20 -25
- package/src/models/PaginateResponseMeta.ts +19 -24
- package/src/models/PublicDomainControllerGetDomainSalesInformation404Response.ts +78 -0
- package/src/models/PutLeadInput.ts +7 -12
- package/src/models/TokenDto.ts +7 -12
- package/src/models/UpdateDomainInput.ts +11 -16
- package/src/models/UpdateFinancial400Response.ts +11 -16
- package/src/models/UpdateSettings400Response.ts +11 -16
- package/src/models/UpdateSettings401Response.ts +11 -16
- package/src/models/UpdateSettings429Response.ts +11 -16
- package/src/models/WithFinancialDtoInner.ts +13 -18
- package/src/models/WithSettingsInner.ts +7 -12
- package/src/models/index.ts +3 -1
- package/src/runtime.ts +3 -8
- package/dist/apis/TestApi.d.ts +0 -23
- package/dist/apis/TestApi.js +0 -116
- package/dist/models/CreateLeadMessageInputData.d.ts +0 -32
- package/dist/models/CreateLeadMessageInputData.js +0 -51
- package/dist/models/ImportDomainsDto.d.ts +0 -49
- package/dist/models/ImportDomainsDto.js +0 -59
- package/dist/models/IntersectionAccountDtoWithAddressDto.d.ts +0 -44
- package/dist/models/IntersectionAccountDtoWithAddressDto.js +0 -57
- package/dist/models/IntersectionAccountDtoWithFinancialDto.d.ts +0 -44
- package/dist/models/IntersectionAccountDtoWithFinancialDto.js +0 -57
- package/dist/models/IntersectionAccountDtoWithFinancialDtoFinancial.d.ts +0 -49
- package/dist/models/IntersectionAccountDtoWithFinancialDtoFinancial.js +0 -56
- package/dist/models/IntersectionAccountDtoWithSettingsDto.d.ts +0 -44
- package/dist/models/IntersectionAccountDtoWithSettingsDto.js +0 -57
- package/dist/models/IntersectionAccountDtoWithSettingsDtoSettings.d.ts +0 -32
- package/dist/models/IntersectionAccountDtoWithSettingsDtoSettings.js +0 -51
- package/dist/models/IntersectionLeadDto.d.ts +0 -52
- package/dist/models/IntersectionLeadDto.js +0 -64
- package/dist/models/LeadDto.d.ts +0 -74
- package/dist/models/LeadDto.js +0 -79
- package/dist/models/List429Response.d.ts +0 -43
- package/dist/models/List429Response.js +0 -56
- package/dist/models/PublicDomainControllerGetDomainIdentifier404Response.d.ts +0 -43
- package/dist/models/PublicDomainControllerGetDomainIdentifier404Response.js +0 -56
- package/src/apis/TestApi.ts +0 -46
- package/src/models/CreateLeadMessageInputData.ts +0 -73
- package/src/models/ImportDomainsDto.ts +0 -93
- package/src/models/IntersectionAccountDtoWithAddressDto.ts +0 -91
- package/src/models/IntersectionAccountDtoWithFinancialDto.ts +0 -91
- package/src/models/IntersectionAccountDtoWithFinancialDtoFinancial.ts +0 -89
- package/src/models/IntersectionAccountDtoWithSettingsDto.ts +0 -91
- package/src/models/IntersectionAccountDtoWithSettingsDtoSettings.ts +0 -72
- package/src/models/IntersectionLeadDto.ts +0 -96
- package/src/models/LeadDto.ts +0 -131
- package/src/models/List429Response.ts +0 -83
- package/src/models/PublicDomainControllerGetDomainIdentifier404Response.ts +0 -83
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
|
-
import {
|
|
15
|
+
import { mapValues } from '../runtime';
|
|
16
16
|
import type { MoneyDto } from './MoneyDto';
|
|
17
17
|
import {
|
|
18
18
|
MoneyDtoFromJSON,
|
|
@@ -38,10 +38,8 @@ export interface WithSettingsInner {
|
|
|
38
38
|
* Check if a given object implements the WithSettingsInner interface.
|
|
39
39
|
*/
|
|
40
40
|
export function instanceOfWithSettingsInner(value: object): boolean {
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
return isInstance;
|
|
41
|
+
if (!('defaultStartingOffer' in value)) return false;
|
|
42
|
+
return true;
|
|
45
43
|
}
|
|
46
44
|
|
|
47
45
|
export function WithSettingsInnerFromJSON(json: any): WithSettingsInner {
|
|
@@ -49,7 +47,7 @@ export function WithSettingsInnerFromJSON(json: any): WithSettingsInner {
|
|
|
49
47
|
}
|
|
50
48
|
|
|
51
49
|
export function WithSettingsInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): WithSettingsInner {
|
|
52
|
-
if (
|
|
50
|
+
if (json == null) {
|
|
53
51
|
return json;
|
|
54
52
|
}
|
|
55
53
|
return {
|
|
@@ -59,15 +57,12 @@ export function WithSettingsInnerFromJSONTyped(json: any, ignoreDiscriminator: b
|
|
|
59
57
|
}
|
|
60
58
|
|
|
61
59
|
export function WithSettingsInnerToJSON(value?: WithSettingsInner | null): any {
|
|
62
|
-
if (value
|
|
63
|
-
return
|
|
64
|
-
}
|
|
65
|
-
if (value === null) {
|
|
66
|
-
return null;
|
|
60
|
+
if (value == null) {
|
|
61
|
+
return value;
|
|
67
62
|
}
|
|
68
63
|
return {
|
|
69
64
|
|
|
70
|
-
'defaultStartingOffer': MoneyDtoToJSON(value
|
|
65
|
+
'defaultStartingOffer': MoneyDtoToJSON(value['defaultStartingOffer']),
|
|
71
66
|
};
|
|
72
67
|
}
|
|
73
68
|
|
package/src/models/index.ts
CHANGED
|
@@ -11,6 +11,8 @@ export * from './CreateLeadInput';
|
|
|
11
11
|
export * from './CreateLeadMessageInput';
|
|
12
12
|
export * from './DeleteDomainsInput';
|
|
13
13
|
export * from './DomainDto';
|
|
14
|
+
export * from './DomainSalesInformationDto';
|
|
15
|
+
export * from './DomainSellerDto';
|
|
14
16
|
export * from './IntersectionAccountDtoWithFinancialDtoWithSettingsDtoWithAddressDto';
|
|
15
17
|
export * from './IntersectionDomainDtoWithAccountDto';
|
|
16
18
|
export * from './IntersectionDomainDtoWithHijackerDtoWithAccountDto';
|
|
@@ -34,7 +36,7 @@ export * from './ObjectId';
|
|
|
34
36
|
export * from './PaginateResponse';
|
|
35
37
|
export * from './PaginateResponseLinks';
|
|
36
38
|
export * from './PaginateResponseMeta';
|
|
37
|
-
export * from './
|
|
39
|
+
export * from './PublicDomainControllerGetDomainSalesInformation404Response';
|
|
38
40
|
export * from './PutLeadInput';
|
|
39
41
|
export * from './TokenDto';
|
|
40
42
|
export * from './UpdateDomainInput';
|
package/src/runtime.ts
CHANGED
|
@@ -22,7 +22,7 @@ export interface ConfigurationParameters {
|
|
|
22
22
|
queryParamsStringify?: (params: HTTPQuery) => string; // stringify function for query strings
|
|
23
23
|
username?: string; // parameter for basic security
|
|
24
24
|
password?: string; // parameter for basic security
|
|
25
|
-
apiKey?: string | ((name: string) => string); // parameter for apiKey security
|
|
25
|
+
apiKey?: string | Promise<string> | ((name: string) => string | Promise<string>); // parameter for apiKey security
|
|
26
26
|
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string | Promise<string>); // parameter for oauth2 security
|
|
27
27
|
headers?: HTTPHeaders; //header params we want to use on every request
|
|
28
28
|
credentials?: RequestCredentials; //value for the credentials param we want to use on each request
|
|
@@ -59,7 +59,7 @@ export class Configuration {
|
|
|
59
59
|
return this.configuration.password;
|
|
60
60
|
}
|
|
61
61
|
|
|
62
|
-
get apiKey(): ((name: string) => string) | undefined {
|
|
62
|
+
get apiKey(): ((name: string) => string | Promise<string>) | undefined {
|
|
63
63
|
const apiKey = this.configuration.apiKey;
|
|
64
64
|
if (apiKey) {
|
|
65
65
|
return typeof apiKey === 'function' ? apiKey : () => apiKey;
|
|
@@ -91,7 +91,7 @@ export const DefaultConfig = new Configuration();
|
|
|
91
91
|
*/
|
|
92
92
|
export class BaseAPI {
|
|
93
93
|
|
|
94
|
-
|
|
94
|
+
private static readonly jsonRegex = new RegExp('^(:?application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(:?;.*)?$', 'i');
|
|
95
95
|
private middleware: Middleware[];
|
|
96
96
|
|
|
97
97
|
constructor(protected configuration = DefaultConfig) {
|
|
@@ -310,11 +310,6 @@ export interface RequestOpts {
|
|
|
310
310
|
body?: HTTPBody;
|
|
311
311
|
}
|
|
312
312
|
|
|
313
|
-
export function exists(json: any, key: string) {
|
|
314
|
-
const value = json[key];
|
|
315
|
-
return value !== null && value !== undefined;
|
|
316
|
-
}
|
|
317
|
-
|
|
318
313
|
export function querystring(params: HTTPQuery, prefix: string = ''): string {
|
|
319
314
|
return Object.keys(params)
|
|
320
315
|
.map(key => querystringSingleKey(key, params[key], prefix))
|
package/dist/apis/TestApi.d.ts
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Nameshift
|
|
3
|
-
* Nameshift API
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.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 * as runtime from '../runtime';
|
|
13
|
-
/**
|
|
14
|
-
*
|
|
15
|
-
*/
|
|
16
|
-
export declare class TestApi extends runtime.BaseAPI {
|
|
17
|
-
/**
|
|
18
|
-
*/
|
|
19
|
-
testControllerTestRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
20
|
-
/**
|
|
21
|
-
*/
|
|
22
|
-
testControllerTest(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
23
|
-
}
|
package/dist/apis/TestApi.js
DELETED
|
@@ -1,116 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* Nameshift
|
|
6
|
-
* Nameshift API
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
-
* https://openapi-generator.tech
|
|
13
|
-
* Do not edit the class manually.
|
|
14
|
-
*/
|
|
15
|
-
var __extends = (this && this.__extends) || (function () {
|
|
16
|
-
var extendStatics = function (d, b) {
|
|
17
|
-
extendStatics = Object.setPrototypeOf ||
|
|
18
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
19
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
20
|
-
return extendStatics(d, b);
|
|
21
|
-
};
|
|
22
|
-
return function (d, b) {
|
|
23
|
-
if (typeof b !== "function" && b !== null)
|
|
24
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
25
|
-
extendStatics(d, b);
|
|
26
|
-
function __() { this.constructor = d; }
|
|
27
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
28
|
-
};
|
|
29
|
-
})();
|
|
30
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
31
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
32
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
33
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
34
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
35
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
36
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
37
|
-
});
|
|
38
|
-
};
|
|
39
|
-
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
40
|
-
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
41
|
-
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
42
|
-
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
43
|
-
function step(op) {
|
|
44
|
-
if (f) throw new TypeError("Generator is already executing.");
|
|
45
|
-
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
46
|
-
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
47
|
-
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
48
|
-
switch (op[0]) {
|
|
49
|
-
case 0: case 1: t = op; break;
|
|
50
|
-
case 4: _.label++; return { value: op[1], done: false };
|
|
51
|
-
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
52
|
-
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
53
|
-
default:
|
|
54
|
-
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
55
|
-
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
56
|
-
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
57
|
-
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
58
|
-
if (t[2]) _.ops.pop();
|
|
59
|
-
_.trys.pop(); continue;
|
|
60
|
-
}
|
|
61
|
-
op = body.call(thisArg, _);
|
|
62
|
-
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
63
|
-
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
64
|
-
}
|
|
65
|
-
};
|
|
66
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
67
|
-
exports.TestApi = void 0;
|
|
68
|
-
var runtime = require("../runtime");
|
|
69
|
-
/**
|
|
70
|
-
*
|
|
71
|
-
*/
|
|
72
|
-
var TestApi = /** @class */ (function (_super) {
|
|
73
|
-
__extends(TestApi, _super);
|
|
74
|
-
function TestApi() {
|
|
75
|
-
return _super !== null && _super.apply(this, arguments) || this;
|
|
76
|
-
}
|
|
77
|
-
/**
|
|
78
|
-
*/
|
|
79
|
-
TestApi.prototype.testControllerTestRaw = function (initOverrides) {
|
|
80
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
81
|
-
var queryParameters, headerParameters, response;
|
|
82
|
-
return __generator(this, function (_a) {
|
|
83
|
-
switch (_a.label) {
|
|
84
|
-
case 0:
|
|
85
|
-
queryParameters = {};
|
|
86
|
-
headerParameters = {};
|
|
87
|
-
return [4 /*yield*/, this.request({
|
|
88
|
-
path: "/testtesttest",
|
|
89
|
-
method: 'GET',
|
|
90
|
-
headers: headerParameters,
|
|
91
|
-
query: queryParameters,
|
|
92
|
-
}, initOverrides)];
|
|
93
|
-
case 1:
|
|
94
|
-
response = _a.sent();
|
|
95
|
-
return [2 /*return*/, new runtime.VoidApiResponse(response)];
|
|
96
|
-
}
|
|
97
|
-
});
|
|
98
|
-
});
|
|
99
|
-
};
|
|
100
|
-
/**
|
|
101
|
-
*/
|
|
102
|
-
TestApi.prototype.testControllerTest = function (initOverrides) {
|
|
103
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
104
|
-
return __generator(this, function (_a) {
|
|
105
|
-
switch (_a.label) {
|
|
106
|
-
case 0: return [4 /*yield*/, this.testControllerTestRaw(initOverrides)];
|
|
107
|
-
case 1:
|
|
108
|
-
_a.sent();
|
|
109
|
-
return [2 /*return*/];
|
|
110
|
-
}
|
|
111
|
-
});
|
|
112
|
-
});
|
|
113
|
-
};
|
|
114
|
-
return TestApi;
|
|
115
|
-
}(runtime.BaseAPI));
|
|
116
|
-
exports.TestApi = TestApi;
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Nameshift
|
|
3
|
-
* Nameshift API
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.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 type { MoneyDto } from './MoneyDto';
|
|
13
|
-
/**
|
|
14
|
-
*
|
|
15
|
-
* @export
|
|
16
|
-
* @interface CreateLeadMessageInputData
|
|
17
|
-
*/
|
|
18
|
-
export interface CreateLeadMessageInputData {
|
|
19
|
-
/**
|
|
20
|
-
*
|
|
21
|
-
* @type {MoneyDto}
|
|
22
|
-
* @memberof CreateLeadMessageInputData
|
|
23
|
-
*/
|
|
24
|
-
price: MoneyDto;
|
|
25
|
-
}
|
|
26
|
-
/**
|
|
27
|
-
* Check if a given object implements the CreateLeadMessageInputData interface.
|
|
28
|
-
*/
|
|
29
|
-
export declare function instanceOfCreateLeadMessageInputData(value: object): boolean;
|
|
30
|
-
export declare function CreateLeadMessageInputDataFromJSON(json: any): CreateLeadMessageInputData;
|
|
31
|
-
export declare function CreateLeadMessageInputDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateLeadMessageInputData;
|
|
32
|
-
export declare function CreateLeadMessageInputDataToJSON(value?: CreateLeadMessageInputData | null): any;
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* Nameshift
|
|
6
|
-
* Nameshift API
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
-
* https://openapi-generator.tech
|
|
13
|
-
* Do not edit the class manually.
|
|
14
|
-
*/
|
|
15
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.CreateLeadMessageInputDataToJSON = exports.CreateLeadMessageInputDataFromJSONTyped = exports.CreateLeadMessageInputDataFromJSON = exports.instanceOfCreateLeadMessageInputData = void 0;
|
|
17
|
-
var MoneyDto_1 = require("./MoneyDto");
|
|
18
|
-
/**
|
|
19
|
-
* Check if a given object implements the CreateLeadMessageInputData interface.
|
|
20
|
-
*/
|
|
21
|
-
function instanceOfCreateLeadMessageInputData(value) {
|
|
22
|
-
var isInstance = true;
|
|
23
|
-
isInstance = isInstance && "price" in value;
|
|
24
|
-
return isInstance;
|
|
25
|
-
}
|
|
26
|
-
exports.instanceOfCreateLeadMessageInputData = instanceOfCreateLeadMessageInputData;
|
|
27
|
-
function CreateLeadMessageInputDataFromJSON(json) {
|
|
28
|
-
return CreateLeadMessageInputDataFromJSONTyped(json, false);
|
|
29
|
-
}
|
|
30
|
-
exports.CreateLeadMessageInputDataFromJSON = CreateLeadMessageInputDataFromJSON;
|
|
31
|
-
function CreateLeadMessageInputDataFromJSONTyped(json, ignoreDiscriminator) {
|
|
32
|
-
if ((json === undefined) || (json === null)) {
|
|
33
|
-
return json;
|
|
34
|
-
}
|
|
35
|
-
return {
|
|
36
|
-
'price': (0, MoneyDto_1.MoneyDtoFromJSON)(json['price']),
|
|
37
|
-
};
|
|
38
|
-
}
|
|
39
|
-
exports.CreateLeadMessageInputDataFromJSONTyped = CreateLeadMessageInputDataFromJSONTyped;
|
|
40
|
-
function CreateLeadMessageInputDataToJSON(value) {
|
|
41
|
-
if (value === undefined) {
|
|
42
|
-
return undefined;
|
|
43
|
-
}
|
|
44
|
-
if (value === null) {
|
|
45
|
-
return null;
|
|
46
|
-
}
|
|
47
|
-
return {
|
|
48
|
-
'price': (0, MoneyDto_1.MoneyDtoToJSON)(value.price),
|
|
49
|
-
};
|
|
50
|
-
}
|
|
51
|
-
exports.CreateLeadMessageInputDataToJSON = CreateLeadMessageInputDataToJSON;
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Nameshift
|
|
3
|
-
* Nameshift API
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.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 ImportDomainsDto
|
|
16
|
-
*/
|
|
17
|
-
export interface ImportDomainsDto {
|
|
18
|
-
/**
|
|
19
|
-
*
|
|
20
|
-
* @type {number}
|
|
21
|
-
* @memberof ImportDomainsDto
|
|
22
|
-
*/
|
|
23
|
-
total: number;
|
|
24
|
-
/**
|
|
25
|
-
*
|
|
26
|
-
* @type {number}
|
|
27
|
-
* @memberof ImportDomainsDto
|
|
28
|
-
*/
|
|
29
|
-
queued: number;
|
|
30
|
-
/**
|
|
31
|
-
*
|
|
32
|
-
* @type {number}
|
|
33
|
-
* @memberof ImportDomainsDto
|
|
34
|
-
*/
|
|
35
|
-
error: number;
|
|
36
|
-
/**
|
|
37
|
-
*
|
|
38
|
-
* @type {Array<string>}
|
|
39
|
-
* @memberof ImportDomainsDto
|
|
40
|
-
*/
|
|
41
|
-
errors: Array<string>;
|
|
42
|
-
}
|
|
43
|
-
/**
|
|
44
|
-
* Check if a given object implements the ImportDomainsDto interface.
|
|
45
|
-
*/
|
|
46
|
-
export declare function instanceOfImportDomainsDto(value: object): boolean;
|
|
47
|
-
export declare function ImportDomainsDtoFromJSON(json: any): ImportDomainsDto;
|
|
48
|
-
export declare function ImportDomainsDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ImportDomainsDto;
|
|
49
|
-
export declare function ImportDomainsDtoToJSON(value?: ImportDomainsDto | null): any;
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* Nameshift
|
|
6
|
-
* Nameshift API
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
-
* https://openapi-generator.tech
|
|
13
|
-
* Do not edit the class manually.
|
|
14
|
-
*/
|
|
15
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.ImportDomainsDtoToJSON = exports.ImportDomainsDtoFromJSONTyped = exports.ImportDomainsDtoFromJSON = exports.instanceOfImportDomainsDto = void 0;
|
|
17
|
-
/**
|
|
18
|
-
* Check if a given object implements the ImportDomainsDto interface.
|
|
19
|
-
*/
|
|
20
|
-
function instanceOfImportDomainsDto(value) {
|
|
21
|
-
var isInstance = true;
|
|
22
|
-
isInstance = isInstance && "total" in value;
|
|
23
|
-
isInstance = isInstance && "queued" in value;
|
|
24
|
-
isInstance = isInstance && "error" in value;
|
|
25
|
-
isInstance = isInstance && "errors" in value;
|
|
26
|
-
return isInstance;
|
|
27
|
-
}
|
|
28
|
-
exports.instanceOfImportDomainsDto = instanceOfImportDomainsDto;
|
|
29
|
-
function ImportDomainsDtoFromJSON(json) {
|
|
30
|
-
return ImportDomainsDtoFromJSONTyped(json, false);
|
|
31
|
-
}
|
|
32
|
-
exports.ImportDomainsDtoFromJSON = ImportDomainsDtoFromJSON;
|
|
33
|
-
function ImportDomainsDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
34
|
-
if ((json === undefined) || (json === null)) {
|
|
35
|
-
return json;
|
|
36
|
-
}
|
|
37
|
-
return {
|
|
38
|
-
'total': json['total'],
|
|
39
|
-
'queued': json['queued'],
|
|
40
|
-
'error': json['error'],
|
|
41
|
-
'errors': json['errors'],
|
|
42
|
-
};
|
|
43
|
-
}
|
|
44
|
-
exports.ImportDomainsDtoFromJSONTyped = ImportDomainsDtoFromJSONTyped;
|
|
45
|
-
function ImportDomainsDtoToJSON(value) {
|
|
46
|
-
if (value === undefined) {
|
|
47
|
-
return undefined;
|
|
48
|
-
}
|
|
49
|
-
if (value === null) {
|
|
50
|
-
return null;
|
|
51
|
-
}
|
|
52
|
-
return {
|
|
53
|
-
'total': value.total,
|
|
54
|
-
'queued': value.queued,
|
|
55
|
-
'error': value.error,
|
|
56
|
-
'errors': value.errors,
|
|
57
|
-
};
|
|
58
|
-
}
|
|
59
|
-
exports.ImportDomainsDtoToJSON = ImportDomainsDtoToJSON;
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Nameshift
|
|
3
|
-
* Nameshift API
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.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 type { AccountAddressDto } from './AccountAddressDto';
|
|
13
|
-
/**
|
|
14
|
-
*
|
|
15
|
-
* @export
|
|
16
|
-
* @interface IntersectionAccountDtoWithAddressDto
|
|
17
|
-
*/
|
|
18
|
-
export interface IntersectionAccountDtoWithAddressDto {
|
|
19
|
-
/**
|
|
20
|
-
*
|
|
21
|
-
* @type {string}
|
|
22
|
-
* @memberof IntersectionAccountDtoWithAddressDto
|
|
23
|
-
*/
|
|
24
|
-
id: string;
|
|
25
|
-
/**
|
|
26
|
-
*
|
|
27
|
-
* @type {string}
|
|
28
|
-
* @memberof IntersectionAccountDtoWithAddressDto
|
|
29
|
-
*/
|
|
30
|
-
identifier: string;
|
|
31
|
-
/**
|
|
32
|
-
*
|
|
33
|
-
* @type {Array<AccountAddressDto>}
|
|
34
|
-
* @memberof IntersectionAccountDtoWithAddressDto
|
|
35
|
-
*/
|
|
36
|
-
addresses: Array<AccountAddressDto>;
|
|
37
|
-
}
|
|
38
|
-
/**
|
|
39
|
-
* Check if a given object implements the IntersectionAccountDtoWithAddressDto interface.
|
|
40
|
-
*/
|
|
41
|
-
export declare function instanceOfIntersectionAccountDtoWithAddressDto(value: object): boolean;
|
|
42
|
-
export declare function IntersectionAccountDtoWithAddressDtoFromJSON(json: any): IntersectionAccountDtoWithAddressDto;
|
|
43
|
-
export declare function IntersectionAccountDtoWithAddressDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): IntersectionAccountDtoWithAddressDto;
|
|
44
|
-
export declare function IntersectionAccountDtoWithAddressDtoToJSON(value?: IntersectionAccountDtoWithAddressDto | null): any;
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* Nameshift
|
|
6
|
-
* Nameshift API
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
-
* https://openapi-generator.tech
|
|
13
|
-
* Do not edit the class manually.
|
|
14
|
-
*/
|
|
15
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.IntersectionAccountDtoWithAddressDtoToJSON = exports.IntersectionAccountDtoWithAddressDtoFromJSONTyped = exports.IntersectionAccountDtoWithAddressDtoFromJSON = exports.instanceOfIntersectionAccountDtoWithAddressDto = void 0;
|
|
17
|
-
var AccountAddressDto_1 = require("./AccountAddressDto");
|
|
18
|
-
/**
|
|
19
|
-
* Check if a given object implements the IntersectionAccountDtoWithAddressDto interface.
|
|
20
|
-
*/
|
|
21
|
-
function instanceOfIntersectionAccountDtoWithAddressDto(value) {
|
|
22
|
-
var isInstance = true;
|
|
23
|
-
isInstance = isInstance && "id" in value;
|
|
24
|
-
isInstance = isInstance && "identifier" in value;
|
|
25
|
-
isInstance = isInstance && "addresses" in value;
|
|
26
|
-
return isInstance;
|
|
27
|
-
}
|
|
28
|
-
exports.instanceOfIntersectionAccountDtoWithAddressDto = instanceOfIntersectionAccountDtoWithAddressDto;
|
|
29
|
-
function IntersectionAccountDtoWithAddressDtoFromJSON(json) {
|
|
30
|
-
return IntersectionAccountDtoWithAddressDtoFromJSONTyped(json, false);
|
|
31
|
-
}
|
|
32
|
-
exports.IntersectionAccountDtoWithAddressDtoFromJSON = IntersectionAccountDtoWithAddressDtoFromJSON;
|
|
33
|
-
function IntersectionAccountDtoWithAddressDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
34
|
-
if ((json === undefined) || (json === null)) {
|
|
35
|
-
return json;
|
|
36
|
-
}
|
|
37
|
-
return {
|
|
38
|
-
'id': json['id'],
|
|
39
|
-
'identifier': json['identifier'],
|
|
40
|
-
'addresses': (json['addresses'].map(AccountAddressDto_1.AccountAddressDtoFromJSON)),
|
|
41
|
-
};
|
|
42
|
-
}
|
|
43
|
-
exports.IntersectionAccountDtoWithAddressDtoFromJSONTyped = IntersectionAccountDtoWithAddressDtoFromJSONTyped;
|
|
44
|
-
function IntersectionAccountDtoWithAddressDtoToJSON(value) {
|
|
45
|
-
if (value === undefined) {
|
|
46
|
-
return undefined;
|
|
47
|
-
}
|
|
48
|
-
if (value === null) {
|
|
49
|
-
return null;
|
|
50
|
-
}
|
|
51
|
-
return {
|
|
52
|
-
'id': value.id,
|
|
53
|
-
'identifier': value.identifier,
|
|
54
|
-
'addresses': (value.addresses.map(AccountAddressDto_1.AccountAddressDtoToJSON)),
|
|
55
|
-
};
|
|
56
|
-
}
|
|
57
|
-
exports.IntersectionAccountDtoWithAddressDtoToJSON = IntersectionAccountDtoWithAddressDtoToJSON;
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Nameshift
|
|
3
|
-
* Nameshift API
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.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 type { WithFinancialDtoInner } from './WithFinancialDtoInner';
|
|
13
|
-
/**
|
|
14
|
-
*
|
|
15
|
-
* @export
|
|
16
|
-
* @interface IntersectionAccountDtoWithFinancialDto
|
|
17
|
-
*/
|
|
18
|
-
export interface IntersectionAccountDtoWithFinancialDto {
|
|
19
|
-
/**
|
|
20
|
-
*
|
|
21
|
-
* @type {string}
|
|
22
|
-
* @memberof IntersectionAccountDtoWithFinancialDto
|
|
23
|
-
*/
|
|
24
|
-
id: string;
|
|
25
|
-
/**
|
|
26
|
-
*
|
|
27
|
-
* @type {string}
|
|
28
|
-
* @memberof IntersectionAccountDtoWithFinancialDto
|
|
29
|
-
*/
|
|
30
|
-
identifier: string;
|
|
31
|
-
/**
|
|
32
|
-
*
|
|
33
|
-
* @type {WithFinancialDtoInner}
|
|
34
|
-
* @memberof IntersectionAccountDtoWithFinancialDto
|
|
35
|
-
*/
|
|
36
|
-
financial: WithFinancialDtoInner;
|
|
37
|
-
}
|
|
38
|
-
/**
|
|
39
|
-
* Check if a given object implements the IntersectionAccountDtoWithFinancialDto interface.
|
|
40
|
-
*/
|
|
41
|
-
export declare function instanceOfIntersectionAccountDtoWithFinancialDto(value: object): boolean;
|
|
42
|
-
export declare function IntersectionAccountDtoWithFinancialDtoFromJSON(json: any): IntersectionAccountDtoWithFinancialDto;
|
|
43
|
-
export declare function IntersectionAccountDtoWithFinancialDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): IntersectionAccountDtoWithFinancialDto;
|
|
44
|
-
export declare function IntersectionAccountDtoWithFinancialDtoToJSON(value?: IntersectionAccountDtoWithFinancialDto | null): any;
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* Nameshift
|
|
6
|
-
* Nameshift API
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
-
* https://openapi-generator.tech
|
|
13
|
-
* Do not edit the class manually.
|
|
14
|
-
*/
|
|
15
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.IntersectionAccountDtoWithFinancialDtoToJSON = exports.IntersectionAccountDtoWithFinancialDtoFromJSONTyped = exports.IntersectionAccountDtoWithFinancialDtoFromJSON = exports.instanceOfIntersectionAccountDtoWithFinancialDto = void 0;
|
|
17
|
-
var WithFinancialDtoInner_1 = require("./WithFinancialDtoInner");
|
|
18
|
-
/**
|
|
19
|
-
* Check if a given object implements the IntersectionAccountDtoWithFinancialDto interface.
|
|
20
|
-
*/
|
|
21
|
-
function instanceOfIntersectionAccountDtoWithFinancialDto(value) {
|
|
22
|
-
var isInstance = true;
|
|
23
|
-
isInstance = isInstance && "id" in value;
|
|
24
|
-
isInstance = isInstance && "identifier" in value;
|
|
25
|
-
isInstance = isInstance && "financial" in value;
|
|
26
|
-
return isInstance;
|
|
27
|
-
}
|
|
28
|
-
exports.instanceOfIntersectionAccountDtoWithFinancialDto = instanceOfIntersectionAccountDtoWithFinancialDto;
|
|
29
|
-
function IntersectionAccountDtoWithFinancialDtoFromJSON(json) {
|
|
30
|
-
return IntersectionAccountDtoWithFinancialDtoFromJSONTyped(json, false);
|
|
31
|
-
}
|
|
32
|
-
exports.IntersectionAccountDtoWithFinancialDtoFromJSON = IntersectionAccountDtoWithFinancialDtoFromJSON;
|
|
33
|
-
function IntersectionAccountDtoWithFinancialDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
34
|
-
if ((json === undefined) || (json === null)) {
|
|
35
|
-
return json;
|
|
36
|
-
}
|
|
37
|
-
return {
|
|
38
|
-
'id': json['id'],
|
|
39
|
-
'identifier': json['identifier'],
|
|
40
|
-
'financial': (0, WithFinancialDtoInner_1.WithFinancialDtoInnerFromJSON)(json['financial']),
|
|
41
|
-
};
|
|
42
|
-
}
|
|
43
|
-
exports.IntersectionAccountDtoWithFinancialDtoFromJSONTyped = IntersectionAccountDtoWithFinancialDtoFromJSONTyped;
|
|
44
|
-
function IntersectionAccountDtoWithFinancialDtoToJSON(value) {
|
|
45
|
-
if (value === undefined) {
|
|
46
|
-
return undefined;
|
|
47
|
-
}
|
|
48
|
-
if (value === null) {
|
|
49
|
-
return null;
|
|
50
|
-
}
|
|
51
|
-
return {
|
|
52
|
-
'id': value.id,
|
|
53
|
-
'identifier': value.identifier,
|
|
54
|
-
'financial': (0, WithFinancialDtoInner_1.WithFinancialDtoInnerToJSON)(value.financial),
|
|
55
|
-
};
|
|
56
|
-
}
|
|
57
|
-
exports.IntersectionAccountDtoWithFinancialDtoToJSON = IntersectionAccountDtoWithFinancialDtoToJSON;
|