wapi-client 0.5.1 → 0.6.0
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/dist/api/base-client.d.ts +36 -1
- package/dist/lib/errors.d.ts +33 -1
- package/dist/lib/validator.d.ts +11 -1
- package/dist/txs/create-database-backup/create-database-backup.enums.d.ts +20 -0
- package/dist/txs/create-database-backup/create-database-backup.guards.d.ts +4 -0
- package/dist/txs/get-database-backup-progress/get-database-backup-progress.enums.d.ts +26 -0
- package/dist/txs/get-database-backup-progress/get-database-backup-progress.guards.d.ts +4 -0
- package/dist/txs/import-database-backup/import-database-backup.enums.d.ts +17 -0
- package/dist/txs/import-database-backup/import-database-backup.guards.d.ts +4 -0
- package/dist/txs/import-database-progress/import-database-progress.enums.d.ts +21 -0
- package/dist/txs/import-database-progress/import-database-progress.guards.d.ts +4 -0
- package/dist/txs/index.d.ts +30 -0
- package/dist/txs/list-database-backups/list-database-backups.enums.d.ts +15 -0
- package/dist/txs/list-database-backups/list-database-backups.guards.d.ts +4 -0
- package/dist/wapi-client.cjs.development.js +1628 -1275
- package/dist/wapi-client.cjs.js +10 -10
- package/package.json +1 -1
|
@@ -1328,9 +1328,9 @@ var require_event_target = __commonJS({
|
|
|
1328
1328
|
"node_modules/ws/lib/event-target.js"(exports, module2) {
|
|
1329
1329
|
"use strict";
|
|
1330
1330
|
var Event = class {
|
|
1331
|
-
constructor(
|
|
1331
|
+
constructor(type170, target) {
|
|
1332
1332
|
this.target = target;
|
|
1333
|
-
this.type =
|
|
1333
|
+
this.type = type170;
|
|
1334
1334
|
}
|
|
1335
1335
|
};
|
|
1336
1336
|
var MessageEvent3 = class extends Event {
|
|
@@ -1360,7 +1360,7 @@ var require_event_target = __commonJS({
|
|
|
1360
1360
|
}
|
|
1361
1361
|
};
|
|
1362
1362
|
var EventTarget = {
|
|
1363
|
-
addEventListener(
|
|
1363
|
+
addEventListener(type170, listener, options) {
|
|
1364
1364
|
if (typeof listener !== "function")
|
|
1365
1365
|
return;
|
|
1366
1366
|
function onMessage(data) {
|
|
@@ -1376,27 +1376,27 @@ var require_event_target = __commonJS({
|
|
|
1376
1376
|
listener.call(this, new OpenEvent(this));
|
|
1377
1377
|
}
|
|
1378
1378
|
const method = options && options.once ? "once" : "on";
|
|
1379
|
-
if (
|
|
1379
|
+
if (type170 === "message") {
|
|
1380
1380
|
onMessage._listener = listener;
|
|
1381
|
-
this[method](
|
|
1382
|
-
} else if (
|
|
1381
|
+
this[method](type170, onMessage);
|
|
1382
|
+
} else if (type170 === "close") {
|
|
1383
1383
|
onClose._listener = listener;
|
|
1384
|
-
this[method](
|
|
1385
|
-
} else if (
|
|
1384
|
+
this[method](type170, onClose);
|
|
1385
|
+
} else if (type170 === "error") {
|
|
1386
1386
|
onError._listener = listener;
|
|
1387
|
-
this[method](
|
|
1388
|
-
} else if (
|
|
1387
|
+
this[method](type170, onError);
|
|
1388
|
+
} else if (type170 === "open") {
|
|
1389
1389
|
onOpen._listener = listener;
|
|
1390
|
-
this[method](
|
|
1390
|
+
this[method](type170, onOpen);
|
|
1391
1391
|
} else {
|
|
1392
|
-
this[method](
|
|
1392
|
+
this[method](type170, listener);
|
|
1393
1393
|
}
|
|
1394
1394
|
},
|
|
1395
|
-
removeEventListener(
|
|
1396
|
-
const listeners = this.listeners(
|
|
1395
|
+
removeEventListener(type170, listener) {
|
|
1396
|
+
const listeners = this.listeners(type170);
|
|
1397
1397
|
for (let i = 0; i < listeners.length; i++) {
|
|
1398
1398
|
if (listeners[i] === listener || listeners[i]._listener === listener) {
|
|
1399
|
-
this.removeListener(
|
|
1399
|
+
this.removeListener(type170, listeners[i]);
|
|
1400
1400
|
}
|
|
1401
1401
|
}
|
|
1402
1402
|
}
|
|
@@ -1765,12 +1765,12 @@ var require_websocket = __commonJS({
|
|
|
1765
1765
|
get binaryType() {
|
|
1766
1766
|
return this._binaryType;
|
|
1767
1767
|
}
|
|
1768
|
-
set binaryType(
|
|
1769
|
-
if (!BINARY_TYPES.includes(
|
|
1768
|
+
set binaryType(type170) {
|
|
1769
|
+
if (!BINARY_TYPES.includes(type170))
|
|
1770
1770
|
return;
|
|
1771
|
-
this._binaryType =
|
|
1771
|
+
this._binaryType = type170;
|
|
1772
1772
|
if (this._receiver)
|
|
1773
|
-
this._receiver._binaryType =
|
|
1773
|
+
this._receiver._binaryType = type170;
|
|
1774
1774
|
}
|
|
1775
1775
|
get bufferedAmount() {
|
|
1776
1776
|
if (!this._socket)
|
|
@@ -4567,8 +4567,8 @@ var require_applicability = __commonJS({
|
|
|
4567
4567
|
"use strict";
|
|
4568
4568
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4569
4569
|
exports.shouldUseRule = exports.shouldUseGroup = exports.schemaHasRulesForType = void 0;
|
|
4570
|
-
function schemaHasRulesForType({ schema, self },
|
|
4571
|
-
const group = self.RULES.types[
|
|
4570
|
+
function schemaHasRulesForType({ schema, self }, type170) {
|
|
4571
|
+
const group = self.RULES.types[type170];
|
|
4572
4572
|
return group && group !== true && shouldUseGroup(schema, group);
|
|
4573
4573
|
}
|
|
4574
4574
|
exports.schemaHasRulesForType = schemaHasRulesForType;
|
|
@@ -4777,10 +4777,10 @@ var require_defaults = __commonJS({
|
|
|
4777
4777
|
var codegen_1 = require_codegen();
|
|
4778
4778
|
var util_1 = require_util();
|
|
4779
4779
|
function assignDefaults(it, ty) {
|
|
4780
|
-
const { properties:
|
|
4781
|
-
if (ty === "object" &&
|
|
4782
|
-
for (const key in
|
|
4783
|
-
assignDefault(it, key,
|
|
4780
|
+
const { properties: properties142, items } = it.schema;
|
|
4781
|
+
if (ty === "object" && properties142) {
|
|
4782
|
+
for (const key in properties142) {
|
|
4783
|
+
assignDefault(it, key, properties142[key].default);
|
|
4784
4784
|
}
|
|
4785
4785
|
} else if (ty === "array" && Array.isArray(items)) {
|
|
4786
4786
|
items.forEach((sch, i) => assignDefault(it, i, sch.default));
|
|
@@ -4822,8 +4822,8 @@ var require_code2 = __commonJS({
|
|
|
4822
4822
|
});
|
|
4823
4823
|
}
|
|
4824
4824
|
exports.checkReportMissingProp = checkReportMissingProp;
|
|
4825
|
-
function checkMissingProp({ gen, data, it: { opts } },
|
|
4826
|
-
return codegen_1.or(...
|
|
4825
|
+
function checkMissingProp({ gen, data, it: { opts } }, properties142, missing) {
|
|
4826
|
+
return codegen_1.or(...properties142.map((prop) => codegen_1.and(noPropertyInData(gen, data, prop, opts.ownProperties), codegen_1._`${missing} = ${prop}`)));
|
|
4827
4827
|
}
|
|
4828
4828
|
exports.checkMissingProp = checkMissingProp;
|
|
4829
4829
|
function reportMissingProp(cxt, missing) {
|
|
@@ -5396,8 +5396,8 @@ var require_uri_all = __commonJS({
|
|
|
5396
5396
|
var baseMinusTMin = base - tMin;
|
|
5397
5397
|
var floor = Math.floor;
|
|
5398
5398
|
var stringFromCharCode = String.fromCharCode;
|
|
5399
|
-
function error$1(
|
|
5400
|
-
throw new RangeError(errors[
|
|
5399
|
+
function error$1(type170) {
|
|
5400
|
+
throw new RangeError(errors[type170]);
|
|
5401
5401
|
}
|
|
5402
5402
|
function map(array, fn) {
|
|
5403
5403
|
var result = [];
|
|
@@ -6681,9 +6681,9 @@ var require_validate2 = __commonJS({
|
|
|
6681
6681
|
for (const keyword in rules) {
|
|
6682
6682
|
const rule = rules[keyword];
|
|
6683
6683
|
if (typeof rule == "object" && applicability_1.shouldUseRule(it.schema, rule)) {
|
|
6684
|
-
const { type:
|
|
6685
|
-
if (
|
|
6686
|
-
strictTypesError(it, `missing type "${
|
|
6684
|
+
const { type: type170 } = rule.definition;
|
|
6685
|
+
if (type170.length && !type170.some((t) => hasApplicableType(ts, t))) {
|
|
6686
|
+
strictTypesError(it, `missing type "${type170.join(",")}" for keyword "${keyword}"`);
|
|
6687
6687
|
}
|
|
6688
6688
|
}
|
|
6689
6689
|
}
|
|
@@ -7456,18 +7456,18 @@ var require_core = __commonJS({
|
|
|
7456
7456
|
validateSchema(schema, throwOrLogError) {
|
|
7457
7457
|
if (typeof schema == "boolean")
|
|
7458
7458
|
return true;
|
|
7459
|
-
let $
|
|
7460
|
-
$
|
|
7461
|
-
if ($
|
|
7459
|
+
let $schema196;
|
|
7460
|
+
$schema196 = schema.$schema;
|
|
7461
|
+
if ($schema196 !== void 0 && typeof $schema196 != "string") {
|
|
7462
7462
|
throw new Error("$schema must be a string");
|
|
7463
7463
|
}
|
|
7464
|
-
$
|
|
7465
|
-
if (!$
|
|
7464
|
+
$schema196 = $schema196 || this.opts.defaultMeta || this.defaultMeta();
|
|
7465
|
+
if (!$schema196) {
|
|
7466
7466
|
this.logger.warn("meta-schema not available");
|
|
7467
7467
|
this.errors = null;
|
|
7468
7468
|
return true;
|
|
7469
7469
|
}
|
|
7470
|
-
const valid = this.validate($
|
|
7470
|
+
const valid = this.validate($schema196, schema);
|
|
7471
7471
|
if (!valid && throwOrLogError) {
|
|
7472
7472
|
const message = "schema is invalid: " + this.errorsText();
|
|
7473
7473
|
if (this.opts.validateSchema === "log")
|
|
@@ -7526,8 +7526,8 @@ var require_core = __commonJS({
|
|
|
7526
7526
|
throw new Error("ajv.removeSchema: invalid parameter");
|
|
7527
7527
|
}
|
|
7528
7528
|
}
|
|
7529
|
-
addVocabulary(
|
|
7530
|
-
for (const def of
|
|
7529
|
+
addVocabulary(definitions108) {
|
|
7530
|
+
for (const def of definitions108)
|
|
7531
7531
|
this.addKeyword(def);
|
|
7532
7532
|
return this;
|
|
7533
7533
|
}
|
|
@@ -8946,11 +8946,11 @@ var require_properties = __commonJS({
|
|
|
8946
8946
|
if (it.opts.unevaluated && allProps.length && it.props !== true) {
|
|
8947
8947
|
it.props = util_1.mergeEvaluated.props(gen, util_1.toHash(allProps), it.props);
|
|
8948
8948
|
}
|
|
8949
|
-
const
|
|
8950
|
-
if (
|
|
8949
|
+
const properties142 = allProps.filter((p) => !util_1.alwaysValidSchema(it, schema[p]));
|
|
8950
|
+
if (properties142.length === 0)
|
|
8951
8951
|
return;
|
|
8952
8952
|
const valid = gen.name("valid");
|
|
8953
|
-
for (const prop of
|
|
8953
|
+
for (const prop of properties142) {
|
|
8954
8954
|
if (hasDefault(prop)) {
|
|
8955
8955
|
applyPropertySchema(prop);
|
|
8956
8956
|
} else {
|
|
@@ -9835,9 +9835,9 @@ var require_lib = __commonJS({
|
|
|
9835
9835
|
}
|
|
9836
9836
|
}
|
|
9837
9837
|
this[BUFFER] = Buffer.concat(buffers);
|
|
9838
|
-
let
|
|
9839
|
-
if (
|
|
9840
|
-
this[TYPE] =
|
|
9838
|
+
let type170 = options && options.type !== void 0 && String(options.type).toLowerCase();
|
|
9839
|
+
if (type170 && !/[^\u0020-\u007E]/.test(type170)) {
|
|
9840
|
+
this[TYPE] = type170;
|
|
9841
9841
|
}
|
|
9842
9842
|
}
|
|
9843
9843
|
get size() {
|
|
@@ -9903,10 +9903,10 @@ var require_lib = __commonJS({
|
|
|
9903
9903
|
enumerable: false,
|
|
9904
9904
|
configurable: true
|
|
9905
9905
|
});
|
|
9906
|
-
function FetchError(message,
|
|
9906
|
+
function FetchError(message, type170, systemError) {
|
|
9907
9907
|
Error.call(this, message);
|
|
9908
9908
|
this.message = message;
|
|
9909
|
-
this.type =
|
|
9909
|
+
this.type = type170;
|
|
9910
9910
|
if (systemError) {
|
|
9911
9911
|
this.code = this.errno = systemError.code;
|
|
9912
9912
|
}
|
|
@@ -10880,6 +10880,8 @@ __export(exports, {
|
|
|
10880
10880
|
CreateContractFnOutputSchema: () => create_contract_schema_output_default,
|
|
10881
10881
|
CreateContractTxInputSchema: () => create_contract_schema_input_default2,
|
|
10882
10882
|
CreateContractTxOutputSchema: () => create_contract_schema_output_default2,
|
|
10883
|
+
CreateDatabaseBackupTxInputSchema: () => create_database_backup_schema_input_default,
|
|
10884
|
+
CreateDatabaseBackupTxOutputSchema: () => create_database_backup_schema_output_default,
|
|
10883
10885
|
CreateDepositFnInputSchema: () => create_deposit_schema_input_default,
|
|
10884
10886
|
CreateDepositFnOutputSchema: () => create_deposit_schema_output_default,
|
|
10885
10887
|
CreateDepositTxInputSchema: () => create_deposit_schema_input_default2,
|
|
@@ -10955,6 +10957,8 @@ __export(exports, {
|
|
|
10955
10957
|
GetBalanceHistoryTxOutputSchema: () => get_balance_history_schema_output_default2,
|
|
10956
10958
|
GetBalanceTxInputSchema: () => get_balance_schema_input_default2,
|
|
10957
10959
|
GetBalanceTxOutputSchema: () => get_balance_schema_output_default2,
|
|
10960
|
+
GetDatabaseBackupProgressTxInputSchema: () => get_database_backup_progress_schema_input_default,
|
|
10961
|
+
GetDatabaseBackupProgressTxOutputSchema: () => get_database_backup_progress_schema_output_default,
|
|
10958
10962
|
GetFlagsFnInputSchema: () => get_flags_schema_input_default,
|
|
10959
10963
|
GetFlagsFnOutputSchema: () => get_flags_schema_output_default,
|
|
10960
10964
|
GetFlagsTxInputSchema: () => get_flags_schema_input_default2,
|
|
@@ -10992,6 +10996,12 @@ __export(exports, {
|
|
|
10992
10996
|
ImportActionsTxOutputSchema: () => import_actions_schema_output_default,
|
|
10993
10997
|
ImportDataFnInputSchema: () => import_data_schema_input_default,
|
|
10994
10998
|
ImportDataFnOutputSchema: () => import_data_schema_output_default,
|
|
10999
|
+
ImportDatabaseBackupTxInputSchema: () => import_database_backup_schema_input_default,
|
|
11000
|
+
ImportDatabaseBackupTxOutputSchema: () => import_database_backup_schema_output_default,
|
|
11001
|
+
ImportDatabaseProgressTxInputSchema: () => import_database_progress_schema_input_default,
|
|
11002
|
+
ImportDatabaseProgressTxOutputSchema: () => import_database_progress_schema_output_default,
|
|
11003
|
+
ListDatabaseBackupsTxInputSchema: () => list_database_backups_schema_input_default,
|
|
11004
|
+
ListDatabaseBackupsTxOutputSchema: () => list_database_backups_schema_output_default,
|
|
10995
11005
|
QueryBuilder: () => QueryBuilder,
|
|
10996
11006
|
QueryLogsTxInputSchema: () => query_logs_schema_input_default,
|
|
10997
11007
|
QueryLogsTxOutputSchema: () => query_logs_schema_output_default,
|
|
@@ -11125,13 +11135,13 @@ function debugLog(...args) {
|
|
|
11125
11135
|
|
|
11126
11136
|
// src/lib/errors.ts
|
|
11127
11137
|
var CoreError = class extends Error {
|
|
11128
|
-
constructor({ code, message, data, description:
|
|
11138
|
+
constructor({ code, message, data, description: description196 }) {
|
|
11129
11139
|
super(message);
|
|
11130
11140
|
var _a;
|
|
11131
11141
|
this.code = code;
|
|
11132
11142
|
this.message = message;
|
|
11133
11143
|
this.data = data;
|
|
11134
|
-
this.description = (_a =
|
|
11144
|
+
this.description = (_a = description196 != null ? description196 : ErrorDescriptions[message]) != null ? _a : "";
|
|
11135
11145
|
}
|
|
11136
11146
|
toJSON() {
|
|
11137
11147
|
return {
|
|
@@ -11305,6 +11315,14 @@ var ERROR_MESSAGES;
|
|
|
11305
11315
|
ERROR_MESSAGES2["TRG_MISSING_FILTER"] = "TRG_MISSING_FILTER";
|
|
11306
11316
|
ERROR_MESSAGES2["HTTP_BODY_SIZE"] = "HTTP_BODY_SIZE";
|
|
11307
11317
|
ERROR_MESSAGES2["METHOD_DISABLED"] = "METHOD_DISABLED";
|
|
11318
|
+
ERROR_MESSAGES2["DATABASE_IMPORT_UNEXPECTED_ERROR"] = "DATABASE_IMPORT_UNEXPECTED_ERROR";
|
|
11319
|
+
ERROR_MESSAGES2["DATABASE_IMPORT_NOT_FOUND"] = "DATABASE_IMPORT_NOT_FOUND";
|
|
11320
|
+
ERROR_MESSAGES2["DATABASE_BACKUP_CREATE_UNEXPECTED_ERROR"] = "DATABASE_BACKUP_CREATE_UNEXPECTED_ERROR";
|
|
11321
|
+
ERROR_MESSAGES2["LIST_DATABASE_BACKUPS_UNEXPECTED_ERROR"] = "LIST_DATABASE_BACKUPS_UNEXPECTED_ERROR";
|
|
11322
|
+
ERROR_MESSAGES2["IMPORT_DATABASE_PROGRESS_NOT_FOUND"] = "IMPORT_DATABASE_PROGRESS_NOT_FOUND";
|
|
11323
|
+
ERROR_MESSAGES2["IMPORT_DATABASE_PROGRESS_UNEXPECTED_ERROR"] = "IMPORT_DATABASE_PROGRESS_UNEXPECTED_ERROR";
|
|
11324
|
+
ERROR_MESSAGES2["DATABASE_BACKUP_PROGRESS_NOT_FOUND"] = "DATABASE_BACKUP_PROGRESS_NOT_FOUND";
|
|
11325
|
+
ERROR_MESSAGES2["DATABASE_BACKUP_PROGRESS_UNEXPECTED_ERROR"] = "DATABASE_BACKUP_PROGRESS_UNEXPECTED_ERROR";
|
|
11308
11326
|
})(ERROR_MESSAGES || (ERROR_MESSAGES = {}));
|
|
11309
11327
|
var ErrorDescriptions = {
|
|
11310
11328
|
AUTHENTICATION_FAILED: `Provided credentials are invalid`,
|
|
@@ -11364,7 +11382,15 @@ var ErrorDescriptions = {
|
|
|
11364
11382
|
TR_MISSING_FILTER: `Transactions can't reversed or updated without valid filter`,
|
|
11365
11383
|
TRG_MISSING_FILTER: `Transaction groups can't reversed or updated without valid filter`,
|
|
11366
11384
|
HTTP_BODY_SIZE: `Http body size can't be more than 100MB`,
|
|
11367
|
-
METHOD_DISABLED: `Method is disabled
|
|
11385
|
+
METHOD_DISABLED: `Method is disabled`,
|
|
11386
|
+
DATABASE_IMPORT_UNEXPECTED_ERROR: `Unexpected error while importing database backup`,
|
|
11387
|
+
DATABASE_IMPORT_NOT_FOUND: `Database import file not found`,
|
|
11388
|
+
DATABASE_BACKUP_CREATE_UNEXPECTED_ERROR: `Unexpected error while creating database backup`,
|
|
11389
|
+
LIST_DATABASE_BACKUPS_UNEXPECTED_ERROR: `Unexpected error while listing database backups`,
|
|
11390
|
+
IMPORT_DATABASE_PROGRESS_NOT_FOUND: `Import database progress not found`,
|
|
11391
|
+
IMPORT_DATABASE_PROGRESS_UNEXPECTED_ERROR: `Unexpected error while getting database import progress`,
|
|
11392
|
+
DATABASE_BACKUP_PROGRESS_NOT_FOUND: `Database backup progress not found`,
|
|
11393
|
+
DATABASE_BACKUP_PROGRESS_UNEXPECTED_ERROR: `Unexpected error while getting database backup progress`
|
|
11368
11394
|
};
|
|
11369
11395
|
|
|
11370
11396
|
// src/lib/utils.ts
|
|
@@ -19198,13 +19224,60 @@ var create_contract_schema_output_default2 = {
|
|
|
19198
19224
|
additionalProperties: additionalProperties54
|
|
19199
19225
|
};
|
|
19200
19226
|
|
|
19201
|
-
// src/txs/create-
|
|
19227
|
+
// src/txs/create-database-backup/create-database-backup.schema.input.json
|
|
19202
19228
|
var $schema105 = "http://json-schema.org/draft-07/schema";
|
|
19203
|
-
var $id105 = "
|
|
19204
|
-
var title100 = "
|
|
19205
|
-
var description105 = "Input for
|
|
19229
|
+
var $id105 = "CreateDatabaseBackupTxInput";
|
|
19230
|
+
var title100 = "CreateDatabaseBackupTxInput";
|
|
19231
|
+
var description105 = "Input for createDatabaseBackup";
|
|
19206
19232
|
var type84 = "object";
|
|
19207
19233
|
var properties55 = {
|
|
19234
|
+
export_name: {
|
|
19235
|
+
description: "Name of the created export file",
|
|
19236
|
+
type: "string"
|
|
19237
|
+
}
|
|
19238
|
+
};
|
|
19239
|
+
var definitions52 = {};
|
|
19240
|
+
var additionalProperties55 = false;
|
|
19241
|
+
var create_database_backup_schema_input_default = {
|
|
19242
|
+
$schema: $schema105,
|
|
19243
|
+
$id: $id105,
|
|
19244
|
+
title: title100,
|
|
19245
|
+
description: description105,
|
|
19246
|
+
type: type84,
|
|
19247
|
+
properties: properties55,
|
|
19248
|
+
definitions: definitions52,
|
|
19249
|
+
additionalProperties: additionalProperties55
|
|
19250
|
+
};
|
|
19251
|
+
|
|
19252
|
+
// src/txs/create-database-backup/create-database-backup.schema.output.json
|
|
19253
|
+
var $schema106 = "http://json-schema.org/draft-07/schema";
|
|
19254
|
+
var $id106 = "CreateDatabaseBackupTxOutput";
|
|
19255
|
+
var title101 = "CreateDatabaseBackupTxOutput";
|
|
19256
|
+
var description106 = "Output of createDatabaseBackup";
|
|
19257
|
+
var type85 = "object";
|
|
19258
|
+
var properties56 = {
|
|
19259
|
+
message: {
|
|
19260
|
+
type: "string"
|
|
19261
|
+
}
|
|
19262
|
+
};
|
|
19263
|
+
var additionalProperties56 = false;
|
|
19264
|
+
var create_database_backup_schema_output_default = {
|
|
19265
|
+
$schema: $schema106,
|
|
19266
|
+
$id: $id106,
|
|
19267
|
+
title: title101,
|
|
19268
|
+
description: description106,
|
|
19269
|
+
type: type85,
|
|
19270
|
+
properties: properties56,
|
|
19271
|
+
additionalProperties: additionalProperties56
|
|
19272
|
+
};
|
|
19273
|
+
|
|
19274
|
+
// src/txs/create-deposit/create-deposit.schema.input.json
|
|
19275
|
+
var $schema107 = "http://json-schema.org/draft-07/schema";
|
|
19276
|
+
var $id107 = "CreateDepositTxInput";
|
|
19277
|
+
var title102 = "CreateDepositTxInput";
|
|
19278
|
+
var description107 = "Input for createDeposit";
|
|
19279
|
+
var type86 = "object";
|
|
19280
|
+
var properties57 = {
|
|
19208
19281
|
deposit: {
|
|
19209
19282
|
$ref: "/txs/create-transfer/create-transfer.schema.input.json#/definitions/transfer_data_deposit"
|
|
19210
19283
|
},
|
|
@@ -19212,7 +19285,7 @@ var properties55 = {
|
|
|
19212
19285
|
$ref: "#/definitions/create_deposit_tx_options"
|
|
19213
19286
|
}
|
|
19214
19287
|
};
|
|
19215
|
-
var
|
|
19288
|
+
var definitions53 = {
|
|
19216
19289
|
create_deposit_tx_options: {
|
|
19217
19290
|
allOf: [
|
|
19218
19291
|
{
|
|
@@ -19224,43 +19297,43 @@ var definitions52 = {
|
|
|
19224
19297
|
]
|
|
19225
19298
|
}
|
|
19226
19299
|
};
|
|
19227
|
-
var
|
|
19300
|
+
var additionalProperties57 = false;
|
|
19228
19301
|
var required34 = ["deposit"];
|
|
19229
19302
|
var create_deposit_schema_input_default2 = {
|
|
19230
|
-
$schema: $
|
|
19231
|
-
$id: $
|
|
19232
|
-
title:
|
|
19233
|
-
description:
|
|
19234
|
-
type:
|
|
19235
|
-
properties:
|
|
19236
|
-
definitions:
|
|
19237
|
-
additionalProperties:
|
|
19303
|
+
$schema: $schema107,
|
|
19304
|
+
$id: $id107,
|
|
19305
|
+
title: title102,
|
|
19306
|
+
description: description107,
|
|
19307
|
+
type: type86,
|
|
19308
|
+
properties: properties57,
|
|
19309
|
+
definitions: definitions53,
|
|
19310
|
+
additionalProperties: additionalProperties57,
|
|
19238
19311
|
required: required34
|
|
19239
19312
|
};
|
|
19240
19313
|
|
|
19241
19314
|
// src/txs/create-deposit/create-deposit.schema.output.json
|
|
19242
|
-
var $
|
|
19243
|
-
var $
|
|
19244
|
-
var
|
|
19245
|
-
var
|
|
19315
|
+
var $schema108 = "http://json-schema.org/draft-07/schema";
|
|
19316
|
+
var $id108 = "CreateDepositTxOutput";
|
|
19317
|
+
var title103 = "CreateDepositTxOutput";
|
|
19318
|
+
var description108 = "The transfer of funds and optionally the destination wallet balance";
|
|
19246
19319
|
var allOf11 = [
|
|
19247
19320
|
{ $ref: "/txs/create-transfer/create-transfer.schema.output.json" }
|
|
19248
19321
|
];
|
|
19249
19322
|
var create_deposit_schema_output_default2 = {
|
|
19250
|
-
$schema: $
|
|
19251
|
-
$id: $
|
|
19252
|
-
title:
|
|
19253
|
-
description:
|
|
19323
|
+
$schema: $schema108,
|
|
19324
|
+
$id: $id108,
|
|
19325
|
+
title: title103,
|
|
19326
|
+
description: description108,
|
|
19254
19327
|
allOf: allOf11
|
|
19255
19328
|
};
|
|
19256
19329
|
|
|
19257
19330
|
// src/txs/create-distribution/create-distribution.schema.input.json
|
|
19258
|
-
var $
|
|
19259
|
-
var $
|
|
19260
|
-
var
|
|
19261
|
-
var
|
|
19262
|
-
var
|
|
19263
|
-
var
|
|
19331
|
+
var $schema109 = "http://json-schema.org/draft-07/schema";
|
|
19332
|
+
var $id109 = "CreateDistributionTxInput";
|
|
19333
|
+
var title104 = "CreateDistributionTxInput";
|
|
19334
|
+
var description109 = "Input for createDistribution";
|
|
19335
|
+
var type87 = "object";
|
|
19336
|
+
var properties58 = {
|
|
19264
19337
|
distribution: {
|
|
19265
19338
|
$ref: "#/definitions/distribution"
|
|
19266
19339
|
},
|
|
@@ -19268,7 +19341,7 @@ var properties56 = {
|
|
|
19268
19341
|
$ref: "#/definitions/create_distribution_tx_options"
|
|
19269
19342
|
}
|
|
19270
19343
|
};
|
|
19271
|
-
var
|
|
19344
|
+
var definitions54 = {
|
|
19272
19345
|
create_distribution_tx_options: {
|
|
19273
19346
|
allOf: [
|
|
19274
19347
|
{
|
|
@@ -19489,26 +19562,26 @@ var definitions53 = {
|
|
|
19489
19562
|
}
|
|
19490
19563
|
};
|
|
19491
19564
|
var required35 = ["distribution"];
|
|
19492
|
-
var
|
|
19565
|
+
var additionalProperties58 = false;
|
|
19493
19566
|
var create_distribution_schema_input_default = {
|
|
19494
|
-
$schema: $
|
|
19495
|
-
$id: $
|
|
19496
|
-
title:
|
|
19497
|
-
description:
|
|
19498
|
-
type:
|
|
19499
|
-
properties:
|
|
19500
|
-
definitions:
|
|
19567
|
+
$schema: $schema109,
|
|
19568
|
+
$id: $id109,
|
|
19569
|
+
title: title104,
|
|
19570
|
+
description: description109,
|
|
19571
|
+
type: type87,
|
|
19572
|
+
properties: properties58,
|
|
19573
|
+
definitions: definitions54,
|
|
19501
19574
|
required: required35,
|
|
19502
|
-
additionalProperties:
|
|
19575
|
+
additionalProperties: additionalProperties58
|
|
19503
19576
|
};
|
|
19504
19577
|
|
|
19505
19578
|
// src/txs/create-distribution/create-distribution.schema.output.json
|
|
19506
|
-
var $
|
|
19507
|
-
var $
|
|
19508
|
-
var
|
|
19509
|
-
var
|
|
19510
|
-
var
|
|
19511
|
-
var
|
|
19579
|
+
var $schema110 = "http://json-schema.org/draft-07/schema";
|
|
19580
|
+
var $id110 = "CreateDistributionTxOutput";
|
|
19581
|
+
var title105 = "CreateDistributionTxOutput";
|
|
19582
|
+
var description110 = "Output of createDistribution";
|
|
19583
|
+
var type88 = "object";
|
|
19584
|
+
var properties59 = {
|
|
19512
19585
|
transfer_group: {
|
|
19513
19586
|
description: "Created distribution transfer group",
|
|
19514
19587
|
allOf: [
|
|
@@ -19526,25 +19599,25 @@ var properties57 = {
|
|
|
19526
19599
|
}
|
|
19527
19600
|
};
|
|
19528
19601
|
var required36 = ["transfer_group", "transfers"];
|
|
19529
|
-
var
|
|
19602
|
+
var additionalProperties59 = false;
|
|
19530
19603
|
var create_distribution_schema_output_default = {
|
|
19531
|
-
$schema: $
|
|
19532
|
-
$id: $
|
|
19533
|
-
title:
|
|
19534
|
-
description:
|
|
19535
|
-
type:
|
|
19536
|
-
properties:
|
|
19604
|
+
$schema: $schema110,
|
|
19605
|
+
$id: $id110,
|
|
19606
|
+
title: title105,
|
|
19607
|
+
description: description110,
|
|
19608
|
+
type: type88,
|
|
19609
|
+
properties: properties59,
|
|
19537
19610
|
required: required36,
|
|
19538
|
-
additionalProperties:
|
|
19611
|
+
additionalProperties: additionalProperties59
|
|
19539
19612
|
};
|
|
19540
19613
|
|
|
19541
19614
|
// src/txs/create-token/create-token.schema.input.json
|
|
19542
|
-
var $
|
|
19543
|
-
var $
|
|
19544
|
-
var
|
|
19545
|
-
var
|
|
19546
|
-
var
|
|
19547
|
-
var
|
|
19615
|
+
var $schema111 = "http://json-schema.org/draft-07/schema";
|
|
19616
|
+
var $id111 = "CreateTokenTxInput";
|
|
19617
|
+
var title106 = "CreateTokenTxInput";
|
|
19618
|
+
var description111 = "Input for createToken function";
|
|
19619
|
+
var type89 = "object";
|
|
19620
|
+
var properties60 = {
|
|
19548
19621
|
token: {
|
|
19549
19622
|
$ref: "#/definitions/create_token_input"
|
|
19550
19623
|
},
|
|
@@ -19552,7 +19625,7 @@ var properties58 = {
|
|
|
19552
19625
|
$ref: "#/definitions/create_token_tx_options"
|
|
19553
19626
|
}
|
|
19554
19627
|
};
|
|
19555
|
-
var
|
|
19628
|
+
var definitions55 = {
|
|
19556
19629
|
create_token_tx_options: {
|
|
19557
19630
|
allOf: [
|
|
19558
19631
|
{
|
|
@@ -19591,26 +19664,26 @@ var definitions54 = {
|
|
|
19591
19664
|
}
|
|
19592
19665
|
};
|
|
19593
19666
|
var required37 = ["token"];
|
|
19594
|
-
var
|
|
19667
|
+
var additionalProperties60 = false;
|
|
19595
19668
|
var create_token_schema_input_default2 = {
|
|
19596
|
-
$schema: $
|
|
19597
|
-
$id: $
|
|
19598
|
-
title:
|
|
19599
|
-
description:
|
|
19600
|
-
type:
|
|
19601
|
-
properties:
|
|
19602
|
-
definitions:
|
|
19669
|
+
$schema: $schema111,
|
|
19670
|
+
$id: $id111,
|
|
19671
|
+
title: title106,
|
|
19672
|
+
description: description111,
|
|
19673
|
+
type: type89,
|
|
19674
|
+
properties: properties60,
|
|
19675
|
+
definitions: definitions55,
|
|
19603
19676
|
required: required37,
|
|
19604
|
-
additionalProperties:
|
|
19677
|
+
additionalProperties: additionalProperties60
|
|
19605
19678
|
};
|
|
19606
19679
|
|
|
19607
19680
|
// src/txs/create-token/create-token.schema.output.json
|
|
19608
|
-
var $
|
|
19609
|
-
var $
|
|
19610
|
-
var
|
|
19611
|
-
var
|
|
19612
|
-
var
|
|
19613
|
-
var
|
|
19681
|
+
var $schema112 = "http://json-schema.org/draft-07/schema";
|
|
19682
|
+
var $id112 = "CreateTokenTxOutput";
|
|
19683
|
+
var title107 = "CreateTokenTxOutput";
|
|
19684
|
+
var description112 = "The created token and respective wallet";
|
|
19685
|
+
var type90 = "object";
|
|
19686
|
+
var properties61 = {
|
|
19614
19687
|
token: {
|
|
19615
19688
|
$ref: "/db/token/token.schema.json"
|
|
19616
19689
|
},
|
|
@@ -19618,26 +19691,26 @@ var properties59 = {
|
|
|
19618
19691
|
$ref: "/db/wallet/wallet.schema.json"
|
|
19619
19692
|
}
|
|
19620
19693
|
};
|
|
19621
|
-
var
|
|
19694
|
+
var additionalProperties61 = false;
|
|
19622
19695
|
var required38 = ["token", "wallet"];
|
|
19623
19696
|
var create_token_schema_output_default2 = {
|
|
19624
|
-
$schema: $
|
|
19625
|
-
$id: $
|
|
19626
|
-
title:
|
|
19627
|
-
description:
|
|
19628
|
-
type:
|
|
19629
|
-
properties:
|
|
19630
|
-
additionalProperties:
|
|
19697
|
+
$schema: $schema112,
|
|
19698
|
+
$id: $id112,
|
|
19699
|
+
title: title107,
|
|
19700
|
+
description: description112,
|
|
19701
|
+
type: type90,
|
|
19702
|
+
properties: properties61,
|
|
19703
|
+
additionalProperties: additionalProperties61,
|
|
19631
19704
|
required: required38
|
|
19632
19705
|
};
|
|
19633
19706
|
|
|
19634
19707
|
// src/txs/create-transfer/create-transfer.schema.input.json
|
|
19635
|
-
var $
|
|
19636
|
-
var $
|
|
19637
|
-
var
|
|
19638
|
-
var
|
|
19639
|
-
var
|
|
19640
|
-
var
|
|
19708
|
+
var $schema113 = "http://json-schema.org/draft-07/schema";
|
|
19709
|
+
var $id113 = "CreateTransferTxInput";
|
|
19710
|
+
var title108 = "CreateTransferTxInput";
|
|
19711
|
+
var description113 = "Input for createTransfer";
|
|
19712
|
+
var type91 = "object";
|
|
19713
|
+
var properties62 = {
|
|
19641
19714
|
transfer: {
|
|
19642
19715
|
$ref: "#/definitions/transfer_data"
|
|
19643
19716
|
},
|
|
@@ -19645,7 +19718,7 @@ var properties60 = {
|
|
|
19645
19718
|
$ref: "#/definitions/create_transfer_tx_options"
|
|
19646
19719
|
}
|
|
19647
19720
|
};
|
|
19648
|
-
var
|
|
19721
|
+
var definitions56 = {
|
|
19649
19722
|
create_transfer_tx_options: {
|
|
19650
19723
|
allOf: [
|
|
19651
19724
|
{
|
|
@@ -19852,26 +19925,26 @@ var definitions55 = {
|
|
|
19852
19925
|
}
|
|
19853
19926
|
};
|
|
19854
19927
|
var required39 = ["transfer"];
|
|
19855
|
-
var
|
|
19928
|
+
var additionalProperties62 = false;
|
|
19856
19929
|
var create_transfer_schema_input_default2 = {
|
|
19857
|
-
$schema: $
|
|
19858
|
-
$id: $
|
|
19859
|
-
title:
|
|
19860
|
-
description:
|
|
19861
|
-
type:
|
|
19862
|
-
properties:
|
|
19863
|
-
definitions:
|
|
19930
|
+
$schema: $schema113,
|
|
19931
|
+
$id: $id113,
|
|
19932
|
+
title: title108,
|
|
19933
|
+
description: description113,
|
|
19934
|
+
type: type91,
|
|
19935
|
+
properties: properties62,
|
|
19936
|
+
definitions: definitions56,
|
|
19864
19937
|
required: required39,
|
|
19865
|
-
additionalProperties:
|
|
19938
|
+
additionalProperties: additionalProperties62
|
|
19866
19939
|
};
|
|
19867
19940
|
|
|
19868
19941
|
// src/txs/create-transfer/create-transfer.schema.output.json
|
|
19869
|
-
var $
|
|
19870
|
-
var $
|
|
19871
|
-
var
|
|
19872
|
-
var
|
|
19873
|
-
var
|
|
19874
|
-
var
|
|
19942
|
+
var $schema114 = "http://json-schema.org/draft-07/schema";
|
|
19943
|
+
var $id114 = "CreateTransferTxOutput";
|
|
19944
|
+
var title109 = "CreateTransferTxOutput";
|
|
19945
|
+
var description114 = "Output of createTransfer";
|
|
19946
|
+
var type92 = "object";
|
|
19947
|
+
var properties63 = {
|
|
19875
19948
|
transfer: {
|
|
19876
19949
|
description: "Created transfer object",
|
|
19877
19950
|
$ref: "/txs/get-transfer/get-transfer.schema.output.json#/definitions/transfer"
|
|
@@ -19885,26 +19958,26 @@ var properties61 = {
|
|
|
19885
19958
|
$ref: "/txs/get-balance/get-balance.schema.output.json#/definitions/balance"
|
|
19886
19959
|
}
|
|
19887
19960
|
};
|
|
19888
|
-
var
|
|
19961
|
+
var additionalProperties63 = false;
|
|
19889
19962
|
var required40 = ["transfer"];
|
|
19890
19963
|
var create_transfer_schema_output_default2 = {
|
|
19891
|
-
$schema: $
|
|
19892
|
-
$id: $
|
|
19893
|
-
title:
|
|
19894
|
-
description:
|
|
19895
|
-
type:
|
|
19896
|
-
properties:
|
|
19897
|
-
additionalProperties:
|
|
19964
|
+
$schema: $schema114,
|
|
19965
|
+
$id: $id114,
|
|
19966
|
+
title: title109,
|
|
19967
|
+
description: description114,
|
|
19968
|
+
type: type92,
|
|
19969
|
+
properties: properties63,
|
|
19970
|
+
additionalProperties: additionalProperties63,
|
|
19898
19971
|
required: required40
|
|
19899
19972
|
};
|
|
19900
19973
|
|
|
19901
19974
|
// src/txs/create-transfer-group/create-transfer-group.schema.input.json
|
|
19902
|
-
var $
|
|
19903
|
-
var $
|
|
19904
|
-
var
|
|
19905
|
-
var
|
|
19906
|
-
var
|
|
19907
|
-
var
|
|
19975
|
+
var $schema115 = "http://json-schema.org/draft-07/schema";
|
|
19976
|
+
var $id115 = "CreateTransferGroupTxInput";
|
|
19977
|
+
var title110 = "CreateTransferGroupTxInput";
|
|
19978
|
+
var description115 = "Input for createTransferGroup";
|
|
19979
|
+
var type93 = "object";
|
|
19980
|
+
var properties64 = {
|
|
19908
19981
|
transfer_group: {
|
|
19909
19982
|
$ref: "#/definitions/transfer_group_data"
|
|
19910
19983
|
},
|
|
@@ -19912,7 +19985,7 @@ var properties62 = {
|
|
|
19912
19985
|
$ref: "#/definitions/create_transfer_group_tx_options"
|
|
19913
19986
|
}
|
|
19914
19987
|
};
|
|
19915
|
-
var
|
|
19988
|
+
var definitions57 = {
|
|
19916
19989
|
create_transfer_group_tx_options: {
|
|
19917
19990
|
allOf: [
|
|
19918
19991
|
{
|
|
@@ -20117,26 +20190,26 @@ var definitions56 = {
|
|
|
20117
20190
|
}
|
|
20118
20191
|
};
|
|
20119
20192
|
var required41 = [];
|
|
20120
|
-
var
|
|
20193
|
+
var additionalProperties64 = false;
|
|
20121
20194
|
var create_transfer_group_schema_input_default2 = {
|
|
20122
|
-
$schema: $
|
|
20123
|
-
$id: $
|
|
20124
|
-
title:
|
|
20125
|
-
description:
|
|
20126
|
-
type:
|
|
20127
|
-
properties:
|
|
20128
|
-
definitions:
|
|
20195
|
+
$schema: $schema115,
|
|
20196
|
+
$id: $id115,
|
|
20197
|
+
title: title110,
|
|
20198
|
+
description: description115,
|
|
20199
|
+
type: type93,
|
|
20200
|
+
properties: properties64,
|
|
20201
|
+
definitions: definitions57,
|
|
20129
20202
|
required: required41,
|
|
20130
|
-
additionalProperties:
|
|
20203
|
+
additionalProperties: additionalProperties64
|
|
20131
20204
|
};
|
|
20132
20205
|
|
|
20133
20206
|
// src/txs/create-transfer-group/create-transfer-group.schema.output.json
|
|
20134
|
-
var $
|
|
20135
|
-
var $
|
|
20136
|
-
var
|
|
20137
|
-
var
|
|
20138
|
-
var
|
|
20139
|
-
var
|
|
20207
|
+
var $schema116 = "http://json-schema.org/draft-07/schema";
|
|
20208
|
+
var $id116 = "CreateTransferGroupTxOutput";
|
|
20209
|
+
var title111 = "CreateTransferGroupTxOutput";
|
|
20210
|
+
var description116 = "Output of createTransferGroup";
|
|
20211
|
+
var type94 = "object";
|
|
20212
|
+
var properties65 = {
|
|
20140
20213
|
transfer_group: {
|
|
20141
20214
|
$ref: "/db/transfer-group/transfer-group.schema.json"
|
|
20142
20215
|
},
|
|
@@ -20149,25 +20222,25 @@ var properties63 = {
|
|
|
20149
20222
|
}
|
|
20150
20223
|
};
|
|
20151
20224
|
var required42 = ["transfer_group"];
|
|
20152
|
-
var
|
|
20225
|
+
var additionalProperties65 = false;
|
|
20153
20226
|
var create_transfer_group_schema_output_default2 = {
|
|
20154
|
-
$schema: $
|
|
20155
|
-
$id: $
|
|
20156
|
-
title:
|
|
20157
|
-
description:
|
|
20158
|
-
type:
|
|
20159
|
-
properties:
|
|
20227
|
+
$schema: $schema116,
|
|
20228
|
+
$id: $id116,
|
|
20229
|
+
title: title111,
|
|
20230
|
+
description: description116,
|
|
20231
|
+
type: type94,
|
|
20232
|
+
properties: properties65,
|
|
20160
20233
|
required: required42,
|
|
20161
|
-
additionalProperties:
|
|
20234
|
+
additionalProperties: additionalProperties65
|
|
20162
20235
|
};
|
|
20163
20236
|
|
|
20164
20237
|
// src/txs/create-transfer-many/create-transfer-many.schema.input.json
|
|
20165
|
-
var $
|
|
20166
|
-
var $
|
|
20167
|
-
var
|
|
20168
|
-
var
|
|
20169
|
-
var
|
|
20170
|
-
var
|
|
20238
|
+
var $schema117 = "http://json-schema.org/draft-07/schema";
|
|
20239
|
+
var $id117 = "CreateTransferManyTxInput";
|
|
20240
|
+
var title112 = "CreateTransferManyTxInput";
|
|
20241
|
+
var description117 = "Input for CreateTransferMany";
|
|
20242
|
+
var type95 = "object";
|
|
20243
|
+
var properties66 = {
|
|
20171
20244
|
transfers: {
|
|
20172
20245
|
description: "An array of transfers",
|
|
20173
20246
|
type: "array",
|
|
@@ -20179,7 +20252,7 @@ var properties64 = {
|
|
|
20179
20252
|
$ref: "#/definitions/create_transfer_many_tx_options"
|
|
20180
20253
|
}
|
|
20181
20254
|
};
|
|
20182
|
-
var
|
|
20255
|
+
var definitions58 = {
|
|
20183
20256
|
create_transfer_many_tx_options: {
|
|
20184
20257
|
allOf: [
|
|
20185
20258
|
{
|
|
@@ -20217,26 +20290,26 @@ var definitions57 = {
|
|
|
20217
20290
|
}
|
|
20218
20291
|
};
|
|
20219
20292
|
var required43 = ["transfers"];
|
|
20220
|
-
var
|
|
20293
|
+
var additionalProperties66 = false;
|
|
20221
20294
|
var create_transfer_many_schema_input_default = {
|
|
20222
|
-
$schema: $
|
|
20223
|
-
$id: $
|
|
20224
|
-
title:
|
|
20225
|
-
description:
|
|
20226
|
-
type:
|
|
20227
|
-
properties:
|
|
20228
|
-
definitions:
|
|
20295
|
+
$schema: $schema117,
|
|
20296
|
+
$id: $id117,
|
|
20297
|
+
title: title112,
|
|
20298
|
+
description: description117,
|
|
20299
|
+
type: type95,
|
|
20300
|
+
properties: properties66,
|
|
20301
|
+
definitions: definitions58,
|
|
20229
20302
|
required: required43,
|
|
20230
|
-
additionalProperties:
|
|
20303
|
+
additionalProperties: additionalProperties66
|
|
20231
20304
|
};
|
|
20232
20305
|
|
|
20233
20306
|
// src/txs/create-transfer-many/create-transfer-many.schema.output.json
|
|
20234
|
-
var $
|
|
20235
|
-
var $
|
|
20236
|
-
var
|
|
20237
|
-
var
|
|
20238
|
-
var
|
|
20239
|
-
var
|
|
20307
|
+
var $schema118 = "http://json-schema.org/draft-07/schema";
|
|
20308
|
+
var $id118 = "CreateTransferManyTxOutput";
|
|
20309
|
+
var title113 = "CreateTransferManyTxOutput";
|
|
20310
|
+
var description118 = "Output of CreateTransferMany";
|
|
20311
|
+
var type96 = "object";
|
|
20312
|
+
var properties67 = {
|
|
20240
20313
|
transfers: {
|
|
20241
20314
|
description: "Created transfer objects",
|
|
20242
20315
|
type: "array",
|
|
@@ -20260,31 +20333,31 @@ var properties65 = {
|
|
|
20260
20333
|
}
|
|
20261
20334
|
};
|
|
20262
20335
|
var required44 = ["transfers"];
|
|
20263
|
-
var
|
|
20336
|
+
var additionalProperties67 = false;
|
|
20264
20337
|
var create_transfer_many_schema_output_default = {
|
|
20265
|
-
$schema: $
|
|
20266
|
-
$id: $
|
|
20267
|
-
title:
|
|
20268
|
-
description:
|
|
20269
|
-
type:
|
|
20270
|
-
properties:
|
|
20338
|
+
$schema: $schema118,
|
|
20339
|
+
$id: $id118,
|
|
20340
|
+
title: title113,
|
|
20341
|
+
description: description118,
|
|
20342
|
+
type: type96,
|
|
20343
|
+
properties: properties67,
|
|
20271
20344
|
required: required44,
|
|
20272
|
-
additionalProperties:
|
|
20345
|
+
additionalProperties: additionalProperties67
|
|
20273
20346
|
};
|
|
20274
20347
|
|
|
20275
20348
|
// src/txs/create-wallet/create-wallet.schema.input.json
|
|
20276
|
-
var $
|
|
20277
|
-
var $
|
|
20278
|
-
var
|
|
20279
|
-
var
|
|
20280
|
-
var
|
|
20281
|
-
var
|
|
20349
|
+
var $schema119 = "http://json-schema.org/draft-07/schema";
|
|
20350
|
+
var $id119 = "CreateWalletTxInput";
|
|
20351
|
+
var title114 = "CreateWalletTxInput";
|
|
20352
|
+
var description119 = "Input for createWallet";
|
|
20353
|
+
var type97 = "object";
|
|
20354
|
+
var properties68 = {
|
|
20282
20355
|
wallet: { $ref: "/db/wallet/wallet.schema.input.json" },
|
|
20283
20356
|
options: {
|
|
20284
20357
|
$ref: "#/definitions/create_wallet_tx_options"
|
|
20285
20358
|
}
|
|
20286
20359
|
};
|
|
20287
|
-
var
|
|
20360
|
+
var definitions59 = {
|
|
20288
20361
|
create_wallet_tx_options: {
|
|
20289
20362
|
allOf: [
|
|
20290
20363
|
{
|
|
@@ -20293,49 +20366,49 @@ var definitions58 = {
|
|
|
20293
20366
|
]
|
|
20294
20367
|
}
|
|
20295
20368
|
};
|
|
20296
|
-
var
|
|
20369
|
+
var additionalProperties68 = false;
|
|
20297
20370
|
var required45 = ["wallet"];
|
|
20298
20371
|
var create_wallet_schema_input_default2 = {
|
|
20299
|
-
$schema: $
|
|
20300
|
-
$id: $
|
|
20301
|
-
title:
|
|
20302
|
-
description:
|
|
20303
|
-
type:
|
|
20304
|
-
properties:
|
|
20305
|
-
definitions:
|
|
20306
|
-
additionalProperties:
|
|
20372
|
+
$schema: $schema119,
|
|
20373
|
+
$id: $id119,
|
|
20374
|
+
title: title114,
|
|
20375
|
+
description: description119,
|
|
20376
|
+
type: type97,
|
|
20377
|
+
properties: properties68,
|
|
20378
|
+
definitions: definitions59,
|
|
20379
|
+
additionalProperties: additionalProperties68,
|
|
20307
20380
|
required: required45
|
|
20308
20381
|
};
|
|
20309
20382
|
|
|
20310
20383
|
// src/txs/create-wallet/create-wallet.schema.output.json
|
|
20311
|
-
var $
|
|
20312
|
-
var $
|
|
20313
|
-
var
|
|
20314
|
-
var
|
|
20315
|
-
var
|
|
20316
|
-
var
|
|
20384
|
+
var $schema120 = "http://json-schema.org/draft-07/schema";
|
|
20385
|
+
var $id120 = "CreateWalletTxOutput";
|
|
20386
|
+
var title115 = "CreateWalletTxOutput";
|
|
20387
|
+
var description120 = "The created wallet";
|
|
20388
|
+
var type98 = "object";
|
|
20389
|
+
var properties69 = {
|
|
20317
20390
|
wallet: { $ref: "/db/wallet/wallet.schema.json" }
|
|
20318
20391
|
};
|
|
20319
|
-
var
|
|
20392
|
+
var additionalProperties69 = false;
|
|
20320
20393
|
var required46 = ["wallet"];
|
|
20321
20394
|
var create_wallet_schema_output_default2 = {
|
|
20322
|
-
$schema: $
|
|
20323
|
-
$id: $
|
|
20324
|
-
title:
|
|
20325
|
-
description:
|
|
20326
|
-
type:
|
|
20327
|
-
properties:
|
|
20328
|
-
additionalProperties:
|
|
20395
|
+
$schema: $schema120,
|
|
20396
|
+
$id: $id120,
|
|
20397
|
+
title: title115,
|
|
20398
|
+
description: description120,
|
|
20399
|
+
type: type98,
|
|
20400
|
+
properties: properties69,
|
|
20401
|
+
additionalProperties: additionalProperties69,
|
|
20329
20402
|
required: required46
|
|
20330
20403
|
};
|
|
20331
20404
|
|
|
20332
20405
|
// src/txs/create-withdrawal/create-withdrawal.schema.input.json
|
|
20333
|
-
var $
|
|
20334
|
-
var $
|
|
20335
|
-
var
|
|
20336
|
-
var
|
|
20337
|
-
var
|
|
20338
|
-
var
|
|
20406
|
+
var $schema121 = "http://json-schema.org/draft-07/schema";
|
|
20407
|
+
var $id121 = "CreateWithdrawalTxInput";
|
|
20408
|
+
var title116 = "CreateWithdrawalTxInput";
|
|
20409
|
+
var description121 = "Input for createWithdrawal";
|
|
20410
|
+
var type99 = "object";
|
|
20411
|
+
var properties70 = {
|
|
20339
20412
|
withdrawal: {
|
|
20340
20413
|
$ref: "/txs/create-transfer/create-transfer.schema.input.json#/definitions/transfer_data_withdrawal"
|
|
20341
20414
|
},
|
|
@@ -20343,7 +20416,7 @@ var properties68 = {
|
|
|
20343
20416
|
$ref: "#/definitions/create_withdrawal_tx_options"
|
|
20344
20417
|
}
|
|
20345
20418
|
};
|
|
20346
|
-
var
|
|
20419
|
+
var definitions60 = {
|
|
20347
20420
|
create_withdrawal_tx_options: {
|
|
20348
20421
|
allOf: [
|
|
20349
20422
|
{
|
|
@@ -20356,42 +20429,42 @@ var definitions59 = {
|
|
|
20356
20429
|
}
|
|
20357
20430
|
};
|
|
20358
20431
|
var required47 = ["withdrawal"];
|
|
20359
|
-
var
|
|
20432
|
+
var additionalProperties70 = false;
|
|
20360
20433
|
var create_withdrawal_schema_input_default2 = {
|
|
20361
|
-
$schema: $
|
|
20362
|
-
$id: $
|
|
20363
|
-
title:
|
|
20364
|
-
description:
|
|
20365
|
-
type:
|
|
20366
|
-
properties:
|
|
20367
|
-
definitions:
|
|
20434
|
+
$schema: $schema121,
|
|
20435
|
+
$id: $id121,
|
|
20436
|
+
title: title116,
|
|
20437
|
+
description: description121,
|
|
20438
|
+
type: type99,
|
|
20439
|
+
properties: properties70,
|
|
20440
|
+
definitions: definitions60,
|
|
20368
20441
|
required: required47,
|
|
20369
|
-
additionalProperties:
|
|
20442
|
+
additionalProperties: additionalProperties70
|
|
20370
20443
|
};
|
|
20371
20444
|
|
|
20372
20445
|
// src/txs/create-withdrawal/create-withdrawal.schema.output.json
|
|
20373
|
-
var $
|
|
20374
|
-
var $
|
|
20375
|
-
var
|
|
20376
|
-
var
|
|
20446
|
+
var $schema122 = "http://json-schema.org/draft-07/schema";
|
|
20447
|
+
var $id122 = "CreateWithdrawalTxOutput";
|
|
20448
|
+
var title117 = "CreateWithdrawalTxOutput";
|
|
20449
|
+
var description122 = "Output of createWithdrawal";
|
|
20377
20450
|
var allOf12 = [
|
|
20378
20451
|
{ $ref: "/txs/create-transfer/create-transfer.schema.output.json" }
|
|
20379
20452
|
];
|
|
20380
20453
|
var create_withdrawal_schema_output_default2 = {
|
|
20381
|
-
$schema: $
|
|
20382
|
-
$id: $
|
|
20383
|
-
title:
|
|
20384
|
-
description:
|
|
20454
|
+
$schema: $schema122,
|
|
20455
|
+
$id: $id122,
|
|
20456
|
+
title: title117,
|
|
20457
|
+
description: description122,
|
|
20385
20458
|
allOf: allOf12
|
|
20386
20459
|
};
|
|
20387
20460
|
|
|
20388
20461
|
// src/txs/find-balance-many/find-balance-many.schema.input.json
|
|
20389
|
-
var $
|
|
20390
|
-
var $
|
|
20391
|
-
var
|
|
20392
|
-
var
|
|
20393
|
-
var
|
|
20394
|
-
var
|
|
20462
|
+
var $schema123 = "http://json-schema.org/draft-07/schema";
|
|
20463
|
+
var $id123 = "FindBalanceManyTxInput";
|
|
20464
|
+
var title118 = "FindBalanceManyTxInput";
|
|
20465
|
+
var description123 = "Input for findBalanceMany";
|
|
20466
|
+
var type100 = "object";
|
|
20467
|
+
var properties71 = {
|
|
20395
20468
|
balance: {
|
|
20396
20469
|
$ref: "#/definitions/find_balance_many_filter"
|
|
20397
20470
|
},
|
|
@@ -20399,7 +20472,7 @@ var properties69 = {
|
|
|
20399
20472
|
$ref: "#/definitions/find_balance_many_tx_options"
|
|
20400
20473
|
}
|
|
20401
20474
|
};
|
|
20402
|
-
var
|
|
20475
|
+
var definitions61 = {
|
|
20403
20476
|
find_balance_many_tx_options: {
|
|
20404
20477
|
allOf: [
|
|
20405
20478
|
{
|
|
@@ -20674,25 +20747,25 @@ var definitions60 = {
|
|
|
20674
20747
|
]
|
|
20675
20748
|
}
|
|
20676
20749
|
};
|
|
20677
|
-
var
|
|
20750
|
+
var additionalProperties71 = false;
|
|
20678
20751
|
var find_balance_many_schema_input_default = {
|
|
20679
|
-
$schema: $
|
|
20680
|
-
$id: $
|
|
20681
|
-
title:
|
|
20682
|
-
description:
|
|
20683
|
-
type:
|
|
20684
|
-
properties:
|
|
20685
|
-
definitions:
|
|
20686
|
-
additionalProperties:
|
|
20752
|
+
$schema: $schema123,
|
|
20753
|
+
$id: $id123,
|
|
20754
|
+
title: title118,
|
|
20755
|
+
description: description123,
|
|
20756
|
+
type: type100,
|
|
20757
|
+
properties: properties71,
|
|
20758
|
+
definitions: definitions61,
|
|
20759
|
+
additionalProperties: additionalProperties71
|
|
20687
20760
|
};
|
|
20688
20761
|
|
|
20689
20762
|
// src/txs/find-balance-many/find-balance-many.schema.output.json
|
|
20690
|
-
var $
|
|
20691
|
-
var $
|
|
20692
|
-
var
|
|
20693
|
-
var
|
|
20694
|
-
var
|
|
20695
|
-
var
|
|
20763
|
+
var $schema124 = "http://json-schema.org/draft-07/schema";
|
|
20764
|
+
var $id124 = "FindBalanceManyTxOutput";
|
|
20765
|
+
var title119 = "FindBalanceManyTxOutput";
|
|
20766
|
+
var description124 = "Output of findBalanceMany";
|
|
20767
|
+
var type101 = "object";
|
|
20768
|
+
var properties72 = {
|
|
20696
20769
|
balances: {
|
|
20697
20770
|
description: "Found balances",
|
|
20698
20771
|
type: "array",
|
|
@@ -20705,25 +20778,25 @@ var properties70 = {
|
|
|
20705
20778
|
}
|
|
20706
20779
|
};
|
|
20707
20780
|
var required48 = ["balances", "metadata"];
|
|
20708
|
-
var
|
|
20781
|
+
var additionalProperties72 = false;
|
|
20709
20782
|
var find_balance_many_schema_output_default = {
|
|
20710
|
-
$schema: $
|
|
20711
|
-
$id: $
|
|
20712
|
-
title:
|
|
20713
|
-
description:
|
|
20714
|
-
type:
|
|
20715
|
-
properties:
|
|
20783
|
+
$schema: $schema124,
|
|
20784
|
+
$id: $id124,
|
|
20785
|
+
title: title119,
|
|
20786
|
+
description: description124,
|
|
20787
|
+
type: type101,
|
|
20788
|
+
properties: properties72,
|
|
20716
20789
|
required: required48,
|
|
20717
|
-
additionalProperties:
|
|
20790
|
+
additionalProperties: additionalProperties72
|
|
20718
20791
|
};
|
|
20719
20792
|
|
|
20720
20793
|
// src/txs/find-token-many/find-token-many.schema.input.json
|
|
20721
|
-
var $
|
|
20722
|
-
var $
|
|
20723
|
-
var
|
|
20724
|
-
var
|
|
20725
|
-
var
|
|
20726
|
-
var
|
|
20794
|
+
var $schema125 = "http://json-schema.org/draft-07/schema";
|
|
20795
|
+
var $id125 = "FindTokenManyTxInput";
|
|
20796
|
+
var title120 = "FindTokenManyTxInput";
|
|
20797
|
+
var description125 = "Input for findTokenMany";
|
|
20798
|
+
var type102 = "object";
|
|
20799
|
+
var properties73 = {
|
|
20727
20800
|
token: {
|
|
20728
20801
|
$ref: "#/definitions/find_token_many_filter"
|
|
20729
20802
|
},
|
|
@@ -20731,7 +20804,7 @@ var properties71 = {
|
|
|
20731
20804
|
$ref: "#/definitions/find_token_many_tx_options"
|
|
20732
20805
|
}
|
|
20733
20806
|
};
|
|
20734
|
-
var
|
|
20807
|
+
var definitions62 = {
|
|
20735
20808
|
find_token_many_tx_options: {
|
|
20736
20809
|
allOf: [
|
|
20737
20810
|
{
|
|
@@ -20986,25 +21059,25 @@ var definitions61 = {
|
|
|
20986
21059
|
]
|
|
20987
21060
|
}
|
|
20988
21061
|
};
|
|
20989
|
-
var
|
|
21062
|
+
var additionalProperties73 = false;
|
|
20990
21063
|
var find_token_many_schema_input_default = {
|
|
20991
|
-
$schema: $
|
|
20992
|
-
$id: $
|
|
20993
|
-
title:
|
|
20994
|
-
description:
|
|
20995
|
-
type:
|
|
20996
|
-
properties:
|
|
20997
|
-
definitions:
|
|
20998
|
-
additionalProperties:
|
|
21064
|
+
$schema: $schema125,
|
|
21065
|
+
$id: $id125,
|
|
21066
|
+
title: title120,
|
|
21067
|
+
description: description125,
|
|
21068
|
+
type: type102,
|
|
21069
|
+
properties: properties73,
|
|
21070
|
+
definitions: definitions62,
|
|
21071
|
+
additionalProperties: additionalProperties73
|
|
20999
21072
|
};
|
|
21000
21073
|
|
|
21001
21074
|
// src/txs/find-token-many/find-token-many.schema.output.json
|
|
21002
|
-
var $
|
|
21003
|
-
var $
|
|
21004
|
-
var
|
|
21005
|
-
var
|
|
21006
|
-
var
|
|
21007
|
-
var
|
|
21075
|
+
var $schema126 = "http://json-schema.org/draft-07/schema";
|
|
21076
|
+
var $id126 = "FindTokenManyTxOutput";
|
|
21077
|
+
var title121 = "FindTokenManyTxOutput";
|
|
21078
|
+
var description126 = "Output of findTokenMany";
|
|
21079
|
+
var type103 = "object";
|
|
21080
|
+
var properties74 = {
|
|
21008
21081
|
tokens: {
|
|
21009
21082
|
description: "Found tokens",
|
|
21010
21083
|
type: "array",
|
|
@@ -21017,25 +21090,25 @@ var properties72 = {
|
|
|
21017
21090
|
}
|
|
21018
21091
|
};
|
|
21019
21092
|
var required49 = ["tokens", "metadata"];
|
|
21020
|
-
var
|
|
21093
|
+
var additionalProperties74 = false;
|
|
21021
21094
|
var find_token_many_schema_output_default = {
|
|
21022
|
-
$schema: $
|
|
21023
|
-
$id: $
|
|
21024
|
-
title:
|
|
21025
|
-
description:
|
|
21026
|
-
type:
|
|
21027
|
-
properties:
|
|
21095
|
+
$schema: $schema126,
|
|
21096
|
+
$id: $id126,
|
|
21097
|
+
title: title121,
|
|
21098
|
+
description: description126,
|
|
21099
|
+
type: type103,
|
|
21100
|
+
properties: properties74,
|
|
21028
21101
|
required: required49,
|
|
21029
|
-
additionalProperties:
|
|
21102
|
+
additionalProperties: additionalProperties74
|
|
21030
21103
|
};
|
|
21031
21104
|
|
|
21032
21105
|
// src/txs/find-transfer-group-many/find-transfer-group-many.schema.input.json
|
|
21033
|
-
var $
|
|
21034
|
-
var $
|
|
21035
|
-
var
|
|
21036
|
-
var
|
|
21037
|
-
var
|
|
21038
|
-
var
|
|
21106
|
+
var $schema127 = "http://json-schema.org/draft-07/schema";
|
|
21107
|
+
var $id127 = "FindTransferGroupManyTxInput";
|
|
21108
|
+
var title122 = "FindTransferGroupManyTxInput";
|
|
21109
|
+
var description127 = "Input for findTransferGroupMany";
|
|
21110
|
+
var type104 = "object";
|
|
21111
|
+
var properties75 = {
|
|
21039
21112
|
transfer_group: {
|
|
21040
21113
|
$ref: "#/definitions/find_transfer_group_many_filter"
|
|
21041
21114
|
},
|
|
@@ -21043,7 +21116,7 @@ var properties73 = {
|
|
|
21043
21116
|
$ref: "#/definitions/find_transfer_group_many_tx_options"
|
|
21044
21117
|
}
|
|
21045
21118
|
};
|
|
21046
|
-
var
|
|
21119
|
+
var definitions63 = {
|
|
21047
21120
|
find_transfer_group_many_tx_options: {
|
|
21048
21121
|
allOf: [
|
|
21049
21122
|
{
|
|
@@ -21308,26 +21381,26 @@ var definitions62 = {
|
|
|
21308
21381
|
}
|
|
21309
21382
|
};
|
|
21310
21383
|
var required50 = ["transfer_group"];
|
|
21311
|
-
var
|
|
21384
|
+
var additionalProperties75 = false;
|
|
21312
21385
|
var find_transfer_group_many_schema_input_default = {
|
|
21313
|
-
$schema: $
|
|
21314
|
-
$id: $
|
|
21315
|
-
title:
|
|
21316
|
-
description:
|
|
21317
|
-
type:
|
|
21318
|
-
properties:
|
|
21319
|
-
definitions:
|
|
21386
|
+
$schema: $schema127,
|
|
21387
|
+
$id: $id127,
|
|
21388
|
+
title: title122,
|
|
21389
|
+
description: description127,
|
|
21390
|
+
type: type104,
|
|
21391
|
+
properties: properties75,
|
|
21392
|
+
definitions: definitions63,
|
|
21320
21393
|
required: required50,
|
|
21321
|
-
additionalProperties:
|
|
21394
|
+
additionalProperties: additionalProperties75
|
|
21322
21395
|
};
|
|
21323
21396
|
|
|
21324
21397
|
// src/txs/find-transfer-group-many/find-transfer-group-many.schema.output.json
|
|
21325
|
-
var $
|
|
21326
|
-
var $
|
|
21327
|
-
var
|
|
21328
|
-
var
|
|
21329
|
-
var
|
|
21330
|
-
var
|
|
21398
|
+
var $schema128 = "http://json-schema.org/draft-07/schema";
|
|
21399
|
+
var $id128 = "FindTransferGroupManyTxOutput";
|
|
21400
|
+
var title123 = "FindTransferGroupManyTxOutput";
|
|
21401
|
+
var description128 = "Output of find-transfer-group-many";
|
|
21402
|
+
var type105 = "object";
|
|
21403
|
+
var properties76 = {
|
|
21331
21404
|
transfer_groups: {
|
|
21332
21405
|
description: "Found transfers",
|
|
21333
21406
|
type: "array",
|
|
@@ -21340,25 +21413,25 @@ var properties74 = {
|
|
|
21340
21413
|
}
|
|
21341
21414
|
};
|
|
21342
21415
|
var required51 = ["transfer_groups", "metadata"];
|
|
21343
|
-
var
|
|
21416
|
+
var additionalProperties76 = false;
|
|
21344
21417
|
var find_transfer_group_many_schema_output_default = {
|
|
21345
|
-
$schema: $
|
|
21346
|
-
$id: $
|
|
21347
|
-
title:
|
|
21348
|
-
description:
|
|
21349
|
-
type:
|
|
21350
|
-
properties:
|
|
21351
|
-
required: required51,
|
|
21352
|
-
additionalProperties:
|
|
21353
|
-
};
|
|
21418
|
+
$schema: $schema128,
|
|
21419
|
+
$id: $id128,
|
|
21420
|
+
title: title123,
|
|
21421
|
+
description: description128,
|
|
21422
|
+
type: type105,
|
|
21423
|
+
properties: properties76,
|
|
21424
|
+
required: required51,
|
|
21425
|
+
additionalProperties: additionalProperties76
|
|
21426
|
+
};
|
|
21354
21427
|
|
|
21355
21428
|
// src/txs/find-transfer-many/find-transfer-many.schema.input.json
|
|
21356
|
-
var $
|
|
21357
|
-
var $
|
|
21358
|
-
var
|
|
21359
|
-
var
|
|
21360
|
-
var
|
|
21361
|
-
var
|
|
21429
|
+
var $schema129 = "http://json-schema.org/draft-07/schema";
|
|
21430
|
+
var $id129 = "FindTransferManyTxInput";
|
|
21431
|
+
var title124 = "FindTransferManyTxInput";
|
|
21432
|
+
var description129 = "Input for findTransferMany";
|
|
21433
|
+
var type106 = "object";
|
|
21434
|
+
var properties77 = {
|
|
21362
21435
|
transfer: {
|
|
21363
21436
|
$ref: "#/definitions/find_transfer_many_filter"
|
|
21364
21437
|
},
|
|
@@ -21366,7 +21439,7 @@ var properties75 = {
|
|
|
21366
21439
|
$ref: "#/definitions/find_transfer_many_tx_options"
|
|
21367
21440
|
}
|
|
21368
21441
|
};
|
|
21369
|
-
var
|
|
21442
|
+
var definitions64 = {
|
|
21370
21443
|
find_transfer_many_tx_options: {
|
|
21371
21444
|
allOf: [
|
|
21372
21445
|
{
|
|
@@ -21665,26 +21738,26 @@ var definitions63 = {
|
|
|
21665
21738
|
}
|
|
21666
21739
|
};
|
|
21667
21740
|
var required52 = ["transfer"];
|
|
21668
|
-
var
|
|
21741
|
+
var additionalProperties77 = false;
|
|
21669
21742
|
var find_transfer_many_schema_input_default = {
|
|
21670
|
-
$schema: $
|
|
21671
|
-
$id: $
|
|
21672
|
-
title:
|
|
21673
|
-
description:
|
|
21674
|
-
type:
|
|
21675
|
-
properties:
|
|
21676
|
-
definitions:
|
|
21743
|
+
$schema: $schema129,
|
|
21744
|
+
$id: $id129,
|
|
21745
|
+
title: title124,
|
|
21746
|
+
description: description129,
|
|
21747
|
+
type: type106,
|
|
21748
|
+
properties: properties77,
|
|
21749
|
+
definitions: definitions64,
|
|
21677
21750
|
required: required52,
|
|
21678
|
-
additionalProperties:
|
|
21751
|
+
additionalProperties: additionalProperties77
|
|
21679
21752
|
};
|
|
21680
21753
|
|
|
21681
21754
|
// src/txs/find-transfer-many/find-transfer-many.schema.output.json
|
|
21682
|
-
var $
|
|
21683
|
-
var $
|
|
21684
|
-
var
|
|
21685
|
-
var
|
|
21686
|
-
var
|
|
21687
|
-
var
|
|
21755
|
+
var $schema130 = "http://json-schema.org/draft-07/schema";
|
|
21756
|
+
var $id130 = "FindTransferManyTxOutput";
|
|
21757
|
+
var title125 = "FindTransferManyTxOutput";
|
|
21758
|
+
var description130 = "Output of findTransferMany";
|
|
21759
|
+
var type107 = "object";
|
|
21760
|
+
var properties78 = {
|
|
21688
21761
|
transfers: {
|
|
21689
21762
|
description: "Found transfers",
|
|
21690
21763
|
type: "array",
|
|
@@ -21697,25 +21770,25 @@ var properties76 = {
|
|
|
21697
21770
|
}
|
|
21698
21771
|
};
|
|
21699
21772
|
var required53 = ["transfers", "metadata"];
|
|
21700
|
-
var
|
|
21773
|
+
var additionalProperties78 = false;
|
|
21701
21774
|
var find_transfer_many_schema_output_default = {
|
|
21702
|
-
$schema: $
|
|
21703
|
-
$id: $
|
|
21704
|
-
title:
|
|
21705
|
-
description:
|
|
21706
|
-
type:
|
|
21707
|
-
properties:
|
|
21775
|
+
$schema: $schema130,
|
|
21776
|
+
$id: $id130,
|
|
21777
|
+
title: title125,
|
|
21778
|
+
description: description130,
|
|
21779
|
+
type: type107,
|
|
21780
|
+
properties: properties78,
|
|
21708
21781
|
required: required53,
|
|
21709
|
-
additionalProperties:
|
|
21782
|
+
additionalProperties: additionalProperties78
|
|
21710
21783
|
};
|
|
21711
21784
|
|
|
21712
21785
|
// src/txs/find-wallet-many/find-wallet-many.schema.input.json
|
|
21713
|
-
var $
|
|
21714
|
-
var $
|
|
21715
|
-
var
|
|
21716
|
-
var
|
|
21717
|
-
var
|
|
21718
|
-
var
|
|
21786
|
+
var $schema131 = "http://json-schema.org/draft-07/schema";
|
|
21787
|
+
var $id131 = "FindWalletManyTxInput";
|
|
21788
|
+
var title126 = "FindWalletManyTxInput";
|
|
21789
|
+
var description131 = "Input for findWalletMany";
|
|
21790
|
+
var type108 = "object";
|
|
21791
|
+
var properties79 = {
|
|
21719
21792
|
wallet: {
|
|
21720
21793
|
$ref: "#/definitions/find_wallet_many_filter"
|
|
21721
21794
|
},
|
|
@@ -21723,7 +21796,7 @@ var properties77 = {
|
|
|
21723
21796
|
$ref: "#/definitions/find_wallet_many_tx_options"
|
|
21724
21797
|
}
|
|
21725
21798
|
};
|
|
21726
|
-
var
|
|
21799
|
+
var definitions65 = {
|
|
21727
21800
|
find_wallet_many_tx_options: {
|
|
21728
21801
|
allOf: [
|
|
21729
21802
|
{
|
|
@@ -21977,25 +22050,25 @@ var definitions64 = {
|
|
|
21977
22050
|
}
|
|
21978
22051
|
}
|
|
21979
22052
|
};
|
|
21980
|
-
var
|
|
22053
|
+
var additionalProperties79 = false;
|
|
21981
22054
|
var find_wallet_many_schema_input_default = {
|
|
21982
|
-
$schema: $
|
|
21983
|
-
$id: $
|
|
21984
|
-
title:
|
|
21985
|
-
description:
|
|
21986
|
-
type:
|
|
21987
|
-
properties:
|
|
21988
|
-
definitions:
|
|
21989
|
-
additionalProperties:
|
|
22055
|
+
$schema: $schema131,
|
|
22056
|
+
$id: $id131,
|
|
22057
|
+
title: title126,
|
|
22058
|
+
description: description131,
|
|
22059
|
+
type: type108,
|
|
22060
|
+
properties: properties79,
|
|
22061
|
+
definitions: definitions65,
|
|
22062
|
+
additionalProperties: additionalProperties79
|
|
21990
22063
|
};
|
|
21991
22064
|
|
|
21992
22065
|
// src/txs/find-wallet-many/find-wallet-many.schema.output.json
|
|
21993
|
-
var $
|
|
21994
|
-
var $
|
|
21995
|
-
var
|
|
21996
|
-
var
|
|
21997
|
-
var
|
|
21998
|
-
var
|
|
22066
|
+
var $schema132 = "http://json-schema.org/draft-07/schema";
|
|
22067
|
+
var $id132 = "FindWalletManyTxOutput";
|
|
22068
|
+
var title127 = "FindWalletManyTxOutput";
|
|
22069
|
+
var description132 = "Output of findWalletMany";
|
|
22070
|
+
var type109 = "object";
|
|
22071
|
+
var properties80 = {
|
|
21999
22072
|
wallets: {
|
|
22000
22073
|
type: "array",
|
|
22001
22074
|
items: {
|
|
@@ -22016,7 +22089,7 @@ var properties78 = {
|
|
|
22016
22089
|
$ref: "/txs/tx-consts.schema.json#/definitions/i_tx_find_metadata"
|
|
22017
22090
|
}
|
|
22018
22091
|
};
|
|
22019
|
-
var
|
|
22092
|
+
var definitions66 = {
|
|
22020
22093
|
wallet_with_balance: {
|
|
22021
22094
|
type: "object",
|
|
22022
22095
|
properties: {
|
|
@@ -22141,26 +22214,26 @@ var definitions65 = {
|
|
|
22141
22214
|
}
|
|
22142
22215
|
};
|
|
22143
22216
|
var required54 = ["wallets", "metadata"];
|
|
22144
|
-
var
|
|
22217
|
+
var additionalProperties80 = false;
|
|
22145
22218
|
var find_wallet_many_schema_output_default = {
|
|
22146
|
-
$schema: $
|
|
22147
|
-
$id: $
|
|
22148
|
-
title:
|
|
22149
|
-
description:
|
|
22150
|
-
type:
|
|
22151
|
-
properties:
|
|
22152
|
-
definitions:
|
|
22219
|
+
$schema: $schema132,
|
|
22220
|
+
$id: $id132,
|
|
22221
|
+
title: title127,
|
|
22222
|
+
description: description132,
|
|
22223
|
+
type: type109,
|
|
22224
|
+
properties: properties80,
|
|
22225
|
+
definitions: definitions66,
|
|
22153
22226
|
required: required54,
|
|
22154
|
-
additionalProperties:
|
|
22227
|
+
additionalProperties: additionalProperties80
|
|
22155
22228
|
};
|
|
22156
22229
|
|
|
22157
22230
|
// src/txs/finish-transaction/finish-transaction.schema.input.json
|
|
22158
|
-
var $
|
|
22159
|
-
var $
|
|
22160
|
-
var
|
|
22161
|
-
var
|
|
22162
|
-
var
|
|
22163
|
-
var
|
|
22231
|
+
var $schema133 = "http://json-schema.org/draft-07/schema";
|
|
22232
|
+
var $id133 = "FinishTransactionTxInput";
|
|
22233
|
+
var title128 = "FinishTransactionTxInput";
|
|
22234
|
+
var description133 = "Input for finishTransaction";
|
|
22235
|
+
var type110 = "object";
|
|
22236
|
+
var properties81 = {
|
|
22164
22237
|
action: {
|
|
22165
22238
|
description: "Finish transaction with commit/rollback",
|
|
22166
22239
|
default: "commit",
|
|
@@ -22171,7 +22244,7 @@ var properties79 = {
|
|
|
22171
22244
|
$ref: "#/definitions/finish_transaction_tx_options"
|
|
22172
22245
|
}
|
|
22173
22246
|
};
|
|
22174
|
-
var
|
|
22247
|
+
var definitions67 = {
|
|
22175
22248
|
finish_transaction_tx_options: {
|
|
22176
22249
|
allOf: [
|
|
22177
22250
|
{
|
|
@@ -22193,26 +22266,26 @@ var definitions66 = {
|
|
|
22193
22266
|
}
|
|
22194
22267
|
};
|
|
22195
22268
|
var required55 = ["action", "options"];
|
|
22196
|
-
var
|
|
22269
|
+
var additionalProperties81 = false;
|
|
22197
22270
|
var finish_transaction_schema_input_default = {
|
|
22198
|
-
$schema: $
|
|
22199
|
-
$id: $
|
|
22200
|
-
title:
|
|
22201
|
-
description:
|
|
22202
|
-
type:
|
|
22203
|
-
properties:
|
|
22204
|
-
definitions:
|
|
22271
|
+
$schema: $schema133,
|
|
22272
|
+
$id: $id133,
|
|
22273
|
+
title: title128,
|
|
22274
|
+
description: description133,
|
|
22275
|
+
type: type110,
|
|
22276
|
+
properties: properties81,
|
|
22277
|
+
definitions: definitions67,
|
|
22205
22278
|
required: required55,
|
|
22206
|
-
additionalProperties:
|
|
22279
|
+
additionalProperties: additionalProperties81
|
|
22207
22280
|
};
|
|
22208
22281
|
|
|
22209
22282
|
// src/txs/finish-transaction/finish-transaction.schema.output.json
|
|
22210
|
-
var $
|
|
22211
|
-
var $
|
|
22212
|
-
var
|
|
22213
|
-
var
|
|
22214
|
-
var
|
|
22215
|
-
var
|
|
22283
|
+
var $schema134 = "http://json-schema.org/draft-07/schema";
|
|
22284
|
+
var $id134 = "FinishTransactionTxOutput";
|
|
22285
|
+
var title129 = "FinishTransactionTxOutput";
|
|
22286
|
+
var description134 = "Output of finishTransaction";
|
|
22287
|
+
var type111 = "object";
|
|
22288
|
+
var properties82 = {
|
|
22216
22289
|
success: {
|
|
22217
22290
|
type: "boolean"
|
|
22218
22291
|
},
|
|
@@ -22222,25 +22295,25 @@ var properties80 = {
|
|
|
22222
22295
|
}
|
|
22223
22296
|
};
|
|
22224
22297
|
var required56 = ["success"];
|
|
22225
|
-
var
|
|
22298
|
+
var additionalProperties82 = false;
|
|
22226
22299
|
var finish_transaction_schema_output_default = {
|
|
22227
|
-
$schema: $
|
|
22228
|
-
$id: $
|
|
22229
|
-
title:
|
|
22230
|
-
description:
|
|
22231
|
-
type:
|
|
22232
|
-
properties:
|
|
22300
|
+
$schema: $schema134,
|
|
22301
|
+
$id: $id134,
|
|
22302
|
+
title: title129,
|
|
22303
|
+
description: description134,
|
|
22304
|
+
type: type111,
|
|
22305
|
+
properties: properties82,
|
|
22233
22306
|
required: required56,
|
|
22234
|
-
additionalProperties:
|
|
22307
|
+
additionalProperties: additionalProperties82
|
|
22235
22308
|
};
|
|
22236
22309
|
|
|
22237
22310
|
// src/txs/get-balance/get-balance.schema.input.json
|
|
22238
|
-
var $
|
|
22239
|
-
var $
|
|
22240
|
-
var
|
|
22241
|
-
var
|
|
22242
|
-
var
|
|
22243
|
-
var
|
|
22311
|
+
var $schema135 = "http://json-schema.org/draft-07/schema";
|
|
22312
|
+
var $id135 = "GetBalanceTxInput";
|
|
22313
|
+
var title130 = "GetBalanceTxInput";
|
|
22314
|
+
var description135 = "Input for getBalance";
|
|
22315
|
+
var type112 = "object";
|
|
22316
|
+
var properties83 = {
|
|
22244
22317
|
balance: {
|
|
22245
22318
|
$ref: "#/definitions/unique_balance_filter"
|
|
22246
22319
|
},
|
|
@@ -22248,7 +22321,7 @@ var properties81 = {
|
|
|
22248
22321
|
$ref: "#/definitions/get_balance_tx_options"
|
|
22249
22322
|
}
|
|
22250
22323
|
};
|
|
22251
|
-
var
|
|
22324
|
+
var definitions68 = {
|
|
22252
22325
|
get_balance_tx_options: {
|
|
22253
22326
|
allOf: [
|
|
22254
22327
|
{
|
|
@@ -22299,32 +22372,32 @@ var definitions67 = {
|
|
|
22299
22372
|
}
|
|
22300
22373
|
};
|
|
22301
22374
|
var required57 = ["balance"];
|
|
22302
|
-
var
|
|
22375
|
+
var additionalProperties83 = false;
|
|
22303
22376
|
var get_balance_schema_input_default2 = {
|
|
22304
|
-
$schema: $
|
|
22305
|
-
$id: $
|
|
22306
|
-
title:
|
|
22307
|
-
description:
|
|
22308
|
-
type:
|
|
22309
|
-
properties:
|
|
22310
|
-
definitions:
|
|
22377
|
+
$schema: $schema135,
|
|
22378
|
+
$id: $id135,
|
|
22379
|
+
title: title130,
|
|
22380
|
+
description: description135,
|
|
22381
|
+
type: type112,
|
|
22382
|
+
properties: properties83,
|
|
22383
|
+
definitions: definitions68,
|
|
22311
22384
|
required: required57,
|
|
22312
|
-
additionalProperties:
|
|
22385
|
+
additionalProperties: additionalProperties83
|
|
22313
22386
|
};
|
|
22314
22387
|
|
|
22315
22388
|
// src/txs/get-balance/get-balance.schema.output.json
|
|
22316
|
-
var $
|
|
22317
|
-
var $
|
|
22318
|
-
var
|
|
22319
|
-
var
|
|
22320
|
-
var
|
|
22321
|
-
var
|
|
22389
|
+
var $schema136 = "http://json-schema.org/draft-07/schema";
|
|
22390
|
+
var $id136 = "GetBalanceTxOutput";
|
|
22391
|
+
var title131 = "GetBalanceTxOutput";
|
|
22392
|
+
var description136 = "Output of getBalance";
|
|
22393
|
+
var type113 = "object";
|
|
22394
|
+
var properties84 = {
|
|
22322
22395
|
balance: {
|
|
22323
22396
|
description: "requested balance",
|
|
22324
22397
|
$ref: "#/definitions/balance"
|
|
22325
22398
|
}
|
|
22326
22399
|
};
|
|
22327
|
-
var
|
|
22400
|
+
var definitions69 = {
|
|
22328
22401
|
balance: {
|
|
22329
22402
|
type: "object",
|
|
22330
22403
|
properties: {
|
|
@@ -22414,25 +22487,25 @@ var definitions68 = {
|
|
|
22414
22487
|
]
|
|
22415
22488
|
}
|
|
22416
22489
|
};
|
|
22417
|
-
var
|
|
22490
|
+
var additionalProperties84 = false;
|
|
22418
22491
|
var get_balance_schema_output_default2 = {
|
|
22419
|
-
$schema: $
|
|
22420
|
-
$id: $
|
|
22421
|
-
title:
|
|
22422
|
-
description:
|
|
22423
|
-
type:
|
|
22424
|
-
properties:
|
|
22425
|
-
definitions:
|
|
22426
|
-
additionalProperties:
|
|
22492
|
+
$schema: $schema136,
|
|
22493
|
+
$id: $id136,
|
|
22494
|
+
title: title131,
|
|
22495
|
+
description: description136,
|
|
22496
|
+
type: type113,
|
|
22497
|
+
properties: properties84,
|
|
22498
|
+
definitions: definitions69,
|
|
22499
|
+
additionalProperties: additionalProperties84
|
|
22427
22500
|
};
|
|
22428
22501
|
|
|
22429
22502
|
// src/txs/get-balance-history/get-balance-history.schema.input.json
|
|
22430
|
-
var $
|
|
22431
|
-
var $
|
|
22432
|
-
var
|
|
22433
|
-
var
|
|
22434
|
-
var
|
|
22435
|
-
var
|
|
22503
|
+
var $schema137 = "http://json-schema.org/draft-07/schema";
|
|
22504
|
+
var $id137 = "GetBalanceHistoryTxInput";
|
|
22505
|
+
var title132 = "GetBalanceHistoryTxInput";
|
|
22506
|
+
var description137 = "Input for getBalanceHistory";
|
|
22507
|
+
var type114 = "object";
|
|
22508
|
+
var properties85 = {
|
|
22436
22509
|
balance: {
|
|
22437
22510
|
$ref: "/txs/get-balance/get-balance.schema.input.json#/definitions/unique_balance_filter"
|
|
22438
22511
|
},
|
|
@@ -22440,7 +22513,7 @@ var properties83 = {
|
|
|
22440
22513
|
$ref: "#/definitions/get_balance_history_tx_options"
|
|
22441
22514
|
}
|
|
22442
22515
|
};
|
|
22443
|
-
var
|
|
22516
|
+
var definitions70 = {
|
|
22444
22517
|
get_balance_history_tx_options: {
|
|
22445
22518
|
allOf: [
|
|
22446
22519
|
{
|
|
@@ -22508,25 +22581,25 @@ var definitions69 = {
|
|
|
22508
22581
|
}
|
|
22509
22582
|
}
|
|
22510
22583
|
};
|
|
22511
|
-
var
|
|
22584
|
+
var additionalProperties85 = false;
|
|
22512
22585
|
var get_balance_history_schema_input_default2 = {
|
|
22513
|
-
$schema: $
|
|
22514
|
-
$id: $
|
|
22515
|
-
title:
|
|
22516
|
-
description:
|
|
22517
|
-
type:
|
|
22518
|
-
properties:
|
|
22519
|
-
definitions:
|
|
22520
|
-
additionalProperties:
|
|
22586
|
+
$schema: $schema137,
|
|
22587
|
+
$id: $id137,
|
|
22588
|
+
title: title132,
|
|
22589
|
+
description: description137,
|
|
22590
|
+
type: type114,
|
|
22591
|
+
properties: properties85,
|
|
22592
|
+
definitions: definitions70,
|
|
22593
|
+
additionalProperties: additionalProperties85
|
|
22521
22594
|
};
|
|
22522
22595
|
|
|
22523
22596
|
// src/txs/get-balance-history/get-balance-history.schema.output.json
|
|
22524
|
-
var $
|
|
22525
|
-
var $
|
|
22526
|
-
var
|
|
22527
|
-
var
|
|
22528
|
-
var
|
|
22529
|
-
var
|
|
22597
|
+
var $schema138 = "http://json-schema.org/draft-07/schema";
|
|
22598
|
+
var $id138 = "GetBalanceHistoryTxOutput";
|
|
22599
|
+
var title133 = "GetBalanceHistoryTxOutput";
|
|
22600
|
+
var description138 = "Output of getBalanceHistory";
|
|
22601
|
+
var type115 = "object";
|
|
22602
|
+
var properties86 = {
|
|
22530
22603
|
balances: {
|
|
22531
22604
|
description: "Resolved balance change objects",
|
|
22532
22605
|
type: "array",
|
|
@@ -22538,7 +22611,7 @@ var properties84 = {
|
|
|
22538
22611
|
$ref: "/txs/tx-consts.schema.json#/definitions/i_tx_find_metadata"
|
|
22539
22612
|
}
|
|
22540
22613
|
};
|
|
22541
|
-
var
|
|
22614
|
+
var definitions71 = {
|
|
22542
22615
|
balance_history: {
|
|
22543
22616
|
type: "object",
|
|
22544
22617
|
properties: {
|
|
@@ -22696,30 +22769,94 @@ var definitions70 = {
|
|
|
22696
22769
|
]
|
|
22697
22770
|
}
|
|
22698
22771
|
};
|
|
22699
|
-
var
|
|
22772
|
+
var additionalProperties86 = false;
|
|
22700
22773
|
var get_balance_history_schema_output_default2 = {
|
|
22701
|
-
$schema: $
|
|
22702
|
-
$id: $
|
|
22703
|
-
title:
|
|
22704
|
-
description:
|
|
22705
|
-
type:
|
|
22706
|
-
properties:
|
|
22707
|
-
definitions:
|
|
22708
|
-
additionalProperties:
|
|
22709
|
-
};
|
|
22710
|
-
|
|
22711
|
-
// src/txs/get-
|
|
22712
|
-
var $
|
|
22713
|
-
var $
|
|
22714
|
-
var
|
|
22715
|
-
var
|
|
22716
|
-
var
|
|
22717
|
-
var
|
|
22774
|
+
$schema: $schema138,
|
|
22775
|
+
$id: $id138,
|
|
22776
|
+
title: title133,
|
|
22777
|
+
description: description138,
|
|
22778
|
+
type: type115,
|
|
22779
|
+
properties: properties86,
|
|
22780
|
+
definitions: definitions71,
|
|
22781
|
+
additionalProperties: additionalProperties86
|
|
22782
|
+
};
|
|
22783
|
+
|
|
22784
|
+
// src/txs/get-database-backup-progress/get-database-backup-progress.schema.input.json
|
|
22785
|
+
var $schema139 = "http://json-schema.org/draft-07/schema";
|
|
22786
|
+
var $id139 = "GetDatabaseBackupProgressTxInput";
|
|
22787
|
+
var title134 = "GetDatabaseBackupProgressTxInput";
|
|
22788
|
+
var description139 = "Input for getDatabaseBackupProgress";
|
|
22789
|
+
var type116 = "object";
|
|
22790
|
+
var properties87 = {
|
|
22791
|
+
options: {
|
|
22792
|
+
$ref: "#/definitions/get_database_backup_progress_tx_options"
|
|
22793
|
+
}
|
|
22794
|
+
};
|
|
22795
|
+
var definitions72 = {
|
|
22796
|
+
get_database_backup_progress_tx_options: {
|
|
22797
|
+
allOf: [
|
|
22798
|
+
{
|
|
22799
|
+
$ref: "/txs/tx-consts.schema.json#/definitions/i_tx_general_options"
|
|
22800
|
+
},
|
|
22801
|
+
{
|
|
22802
|
+
$ref: "#/definitions/get_database_backup_progress_additional_options"
|
|
22803
|
+
}
|
|
22804
|
+
]
|
|
22805
|
+
},
|
|
22806
|
+
get_database_backup_progress_additional_options: {
|
|
22807
|
+
description: "Optional flags for input",
|
|
22808
|
+
type: "object",
|
|
22809
|
+
default: {},
|
|
22810
|
+
$typescript: '{"additionalProperties":false}'
|
|
22811
|
+
}
|
|
22812
|
+
};
|
|
22813
|
+
var additionalProperties87 = false;
|
|
22814
|
+
var get_database_backup_progress_schema_input_default = {
|
|
22815
|
+
$schema: $schema139,
|
|
22816
|
+
$id: $id139,
|
|
22817
|
+
title: title134,
|
|
22818
|
+
description: description139,
|
|
22819
|
+
type: type116,
|
|
22820
|
+
properties: properties87,
|
|
22821
|
+
definitions: definitions72,
|
|
22822
|
+
additionalProperties: additionalProperties87
|
|
22823
|
+
};
|
|
22824
|
+
|
|
22825
|
+
// src/txs/get-database-backup-progress/get-database-backup-progress.schema.output.json
|
|
22826
|
+
var $schema140 = "http://json-schema.org/draft-07/schema";
|
|
22827
|
+
var $id140 = "GetDatabaseBackupProgressTxOutput";
|
|
22828
|
+
var title135 = "GetDatabaseBackupProgressTxOutput";
|
|
22829
|
+
var description140 = "Output of getDatabaseBackupProgress";
|
|
22830
|
+
var type117 = "object";
|
|
22831
|
+
var properties88 = {
|
|
22832
|
+
size: {
|
|
22833
|
+
type: "number",
|
|
22834
|
+
description: "Size of a exported backup in MB"
|
|
22835
|
+
}
|
|
22836
|
+
};
|
|
22837
|
+
var additionalProperties88 = false;
|
|
22838
|
+
var get_database_backup_progress_schema_output_default = {
|
|
22839
|
+
$schema: $schema140,
|
|
22840
|
+
$id: $id140,
|
|
22841
|
+
title: title135,
|
|
22842
|
+
description: description140,
|
|
22843
|
+
type: type117,
|
|
22844
|
+
properties: properties88,
|
|
22845
|
+
additionalProperties: additionalProperties88
|
|
22846
|
+
};
|
|
22847
|
+
|
|
22848
|
+
// src/txs/get-flags/get-flags.schema.input.json
|
|
22849
|
+
var $schema141 = "http://json-schema.org/draft-07/schema";
|
|
22850
|
+
var $id141 = "GetFlagsTxInput";
|
|
22851
|
+
var title136 = "GetFlagsTxInput";
|
|
22852
|
+
var description141 = "Input for getFlags";
|
|
22853
|
+
var type118 = "object";
|
|
22854
|
+
var properties89 = {
|
|
22718
22855
|
options: {
|
|
22719
22856
|
$ref: "#/definitions/get_flags_tx_options"
|
|
22720
22857
|
}
|
|
22721
22858
|
};
|
|
22722
|
-
var
|
|
22859
|
+
var definitions73 = {
|
|
22723
22860
|
get_flags_tx_options: {
|
|
22724
22861
|
allOf: [
|
|
22725
22862
|
{
|
|
@@ -22728,47 +22865,47 @@ var definitions71 = {
|
|
|
22728
22865
|
]
|
|
22729
22866
|
}
|
|
22730
22867
|
};
|
|
22731
|
-
var
|
|
22868
|
+
var additionalProperties89 = false;
|
|
22732
22869
|
var get_flags_schema_input_default2 = {
|
|
22733
|
-
$schema: $
|
|
22734
|
-
$id: $
|
|
22735
|
-
title:
|
|
22736
|
-
description:
|
|
22737
|
-
type:
|
|
22738
|
-
properties:
|
|
22739
|
-
definitions:
|
|
22740
|
-
additionalProperties:
|
|
22870
|
+
$schema: $schema141,
|
|
22871
|
+
$id: $id141,
|
|
22872
|
+
title: title136,
|
|
22873
|
+
description: description141,
|
|
22874
|
+
type: type118,
|
|
22875
|
+
properties: properties89,
|
|
22876
|
+
definitions: definitions73,
|
|
22877
|
+
additionalProperties: additionalProperties89
|
|
22741
22878
|
};
|
|
22742
22879
|
|
|
22743
22880
|
// src/txs/get-flags/get-flags.schema.output.json
|
|
22744
|
-
var $
|
|
22745
|
-
var $
|
|
22746
|
-
var
|
|
22747
|
-
var
|
|
22748
|
-
var
|
|
22749
|
-
var
|
|
22881
|
+
var $schema142 = "http://json-schema.org/draft-07/schema";
|
|
22882
|
+
var $id142 = "GetFlagsTxOutput";
|
|
22883
|
+
var title137 = "GetFlagsTxOutput";
|
|
22884
|
+
var description142 = "Output of getFlags";
|
|
22885
|
+
var type119 = "object";
|
|
22886
|
+
var properties90 = {
|
|
22750
22887
|
flags: {
|
|
22751
22888
|
$ref: "/db/consts.schema.json#/definitions/Flags"
|
|
22752
22889
|
}
|
|
22753
22890
|
};
|
|
22754
|
-
var
|
|
22891
|
+
var additionalProperties90 = false;
|
|
22755
22892
|
var get_flags_schema_output_default2 = {
|
|
22756
|
-
$schema: $
|
|
22757
|
-
$id: $
|
|
22758
|
-
title:
|
|
22759
|
-
description:
|
|
22760
|
-
type:
|
|
22761
|
-
properties:
|
|
22762
|
-
additionalProperties:
|
|
22893
|
+
$schema: $schema142,
|
|
22894
|
+
$id: $id142,
|
|
22895
|
+
title: title137,
|
|
22896
|
+
description: description142,
|
|
22897
|
+
type: type119,
|
|
22898
|
+
properties: properties90,
|
|
22899
|
+
additionalProperties: additionalProperties90
|
|
22763
22900
|
};
|
|
22764
22901
|
|
|
22765
22902
|
// src/txs/get-statistics/get-statistics.schema.input.json
|
|
22766
|
-
var $
|
|
22767
|
-
var $
|
|
22768
|
-
var
|
|
22769
|
-
var
|
|
22770
|
-
var
|
|
22771
|
-
var
|
|
22903
|
+
var $schema143 = "http://json-schema.org/draft-07/schema";
|
|
22904
|
+
var $id143 = "GetStatisticsTxInput";
|
|
22905
|
+
var title138 = "GetStatisticsTxInput";
|
|
22906
|
+
var description143 = "Input for getStatistics";
|
|
22907
|
+
var type120 = "object";
|
|
22908
|
+
var properties91 = {
|
|
22772
22909
|
model: {
|
|
22773
22910
|
$ref: "#/definitions/statistics_model"
|
|
22774
22911
|
},
|
|
@@ -22785,7 +22922,7 @@ var properties87 = {
|
|
|
22785
22922
|
$ref: "#/definitions/get_statistics_tx_options"
|
|
22786
22923
|
}
|
|
22787
22924
|
};
|
|
22788
|
-
var
|
|
22925
|
+
var definitions74 = {
|
|
22789
22926
|
get_statistics_tx_options: {
|
|
22790
22927
|
description: "Optional flags for input",
|
|
22791
22928
|
type: "object",
|
|
@@ -22882,51 +23019,51 @@ var definitions72 = {
|
|
|
22882
23019
|
$typescript: '{"additionalProperties":false}'
|
|
22883
23020
|
}
|
|
22884
23021
|
};
|
|
22885
|
-
var
|
|
23022
|
+
var additionalProperties91 = false;
|
|
22886
23023
|
var get_statistics_schema_input_default2 = {
|
|
22887
|
-
$schema: $
|
|
22888
|
-
$id: $
|
|
22889
|
-
title:
|
|
22890
|
-
description:
|
|
22891
|
-
type:
|
|
22892
|
-
properties:
|
|
22893
|
-
definitions:
|
|
22894
|
-
additionalProperties:
|
|
23024
|
+
$schema: $schema143,
|
|
23025
|
+
$id: $id143,
|
|
23026
|
+
title: title138,
|
|
23027
|
+
description: description143,
|
|
23028
|
+
type: type120,
|
|
23029
|
+
properties: properties91,
|
|
23030
|
+
definitions: definitions74,
|
|
23031
|
+
additionalProperties: additionalProperties91
|
|
22895
23032
|
};
|
|
22896
23033
|
|
|
22897
23034
|
// src/txs/get-statistics/get-statistics.schema.output.json
|
|
22898
|
-
var $
|
|
22899
|
-
var $
|
|
22900
|
-
var
|
|
22901
|
-
var
|
|
22902
|
-
var
|
|
22903
|
-
var
|
|
23035
|
+
var $schema144 = "http://json-schema.org/draft-07/schema";
|
|
23036
|
+
var $id144 = "GetStatisticsTxOutput";
|
|
23037
|
+
var title139 = "GetStatisticsTxOutput";
|
|
23038
|
+
var description144 = "Output of getStatistics";
|
|
23039
|
+
var type121 = "object";
|
|
23040
|
+
var properties92 = {
|
|
22904
23041
|
rows: {
|
|
22905
23042
|
$ref: "/txs/tx-consts.schema.json#/definitions/i_tx_aggregate_results"
|
|
22906
23043
|
}
|
|
22907
23044
|
};
|
|
22908
|
-
var
|
|
23045
|
+
var definitions75 = {};
|
|
22909
23046
|
var required58 = ["rows"];
|
|
22910
|
-
var
|
|
23047
|
+
var additionalProperties92 = false;
|
|
22911
23048
|
var get_statistics_schema_output_default2 = {
|
|
22912
|
-
$schema: $
|
|
22913
|
-
$id: $
|
|
22914
|
-
title:
|
|
22915
|
-
description:
|
|
22916
|
-
type:
|
|
22917
|
-
properties:
|
|
22918
|
-
definitions:
|
|
23049
|
+
$schema: $schema144,
|
|
23050
|
+
$id: $id144,
|
|
23051
|
+
title: title139,
|
|
23052
|
+
description: description144,
|
|
23053
|
+
type: type121,
|
|
23054
|
+
properties: properties92,
|
|
23055
|
+
definitions: definitions75,
|
|
22919
23056
|
required: required58,
|
|
22920
|
-
additionalProperties:
|
|
23057
|
+
additionalProperties: additionalProperties92
|
|
22921
23058
|
};
|
|
22922
23059
|
|
|
22923
23060
|
// src/txs/get-token/get-token.schema.input.json
|
|
22924
|
-
var $
|
|
22925
|
-
var $
|
|
22926
|
-
var
|
|
22927
|
-
var
|
|
22928
|
-
var
|
|
22929
|
-
var
|
|
23061
|
+
var $schema145 = "http://json-schema.org/draft-07/schema";
|
|
23062
|
+
var $id145 = "GetTokenTxInput";
|
|
23063
|
+
var title140 = "GetTokenTxInput";
|
|
23064
|
+
var description145 = "Input for getToken";
|
|
23065
|
+
var type122 = "object";
|
|
23066
|
+
var properties93 = {
|
|
22930
23067
|
token: {
|
|
22931
23068
|
$ref: "#/definitions/unique_token_filter"
|
|
22932
23069
|
},
|
|
@@ -22934,7 +23071,7 @@ var properties89 = {
|
|
|
22934
23071
|
$ref: "#/definitions/get_token_tx_options"
|
|
22935
23072
|
}
|
|
22936
23073
|
};
|
|
22937
|
-
var
|
|
23074
|
+
var definitions76 = {
|
|
22938
23075
|
get_token_tx_options: {
|
|
22939
23076
|
allOf: [
|
|
22940
23077
|
{
|
|
@@ -23010,32 +23147,32 @@ var definitions74 = {
|
|
|
23010
23147
|
}
|
|
23011
23148
|
};
|
|
23012
23149
|
var required59 = ["token"];
|
|
23013
|
-
var
|
|
23150
|
+
var additionalProperties93 = false;
|
|
23014
23151
|
var get_token_schema_input_default2 = {
|
|
23015
|
-
$schema: $
|
|
23016
|
-
$id: $
|
|
23017
|
-
title:
|
|
23018
|
-
description:
|
|
23019
|
-
type:
|
|
23020
|
-
properties:
|
|
23021
|
-
definitions:
|
|
23152
|
+
$schema: $schema145,
|
|
23153
|
+
$id: $id145,
|
|
23154
|
+
title: title140,
|
|
23155
|
+
description: description145,
|
|
23156
|
+
type: type122,
|
|
23157
|
+
properties: properties93,
|
|
23158
|
+
definitions: definitions76,
|
|
23022
23159
|
required: required59,
|
|
23023
|
-
additionalProperties:
|
|
23160
|
+
additionalProperties: additionalProperties93
|
|
23024
23161
|
};
|
|
23025
23162
|
|
|
23026
23163
|
// src/txs/get-token/get-token.schema.output.json
|
|
23027
|
-
var $
|
|
23028
|
-
var $
|
|
23029
|
-
var
|
|
23030
|
-
var
|
|
23031
|
-
var
|
|
23032
|
-
var
|
|
23164
|
+
var $schema146 = "http://json-schema.org/draft-07/schema";
|
|
23165
|
+
var $id146 = "GetTokenTxOutput";
|
|
23166
|
+
var title141 = "GetTokenTxOutput";
|
|
23167
|
+
var description146 = "Output of getToken";
|
|
23168
|
+
var type123 = "object";
|
|
23169
|
+
var properties94 = {
|
|
23033
23170
|
token: {
|
|
23034
23171
|
description: "requested token",
|
|
23035
23172
|
$ref: "#/definitions/token"
|
|
23036
23173
|
}
|
|
23037
23174
|
};
|
|
23038
|
-
var
|
|
23175
|
+
var definitions77 = {
|
|
23039
23176
|
token: {
|
|
23040
23177
|
properties: {
|
|
23041
23178
|
id: {
|
|
@@ -23077,25 +23214,25 @@ var definitions75 = {
|
|
|
23077
23214
|
additionalProperties: false
|
|
23078
23215
|
}
|
|
23079
23216
|
};
|
|
23080
|
-
var
|
|
23217
|
+
var additionalProperties94 = false;
|
|
23081
23218
|
var get_token_schema_output_default2 = {
|
|
23082
|
-
$schema: $
|
|
23083
|
-
$id: $
|
|
23084
|
-
title:
|
|
23085
|
-
description:
|
|
23086
|
-
type:
|
|
23087
|
-
properties:
|
|
23088
|
-
definitions:
|
|
23089
|
-
additionalProperties:
|
|
23219
|
+
$schema: $schema146,
|
|
23220
|
+
$id: $id146,
|
|
23221
|
+
title: title141,
|
|
23222
|
+
description: description146,
|
|
23223
|
+
type: type123,
|
|
23224
|
+
properties: properties94,
|
|
23225
|
+
definitions: definitions77,
|
|
23226
|
+
additionalProperties: additionalProperties94
|
|
23090
23227
|
};
|
|
23091
23228
|
|
|
23092
23229
|
// src/txs/get-token-many/get-token-many.schema.input.json
|
|
23093
|
-
var $
|
|
23094
|
-
var $
|
|
23095
|
-
var
|
|
23096
|
-
var
|
|
23097
|
-
var
|
|
23098
|
-
var
|
|
23230
|
+
var $schema147 = "http://json-schema.org/draft-07/schema";
|
|
23231
|
+
var $id147 = "GetTokenManyTxInput";
|
|
23232
|
+
var title142 = "GetTokenManyTxInput";
|
|
23233
|
+
var description147 = "Input for getTokenMany";
|
|
23234
|
+
var type124 = "object";
|
|
23235
|
+
var properties95 = {
|
|
23099
23236
|
tokens: {
|
|
23100
23237
|
type: "array",
|
|
23101
23238
|
items: {
|
|
@@ -23106,7 +23243,7 @@ var properties91 = {
|
|
|
23106
23243
|
$ref: "#/definitions/get_token_many_tx_options"
|
|
23107
23244
|
}
|
|
23108
23245
|
};
|
|
23109
|
-
var
|
|
23246
|
+
var definitions78 = {
|
|
23110
23247
|
get_token_many_tx_options: {
|
|
23111
23248
|
allOf: [
|
|
23112
23249
|
{
|
|
@@ -23139,26 +23276,26 @@ var definitions76 = {
|
|
|
23139
23276
|
}
|
|
23140
23277
|
};
|
|
23141
23278
|
var required60 = ["tokens"];
|
|
23142
|
-
var
|
|
23279
|
+
var additionalProperties95 = false;
|
|
23143
23280
|
var get_token_many_schema_input_default = {
|
|
23144
|
-
$schema: $
|
|
23145
|
-
$id: $
|
|
23146
|
-
title:
|
|
23147
|
-
description:
|
|
23148
|
-
type:
|
|
23149
|
-
properties:
|
|
23150
|
-
definitions:
|
|
23281
|
+
$schema: $schema147,
|
|
23282
|
+
$id: $id147,
|
|
23283
|
+
title: title142,
|
|
23284
|
+
description: description147,
|
|
23285
|
+
type: type124,
|
|
23286
|
+
properties: properties95,
|
|
23287
|
+
definitions: definitions78,
|
|
23151
23288
|
required: required60,
|
|
23152
|
-
additionalProperties:
|
|
23289
|
+
additionalProperties: additionalProperties95
|
|
23153
23290
|
};
|
|
23154
23291
|
|
|
23155
23292
|
// src/txs/get-token-many/get-token-many.schema.output.json
|
|
23156
|
-
var $
|
|
23157
|
-
var $
|
|
23158
|
-
var
|
|
23159
|
-
var
|
|
23160
|
-
var
|
|
23161
|
-
var
|
|
23293
|
+
var $schema148 = "http://json-schema.org/draft-07/schema";
|
|
23294
|
+
var $id148 = "GetTokenManyTxOutput";
|
|
23295
|
+
var title143 = "GetTokenManyTxOutput";
|
|
23296
|
+
var description148 = "Output of getTokenMany";
|
|
23297
|
+
var type125 = "object";
|
|
23298
|
+
var properties96 = {
|
|
23162
23299
|
tokens: {
|
|
23163
23300
|
type: "array",
|
|
23164
23301
|
items: {
|
|
@@ -23166,7 +23303,7 @@ var properties92 = {
|
|
|
23166
23303
|
}
|
|
23167
23304
|
}
|
|
23168
23305
|
};
|
|
23169
|
-
var
|
|
23306
|
+
var definitions79 = {
|
|
23170
23307
|
TokenResult: {
|
|
23171
23308
|
anyOf: [
|
|
23172
23309
|
{
|
|
@@ -23182,26 +23319,26 @@ var definitions77 = {
|
|
|
23182
23319
|
}
|
|
23183
23320
|
};
|
|
23184
23321
|
var required61 = ["tokens"];
|
|
23185
|
-
var
|
|
23322
|
+
var additionalProperties96 = false;
|
|
23186
23323
|
var get_token_many_schema_output_default = {
|
|
23187
|
-
$schema: $
|
|
23188
|
-
$id: $
|
|
23189
|
-
title:
|
|
23190
|
-
description:
|
|
23191
|
-
type:
|
|
23192
|
-
properties:
|
|
23193
|
-
definitions:
|
|
23324
|
+
$schema: $schema148,
|
|
23325
|
+
$id: $id148,
|
|
23326
|
+
title: title143,
|
|
23327
|
+
description: description148,
|
|
23328
|
+
type: type125,
|
|
23329
|
+
properties: properties96,
|
|
23330
|
+
definitions: definitions79,
|
|
23194
23331
|
required: required61,
|
|
23195
|
-
additionalProperties:
|
|
23332
|
+
additionalProperties: additionalProperties96
|
|
23196
23333
|
};
|
|
23197
23334
|
|
|
23198
23335
|
// src/txs/get-transfer/get-transfer.schema.input.json
|
|
23199
|
-
var $
|
|
23200
|
-
var $
|
|
23201
|
-
var
|
|
23202
|
-
var
|
|
23203
|
-
var
|
|
23204
|
-
var
|
|
23336
|
+
var $schema149 = "http://json-schema.org/draft-07/schema";
|
|
23337
|
+
var $id149 = "GetTransferTxInput";
|
|
23338
|
+
var title144 = "GetTransferTxInput";
|
|
23339
|
+
var description149 = "Input for getTransfer";
|
|
23340
|
+
var type126 = "object";
|
|
23341
|
+
var properties97 = {
|
|
23205
23342
|
transfer: {
|
|
23206
23343
|
$ref: "#/definitions/unique_transfer_filter"
|
|
23207
23344
|
},
|
|
@@ -23209,7 +23346,7 @@ var properties93 = {
|
|
|
23209
23346
|
$ref: "#/definitions/get_transfer_tx_options"
|
|
23210
23347
|
}
|
|
23211
23348
|
};
|
|
23212
|
-
var
|
|
23349
|
+
var definitions80 = {
|
|
23213
23350
|
get_transfer_tx_options: {
|
|
23214
23351
|
allOf: [
|
|
23215
23352
|
{
|
|
@@ -23262,31 +23399,31 @@ var definitions78 = {
|
|
|
23262
23399
|
}
|
|
23263
23400
|
};
|
|
23264
23401
|
var required62 = ["transfer"];
|
|
23265
|
-
var
|
|
23402
|
+
var additionalProperties97 = false;
|
|
23266
23403
|
var get_transfer_schema_input_default2 = {
|
|
23267
|
-
$schema: $
|
|
23268
|
-
$id: $
|
|
23269
|
-
title:
|
|
23270
|
-
description:
|
|
23271
|
-
type:
|
|
23272
|
-
properties:
|
|
23273
|
-
definitions:
|
|
23404
|
+
$schema: $schema149,
|
|
23405
|
+
$id: $id149,
|
|
23406
|
+
title: title144,
|
|
23407
|
+
description: description149,
|
|
23408
|
+
type: type126,
|
|
23409
|
+
properties: properties97,
|
|
23410
|
+
definitions: definitions80,
|
|
23274
23411
|
required: required62,
|
|
23275
|
-
additionalProperties:
|
|
23412
|
+
additionalProperties: additionalProperties97
|
|
23276
23413
|
};
|
|
23277
23414
|
|
|
23278
23415
|
// src/txs/get-transfer/get-transfer.schema.output.json
|
|
23279
|
-
var $
|
|
23280
|
-
var $
|
|
23281
|
-
var
|
|
23282
|
-
var
|
|
23283
|
-
var
|
|
23284
|
-
var
|
|
23416
|
+
var $schema150 = "http://json-schema.org/draft-07/schema";
|
|
23417
|
+
var $id150 = "GetTransferTxOutput";
|
|
23418
|
+
var title145 = "GetTransferTxOutput";
|
|
23419
|
+
var description150 = "Output of getTransfer";
|
|
23420
|
+
var type127 = "object";
|
|
23421
|
+
var properties98 = {
|
|
23285
23422
|
transfer: {
|
|
23286
23423
|
$ref: "#/definitions/transfer"
|
|
23287
23424
|
}
|
|
23288
23425
|
};
|
|
23289
|
-
var
|
|
23426
|
+
var definitions81 = {
|
|
23290
23427
|
transfer: {
|
|
23291
23428
|
type: "object",
|
|
23292
23429
|
description: "requested transfer",
|
|
@@ -23501,25 +23638,25 @@ var definitions79 = {
|
|
|
23501
23638
|
additionalProperties: false
|
|
23502
23639
|
}
|
|
23503
23640
|
};
|
|
23504
|
-
var
|
|
23641
|
+
var additionalProperties98 = false;
|
|
23505
23642
|
var get_transfer_schema_output_default2 = {
|
|
23506
|
-
$schema: $
|
|
23507
|
-
$id: $
|
|
23508
|
-
title:
|
|
23509
|
-
description:
|
|
23510
|
-
type:
|
|
23511
|
-
properties:
|
|
23512
|
-
definitions:
|
|
23513
|
-
additionalProperties:
|
|
23643
|
+
$schema: $schema150,
|
|
23644
|
+
$id: $id150,
|
|
23645
|
+
title: title145,
|
|
23646
|
+
description: description150,
|
|
23647
|
+
type: type127,
|
|
23648
|
+
properties: properties98,
|
|
23649
|
+
definitions: definitions81,
|
|
23650
|
+
additionalProperties: additionalProperties98
|
|
23514
23651
|
};
|
|
23515
23652
|
|
|
23516
23653
|
// src/txs/get-transfer-group/get-transfer-group.schema.input.json
|
|
23517
|
-
var $
|
|
23518
|
-
var $
|
|
23519
|
-
var
|
|
23520
|
-
var
|
|
23521
|
-
var
|
|
23522
|
-
var
|
|
23654
|
+
var $schema151 = "http://json-schema.org/draft-07/schema";
|
|
23655
|
+
var $id151 = "GetTransferGroupTxInput";
|
|
23656
|
+
var title146 = "GetTransferGroupTxInput";
|
|
23657
|
+
var description151 = "Input for getTransferGroup";
|
|
23658
|
+
var type128 = "object";
|
|
23659
|
+
var properties99 = {
|
|
23523
23660
|
transfer_group: {
|
|
23524
23661
|
$ref: "#/definitions/unique_transfer_group_filter"
|
|
23525
23662
|
},
|
|
@@ -23527,7 +23664,7 @@ var properties95 = {
|
|
|
23527
23664
|
$ref: "#/definitions/get_transfer_group_tx_options"
|
|
23528
23665
|
}
|
|
23529
23666
|
};
|
|
23530
|
-
var
|
|
23667
|
+
var definitions82 = {
|
|
23531
23668
|
get_transfer_group_tx_options: {
|
|
23532
23669
|
allOf: [
|
|
23533
23670
|
{
|
|
@@ -23601,31 +23738,31 @@ var definitions80 = {
|
|
|
23601
23738
|
}
|
|
23602
23739
|
};
|
|
23603
23740
|
var required63 = ["transfer_group"];
|
|
23604
|
-
var
|
|
23741
|
+
var additionalProperties99 = false;
|
|
23605
23742
|
var get_transfer_group_schema_input_default2 = {
|
|
23606
|
-
$schema: $
|
|
23607
|
-
$id: $
|
|
23608
|
-
title:
|
|
23609
|
-
description:
|
|
23610
|
-
type:
|
|
23611
|
-
properties:
|
|
23612
|
-
definitions:
|
|
23743
|
+
$schema: $schema151,
|
|
23744
|
+
$id: $id151,
|
|
23745
|
+
title: title146,
|
|
23746
|
+
description: description151,
|
|
23747
|
+
type: type128,
|
|
23748
|
+
properties: properties99,
|
|
23749
|
+
definitions: definitions82,
|
|
23613
23750
|
required: required63,
|
|
23614
|
-
additionalProperties:
|
|
23751
|
+
additionalProperties: additionalProperties99
|
|
23615
23752
|
};
|
|
23616
23753
|
|
|
23617
23754
|
// src/txs/get-transfer-group/get-transfer-group.schema.output.json
|
|
23618
|
-
var $
|
|
23619
|
-
var $
|
|
23620
|
-
var
|
|
23621
|
-
var
|
|
23622
|
-
var
|
|
23623
|
-
var
|
|
23755
|
+
var $schema152 = "http://json-schema.org/draft-07/schema";
|
|
23756
|
+
var $id152 = "GetTransferGroupTxOutput";
|
|
23757
|
+
var title147 = "GetTransferGroupTxOutput";
|
|
23758
|
+
var description152 = "Output of getTransferGroup";
|
|
23759
|
+
var type129 = "object";
|
|
23760
|
+
var properties100 = {
|
|
23624
23761
|
transfer_group: {
|
|
23625
23762
|
$ref: "#/definitions/transfer_group"
|
|
23626
23763
|
}
|
|
23627
23764
|
};
|
|
23628
|
-
var
|
|
23765
|
+
var definitions83 = {
|
|
23629
23766
|
transfer_group: {
|
|
23630
23767
|
description: "requested transfer_group",
|
|
23631
23768
|
properties: {
|
|
@@ -23674,25 +23811,25 @@ var definitions81 = {
|
|
|
23674
23811
|
required: ["id"]
|
|
23675
23812
|
}
|
|
23676
23813
|
};
|
|
23677
|
-
var
|
|
23814
|
+
var additionalProperties100 = false;
|
|
23678
23815
|
var get_transfer_group_schema_output_default2 = {
|
|
23679
|
-
$schema: $
|
|
23680
|
-
$id: $
|
|
23681
|
-
title:
|
|
23682
|
-
description:
|
|
23683
|
-
type:
|
|
23684
|
-
properties:
|
|
23685
|
-
definitions:
|
|
23686
|
-
additionalProperties:
|
|
23816
|
+
$schema: $schema152,
|
|
23817
|
+
$id: $id152,
|
|
23818
|
+
title: title147,
|
|
23819
|
+
description: description152,
|
|
23820
|
+
type: type129,
|
|
23821
|
+
properties: properties100,
|
|
23822
|
+
definitions: definitions83,
|
|
23823
|
+
additionalProperties: additionalProperties100
|
|
23687
23824
|
};
|
|
23688
23825
|
|
|
23689
23826
|
// src/txs/get-wallet/get-wallet.schema.input.json
|
|
23690
|
-
var $
|
|
23691
|
-
var $
|
|
23692
|
-
var
|
|
23693
|
-
var
|
|
23694
|
-
var
|
|
23695
|
-
var
|
|
23827
|
+
var $schema153 = "http://json-schema.org/draft-07/schema";
|
|
23828
|
+
var $id153 = "GetWalletTxInput";
|
|
23829
|
+
var title148 = "GetWalletTxInput";
|
|
23830
|
+
var description153 = "Input for getWallet";
|
|
23831
|
+
var type130 = "object";
|
|
23832
|
+
var properties101 = {
|
|
23696
23833
|
wallet: {
|
|
23697
23834
|
$ref: "#/definitions/unique_wallet_filter"
|
|
23698
23835
|
},
|
|
@@ -23700,7 +23837,7 @@ var properties97 = {
|
|
|
23700
23837
|
$ref: "#/definitions/get_wallet_tx_options"
|
|
23701
23838
|
}
|
|
23702
23839
|
};
|
|
23703
|
-
var
|
|
23840
|
+
var definitions84 = {
|
|
23704
23841
|
get_wallet_tx_options: {
|
|
23705
23842
|
allOf: [
|
|
23706
23843
|
{
|
|
@@ -23779,26 +23916,26 @@ var definitions82 = {
|
|
|
23779
23916
|
}
|
|
23780
23917
|
};
|
|
23781
23918
|
var required64 = ["wallet"];
|
|
23782
|
-
var
|
|
23919
|
+
var additionalProperties101 = false;
|
|
23783
23920
|
var get_wallet_schema_input_default2 = {
|
|
23784
|
-
$schema: $
|
|
23785
|
-
$id: $
|
|
23786
|
-
title:
|
|
23787
|
-
description:
|
|
23788
|
-
type:
|
|
23789
|
-
properties:
|
|
23790
|
-
definitions:
|
|
23921
|
+
$schema: $schema153,
|
|
23922
|
+
$id: $id153,
|
|
23923
|
+
title: title148,
|
|
23924
|
+
description: description153,
|
|
23925
|
+
type: type130,
|
|
23926
|
+
properties: properties101,
|
|
23927
|
+
definitions: definitions84,
|
|
23791
23928
|
required: required64,
|
|
23792
|
-
additionalProperties:
|
|
23929
|
+
additionalProperties: additionalProperties101
|
|
23793
23930
|
};
|
|
23794
23931
|
|
|
23795
23932
|
// src/txs/get-wallet/get-wallet.schema.output.json
|
|
23796
|
-
var $
|
|
23797
|
-
var $
|
|
23798
|
-
var
|
|
23799
|
-
var
|
|
23800
|
-
var
|
|
23801
|
-
var
|
|
23933
|
+
var $schema154 = "http://json-schema.org/draft-07/schema";
|
|
23934
|
+
var $id154 = "GetWalletTxOutput";
|
|
23935
|
+
var title149 = "GetWalletTxOutput";
|
|
23936
|
+
var description154 = "Output of getWallet";
|
|
23937
|
+
var type131 = "object";
|
|
23938
|
+
var properties102 = {
|
|
23802
23939
|
wallet: {
|
|
23803
23940
|
description: "requested wallet",
|
|
23804
23941
|
anyOf: [
|
|
@@ -23811,24 +23948,24 @@ var properties98 = {
|
|
|
23811
23948
|
]
|
|
23812
23949
|
}
|
|
23813
23950
|
};
|
|
23814
|
-
var
|
|
23951
|
+
var additionalProperties102 = false;
|
|
23815
23952
|
var get_wallet_schema_output_default2 = {
|
|
23816
|
-
$schema: $
|
|
23817
|
-
$id: $
|
|
23818
|
-
title:
|
|
23819
|
-
description:
|
|
23820
|
-
type:
|
|
23821
|
-
properties:
|
|
23822
|
-
additionalProperties:
|
|
23953
|
+
$schema: $schema154,
|
|
23954
|
+
$id: $id154,
|
|
23955
|
+
title: title149,
|
|
23956
|
+
description: description154,
|
|
23957
|
+
type: type131,
|
|
23958
|
+
properties: properties102,
|
|
23959
|
+
additionalProperties: additionalProperties102
|
|
23823
23960
|
};
|
|
23824
23961
|
|
|
23825
23962
|
// src/txs/get-wallet-many/get-wallet-many.schema.input.json
|
|
23826
|
-
var $
|
|
23827
|
-
var $
|
|
23828
|
-
var
|
|
23829
|
-
var
|
|
23830
|
-
var
|
|
23831
|
-
var
|
|
23963
|
+
var $schema155 = "http://json-schema.org/draft-07/schema";
|
|
23964
|
+
var $id155 = "GetWalletManyTxInput";
|
|
23965
|
+
var title150 = "GetWalletManyTxInput";
|
|
23966
|
+
var description155 = "Input for getWalletMany";
|
|
23967
|
+
var type132 = "object";
|
|
23968
|
+
var properties103 = {
|
|
23832
23969
|
wallets: {
|
|
23833
23970
|
type: "array",
|
|
23834
23971
|
items: {
|
|
@@ -23839,7 +23976,7 @@ var properties99 = {
|
|
|
23839
23976
|
$ref: "#/definitions/get_wallet_many_tx_options"
|
|
23840
23977
|
}
|
|
23841
23978
|
};
|
|
23842
|
-
var
|
|
23979
|
+
var definitions85 = {
|
|
23843
23980
|
get_wallet_many_tx_options: {
|
|
23844
23981
|
allOf: [
|
|
23845
23982
|
{
|
|
@@ -23873,25 +24010,25 @@ var definitions83 = {
|
|
|
23873
24010
|
$typescript: '{"additionalProperties": false}'
|
|
23874
24011
|
}
|
|
23875
24012
|
};
|
|
23876
|
-
var
|
|
24013
|
+
var additionalProperties103 = false;
|
|
23877
24014
|
var get_wallet_many_schema_input_default = {
|
|
23878
|
-
$schema: $
|
|
23879
|
-
$id: $
|
|
23880
|
-
title:
|
|
23881
|
-
description:
|
|
23882
|
-
type:
|
|
23883
|
-
properties:
|
|
23884
|
-
definitions:
|
|
23885
|
-
additionalProperties:
|
|
24015
|
+
$schema: $schema155,
|
|
24016
|
+
$id: $id155,
|
|
24017
|
+
title: title150,
|
|
24018
|
+
description: description155,
|
|
24019
|
+
type: type132,
|
|
24020
|
+
properties: properties103,
|
|
24021
|
+
definitions: definitions85,
|
|
24022
|
+
additionalProperties: additionalProperties103
|
|
23886
24023
|
};
|
|
23887
24024
|
|
|
23888
24025
|
// src/txs/get-wallet-many/get-wallet-many.schema.output.json
|
|
23889
|
-
var $
|
|
23890
|
-
var $
|
|
23891
|
-
var
|
|
23892
|
-
var
|
|
23893
|
-
var
|
|
23894
|
-
var
|
|
24026
|
+
var $schema156 = "http://json-schema.org/draft-07/schema";
|
|
24027
|
+
var $id156 = "GetWalletManyTxOutput";
|
|
24028
|
+
var title151 = "GetWalletManyTxOutput";
|
|
24029
|
+
var description156 = "Output of getWalletMany";
|
|
24030
|
+
var type133 = "object";
|
|
24031
|
+
var properties104 = {
|
|
23895
24032
|
wallets: {
|
|
23896
24033
|
type: "array",
|
|
23897
24034
|
items: {
|
|
@@ -23899,7 +24036,7 @@ var properties100 = {
|
|
|
23899
24036
|
}
|
|
23900
24037
|
}
|
|
23901
24038
|
};
|
|
23902
|
-
var
|
|
24039
|
+
var definitions86 = {
|
|
23903
24040
|
WalletResult: {
|
|
23904
24041
|
anyOf: [
|
|
23905
24042
|
{
|
|
@@ -23915,26 +24052,26 @@ var definitions84 = {
|
|
|
23915
24052
|
}
|
|
23916
24053
|
};
|
|
23917
24054
|
var required65 = ["wallets"];
|
|
23918
|
-
var
|
|
24055
|
+
var additionalProperties104 = false;
|
|
23919
24056
|
var get_wallet_many_schema_output_default = {
|
|
23920
|
-
$schema: $
|
|
23921
|
-
$id: $
|
|
23922
|
-
title:
|
|
23923
|
-
description:
|
|
23924
|
-
type:
|
|
23925
|
-
properties:
|
|
23926
|
-
definitions:
|
|
24057
|
+
$schema: $schema156,
|
|
24058
|
+
$id: $id156,
|
|
24059
|
+
title: title151,
|
|
24060
|
+
description: description156,
|
|
24061
|
+
type: type133,
|
|
24062
|
+
properties: properties104,
|
|
24063
|
+
definitions: definitions86,
|
|
23927
24064
|
required: required65,
|
|
23928
|
-
additionalProperties:
|
|
24065
|
+
additionalProperties: additionalProperties104
|
|
23929
24066
|
};
|
|
23930
24067
|
|
|
23931
24068
|
// src/txs/import-actions/import-actions.schema.input.json
|
|
23932
|
-
var $
|
|
23933
|
-
var $
|
|
23934
|
-
var
|
|
23935
|
-
var
|
|
23936
|
-
var
|
|
23937
|
-
var
|
|
24069
|
+
var $schema157 = "http://json-schema.org/draft-07/schema";
|
|
24070
|
+
var $id157 = "ImportActionsTxInput";
|
|
24071
|
+
var title152 = "ImportActionsTxInput";
|
|
24072
|
+
var description157 = "Input for importActions";
|
|
24073
|
+
var type134 = "object";
|
|
24074
|
+
var properties105 = {
|
|
23938
24075
|
actions: {
|
|
23939
24076
|
type: "array",
|
|
23940
24077
|
items: {
|
|
@@ -23946,7 +24083,7 @@ var properties101 = {
|
|
|
23946
24083
|
}
|
|
23947
24084
|
};
|
|
23948
24085
|
var required66 = ["actions"];
|
|
23949
|
-
var
|
|
24086
|
+
var definitions87 = {
|
|
23950
24087
|
import_actions_tx_options: {
|
|
23951
24088
|
allOf: [
|
|
23952
24089
|
{
|
|
@@ -24217,27 +24354,27 @@ var definitions85 = {
|
|
|
24217
24354
|
}
|
|
24218
24355
|
};
|
|
24219
24356
|
var $allowStreamInput2 = "import_actions_tx_stream_chunk";
|
|
24220
|
-
var
|
|
24357
|
+
var additionalProperties105 = false;
|
|
24221
24358
|
var import_actions_schema_input_default = {
|
|
24222
|
-
$schema: $
|
|
24223
|
-
$id: $
|
|
24224
|
-
title:
|
|
24225
|
-
description:
|
|
24226
|
-
type:
|
|
24227
|
-
properties:
|
|
24359
|
+
$schema: $schema157,
|
|
24360
|
+
$id: $id157,
|
|
24361
|
+
title: title152,
|
|
24362
|
+
description: description157,
|
|
24363
|
+
type: type134,
|
|
24364
|
+
properties: properties105,
|
|
24228
24365
|
required: required66,
|
|
24229
|
-
definitions:
|
|
24366
|
+
definitions: definitions87,
|
|
24230
24367
|
$allowStreamInput: $allowStreamInput2,
|
|
24231
|
-
additionalProperties:
|
|
24368
|
+
additionalProperties: additionalProperties105
|
|
24232
24369
|
};
|
|
24233
24370
|
|
|
24234
24371
|
// src/txs/import-actions/import-actions.schema.output.json
|
|
24235
|
-
var $
|
|
24236
|
-
var $
|
|
24237
|
-
var
|
|
24238
|
-
var
|
|
24239
|
-
var
|
|
24240
|
-
var
|
|
24372
|
+
var $schema158 = "http://json-schema.org/draft-07/schema";
|
|
24373
|
+
var $id158 = "ImportActionsTxOutput";
|
|
24374
|
+
var title153 = "ImportActionsTxOutput";
|
|
24375
|
+
var description158 = "Output of importActions";
|
|
24376
|
+
var type135 = "object";
|
|
24377
|
+
var properties106 = {
|
|
24241
24378
|
progress: {
|
|
24242
24379
|
type: "array"
|
|
24243
24380
|
},
|
|
@@ -24245,24 +24382,170 @@ var properties102 = {
|
|
|
24245
24382
|
type: "array"
|
|
24246
24383
|
}
|
|
24247
24384
|
};
|
|
24248
|
-
var
|
|
24385
|
+
var additionalProperties106 = false;
|
|
24249
24386
|
var import_actions_schema_output_default = {
|
|
24250
|
-
$schema: $
|
|
24251
|
-
$id: $
|
|
24252
|
-
title:
|
|
24253
|
-
description:
|
|
24254
|
-
type:
|
|
24255
|
-
properties:
|
|
24256
|
-
additionalProperties:
|
|
24387
|
+
$schema: $schema158,
|
|
24388
|
+
$id: $id158,
|
|
24389
|
+
title: title153,
|
|
24390
|
+
description: description158,
|
|
24391
|
+
type: type135,
|
|
24392
|
+
properties: properties106,
|
|
24393
|
+
additionalProperties: additionalProperties106
|
|
24394
|
+
};
|
|
24395
|
+
|
|
24396
|
+
// src/txs/import-database-backup/import-database-backup.schema.input.json
|
|
24397
|
+
var $schema159 = "http://json-schema.org/draft-07/schema";
|
|
24398
|
+
var $id159 = "ImportDatabaseBackupTxInput";
|
|
24399
|
+
var title154 = "ImportDatabaseBackupTxInput";
|
|
24400
|
+
var description159 = "Input for importDatabaseBackup";
|
|
24401
|
+
var type136 = "object";
|
|
24402
|
+
var properties107 = {
|
|
24403
|
+
name: {
|
|
24404
|
+
type: "string"
|
|
24405
|
+
}
|
|
24406
|
+
};
|
|
24407
|
+
var definitions88 = {};
|
|
24408
|
+
var additionalProperties107 = false;
|
|
24409
|
+
var import_database_backup_schema_input_default = {
|
|
24410
|
+
$schema: $schema159,
|
|
24411
|
+
$id: $id159,
|
|
24412
|
+
title: title154,
|
|
24413
|
+
description: description159,
|
|
24414
|
+
type: type136,
|
|
24415
|
+
properties: properties107,
|
|
24416
|
+
definitions: definitions88,
|
|
24417
|
+
additionalProperties: additionalProperties107
|
|
24418
|
+
};
|
|
24419
|
+
|
|
24420
|
+
// src/txs/import-database-backup/import-database-backup.schema.output.json
|
|
24421
|
+
var $schema160 = "http://json-schema.org/draft-07/schema";
|
|
24422
|
+
var $id160 = "ImportDatabaseBackupTxOutput";
|
|
24423
|
+
var title155 = "ImportDatabaseBackupTxOutput";
|
|
24424
|
+
var description160 = "Output of importDatabaseBackup";
|
|
24425
|
+
var type137 = "object";
|
|
24426
|
+
var properties108 = {
|
|
24427
|
+
message: {
|
|
24428
|
+
type: "string"
|
|
24429
|
+
}
|
|
24430
|
+
};
|
|
24431
|
+
var additionalProperties108 = false;
|
|
24432
|
+
var import_database_backup_schema_output_default = {
|
|
24433
|
+
$schema: $schema160,
|
|
24434
|
+
$id: $id160,
|
|
24435
|
+
title: title155,
|
|
24436
|
+
description: description160,
|
|
24437
|
+
type: type137,
|
|
24438
|
+
properties: properties108,
|
|
24439
|
+
additionalProperties: additionalProperties108
|
|
24440
|
+
};
|
|
24441
|
+
|
|
24442
|
+
// src/txs/import-database-progress/import-database-progress.schema.input.json
|
|
24443
|
+
var $schema161 = "http://json-schema.org/draft-07/schema";
|
|
24444
|
+
var $id161 = "ImportDatabaseProgressTxInput";
|
|
24445
|
+
var title156 = "ImportDatabaseProgressTxInput";
|
|
24446
|
+
var description161 = "Input for importDatabaseProgress";
|
|
24447
|
+
var type138 = "object";
|
|
24448
|
+
var properties109 = {
|
|
24449
|
+
options: {
|
|
24450
|
+
$ref: "#/definitions/import_database_progress_tx_options"
|
|
24451
|
+
}
|
|
24452
|
+
};
|
|
24453
|
+
var definitions89 = {
|
|
24454
|
+
import_database_progress_tx_options: {
|
|
24455
|
+
allOf: [
|
|
24456
|
+
{
|
|
24457
|
+
$ref: "/txs/tx-consts.schema.json#/definitions/i_tx_general_options"
|
|
24458
|
+
}
|
|
24459
|
+
]
|
|
24460
|
+
}
|
|
24461
|
+
};
|
|
24462
|
+
var additionalProperties109 = false;
|
|
24463
|
+
var import_database_progress_schema_input_default = {
|
|
24464
|
+
$schema: $schema161,
|
|
24465
|
+
$id: $id161,
|
|
24466
|
+
title: title156,
|
|
24467
|
+
description: description161,
|
|
24468
|
+
type: type138,
|
|
24469
|
+
properties: properties109,
|
|
24470
|
+
definitions: definitions89,
|
|
24471
|
+
additionalProperties: additionalProperties109
|
|
24472
|
+
};
|
|
24473
|
+
|
|
24474
|
+
// src/txs/import-database-progress/import-database-progress.schema.output.json
|
|
24475
|
+
var $schema162 = "http://json-schema.org/draft-07/schema";
|
|
24476
|
+
var $id162 = "ImportDatabaseProgressTxOutput";
|
|
24477
|
+
var title157 = "ImportDatabaseProgressTxOutput";
|
|
24478
|
+
var description162 = "Output of importDatabaseProgress";
|
|
24479
|
+
var type139 = "object";
|
|
24480
|
+
var properties110 = {
|
|
24481
|
+
progress: {
|
|
24482
|
+
type: "number",
|
|
24483
|
+
description: "Percentage of imported database"
|
|
24484
|
+
}
|
|
24485
|
+
};
|
|
24486
|
+
var additionalProperties110 = false;
|
|
24487
|
+
var import_database_progress_schema_output_default = {
|
|
24488
|
+
$schema: $schema162,
|
|
24489
|
+
$id: $id162,
|
|
24490
|
+
title: title157,
|
|
24491
|
+
description: description162,
|
|
24492
|
+
type: type139,
|
|
24493
|
+
properties: properties110,
|
|
24494
|
+
additionalProperties: additionalProperties110
|
|
24495
|
+
};
|
|
24496
|
+
|
|
24497
|
+
// src/txs/list-database-backups/list-database-backups.schema.input.json
|
|
24498
|
+
var $schema163 = "http://json-schema.org/draft-07/schema";
|
|
24499
|
+
var $id163 = "ListDatabaseBackupsTxInput";
|
|
24500
|
+
var title158 = "ListDatabaseBackupsTxInput";
|
|
24501
|
+
var description163 = "Input for listDatabaseBackups";
|
|
24502
|
+
var type140 = "object";
|
|
24503
|
+
var properties111 = {};
|
|
24504
|
+
var definitions90 = {};
|
|
24505
|
+
var additionalProperties111 = false;
|
|
24506
|
+
var list_database_backups_schema_input_default = {
|
|
24507
|
+
$schema: $schema163,
|
|
24508
|
+
$id: $id163,
|
|
24509
|
+
title: title158,
|
|
24510
|
+
description: description163,
|
|
24511
|
+
type: type140,
|
|
24512
|
+
properties: properties111,
|
|
24513
|
+
definitions: definitions90,
|
|
24514
|
+
additionalProperties: additionalProperties111
|
|
24515
|
+
};
|
|
24516
|
+
|
|
24517
|
+
// src/txs/list-database-backups/list-database-backups.schema.output.json
|
|
24518
|
+
var $schema164 = "http://json-schema.org/draft-07/schema";
|
|
24519
|
+
var $id164 = "ListDatabaseBackupsTxOutput";
|
|
24520
|
+
var title159 = "ListDatabaseBackupsTxOutput";
|
|
24521
|
+
var description164 = "Output of listDatabaseBackups";
|
|
24522
|
+
var type141 = "object";
|
|
24523
|
+
var properties112 = {
|
|
24524
|
+
backups: {
|
|
24525
|
+
type: "array",
|
|
24526
|
+
items: {
|
|
24527
|
+
type: "string"
|
|
24528
|
+
}
|
|
24529
|
+
}
|
|
24530
|
+
};
|
|
24531
|
+
var additionalProperties112 = false;
|
|
24532
|
+
var list_database_backups_schema_output_default = {
|
|
24533
|
+
$schema: $schema164,
|
|
24534
|
+
$id: $id164,
|
|
24535
|
+
title: title159,
|
|
24536
|
+
description: description164,
|
|
24537
|
+
type: type141,
|
|
24538
|
+
properties: properties112,
|
|
24539
|
+
additionalProperties: additionalProperties112
|
|
24257
24540
|
};
|
|
24258
24541
|
|
|
24259
24542
|
// src/txs/query/query.schema.input.json
|
|
24260
|
-
var $
|
|
24261
|
-
var $
|
|
24262
|
-
var
|
|
24263
|
-
var
|
|
24264
|
-
var
|
|
24265
|
-
var
|
|
24543
|
+
var $schema165 = "http://json-schema.org/draft-07/schema";
|
|
24544
|
+
var $id165 = "QueryTxInput";
|
|
24545
|
+
var title160 = "QueryTxInput";
|
|
24546
|
+
var description165 = "Input for query";
|
|
24547
|
+
var type142 = "object";
|
|
24548
|
+
var properties113 = {
|
|
24266
24549
|
query: {
|
|
24267
24550
|
description: "SELECT query",
|
|
24268
24551
|
type: "string"
|
|
@@ -24275,7 +24558,7 @@ var properties103 = {
|
|
|
24275
24558
|
$ref: "#/definitions/query_tx_options"
|
|
24276
24559
|
}
|
|
24277
24560
|
};
|
|
24278
|
-
var
|
|
24561
|
+
var definitions91 = {
|
|
24279
24562
|
query_tx_options: {
|
|
24280
24563
|
allOf: [
|
|
24281
24564
|
{
|
|
@@ -24285,51 +24568,51 @@ var definitions86 = {
|
|
|
24285
24568
|
}
|
|
24286
24569
|
};
|
|
24287
24570
|
var required67 = ["query", "params"];
|
|
24288
|
-
var
|
|
24571
|
+
var additionalProperties113 = false;
|
|
24289
24572
|
var query_schema_input_default = {
|
|
24290
|
-
$schema: $
|
|
24291
|
-
$id: $
|
|
24292
|
-
title:
|
|
24293
|
-
description:
|
|
24294
|
-
type:
|
|
24295
|
-
properties:
|
|
24296
|
-
definitions:
|
|
24573
|
+
$schema: $schema165,
|
|
24574
|
+
$id: $id165,
|
|
24575
|
+
title: title160,
|
|
24576
|
+
description: description165,
|
|
24577
|
+
type: type142,
|
|
24578
|
+
properties: properties113,
|
|
24579
|
+
definitions: definitions91,
|
|
24297
24580
|
required: required67,
|
|
24298
|
-
additionalProperties:
|
|
24581
|
+
additionalProperties: additionalProperties113
|
|
24299
24582
|
};
|
|
24300
24583
|
|
|
24301
24584
|
// src/txs/query/query.schema.output.json
|
|
24302
|
-
var $
|
|
24303
|
-
var $
|
|
24304
|
-
var
|
|
24305
|
-
var
|
|
24306
|
-
var
|
|
24307
|
-
var
|
|
24585
|
+
var $schema166 = "http://json-schema.org/draft-07/schema";
|
|
24586
|
+
var $id166 = "QueryTxOutput";
|
|
24587
|
+
var title161 = "QueryTxOutput";
|
|
24588
|
+
var description166 = "Output of query";
|
|
24589
|
+
var type143 = "object";
|
|
24590
|
+
var properties114 = {
|
|
24308
24591
|
results: {
|
|
24309
24592
|
description: "The query results",
|
|
24310
24593
|
type: "array"
|
|
24311
24594
|
}
|
|
24312
24595
|
};
|
|
24313
24596
|
var required68 = ["results"];
|
|
24314
|
-
var
|
|
24597
|
+
var additionalProperties114 = false;
|
|
24315
24598
|
var query_schema_output_default = {
|
|
24316
|
-
$schema: $
|
|
24317
|
-
$id: $
|
|
24318
|
-
title:
|
|
24319
|
-
description:
|
|
24320
|
-
type:
|
|
24321
|
-
properties:
|
|
24599
|
+
$schema: $schema166,
|
|
24600
|
+
$id: $id166,
|
|
24601
|
+
title: title161,
|
|
24602
|
+
description: description166,
|
|
24603
|
+
type: type143,
|
|
24604
|
+
properties: properties114,
|
|
24322
24605
|
required: required68,
|
|
24323
|
-
additionalProperties:
|
|
24606
|
+
additionalProperties: additionalProperties114
|
|
24324
24607
|
};
|
|
24325
24608
|
|
|
24326
24609
|
// src/txs/query-logs/query-logs.schema.input.json
|
|
24327
|
-
var $
|
|
24328
|
-
var $
|
|
24329
|
-
var
|
|
24330
|
-
var
|
|
24331
|
-
var
|
|
24332
|
-
var
|
|
24610
|
+
var $schema167 = "http://json-schema.org/draft-07/schema";
|
|
24611
|
+
var $id167 = "QueryLogsTxInput";
|
|
24612
|
+
var title162 = "QueryLogsTxInput";
|
|
24613
|
+
var description167 = "Input for queryLogs";
|
|
24614
|
+
var type144 = "object";
|
|
24615
|
+
var properties115 = {
|
|
24333
24616
|
startTime: {
|
|
24334
24617
|
description: "Log entries start time",
|
|
24335
24618
|
type: "string"
|
|
@@ -24349,7 +24632,7 @@ var properties105 = {
|
|
|
24349
24632
|
$ref: "#/definitions/query_logs_tx_options"
|
|
24350
24633
|
}
|
|
24351
24634
|
};
|
|
24352
|
-
var
|
|
24635
|
+
var definitions92 = {
|
|
24353
24636
|
query_logs_tx_options: {
|
|
24354
24637
|
allOf: [
|
|
24355
24638
|
{
|
|
@@ -24375,31 +24658,31 @@ var definitions87 = {
|
|
|
24375
24658
|
$typescript: '{"additionalProperties":false}'
|
|
24376
24659
|
}
|
|
24377
24660
|
};
|
|
24378
|
-
var
|
|
24661
|
+
var additionalProperties115 = false;
|
|
24379
24662
|
var query_logs_schema_input_default = {
|
|
24380
|
-
$schema: $
|
|
24381
|
-
$id: $
|
|
24382
|
-
title:
|
|
24383
|
-
description:
|
|
24384
|
-
type:
|
|
24385
|
-
properties:
|
|
24386
|
-
definitions:
|
|
24387
|
-
additionalProperties:
|
|
24663
|
+
$schema: $schema167,
|
|
24664
|
+
$id: $id167,
|
|
24665
|
+
title: title162,
|
|
24666
|
+
description: description167,
|
|
24667
|
+
type: type144,
|
|
24668
|
+
properties: properties115,
|
|
24669
|
+
definitions: definitions92,
|
|
24670
|
+
additionalProperties: additionalProperties115
|
|
24388
24671
|
};
|
|
24389
24672
|
|
|
24390
24673
|
// src/txs/query-logs/query-logs.schema.output.json
|
|
24391
|
-
var $
|
|
24392
|
-
var $
|
|
24393
|
-
var
|
|
24394
|
-
var
|
|
24395
|
-
var
|
|
24396
|
-
var
|
|
24674
|
+
var $schema168 = "http://json-schema.org/draft-07/schema";
|
|
24675
|
+
var $id168 = "QueryLogsTxOutput";
|
|
24676
|
+
var title163 = "QueryLogsTxOutput";
|
|
24677
|
+
var description168 = "Output of queryLogs";
|
|
24678
|
+
var type145 = "object";
|
|
24679
|
+
var properties116 = {
|
|
24397
24680
|
logs: {
|
|
24398
24681
|
type: "array",
|
|
24399
24682
|
items: { $ref: "#/definitions/query_log_entry" }
|
|
24400
24683
|
}
|
|
24401
24684
|
};
|
|
24402
|
-
var
|
|
24685
|
+
var definitions93 = {
|
|
24403
24686
|
query_log_entry: {
|
|
24404
24687
|
type: "object",
|
|
24405
24688
|
properties: {
|
|
@@ -24419,28 +24702,28 @@ var definitions88 = {
|
|
|
24419
24702
|
},
|
|
24420
24703
|
additionalProperties: false
|
|
24421
24704
|
}
|
|
24422
|
-
};
|
|
24423
|
-
var required69 = ["logs"];
|
|
24424
|
-
var
|
|
24425
|
-
var query_logs_schema_output_default = {
|
|
24426
|
-
$schema: $
|
|
24427
|
-
$id: $
|
|
24428
|
-
title:
|
|
24429
|
-
description:
|
|
24430
|
-
type:
|
|
24431
|
-
properties:
|
|
24432
|
-
definitions:
|
|
24705
|
+
};
|
|
24706
|
+
var required69 = ["logs"];
|
|
24707
|
+
var additionalProperties116 = false;
|
|
24708
|
+
var query_logs_schema_output_default = {
|
|
24709
|
+
$schema: $schema168,
|
|
24710
|
+
$id: $id168,
|
|
24711
|
+
title: title163,
|
|
24712
|
+
description: description168,
|
|
24713
|
+
type: type145,
|
|
24714
|
+
properties: properties116,
|
|
24715
|
+
definitions: definitions93,
|
|
24433
24716
|
required: required69,
|
|
24434
|
-
additionalProperties:
|
|
24717
|
+
additionalProperties: additionalProperties116
|
|
24435
24718
|
};
|
|
24436
24719
|
|
|
24437
24720
|
// src/txs/reset-database/reset-database.schema.input.json
|
|
24438
|
-
var $
|
|
24439
|
-
var $
|
|
24440
|
-
var
|
|
24441
|
-
var
|
|
24442
|
-
var
|
|
24443
|
-
var
|
|
24721
|
+
var $schema169 = "http://json-schema.org/draft-07/schema";
|
|
24722
|
+
var $id169 = "ResetDatabaseTxInput";
|
|
24723
|
+
var title164 = "ResetDatabaseTxInput";
|
|
24724
|
+
var description169 = "Input for resetDatabase";
|
|
24725
|
+
var type146 = "object";
|
|
24726
|
+
var properties117 = {
|
|
24444
24727
|
confirmation: {
|
|
24445
24728
|
description: "hash to confirm database delete",
|
|
24446
24729
|
type: "string"
|
|
@@ -24453,7 +24736,7 @@ var properties107 = {
|
|
|
24453
24736
|
$ref: "#/definitions/reset_database_tx_options"
|
|
24454
24737
|
}
|
|
24455
24738
|
};
|
|
24456
|
-
var
|
|
24739
|
+
var definitions94 = {
|
|
24457
24740
|
reset_database_tx_options: {
|
|
24458
24741
|
allOf: [
|
|
24459
24742
|
{
|
|
@@ -24462,25 +24745,25 @@ var definitions89 = {
|
|
|
24462
24745
|
]
|
|
24463
24746
|
}
|
|
24464
24747
|
};
|
|
24465
|
-
var
|
|
24748
|
+
var additionalProperties117 = false;
|
|
24466
24749
|
var reset_database_schema_input_default = {
|
|
24467
|
-
$schema: $
|
|
24468
|
-
$id: $
|
|
24469
|
-
title:
|
|
24470
|
-
description:
|
|
24471
|
-
type:
|
|
24472
|
-
properties:
|
|
24473
|
-
definitions:
|
|
24474
|
-
additionalProperties:
|
|
24750
|
+
$schema: $schema169,
|
|
24751
|
+
$id: $id169,
|
|
24752
|
+
title: title164,
|
|
24753
|
+
description: description169,
|
|
24754
|
+
type: type146,
|
|
24755
|
+
properties: properties117,
|
|
24756
|
+
definitions: definitions94,
|
|
24757
|
+
additionalProperties: additionalProperties117
|
|
24475
24758
|
};
|
|
24476
24759
|
|
|
24477
24760
|
// src/txs/reset-database/reset-database.schema.output.json
|
|
24478
|
-
var $
|
|
24479
|
-
var $
|
|
24480
|
-
var
|
|
24481
|
-
var
|
|
24482
|
-
var
|
|
24483
|
-
var
|
|
24761
|
+
var $schema170 = "http://json-schema.org/draft-07/schema";
|
|
24762
|
+
var $id170 = "ResetDatabaseTxOutput";
|
|
24763
|
+
var title165 = "ResetDatabaseTxOutput";
|
|
24764
|
+
var description170 = "Output of resetDatabase";
|
|
24765
|
+
var type147 = "object";
|
|
24766
|
+
var properties118 = {
|
|
24484
24767
|
message: {
|
|
24485
24768
|
description: "Message about operation",
|
|
24486
24769
|
type: "string"
|
|
@@ -24490,24 +24773,24 @@ var properties108 = {
|
|
|
24490
24773
|
type: "string"
|
|
24491
24774
|
}
|
|
24492
24775
|
};
|
|
24493
|
-
var
|
|
24776
|
+
var additionalProperties118 = false;
|
|
24494
24777
|
var reset_database_schema_output_default = {
|
|
24495
|
-
$schema: $
|
|
24496
|
-
$id: $
|
|
24497
|
-
title:
|
|
24498
|
-
description:
|
|
24499
|
-
type:
|
|
24500
|
-
properties:
|
|
24501
|
-
additionalProperties:
|
|
24778
|
+
$schema: $schema170,
|
|
24779
|
+
$id: $id170,
|
|
24780
|
+
title: title165,
|
|
24781
|
+
description: description170,
|
|
24782
|
+
type: type147,
|
|
24783
|
+
properties: properties118,
|
|
24784
|
+
additionalProperties: additionalProperties118
|
|
24502
24785
|
};
|
|
24503
24786
|
|
|
24504
24787
|
// src/txs/reverse-transfer/reverse-transfer.schema.input.json
|
|
24505
|
-
var $
|
|
24506
|
-
var $
|
|
24507
|
-
var
|
|
24508
|
-
var
|
|
24509
|
-
var
|
|
24510
|
-
var
|
|
24788
|
+
var $schema171 = "http://json-schema.org/draft-07/schema";
|
|
24789
|
+
var $id171 = "ReverseTransferTxInput";
|
|
24790
|
+
var title166 = "ReverseTransferTxInput";
|
|
24791
|
+
var description171 = "Input for reverseTransfer";
|
|
24792
|
+
var type148 = "object";
|
|
24793
|
+
var properties119 = {
|
|
24511
24794
|
transfer: {
|
|
24512
24795
|
$ref: "/txs/get-transfer/get-transfer.schema.input.json#/definitions/unique_transfer_filter"
|
|
24513
24796
|
},
|
|
@@ -24518,7 +24801,7 @@ var properties109 = {
|
|
|
24518
24801
|
$ref: "#/definitions/reverse_transfer_tx_options"
|
|
24519
24802
|
}
|
|
24520
24803
|
};
|
|
24521
|
-
var
|
|
24804
|
+
var definitions95 = {
|
|
24522
24805
|
reverse_transfer_tx_options: {
|
|
24523
24806
|
allOf: [
|
|
24524
24807
|
{
|
|
@@ -24589,42 +24872,42 @@ var definitions90 = {
|
|
|
24589
24872
|
}
|
|
24590
24873
|
};
|
|
24591
24874
|
var required70 = ["transfer"];
|
|
24592
|
-
var
|
|
24875
|
+
var additionalProperties119 = false;
|
|
24593
24876
|
var reverse_transfer_schema_input_default2 = {
|
|
24594
|
-
$schema: $
|
|
24595
|
-
$id: $
|
|
24596
|
-
title:
|
|
24597
|
-
description:
|
|
24598
|
-
type:
|
|
24599
|
-
properties:
|
|
24600
|
-
definitions:
|
|
24877
|
+
$schema: $schema171,
|
|
24878
|
+
$id: $id171,
|
|
24879
|
+
title: title166,
|
|
24880
|
+
description: description171,
|
|
24881
|
+
type: type148,
|
|
24882
|
+
properties: properties119,
|
|
24883
|
+
definitions: definitions95,
|
|
24601
24884
|
required: required70,
|
|
24602
|
-
additionalProperties:
|
|
24885
|
+
additionalProperties: additionalProperties119
|
|
24603
24886
|
};
|
|
24604
24887
|
|
|
24605
24888
|
// src/txs/reverse-transfer/reverse-transfer.schema.output.json
|
|
24606
|
-
var $
|
|
24607
|
-
var $
|
|
24608
|
-
var
|
|
24609
|
-
var
|
|
24889
|
+
var $schema172 = "http://json-schema.org/draft-07/schema";
|
|
24890
|
+
var $id172 = "ReverseTransferTxOutput";
|
|
24891
|
+
var title167 = "ReverseTransferTxOutput";
|
|
24892
|
+
var description172 = "Output of reverseTransfer";
|
|
24610
24893
|
var allOf13 = [
|
|
24611
24894
|
{ $ref: "/txs/update-transfer/update-transfer.schema.output.json" }
|
|
24612
24895
|
];
|
|
24613
24896
|
var reverse_transfer_schema_output_default2 = {
|
|
24614
|
-
$schema: $
|
|
24615
|
-
$id: $
|
|
24616
|
-
title:
|
|
24617
|
-
description:
|
|
24897
|
+
$schema: $schema172,
|
|
24898
|
+
$id: $id172,
|
|
24899
|
+
title: title167,
|
|
24900
|
+
description: description172,
|
|
24618
24901
|
allOf: allOf13
|
|
24619
24902
|
};
|
|
24620
24903
|
|
|
24621
24904
|
// src/txs/reverse-transfer-group/reverse-transfer-group.schema.input.json
|
|
24622
|
-
var $
|
|
24623
|
-
var $
|
|
24624
|
-
var
|
|
24625
|
-
var
|
|
24626
|
-
var
|
|
24627
|
-
var
|
|
24905
|
+
var $schema173 = "http://json-schema.org/draft-07/schema";
|
|
24906
|
+
var $id173 = "ReverseTransferGroupTxInput";
|
|
24907
|
+
var title168 = "ReverseTransferGroupTxInput";
|
|
24908
|
+
var description173 = "Input for reverseTransferGroup";
|
|
24909
|
+
var type149 = "object";
|
|
24910
|
+
var properties120 = {
|
|
24628
24911
|
transfer_group: {
|
|
24629
24912
|
$ref: "/txs/get-transfer-group/get-transfer-group.schema.input.json#/definitions/unique_transfer_group_filter"
|
|
24630
24913
|
},
|
|
@@ -24635,7 +24918,7 @@ var properties110 = {
|
|
|
24635
24918
|
$ref: "#/definitions/reverse_transfer_group_tx_options"
|
|
24636
24919
|
}
|
|
24637
24920
|
};
|
|
24638
|
-
var
|
|
24921
|
+
var definitions96 = {
|
|
24639
24922
|
reverse_transfer_group_tx_options: {
|
|
24640
24923
|
allOf: [
|
|
24641
24924
|
{
|
|
@@ -24718,25 +25001,25 @@ var definitions91 = {
|
|
|
24718
25001
|
additionalProperties: false
|
|
24719
25002
|
}
|
|
24720
25003
|
};
|
|
24721
|
-
var
|
|
25004
|
+
var additionalProperties120 = false;
|
|
24722
25005
|
var reverse_transfer_group_schema_input_default2 = {
|
|
24723
|
-
$schema: $
|
|
24724
|
-
$id: $
|
|
24725
|
-
title:
|
|
24726
|
-
description:
|
|
24727
|
-
type:
|
|
24728
|
-
properties:
|
|
24729
|
-
definitions:
|
|
24730
|
-
additionalProperties:
|
|
25006
|
+
$schema: $schema173,
|
|
25007
|
+
$id: $id173,
|
|
25008
|
+
title: title168,
|
|
25009
|
+
description: description173,
|
|
25010
|
+
type: type149,
|
|
25011
|
+
properties: properties120,
|
|
25012
|
+
definitions: definitions96,
|
|
25013
|
+
additionalProperties: additionalProperties120
|
|
24731
25014
|
};
|
|
24732
25015
|
|
|
24733
25016
|
// src/txs/reverse-transfer-group/reverse-transfer-group.schema.output.json
|
|
24734
|
-
var $
|
|
24735
|
-
var $
|
|
24736
|
-
var
|
|
24737
|
-
var
|
|
24738
|
-
var
|
|
24739
|
-
var
|
|
25017
|
+
var $schema174 = "http://json-schema.org/draft-07/schema";
|
|
25018
|
+
var $id174 = "ReverseTransferGroupTxOutput";
|
|
25019
|
+
var title169 = "ReverseTransferGroupTxOutput";
|
|
25020
|
+
var description174 = "Output of reverseTransferGroup";
|
|
25021
|
+
var type150 = "object";
|
|
25022
|
+
var properties121 = {
|
|
24740
25023
|
transfer_group: {
|
|
24741
25024
|
$ref: "/db/transfer-group/transfer-group.schema.json"
|
|
24742
25025
|
},
|
|
@@ -24748,24 +25031,24 @@ var properties111 = {
|
|
|
24748
25031
|
}
|
|
24749
25032
|
}
|
|
24750
25033
|
};
|
|
24751
|
-
var
|
|
25034
|
+
var additionalProperties121 = false;
|
|
24752
25035
|
var reverse_transfer_group_schema_output_default2 = {
|
|
24753
|
-
$schema: $
|
|
24754
|
-
$id: $
|
|
24755
|
-
title:
|
|
24756
|
-
description:
|
|
24757
|
-
type:
|
|
24758
|
-
properties:
|
|
24759
|
-
additionalProperties:
|
|
25036
|
+
$schema: $schema174,
|
|
25037
|
+
$id: $id174,
|
|
25038
|
+
title: title169,
|
|
25039
|
+
description: description174,
|
|
25040
|
+
type: type150,
|
|
25041
|
+
properties: properties121,
|
|
25042
|
+
additionalProperties: additionalProperties121
|
|
24760
25043
|
};
|
|
24761
25044
|
|
|
24762
25045
|
// src/txs/reverse-transfer-group-many/reverse-transfer-group-many.schema.input.json
|
|
24763
|
-
var $
|
|
24764
|
-
var $
|
|
24765
|
-
var
|
|
24766
|
-
var
|
|
24767
|
-
var
|
|
24768
|
-
var
|
|
25046
|
+
var $schema175 = "http://json-schema.org/draft-07/schema";
|
|
25047
|
+
var $id175 = "ReverseTransferGroupManyTxInput";
|
|
25048
|
+
var title170 = "ReverseTransferGroupManyTxInput";
|
|
25049
|
+
var description175 = "Input for reverseTransferGroupMany";
|
|
25050
|
+
var type151 = "object";
|
|
25051
|
+
var properties122 = {
|
|
24769
25052
|
transfer_group: {
|
|
24770
25053
|
$ref: "/txs/find-transfer-group-many/find-transfer-group-many.schema.input.json#/definitions/find_transfer_group_many_filter"
|
|
24771
25054
|
},
|
|
@@ -24776,7 +25059,7 @@ var properties112 = {
|
|
|
24776
25059
|
$ref: "#/definitions/reverse_transfer_group_many_tx_options"
|
|
24777
25060
|
}
|
|
24778
25061
|
};
|
|
24779
|
-
var
|
|
25062
|
+
var definitions97 = {
|
|
24780
25063
|
reverse_transfer_group_many_modifications: {
|
|
24781
25064
|
description: "In case the transferGroup will be made then apply these modifications",
|
|
24782
25065
|
type: "object",
|
|
@@ -24826,26 +25109,26 @@ var definitions92 = {
|
|
|
24826
25109
|
}
|
|
24827
25110
|
};
|
|
24828
25111
|
var required71 = ["transfer_group"];
|
|
24829
|
-
var
|
|
25112
|
+
var additionalProperties122 = false;
|
|
24830
25113
|
var reverse_transfer_group_many_schema_input_default = {
|
|
24831
|
-
$schema: $
|
|
24832
|
-
$id: $
|
|
24833
|
-
title:
|
|
24834
|
-
description:
|
|
24835
|
-
type:
|
|
24836
|
-
properties:
|
|
24837
|
-
definitions:
|
|
25114
|
+
$schema: $schema175,
|
|
25115
|
+
$id: $id175,
|
|
25116
|
+
title: title170,
|
|
25117
|
+
description: description175,
|
|
25118
|
+
type: type151,
|
|
25119
|
+
properties: properties122,
|
|
25120
|
+
definitions: definitions97,
|
|
24838
25121
|
required: required71,
|
|
24839
|
-
additionalProperties:
|
|
25122
|
+
additionalProperties: additionalProperties122
|
|
24840
25123
|
};
|
|
24841
25124
|
|
|
24842
25125
|
// src/txs/reverse-transfer-group-many/reverse-transfer-group-many.schema.output.json
|
|
24843
|
-
var $
|
|
24844
|
-
var $
|
|
24845
|
-
var
|
|
24846
|
-
var
|
|
24847
|
-
var
|
|
24848
|
-
var
|
|
25126
|
+
var $schema176 = "http://json-schema.org/draft-07/schema";
|
|
25127
|
+
var $id176 = "ReverseTransferGroupManyTxOutput";
|
|
25128
|
+
var title171 = "ReverseTransferGroupManyTxOutput";
|
|
25129
|
+
var description176 = "Output of reverseTransferGroupMany";
|
|
25130
|
+
var type152 = "object";
|
|
25131
|
+
var properties123 = {
|
|
24849
25132
|
transfer_groups: {
|
|
24850
25133
|
description: "Reversed transfer groups",
|
|
24851
25134
|
type: "array",
|
|
@@ -24859,24 +25142,24 @@ var properties113 = {
|
|
|
24859
25142
|
}
|
|
24860
25143
|
}
|
|
24861
25144
|
};
|
|
24862
|
-
var
|
|
25145
|
+
var additionalProperties123 = false;
|
|
24863
25146
|
var reverse_transfer_group_many_schema_output_default = {
|
|
24864
|
-
$schema: $
|
|
24865
|
-
$id: $
|
|
24866
|
-
title:
|
|
24867
|
-
description:
|
|
24868
|
-
type:
|
|
24869
|
-
properties:
|
|
24870
|
-
additionalProperties:
|
|
25147
|
+
$schema: $schema176,
|
|
25148
|
+
$id: $id176,
|
|
25149
|
+
title: title171,
|
|
25150
|
+
description: description176,
|
|
25151
|
+
type: type152,
|
|
25152
|
+
properties: properties123,
|
|
25153
|
+
additionalProperties: additionalProperties123
|
|
24871
25154
|
};
|
|
24872
25155
|
|
|
24873
25156
|
// src/txs/reverse-transfer-many/reverse-transfer-many.schema.input.json
|
|
24874
|
-
var $
|
|
24875
|
-
var $
|
|
24876
|
-
var
|
|
24877
|
-
var
|
|
24878
|
-
var
|
|
24879
|
-
var
|
|
25157
|
+
var $schema177 = "http://json-schema.org/draft-07/schema";
|
|
25158
|
+
var $id177 = "ReverseTransferManyTxInput";
|
|
25159
|
+
var title172 = "ReverseTransferManyTxInput";
|
|
25160
|
+
var description177 = "Input for reverseTransferMany";
|
|
25161
|
+
var type153 = "object";
|
|
25162
|
+
var properties124 = {
|
|
24880
25163
|
transfer: {
|
|
24881
25164
|
$ref: "/txs/find-transfer-many/find-transfer-many.schema.input.json#/definitions/find_transfer_many_filter"
|
|
24882
25165
|
},
|
|
@@ -24887,7 +25170,7 @@ var properties114 = {
|
|
|
24887
25170
|
$ref: "#/definitions/reverse_transfer_many_tx_options"
|
|
24888
25171
|
}
|
|
24889
25172
|
};
|
|
24890
|
-
var
|
|
25173
|
+
var definitions98 = {
|
|
24891
25174
|
reverse_transfer_many_tx_options: {
|
|
24892
25175
|
allOf: [
|
|
24893
25176
|
{
|
|
@@ -24941,25 +25224,25 @@ var definitions93 = {
|
|
|
24941
25224
|
}
|
|
24942
25225
|
};
|
|
24943
25226
|
var required72 = ["transfer"];
|
|
24944
|
-
var
|
|
25227
|
+
var additionalProperties124 = false;
|
|
24945
25228
|
var reverse_transfer_many_schema_input_default = {
|
|
24946
|
-
$schema: $
|
|
24947
|
-
$id: $
|
|
24948
|
-
title:
|
|
24949
|
-
description:
|
|
24950
|
-
type:
|
|
24951
|
-
properties:
|
|
24952
|
-
definitions:
|
|
25229
|
+
$schema: $schema177,
|
|
25230
|
+
$id: $id177,
|
|
25231
|
+
title: title172,
|
|
25232
|
+
description: description177,
|
|
25233
|
+
type: type153,
|
|
25234
|
+
properties: properties124,
|
|
25235
|
+
definitions: definitions98,
|
|
24953
25236
|
required: required72,
|
|
24954
|
-
additionalProperties:
|
|
25237
|
+
additionalProperties: additionalProperties124
|
|
24955
25238
|
};
|
|
24956
25239
|
|
|
24957
25240
|
// src/txs/reverse-transfer-many/reverse-transfer-many.schema.output.json
|
|
24958
|
-
var $
|
|
24959
|
-
var $
|
|
24960
|
-
var
|
|
24961
|
-
var
|
|
24962
|
-
var
|
|
25241
|
+
var $schema178 = "http://json-schema.org/draft-07/schema";
|
|
25242
|
+
var $id178 = "ReverseTransferManyTxOutput";
|
|
25243
|
+
var title173 = "ReverseTransferManyTxOutput";
|
|
25244
|
+
var description178 = "Output of reverseTransferMany";
|
|
25245
|
+
var properties125 = {
|
|
24963
25246
|
transfers: {
|
|
24964
25247
|
description: "Created transfer array",
|
|
24965
25248
|
type: "array",
|
|
@@ -24968,23 +25251,23 @@ var properties115 = {
|
|
|
24968
25251
|
}
|
|
24969
25252
|
}
|
|
24970
25253
|
};
|
|
24971
|
-
var
|
|
25254
|
+
var additionalProperties125 = false;
|
|
24972
25255
|
var reverse_transfer_many_schema_output_default = {
|
|
24973
|
-
$schema: $
|
|
24974
|
-
$id: $
|
|
24975
|
-
title:
|
|
24976
|
-
description:
|
|
24977
|
-
properties:
|
|
24978
|
-
additionalProperties:
|
|
25256
|
+
$schema: $schema178,
|
|
25257
|
+
$id: $id178,
|
|
25258
|
+
title: title173,
|
|
25259
|
+
description: description178,
|
|
25260
|
+
properties: properties125,
|
|
25261
|
+
additionalProperties: additionalProperties125
|
|
24979
25262
|
};
|
|
24980
25263
|
|
|
24981
25264
|
// src/txs/set-flags/set-flags.schema.input.json
|
|
24982
|
-
var $
|
|
24983
|
-
var $
|
|
24984
|
-
var
|
|
24985
|
-
var
|
|
24986
|
-
var
|
|
24987
|
-
var
|
|
25265
|
+
var $schema179 = "http://json-schema.org/draft-07/schema";
|
|
25266
|
+
var $id179 = "SetFlagsTxInput";
|
|
25267
|
+
var title174 = "SetFlagsTxInput";
|
|
25268
|
+
var description179 = "Input for setFlags";
|
|
25269
|
+
var type154 = "object";
|
|
25270
|
+
var properties126 = {
|
|
24988
25271
|
flags: {
|
|
24989
25272
|
$ref: "/db/consts.schema.json#/definitions/Flags"
|
|
24990
25273
|
},
|
|
@@ -24992,7 +25275,7 @@ var properties116 = {
|
|
|
24992
25275
|
$ref: "#/definitions/set_flags_tx_options"
|
|
24993
25276
|
}
|
|
24994
25277
|
};
|
|
24995
|
-
var
|
|
25278
|
+
var definitions99 = {
|
|
24996
25279
|
set_flags_tx_options: {
|
|
24997
25280
|
allOf: [
|
|
24998
25281
|
{
|
|
@@ -25002,26 +25285,26 @@ var definitions94 = {
|
|
|
25002
25285
|
}
|
|
25003
25286
|
};
|
|
25004
25287
|
var required73 = ["flags"];
|
|
25005
|
-
var
|
|
25288
|
+
var additionalProperties126 = false;
|
|
25006
25289
|
var set_flags_schema_input_default2 = {
|
|
25007
|
-
$schema: $
|
|
25008
|
-
$id: $
|
|
25009
|
-
title:
|
|
25010
|
-
description:
|
|
25011
|
-
type:
|
|
25012
|
-
properties:
|
|
25013
|
-
definitions:
|
|
25290
|
+
$schema: $schema179,
|
|
25291
|
+
$id: $id179,
|
|
25292
|
+
title: title174,
|
|
25293
|
+
description: description179,
|
|
25294
|
+
type: type154,
|
|
25295
|
+
properties: properties126,
|
|
25296
|
+
definitions: definitions99,
|
|
25014
25297
|
required: required73,
|
|
25015
|
-
additionalProperties:
|
|
25298
|
+
additionalProperties: additionalProperties126
|
|
25016
25299
|
};
|
|
25017
25300
|
|
|
25018
25301
|
// src/txs/set-flags/set-flags.schema.output.json
|
|
25019
|
-
var $
|
|
25020
|
-
var $
|
|
25021
|
-
var
|
|
25022
|
-
var
|
|
25023
|
-
var
|
|
25024
|
-
var
|
|
25302
|
+
var $schema180 = "http://json-schema.org/draft-07/schema";
|
|
25303
|
+
var $id180 = "SetFlagsTxOutput";
|
|
25304
|
+
var title175 = "SetFlagsTxOutput";
|
|
25305
|
+
var description180 = "Output of setFlags";
|
|
25306
|
+
var type155 = "object";
|
|
25307
|
+
var properties127 = {
|
|
25025
25308
|
flags: {
|
|
25026
25309
|
$ref: "/db/consts.schema.json#/definitions/Flags"
|
|
25027
25310
|
},
|
|
@@ -25031,30 +25314,30 @@ var properties117 = {
|
|
|
25031
25314
|
}
|
|
25032
25315
|
};
|
|
25033
25316
|
var required74 = ["flags"];
|
|
25034
|
-
var
|
|
25317
|
+
var additionalProperties127 = false;
|
|
25035
25318
|
var set_flags_schema_output_default2 = {
|
|
25036
|
-
$schema: $
|
|
25037
|
-
$id: $
|
|
25038
|
-
title:
|
|
25039
|
-
description:
|
|
25040
|
-
type:
|
|
25041
|
-
properties:
|
|
25319
|
+
$schema: $schema180,
|
|
25320
|
+
$id: $id180,
|
|
25321
|
+
title: title175,
|
|
25322
|
+
description: description180,
|
|
25323
|
+
type: type155,
|
|
25324
|
+
properties: properties127,
|
|
25042
25325
|
required: required74,
|
|
25043
|
-
additionalProperties:
|
|
25326
|
+
additionalProperties: additionalProperties127
|
|
25044
25327
|
};
|
|
25045
25328
|
|
|
25046
25329
|
// src/txs/start-transaction/start-transaction.schema.input.json
|
|
25047
|
-
var $
|
|
25048
|
-
var $
|
|
25049
|
-
var
|
|
25050
|
-
var
|
|
25051
|
-
var
|
|
25052
|
-
var
|
|
25330
|
+
var $schema181 = "http://json-schema.org/draft-07/schema";
|
|
25331
|
+
var $id181 = "StartTransactionTxInput";
|
|
25332
|
+
var title176 = "StartTransactionTxInput";
|
|
25333
|
+
var description181 = "Input for startTransaction";
|
|
25334
|
+
var type156 = "object";
|
|
25335
|
+
var properties128 = {
|
|
25053
25336
|
options: {
|
|
25054
25337
|
$ref: "#/definitions/start_transaction_tx_options"
|
|
25055
25338
|
}
|
|
25056
25339
|
};
|
|
25057
|
-
var
|
|
25340
|
+
var definitions100 = {
|
|
25058
25341
|
start_transaction_tx_options: {
|
|
25059
25342
|
allOf: [
|
|
25060
25343
|
{
|
|
@@ -25063,45 +25346,45 @@ var definitions95 = {
|
|
|
25063
25346
|
]
|
|
25064
25347
|
}
|
|
25065
25348
|
};
|
|
25066
|
-
var
|
|
25349
|
+
var additionalProperties128 = false;
|
|
25067
25350
|
var start_transaction_schema_input_default = {
|
|
25068
|
-
$schema: $
|
|
25069
|
-
$id: $
|
|
25070
|
-
title:
|
|
25071
|
-
description:
|
|
25072
|
-
type:
|
|
25073
|
-
properties:
|
|
25074
|
-
definitions:
|
|
25075
|
-
additionalProperties:
|
|
25351
|
+
$schema: $schema181,
|
|
25352
|
+
$id: $id181,
|
|
25353
|
+
title: title176,
|
|
25354
|
+
description: description181,
|
|
25355
|
+
type: type156,
|
|
25356
|
+
properties: properties128,
|
|
25357
|
+
definitions: definitions100,
|
|
25358
|
+
additionalProperties: additionalProperties128
|
|
25076
25359
|
};
|
|
25077
25360
|
|
|
25078
25361
|
// src/txs/start-transaction/start-transaction.schema.output.json
|
|
25079
|
-
var $
|
|
25080
|
-
var $
|
|
25081
|
-
var
|
|
25082
|
-
var
|
|
25083
|
-
var
|
|
25084
|
-
var
|
|
25362
|
+
var $schema182 = "http://json-schema.org/draft-07/schema";
|
|
25363
|
+
var $id182 = "StartTransactionTxOutput";
|
|
25364
|
+
var title177 = "StartTransactionTxOutput";
|
|
25365
|
+
var description182 = "Output of startTransaction";
|
|
25366
|
+
var type157 = "object";
|
|
25367
|
+
var properties129 = {
|
|
25085
25368
|
transaction_id: {
|
|
25086
25369
|
type: "string"
|
|
25087
25370
|
}
|
|
25088
25371
|
};
|
|
25089
|
-
var
|
|
25372
|
+
var additionalProperties129 = false;
|
|
25090
25373
|
var start_transaction_schema_output_default = {
|
|
25091
|
-
$schema: $
|
|
25092
|
-
$id: $
|
|
25093
|
-
title:
|
|
25094
|
-
description:
|
|
25095
|
-
type:
|
|
25096
|
-
properties:
|
|
25097
|
-
additionalProperties:
|
|
25374
|
+
$schema: $schema182,
|
|
25375
|
+
$id: $id182,
|
|
25376
|
+
title: title177,
|
|
25377
|
+
description: description182,
|
|
25378
|
+
type: type157,
|
|
25379
|
+
properties: properties129,
|
|
25380
|
+
additionalProperties: additionalProperties129
|
|
25098
25381
|
};
|
|
25099
25382
|
|
|
25100
25383
|
// src/txs/tx-consts.schema.json
|
|
25101
|
-
var $
|
|
25102
|
-
var $
|
|
25103
|
-
var
|
|
25104
|
-
var
|
|
25384
|
+
var $schema183 = "http://json-schema.org/draft-07/schema";
|
|
25385
|
+
var $id183 = "TxConsts";
|
|
25386
|
+
var description183 = "Generics used by functions";
|
|
25387
|
+
var definitions101 = {
|
|
25105
25388
|
i_tx_general_options_without_tx: {
|
|
25106
25389
|
description: "Generic flags for input",
|
|
25107
25390
|
type: "object",
|
|
@@ -25479,19 +25762,19 @@ var definitions96 = {
|
|
|
25479
25762
|
}
|
|
25480
25763
|
};
|
|
25481
25764
|
var tx_consts_schema_default = {
|
|
25482
|
-
$schema: $
|
|
25483
|
-
$id: $
|
|
25484
|
-
description:
|
|
25485
|
-
definitions:
|
|
25765
|
+
$schema: $schema183,
|
|
25766
|
+
$id: $id183,
|
|
25767
|
+
description: description183,
|
|
25768
|
+
definitions: definitions101
|
|
25486
25769
|
};
|
|
25487
25770
|
|
|
25488
25771
|
// src/txs/update-token/update-token.schema.input.json
|
|
25489
|
-
var $
|
|
25490
|
-
var $
|
|
25491
|
-
var
|
|
25492
|
-
var
|
|
25493
|
-
var
|
|
25494
|
-
var
|
|
25772
|
+
var $schema184 = "http://json-schema.org/draft-07/schema";
|
|
25773
|
+
var $id184 = "UpdateTokenTxInput";
|
|
25774
|
+
var title178 = "UpdateTokenTxInput";
|
|
25775
|
+
var description184 = "Input for updateToken";
|
|
25776
|
+
var type158 = "object";
|
|
25777
|
+
var properties130 = {
|
|
25495
25778
|
token: {
|
|
25496
25779
|
$ref: "/txs/get-token/get-token.schema.input.json#/definitions/unique_token_filter"
|
|
25497
25780
|
},
|
|
@@ -25502,7 +25785,7 @@ var properties120 = {
|
|
|
25502
25785
|
$ref: "#/definitions/update_token_tx_options"
|
|
25503
25786
|
}
|
|
25504
25787
|
};
|
|
25505
|
-
var
|
|
25788
|
+
var definitions102 = {
|
|
25506
25789
|
update_token_tx_options: {
|
|
25507
25790
|
allOf: [
|
|
25508
25791
|
{
|
|
@@ -25544,26 +25827,26 @@ var definitions97 = {
|
|
|
25544
25827
|
}
|
|
25545
25828
|
};
|
|
25546
25829
|
var required75 = ["token"];
|
|
25547
|
-
var
|
|
25830
|
+
var additionalProperties130 = false;
|
|
25548
25831
|
var update_token_schema_input_default2 = {
|
|
25549
|
-
$schema: $
|
|
25550
|
-
$id: $
|
|
25551
|
-
title:
|
|
25552
|
-
description:
|
|
25553
|
-
type:
|
|
25554
|
-
properties:
|
|
25555
|
-
definitions:
|
|
25832
|
+
$schema: $schema184,
|
|
25833
|
+
$id: $id184,
|
|
25834
|
+
title: title178,
|
|
25835
|
+
description: description184,
|
|
25836
|
+
type: type158,
|
|
25837
|
+
properties: properties130,
|
|
25838
|
+
definitions: definitions102,
|
|
25556
25839
|
required: required75,
|
|
25557
|
-
additionalProperties:
|
|
25840
|
+
additionalProperties: additionalProperties130
|
|
25558
25841
|
};
|
|
25559
25842
|
|
|
25560
25843
|
// src/txs/update-token/update-token.schema.output.json
|
|
25561
|
-
var $
|
|
25562
|
-
var $
|
|
25563
|
-
var
|
|
25564
|
-
var
|
|
25565
|
-
var
|
|
25566
|
-
var
|
|
25844
|
+
var $schema185 = "http://json-schema.org/draft-07/schema";
|
|
25845
|
+
var $id185 = "UpdateTokenTxOutput";
|
|
25846
|
+
var title179 = "UpdateTokenTxOutput";
|
|
25847
|
+
var description185 = "Output of updateToken";
|
|
25848
|
+
var type159 = "object";
|
|
25849
|
+
var properties131 = {
|
|
25567
25850
|
token: {
|
|
25568
25851
|
description: "Token object",
|
|
25569
25852
|
$ref: "/db/token/token.schema.json"
|
|
@@ -25573,24 +25856,24 @@ var properties121 = {
|
|
|
25573
25856
|
type: "boolean"
|
|
25574
25857
|
}
|
|
25575
25858
|
};
|
|
25576
|
-
var
|
|
25859
|
+
var additionalProperties131 = false;
|
|
25577
25860
|
var update_token_schema_output_default2 = {
|
|
25578
|
-
$schema: $
|
|
25579
|
-
$id: $
|
|
25580
|
-
title:
|
|
25581
|
-
description:
|
|
25582
|
-
type:
|
|
25583
|
-
properties:
|
|
25584
|
-
additionalProperties:
|
|
25861
|
+
$schema: $schema185,
|
|
25862
|
+
$id: $id185,
|
|
25863
|
+
title: title179,
|
|
25864
|
+
description: description185,
|
|
25865
|
+
type: type159,
|
|
25866
|
+
properties: properties131,
|
|
25867
|
+
additionalProperties: additionalProperties131
|
|
25585
25868
|
};
|
|
25586
25869
|
|
|
25587
25870
|
// src/txs/update-transfer/update-transfer.schema.input.json
|
|
25588
|
-
var $
|
|
25589
|
-
var $
|
|
25590
|
-
var
|
|
25591
|
-
var
|
|
25592
|
-
var
|
|
25593
|
-
var
|
|
25871
|
+
var $schema186 = "http://json-schema.org/draft-07/schema";
|
|
25872
|
+
var $id186 = "UpdateTransferTxInput";
|
|
25873
|
+
var title180 = "UpdateTransferTxInput";
|
|
25874
|
+
var description186 = "Input for updateTransfer";
|
|
25875
|
+
var type160 = "object";
|
|
25876
|
+
var properties132 = {
|
|
25594
25877
|
transfer: {
|
|
25595
25878
|
$ref: "/txs/get-transfer/get-transfer.schema.input.json#/definitions/unique_transfer_filter"
|
|
25596
25879
|
},
|
|
@@ -25601,7 +25884,7 @@ var properties122 = {
|
|
|
25601
25884
|
$ref: "#/definitions/update_transfer_tx_options"
|
|
25602
25885
|
}
|
|
25603
25886
|
};
|
|
25604
|
-
var
|
|
25887
|
+
var definitions103 = {
|
|
25605
25888
|
update_transfer_tx_options: {
|
|
25606
25889
|
allOf: [
|
|
25607
25890
|
{
|
|
@@ -25667,26 +25950,26 @@ var definitions98 = {
|
|
|
25667
25950
|
}
|
|
25668
25951
|
};
|
|
25669
25952
|
var required76 = ["transfer"];
|
|
25670
|
-
var
|
|
25953
|
+
var additionalProperties132 = false;
|
|
25671
25954
|
var update_transfer_schema_input_default2 = {
|
|
25672
|
-
$schema: $
|
|
25673
|
-
$id: $
|
|
25674
|
-
title:
|
|
25675
|
-
description:
|
|
25676
|
-
type:
|
|
25677
|
-
properties:
|
|
25678
|
-
definitions:
|
|
25955
|
+
$schema: $schema186,
|
|
25956
|
+
$id: $id186,
|
|
25957
|
+
title: title180,
|
|
25958
|
+
description: description186,
|
|
25959
|
+
type: type160,
|
|
25960
|
+
properties: properties132,
|
|
25961
|
+
definitions: definitions103,
|
|
25679
25962
|
required: required76,
|
|
25680
|
-
additionalProperties:
|
|
25963
|
+
additionalProperties: additionalProperties132
|
|
25681
25964
|
};
|
|
25682
25965
|
|
|
25683
25966
|
// src/txs/update-transfer/update-transfer.schema.output.json
|
|
25684
|
-
var $
|
|
25685
|
-
var $
|
|
25686
|
-
var
|
|
25687
|
-
var
|
|
25688
|
-
var
|
|
25689
|
-
var
|
|
25967
|
+
var $schema187 = "http://json-schema.org/draft-07/schema";
|
|
25968
|
+
var $id187 = "UpdateTransferTxOutput";
|
|
25969
|
+
var title181 = "UpdateTransferTxOutput";
|
|
25970
|
+
var description187 = "Output of updateTransfer";
|
|
25971
|
+
var type161 = "object";
|
|
25972
|
+
var properties133 = {
|
|
25690
25973
|
transfer: {
|
|
25691
25974
|
description: "Updated transfer object",
|
|
25692
25975
|
$ref: "/txs/get-transfer/get-transfer.schema.output.json#/definitions/transfer"
|
|
@@ -25704,24 +25987,24 @@ var properties123 = {
|
|
|
25704
25987
|
$ref: "/txs/get-balance/get-balance.schema.output.json#/definitions/balance"
|
|
25705
25988
|
}
|
|
25706
25989
|
};
|
|
25707
|
-
var
|
|
25990
|
+
var additionalProperties133 = false;
|
|
25708
25991
|
var update_transfer_schema_output_default2 = {
|
|
25709
|
-
$schema: $
|
|
25710
|
-
$id: $
|
|
25711
|
-
title:
|
|
25712
|
-
description:
|
|
25713
|
-
type:
|
|
25714
|
-
properties:
|
|
25715
|
-
additionalProperties:
|
|
25992
|
+
$schema: $schema187,
|
|
25993
|
+
$id: $id187,
|
|
25994
|
+
title: title181,
|
|
25995
|
+
description: description187,
|
|
25996
|
+
type: type161,
|
|
25997
|
+
properties: properties133,
|
|
25998
|
+
additionalProperties: additionalProperties133
|
|
25716
25999
|
};
|
|
25717
26000
|
|
|
25718
26001
|
// src/txs/update-transfer-group/update-transfer-group.schema.input.json
|
|
25719
|
-
var $
|
|
25720
|
-
var $
|
|
25721
|
-
var
|
|
25722
|
-
var
|
|
25723
|
-
var
|
|
25724
|
-
var
|
|
26002
|
+
var $schema188 = "http://json-schema.org/draft-07/schema";
|
|
26003
|
+
var $id188 = "UpdateTransferGroupTxInput";
|
|
26004
|
+
var title182 = "UpdateTransferGroupTxInput";
|
|
26005
|
+
var description188 = "Input for updateTransferGroup";
|
|
26006
|
+
var type162 = "object";
|
|
26007
|
+
var properties134 = {
|
|
25725
26008
|
transfer_group: {
|
|
25726
26009
|
$ref: "/txs/get-transfer-group/get-transfer-group.schema.input.json#/definitions/unique_transfer_group_filter"
|
|
25727
26010
|
},
|
|
@@ -25732,7 +26015,7 @@ var properties124 = {
|
|
|
25732
26015
|
$ref: "#/definitions/update_transfer_group_tx_options"
|
|
25733
26016
|
}
|
|
25734
26017
|
};
|
|
25735
|
-
var
|
|
26018
|
+
var definitions104 = {
|
|
25736
26019
|
update_transfer_group_tx_options: {
|
|
25737
26020
|
allOf: [
|
|
25738
26021
|
{
|
|
@@ -25823,26 +26106,26 @@ var definitions99 = {
|
|
|
25823
26106
|
}
|
|
25824
26107
|
};
|
|
25825
26108
|
var required77 = ["transfer_group"];
|
|
25826
|
-
var
|
|
26109
|
+
var additionalProperties134 = false;
|
|
25827
26110
|
var update_transfer_group_schema_input_default2 = {
|
|
25828
|
-
$schema: $
|
|
25829
|
-
$id: $
|
|
25830
|
-
title:
|
|
25831
|
-
description:
|
|
25832
|
-
type:
|
|
25833
|
-
properties:
|
|
25834
|
-
definitions:
|
|
26111
|
+
$schema: $schema188,
|
|
26112
|
+
$id: $id188,
|
|
26113
|
+
title: title182,
|
|
26114
|
+
description: description188,
|
|
26115
|
+
type: type162,
|
|
26116
|
+
properties: properties134,
|
|
26117
|
+
definitions: definitions104,
|
|
25835
26118
|
required: required77,
|
|
25836
|
-
additionalProperties:
|
|
26119
|
+
additionalProperties: additionalProperties134
|
|
25837
26120
|
};
|
|
25838
26121
|
|
|
25839
26122
|
// src/txs/update-transfer-group/update-transfer-group.schema.output.json
|
|
25840
|
-
var $
|
|
25841
|
-
var $
|
|
25842
|
-
var
|
|
25843
|
-
var
|
|
25844
|
-
var
|
|
25845
|
-
var
|
|
26123
|
+
var $schema189 = "http://json-schema.org/draft-07/schema";
|
|
26124
|
+
var $id189 = "UpdateTransferGroupTxOutput";
|
|
26125
|
+
var title183 = "UpdateTransferGroupTxOutput";
|
|
26126
|
+
var description189 = "Output of updateTransferGroup";
|
|
26127
|
+
var type163 = "object";
|
|
26128
|
+
var properties135 = {
|
|
25846
26129
|
transfer_group: {
|
|
25847
26130
|
$ref: "/db/transfer-group/transfer-group.schema.json"
|
|
25848
26131
|
},
|
|
@@ -25858,24 +26141,24 @@ var properties125 = {
|
|
|
25858
26141
|
}
|
|
25859
26142
|
}
|
|
25860
26143
|
};
|
|
25861
|
-
var
|
|
26144
|
+
var additionalProperties135 = false;
|
|
25862
26145
|
var update_transfer_group_schema_output_default2 = {
|
|
25863
|
-
$schema: $
|
|
25864
|
-
$id: $
|
|
25865
|
-
title:
|
|
25866
|
-
description:
|
|
25867
|
-
type:
|
|
25868
|
-
properties:
|
|
25869
|
-
additionalProperties:
|
|
26146
|
+
$schema: $schema189,
|
|
26147
|
+
$id: $id189,
|
|
26148
|
+
title: title183,
|
|
26149
|
+
description: description189,
|
|
26150
|
+
type: type163,
|
|
26151
|
+
properties: properties135,
|
|
26152
|
+
additionalProperties: additionalProperties135
|
|
25870
26153
|
};
|
|
25871
26154
|
|
|
25872
26155
|
// src/txs/update-transfer-group-many/update-transfer-group-many.schema.input.json
|
|
25873
|
-
var $
|
|
25874
|
-
var $
|
|
25875
|
-
var
|
|
25876
|
-
var
|
|
25877
|
-
var
|
|
25878
|
-
var
|
|
26156
|
+
var $schema190 = "http://json-schema.org/draft-07/schema";
|
|
26157
|
+
var $id190 = "UpdateTransferGroupManyTxInput";
|
|
26158
|
+
var title184 = "UpdateTransferGroupManyTxInput";
|
|
26159
|
+
var description190 = "Input for updateTransferGroupMany";
|
|
26160
|
+
var type164 = "object";
|
|
26161
|
+
var properties136 = {
|
|
25879
26162
|
transfer_group: {
|
|
25880
26163
|
$ref: "/txs/find-transfer-group-many/find-transfer-group-many.schema.input.json#/definitions/find_transfer_group_many_filter"
|
|
25881
26164
|
},
|
|
@@ -25886,7 +26169,7 @@ var properties126 = {
|
|
|
25886
26169
|
$ref: "/txs/update-transfer-group/update-transfer-group.schema.input.json#/definitions/update_transfer_group_tx_options"
|
|
25887
26170
|
}
|
|
25888
26171
|
};
|
|
25889
|
-
var
|
|
26172
|
+
var definitions105 = {
|
|
25890
26173
|
update_transfer_group_many_tx_options: {
|
|
25891
26174
|
allOf: [
|
|
25892
26175
|
{
|
|
@@ -25905,26 +26188,26 @@ var definitions100 = {
|
|
|
25905
26188
|
}
|
|
25906
26189
|
};
|
|
25907
26190
|
var required78 = ["transfer_group"];
|
|
25908
|
-
var
|
|
26191
|
+
var additionalProperties136 = false;
|
|
25909
26192
|
var update_transfer_group_many_schema_input_default = {
|
|
25910
|
-
$schema: $
|
|
25911
|
-
$id: $
|
|
25912
|
-
title:
|
|
25913
|
-
description:
|
|
25914
|
-
type:
|
|
25915
|
-
properties:
|
|
25916
|
-
definitions:
|
|
26193
|
+
$schema: $schema190,
|
|
26194
|
+
$id: $id190,
|
|
26195
|
+
title: title184,
|
|
26196
|
+
description: description190,
|
|
26197
|
+
type: type164,
|
|
26198
|
+
properties: properties136,
|
|
26199
|
+
definitions: definitions105,
|
|
25917
26200
|
required: required78,
|
|
25918
|
-
additionalProperties:
|
|
26201
|
+
additionalProperties: additionalProperties136
|
|
25919
26202
|
};
|
|
25920
26203
|
|
|
25921
26204
|
// src/txs/update-transfer-group-many/update-transfer-group-many.schema.output.json
|
|
25922
|
-
var $
|
|
25923
|
-
var $
|
|
25924
|
-
var
|
|
25925
|
-
var
|
|
25926
|
-
var
|
|
25927
|
-
var
|
|
26205
|
+
var $schema191 = "http://json-schema.org/draft-07/schema";
|
|
26206
|
+
var $id191 = "UpdateTransferGroupManyTxOutput";
|
|
26207
|
+
var title185 = "UpdateTransferGroupManyTxOutput";
|
|
26208
|
+
var description191 = "Output of updateTransferGroupMany";
|
|
26209
|
+
var type165 = "object";
|
|
26210
|
+
var properties137 = {
|
|
25928
26211
|
transfer_groups: {
|
|
25929
26212
|
description: "Updated transfer groups",
|
|
25930
26213
|
type: "array",
|
|
@@ -25943,25 +26226,25 @@ var properties127 = {
|
|
|
25943
26226
|
}
|
|
25944
26227
|
};
|
|
25945
26228
|
var required79 = ["transfer_groups"];
|
|
25946
|
-
var
|
|
26229
|
+
var additionalProperties137 = false;
|
|
25947
26230
|
var update_transfer_group_many_schema_output_default = {
|
|
25948
|
-
$schema: $
|
|
25949
|
-
$id: $
|
|
25950
|
-
title:
|
|
25951
|
-
description:
|
|
25952
|
-
type:
|
|
25953
|
-
properties:
|
|
26231
|
+
$schema: $schema191,
|
|
26232
|
+
$id: $id191,
|
|
26233
|
+
title: title185,
|
|
26234
|
+
description: description191,
|
|
26235
|
+
type: type165,
|
|
26236
|
+
properties: properties137,
|
|
25954
26237
|
required: required79,
|
|
25955
|
-
additionalProperties:
|
|
26238
|
+
additionalProperties: additionalProperties137
|
|
25956
26239
|
};
|
|
25957
26240
|
|
|
25958
26241
|
// src/txs/update-transfer-many/update-transfer-many.schema.input.json
|
|
25959
|
-
var $
|
|
25960
|
-
var $
|
|
25961
|
-
var
|
|
25962
|
-
var
|
|
25963
|
-
var
|
|
25964
|
-
var
|
|
26242
|
+
var $schema192 = "http://json-schema.org/draft-07/schema";
|
|
26243
|
+
var $id192 = "UpdateTransferManyTxInput";
|
|
26244
|
+
var title186 = "UpdateTransferManyTxInput";
|
|
26245
|
+
var description192 = "Input for updateTransferMany";
|
|
26246
|
+
var type166 = "object";
|
|
26247
|
+
var properties138 = {
|
|
25965
26248
|
transfer: {
|
|
25966
26249
|
$ref: "/txs/find-transfer-many/find-transfer-many.schema.input.json#/definitions/find_transfer_many_filter"
|
|
25967
26250
|
},
|
|
@@ -25972,7 +26255,7 @@ var properties128 = {
|
|
|
25972
26255
|
$ref: "#/definitions/update_transfer_many_tx_options"
|
|
25973
26256
|
}
|
|
25974
26257
|
};
|
|
25975
|
-
var
|
|
26258
|
+
var definitions106 = {
|
|
25976
26259
|
update_transfer_many_tx_options: {
|
|
25977
26260
|
allOf: [
|
|
25978
26261
|
{
|
|
@@ -25997,26 +26280,26 @@ var definitions101 = {
|
|
|
25997
26280
|
}
|
|
25998
26281
|
};
|
|
25999
26282
|
var required80 = ["transfer", "update"];
|
|
26000
|
-
var
|
|
26283
|
+
var additionalProperties138 = false;
|
|
26001
26284
|
var update_transfer_many_schema_input_default = {
|
|
26002
|
-
$schema: $
|
|
26003
|
-
$id: $
|
|
26004
|
-
title:
|
|
26005
|
-
description:
|
|
26006
|
-
type:
|
|
26007
|
-
properties:
|
|
26008
|
-
definitions:
|
|
26285
|
+
$schema: $schema192,
|
|
26286
|
+
$id: $id192,
|
|
26287
|
+
title: title186,
|
|
26288
|
+
description: description192,
|
|
26289
|
+
type: type166,
|
|
26290
|
+
properties: properties138,
|
|
26291
|
+
definitions: definitions106,
|
|
26009
26292
|
required: required80,
|
|
26010
|
-
additionalProperties:
|
|
26293
|
+
additionalProperties: additionalProperties138
|
|
26011
26294
|
};
|
|
26012
26295
|
|
|
26013
26296
|
// src/txs/update-transfer-many/update-transfer-many.schema.output.json
|
|
26014
|
-
var $
|
|
26015
|
-
var $
|
|
26016
|
-
var
|
|
26017
|
-
var
|
|
26018
|
-
var
|
|
26019
|
-
var
|
|
26297
|
+
var $schema193 = "http://json-schema.org/draft-07/schema";
|
|
26298
|
+
var $id193 = "UpdateTransferManyTxOutput";
|
|
26299
|
+
var title187 = "UpdateTransferManyTxOutput";
|
|
26300
|
+
var description193 = "Output of updateTransferMany";
|
|
26301
|
+
var type167 = "object";
|
|
26302
|
+
var properties139 = {
|
|
26020
26303
|
transfers: {
|
|
26021
26304
|
description: "Updated transfers array",
|
|
26022
26305
|
type: "array",
|
|
@@ -26029,24 +26312,24 @@ var properties129 = {
|
|
|
26029
26312
|
type: "boolean"
|
|
26030
26313
|
}
|
|
26031
26314
|
};
|
|
26032
|
-
var
|
|
26315
|
+
var additionalProperties139 = false;
|
|
26033
26316
|
var update_transfer_many_schema_output_default = {
|
|
26034
|
-
$schema: $
|
|
26035
|
-
$id: $
|
|
26036
|
-
title:
|
|
26037
|
-
description:
|
|
26038
|
-
type:
|
|
26039
|
-
properties:
|
|
26040
|
-
additionalProperties:
|
|
26317
|
+
$schema: $schema193,
|
|
26318
|
+
$id: $id193,
|
|
26319
|
+
title: title187,
|
|
26320
|
+
description: description193,
|
|
26321
|
+
type: type167,
|
|
26322
|
+
properties: properties139,
|
|
26323
|
+
additionalProperties: additionalProperties139
|
|
26041
26324
|
};
|
|
26042
26325
|
|
|
26043
26326
|
// src/txs/update-wallet/update-wallet.schema.input.json
|
|
26044
|
-
var $
|
|
26045
|
-
var $
|
|
26046
|
-
var
|
|
26047
|
-
var
|
|
26048
|
-
var
|
|
26049
|
-
var
|
|
26327
|
+
var $schema194 = "http://json-schema.org/draft-07/schema";
|
|
26328
|
+
var $id194 = "UpdateWalletTxInput";
|
|
26329
|
+
var title188 = "UpdateWalletTxInput";
|
|
26330
|
+
var description194 = "Input for updateWallet";
|
|
26331
|
+
var type168 = "object";
|
|
26332
|
+
var properties140 = {
|
|
26050
26333
|
wallet: {
|
|
26051
26334
|
$ref: "/txs/get-wallet/get-wallet.schema.input.json#/definitions/unique_wallet_filter"
|
|
26052
26335
|
},
|
|
@@ -26057,7 +26340,7 @@ var properties130 = {
|
|
|
26057
26340
|
$ref: "#/definitions/update_wallet_tx_options"
|
|
26058
26341
|
}
|
|
26059
26342
|
};
|
|
26060
|
-
var
|
|
26343
|
+
var definitions107 = {
|
|
26061
26344
|
update_wallet_tx_options: {
|
|
26062
26345
|
allOf: [
|
|
26063
26346
|
{
|
|
@@ -26098,26 +26381,26 @@ var definitions102 = {
|
|
|
26098
26381
|
}
|
|
26099
26382
|
};
|
|
26100
26383
|
var required81 = ["wallet"];
|
|
26101
|
-
var
|
|
26384
|
+
var additionalProperties140 = false;
|
|
26102
26385
|
var update_wallet_schema_input_default2 = {
|
|
26103
|
-
$schema: $
|
|
26104
|
-
$id: $
|
|
26105
|
-
title:
|
|
26106
|
-
description:
|
|
26107
|
-
type:
|
|
26108
|
-
properties:
|
|
26109
|
-
definitions:
|
|
26386
|
+
$schema: $schema194,
|
|
26387
|
+
$id: $id194,
|
|
26388
|
+
title: title188,
|
|
26389
|
+
description: description194,
|
|
26390
|
+
type: type168,
|
|
26391
|
+
properties: properties140,
|
|
26392
|
+
definitions: definitions107,
|
|
26110
26393
|
required: required81,
|
|
26111
|
-
additionalProperties:
|
|
26394
|
+
additionalProperties: additionalProperties140
|
|
26112
26395
|
};
|
|
26113
26396
|
|
|
26114
26397
|
// src/txs/update-wallet/update-wallet.schema.output.json
|
|
26115
|
-
var $
|
|
26116
|
-
var $
|
|
26117
|
-
var
|
|
26118
|
-
var
|
|
26119
|
-
var
|
|
26120
|
-
var
|
|
26398
|
+
var $schema195 = "http://json-schema.org/draft-07/schema";
|
|
26399
|
+
var $id195 = "UpdateWalletTxOutput";
|
|
26400
|
+
var title189 = "UpdateWalletTxOutput";
|
|
26401
|
+
var description195 = "Output of updateWallet";
|
|
26402
|
+
var type169 = "object";
|
|
26403
|
+
var properties141 = {
|
|
26121
26404
|
wallet: {
|
|
26122
26405
|
description: "Wallet object",
|
|
26123
26406
|
anyOf: [
|
|
@@ -26134,15 +26417,15 @@ var properties131 = {
|
|
|
26134
26417
|
type: "boolean"
|
|
26135
26418
|
}
|
|
26136
26419
|
};
|
|
26137
|
-
var
|
|
26420
|
+
var additionalProperties141 = false;
|
|
26138
26421
|
var update_wallet_schema_output_default2 = {
|
|
26139
|
-
$schema: $
|
|
26140
|
-
$id: $
|
|
26141
|
-
title:
|
|
26142
|
-
description:
|
|
26143
|
-
type:
|
|
26144
|
-
properties:
|
|
26145
|
-
additionalProperties:
|
|
26422
|
+
$schema: $schema195,
|
|
26423
|
+
$id: $id195,
|
|
26424
|
+
title: title189,
|
|
26425
|
+
description: description195,
|
|
26426
|
+
type: type169,
|
|
26427
|
+
properties: properties141,
|
|
26428
|
+
additionalProperties: additionalProperties141
|
|
26146
26429
|
};
|
|
26147
26430
|
|
|
26148
26431
|
// src/lib/validator.ts
|
|
@@ -26444,6 +26727,10 @@ ajv.addSchema(fixSelfRefs(create_contract_schema_input_default2, "/txs/create-co
|
|
|
26444
26727
|
Schemas.CreateContractTxInput = create_contract_schema_input_default2;
|
|
26445
26728
|
ajv.addSchema(fixSelfRefs(create_contract_schema_output_default2, "/txs/create-contract/create-contract.schema.output.json"), "/txs/create-contract/create-contract.schema.output.json");
|
|
26446
26729
|
Schemas.CreateContractTxOutput = create_contract_schema_output_default2;
|
|
26730
|
+
ajv.addSchema(fixSelfRefs(create_database_backup_schema_input_default, "/txs/create-database-backup/create-database-backup.schema.input.json"), "/txs/create-database-backup/create-database-backup.schema.input.json");
|
|
26731
|
+
Schemas.CreateDatabaseBackupTxInput = create_database_backup_schema_input_default;
|
|
26732
|
+
ajv.addSchema(fixSelfRefs(create_database_backup_schema_output_default, "/txs/create-database-backup/create-database-backup.schema.output.json"), "/txs/create-database-backup/create-database-backup.schema.output.json");
|
|
26733
|
+
Schemas.CreateDatabaseBackupTxOutput = create_database_backup_schema_output_default;
|
|
26447
26734
|
ajv.addSchema(fixSelfRefs(create_deposit_schema_input_default2, "/txs/create-deposit/create-deposit.schema.input.json"), "/txs/create-deposit/create-deposit.schema.input.json");
|
|
26448
26735
|
Schemas.CreateDepositTxInput = create_deposit_schema_input_default2;
|
|
26449
26736
|
ajv.addSchema(fixSelfRefs(create_deposit_schema_output_default2, "/txs/create-deposit/create-deposit.schema.output.json"), "/txs/create-deposit/create-deposit.schema.output.json");
|
|
@@ -26508,6 +26795,10 @@ ajv.addSchema(fixSelfRefs(get_balance_history_schema_input_default2, "/txs/get-b
|
|
|
26508
26795
|
Schemas.GetBalanceHistoryTxInput = get_balance_history_schema_input_default2;
|
|
26509
26796
|
ajv.addSchema(fixSelfRefs(get_balance_history_schema_output_default2, "/txs/get-balance-history/get-balance-history.schema.output.json"), "/txs/get-balance-history/get-balance-history.schema.output.json");
|
|
26510
26797
|
Schemas.GetBalanceHistoryTxOutput = get_balance_history_schema_output_default2;
|
|
26798
|
+
ajv.addSchema(fixSelfRefs(get_database_backup_progress_schema_input_default, "/txs/get-database-backup-progress/get-database-backup-progress.schema.input.json"), "/txs/get-database-backup-progress/get-database-backup-progress.schema.input.json");
|
|
26799
|
+
Schemas.GetDatabaseBackupProgressTxInput = get_database_backup_progress_schema_input_default;
|
|
26800
|
+
ajv.addSchema(fixSelfRefs(get_database_backup_progress_schema_output_default, "/txs/get-database-backup-progress/get-database-backup-progress.schema.output.json"), "/txs/get-database-backup-progress/get-database-backup-progress.schema.output.json");
|
|
26801
|
+
Schemas.GetDatabaseBackupProgressTxOutput = get_database_backup_progress_schema_output_default;
|
|
26511
26802
|
ajv.addSchema(fixSelfRefs(get_flags_schema_input_default2, "/txs/get-flags/get-flags.schema.input.json"), "/txs/get-flags/get-flags.schema.input.json");
|
|
26512
26803
|
Schemas.GetFlagsTxInput = get_flags_schema_input_default2;
|
|
26513
26804
|
ajv.addSchema(fixSelfRefs(get_flags_schema_output_default2, "/txs/get-flags/get-flags.schema.output.json"), "/txs/get-flags/get-flags.schema.output.json");
|
|
@@ -26550,6 +26841,18 @@ ajv.addSchema(ImportActionsTxStreamChunk, "/txs/import-actions/import-actions.sc
|
|
|
26550
26841
|
Schemas.ImportActionsTxStreamChunk = ImportActionsTxStreamChunk;
|
|
26551
26842
|
ajv.addSchema(fixSelfRefs(import_actions_schema_output_default, "/txs/import-actions/import-actions.schema.output.json"), "/txs/import-actions/import-actions.schema.output.json");
|
|
26552
26843
|
Schemas.ImportActionsTxOutput = import_actions_schema_output_default;
|
|
26844
|
+
ajv.addSchema(fixSelfRefs(import_database_backup_schema_input_default, "/txs/import-database-backup/import-database-backup.schema.input.json"), "/txs/import-database-backup/import-database-backup.schema.input.json");
|
|
26845
|
+
Schemas.ImportDatabaseBackupTxInput = import_database_backup_schema_input_default;
|
|
26846
|
+
ajv.addSchema(fixSelfRefs(import_database_backup_schema_output_default, "/txs/import-database-backup/import-database-backup.schema.output.json"), "/txs/import-database-backup/import-database-backup.schema.output.json");
|
|
26847
|
+
Schemas.ImportDatabaseBackupTxOutput = import_database_backup_schema_output_default;
|
|
26848
|
+
ajv.addSchema(fixSelfRefs(import_database_progress_schema_input_default, "/txs/import-database-progress/import-database-progress.schema.input.json"), "/txs/import-database-progress/import-database-progress.schema.input.json");
|
|
26849
|
+
Schemas.ImportDatabaseProgressTxInput = import_database_progress_schema_input_default;
|
|
26850
|
+
ajv.addSchema(fixSelfRefs(import_database_progress_schema_output_default, "/txs/import-database-progress/import-database-progress.schema.output.json"), "/txs/import-database-progress/import-database-progress.schema.output.json");
|
|
26851
|
+
Schemas.ImportDatabaseProgressTxOutput = import_database_progress_schema_output_default;
|
|
26852
|
+
ajv.addSchema(fixSelfRefs(list_database_backups_schema_input_default, "/txs/list-database-backups/list-database-backups.schema.input.json"), "/txs/list-database-backups/list-database-backups.schema.input.json");
|
|
26853
|
+
Schemas.ListDatabaseBackupsTxInput = list_database_backups_schema_input_default;
|
|
26854
|
+
ajv.addSchema(fixSelfRefs(list_database_backups_schema_output_default, "/txs/list-database-backups/list-database-backups.schema.output.json"), "/txs/list-database-backups/list-database-backups.schema.output.json");
|
|
26855
|
+
Schemas.ListDatabaseBackupsTxOutput = list_database_backups_schema_output_default;
|
|
26553
26856
|
ajv.addSchema(fixSelfRefs(query_schema_input_default, "/txs/query/query.schema.input.json"), "/txs/query/query.schema.input.json");
|
|
26554
26857
|
Schemas.QueryTxInput = query_schema_input_default;
|
|
26555
26858
|
ajv.addSchema(fixSelfRefs(query_schema_output_default, "/txs/query/query.schema.output.json"), "/txs/query/query.schema.output.json");
|
|
@@ -26720,6 +27023,8 @@ var SchemaNames;
|
|
|
26720
27023
|
SchemaNames2["CreateAccessTokenTxOutput"] = "CreateAccessTokenTxOutput";
|
|
26721
27024
|
SchemaNames2["CreateContractTxInput"] = "CreateContractTxInput";
|
|
26722
27025
|
SchemaNames2["CreateContractTxOutput"] = "CreateContractTxOutput";
|
|
27026
|
+
SchemaNames2["CreateDatabaseBackupTxInput"] = "CreateDatabaseBackupTxInput";
|
|
27027
|
+
SchemaNames2["CreateDatabaseBackupTxOutput"] = "CreateDatabaseBackupTxOutput";
|
|
26723
27028
|
SchemaNames2["CreateDepositTxInput"] = "CreateDepositTxInput";
|
|
26724
27029
|
SchemaNames2["CreateDepositTxOutput"] = "CreateDepositTxOutput";
|
|
26725
27030
|
SchemaNames2["CreateDistributionTxInput"] = "CreateDistributionTxInput";
|
|
@@ -26752,6 +27057,8 @@ var SchemaNames;
|
|
|
26752
27057
|
SchemaNames2["GetBalanceTxOutput"] = "GetBalanceTxOutput";
|
|
26753
27058
|
SchemaNames2["GetBalanceHistoryTxInput"] = "GetBalanceHistoryTxInput";
|
|
26754
27059
|
SchemaNames2["GetBalanceHistoryTxOutput"] = "GetBalanceHistoryTxOutput";
|
|
27060
|
+
SchemaNames2["GetDatabaseBackupProgressTxInput"] = "GetDatabaseBackupProgressTxInput";
|
|
27061
|
+
SchemaNames2["GetDatabaseBackupProgressTxOutput"] = "GetDatabaseBackupProgressTxOutput";
|
|
26755
27062
|
SchemaNames2["GetFlagsTxInput"] = "GetFlagsTxInput";
|
|
26756
27063
|
SchemaNames2["GetFlagsTxOutput"] = "GetFlagsTxOutput";
|
|
26757
27064
|
SchemaNames2["GetStatisticsTxInput"] = "GetStatisticsTxInput";
|
|
@@ -26772,6 +27079,12 @@ var SchemaNames;
|
|
|
26772
27079
|
SchemaNames2["ImportActionsTxOptions"] = "ImportActionsTxOptions";
|
|
26773
27080
|
SchemaNames2["ImportActionsTxStreamChunk"] = "ImportActionsTxStreamChunk";
|
|
26774
27081
|
SchemaNames2["ImportActionsTxOutput"] = "ImportActionsTxOutput";
|
|
27082
|
+
SchemaNames2["ImportDatabaseBackupTxInput"] = "ImportDatabaseBackupTxInput";
|
|
27083
|
+
SchemaNames2["ImportDatabaseBackupTxOutput"] = "ImportDatabaseBackupTxOutput";
|
|
27084
|
+
SchemaNames2["ImportDatabaseProgressTxInput"] = "ImportDatabaseProgressTxInput";
|
|
27085
|
+
SchemaNames2["ImportDatabaseProgressTxOutput"] = "ImportDatabaseProgressTxOutput";
|
|
27086
|
+
SchemaNames2["ListDatabaseBackupsTxInput"] = "ListDatabaseBackupsTxInput";
|
|
27087
|
+
SchemaNames2["ListDatabaseBackupsTxOutput"] = "ListDatabaseBackupsTxOutput";
|
|
26775
27088
|
SchemaNames2["QueryTxInput"] = "QueryTxInput";
|
|
26776
27089
|
SchemaNames2["QueryTxOutput"] = "QueryTxOutput";
|
|
26777
27090
|
SchemaNames2["QueryLogsTxInput"] = "QueryLogsTxInput";
|
|
@@ -26869,6 +27182,7 @@ var aggregateTransferManyValidator = getValidator(SchemaNames.AggregateTransferM
|
|
|
26869
27182
|
var authenticationCheckValidator = getValidator(SchemaNames.AuthenticationCheckTxInput);
|
|
26870
27183
|
var createAccessTokenValidator = getValidator(SchemaNames.CreateAccessTokenTxInput);
|
|
26871
27184
|
var createContractValidator = getValidator(SchemaNames.CreateContractTxInput);
|
|
27185
|
+
var createDatabaseBackupValidator = getValidator(SchemaNames.CreateDatabaseBackupTxInput);
|
|
26872
27186
|
var createDepositValidator = getValidator(SchemaNames.CreateDepositTxInput);
|
|
26873
27187
|
var createDistributionValidator = getValidator(SchemaNames.CreateDistributionTxInput);
|
|
26874
27188
|
var createTokenValidator = getValidator(SchemaNames.CreateTokenTxInput);
|
|
@@ -26885,6 +27199,7 @@ var findWalletManyValidator = getValidator(SchemaNames.FindWalletManyTxInput);
|
|
|
26885
27199
|
var finishTransactionValidator = getValidator(SchemaNames.FinishTransactionTxInput);
|
|
26886
27200
|
var getBalanceValidator = getValidator(SchemaNames.GetBalanceTxInput);
|
|
26887
27201
|
var getBalanceHistoryValidator = getValidator(SchemaNames.GetBalanceHistoryTxInput);
|
|
27202
|
+
var getDatabaseBackupProgressValidator = getValidator(SchemaNames.GetDatabaseBackupProgressTxInput);
|
|
26888
27203
|
var getFlagsValidator = getValidator(SchemaNames.GetFlagsTxInput);
|
|
26889
27204
|
var getStatisticsValidator = getValidator(SchemaNames.GetStatisticsTxInput);
|
|
26890
27205
|
var getTokenValidator = getValidator(SchemaNames.GetTokenTxInput);
|
|
@@ -26894,6 +27209,9 @@ var getTransferGroupValidator = getValidator(SchemaNames.GetTransferGroupTxInput
|
|
|
26894
27209
|
var getWalletValidator = getValidator(SchemaNames.GetWalletTxInput);
|
|
26895
27210
|
var getWalletManyValidator = getValidator(SchemaNames.GetWalletManyTxInput);
|
|
26896
27211
|
var importActionsValidator = getValidator(SchemaNames.ImportActionsTxInput);
|
|
27212
|
+
var importDatabaseBackupValidator = getValidator(SchemaNames.ImportDatabaseBackupTxInput);
|
|
27213
|
+
var importDatabaseProgressValidator = getValidator(SchemaNames.ImportDatabaseProgressTxInput);
|
|
27214
|
+
var listDatabaseBackupsValidator = getValidator(SchemaNames.ListDatabaseBackupsTxInput);
|
|
26897
27215
|
var queryValidator = getValidator(SchemaNames.QueryTxInput);
|
|
26898
27216
|
var queryLogsValidator = getValidator(SchemaNames.QueryLogsTxInput);
|
|
26899
27217
|
var resetDatabaseValidator = getValidator(SchemaNames.ResetDatabaseTxInput);
|
|
@@ -26914,6 +27232,7 @@ var APIValidators = {
|
|
|
26914
27232
|
authenticationCheck: authenticationCheckValidator,
|
|
26915
27233
|
createAccessToken: createAccessTokenValidator,
|
|
26916
27234
|
createContract: createContractValidator,
|
|
27235
|
+
createDatabaseBackup: createDatabaseBackupValidator,
|
|
26917
27236
|
createDeposit: createDepositValidator,
|
|
26918
27237
|
createDistribution: createDistributionValidator,
|
|
26919
27238
|
createToken: createTokenValidator,
|
|
@@ -26930,6 +27249,7 @@ var APIValidators = {
|
|
|
26930
27249
|
finishTransaction: finishTransactionValidator,
|
|
26931
27250
|
getBalance: getBalanceValidator,
|
|
26932
27251
|
getBalanceHistory: getBalanceHistoryValidator,
|
|
27252
|
+
getDatabaseBackupProgress: getDatabaseBackupProgressValidator,
|
|
26933
27253
|
getFlags: getFlagsValidator,
|
|
26934
27254
|
getStatistics: getStatisticsValidator,
|
|
26935
27255
|
getToken: getTokenValidator,
|
|
@@ -26939,6 +27259,9 @@ var APIValidators = {
|
|
|
26939
27259
|
getWallet: getWalletValidator,
|
|
26940
27260
|
getWalletMany: getWalletManyValidator,
|
|
26941
27261
|
importActions: importActionsValidator,
|
|
27262
|
+
importDatabaseBackup: importDatabaseBackupValidator,
|
|
27263
|
+
importDatabaseProgress: importDatabaseProgressValidator,
|
|
27264
|
+
listDatabaseBackups: listDatabaseBackupsValidator,
|
|
26942
27265
|
query: queryValidator,
|
|
26943
27266
|
queryLogs: queryLogsValidator,
|
|
26944
27267
|
resetDatabase: resetDatabaseValidator,
|
|
@@ -26961,6 +27284,7 @@ var APIFunctions;
|
|
|
26961
27284
|
APIFunctions2["authenticationCheck"] = "authenticationCheck";
|
|
26962
27285
|
APIFunctions2["createAccessToken"] = "createAccessToken";
|
|
26963
27286
|
APIFunctions2["createContract"] = "createContract";
|
|
27287
|
+
APIFunctions2["createDatabaseBackup"] = "createDatabaseBackup";
|
|
26964
27288
|
APIFunctions2["createDeposit"] = "createDeposit";
|
|
26965
27289
|
APIFunctions2["createDistribution"] = "createDistribution";
|
|
26966
27290
|
APIFunctions2["createToken"] = "createToken";
|
|
@@ -26977,6 +27301,7 @@ var APIFunctions;
|
|
|
26977
27301
|
APIFunctions2["finishTransaction"] = "finishTransaction";
|
|
26978
27302
|
APIFunctions2["getBalance"] = "getBalance";
|
|
26979
27303
|
APIFunctions2["getBalanceHistory"] = "getBalanceHistory";
|
|
27304
|
+
APIFunctions2["getDatabaseBackupProgress"] = "getDatabaseBackupProgress";
|
|
26980
27305
|
APIFunctions2["getFlags"] = "getFlags";
|
|
26981
27306
|
APIFunctions2["getStatistics"] = "getStatistics";
|
|
26982
27307
|
APIFunctions2["getToken"] = "getToken";
|
|
@@ -26986,6 +27311,9 @@ var APIFunctions;
|
|
|
26986
27311
|
APIFunctions2["getWallet"] = "getWallet";
|
|
26987
27312
|
APIFunctions2["getWalletMany"] = "getWalletMany";
|
|
26988
27313
|
APIFunctions2["importActions"] = "importActions";
|
|
27314
|
+
APIFunctions2["importDatabaseBackup"] = "importDatabaseBackup";
|
|
27315
|
+
APIFunctions2["importDatabaseProgress"] = "importDatabaseProgress";
|
|
27316
|
+
APIFunctions2["listDatabaseBackups"] = "listDatabaseBackups";
|
|
26989
27317
|
APIFunctions2["query"] = "query";
|
|
26990
27318
|
APIFunctions2["queryLogs"] = "queryLogs";
|
|
26991
27319
|
APIFunctions2["resetDatabase"] = "resetDatabase";
|
|
@@ -27328,6 +27656,9 @@ var BaseClient = class {
|
|
|
27328
27656
|
createContract(input) {
|
|
27329
27657
|
return this._sendTransaction(APIFunctions.createContract, input);
|
|
27330
27658
|
}
|
|
27659
|
+
createDatabaseBackup(input) {
|
|
27660
|
+
return this._sendTransaction(APIFunctions.createDatabaseBackup, input);
|
|
27661
|
+
}
|
|
27331
27662
|
createDeposit(input) {
|
|
27332
27663
|
return this._sendTransaction(APIFunctions.createDeposit, input);
|
|
27333
27664
|
}
|
|
@@ -27376,6 +27707,9 @@ var BaseClient = class {
|
|
|
27376
27707
|
getBalanceHistory(input) {
|
|
27377
27708
|
return this._sendTransaction(APIFunctions.getBalanceHistory, input);
|
|
27378
27709
|
}
|
|
27710
|
+
getDatabaseBackupProgress(input) {
|
|
27711
|
+
return this._sendTransaction(APIFunctions.getDatabaseBackupProgress, input);
|
|
27712
|
+
}
|
|
27379
27713
|
getFlags(input) {
|
|
27380
27714
|
return this._sendTransaction(APIFunctions.getFlags, input);
|
|
27381
27715
|
}
|
|
@@ -27412,6 +27746,15 @@ var BaseClient = class {
|
|
|
27412
27746
|
}
|
|
27413
27747
|
return this._streamTransaction(APIFunctions.importActions, isImportActionsTxInput, input, transform);
|
|
27414
27748
|
}
|
|
27749
|
+
importDatabaseBackup(input) {
|
|
27750
|
+
return this._sendTransaction(APIFunctions.importDatabaseBackup, input);
|
|
27751
|
+
}
|
|
27752
|
+
importDatabaseProgress(input) {
|
|
27753
|
+
return this._sendTransaction(APIFunctions.importDatabaseProgress, input);
|
|
27754
|
+
}
|
|
27755
|
+
listDatabaseBackups(input) {
|
|
27756
|
+
return this._sendTransaction(APIFunctions.listDatabaseBackups, input);
|
|
27757
|
+
}
|
|
27415
27758
|
query(input) {
|
|
27416
27759
|
return this._sendTransaction(APIFunctions.query, input);
|
|
27417
27760
|
}
|
|
@@ -27471,7 +27814,7 @@ var SocketStatuses;
|
|
|
27471
27814
|
})(SocketStatuses || (SocketStatuses = {}));
|
|
27472
27815
|
|
|
27473
27816
|
// package.json
|
|
27474
|
-
var version = "0.
|
|
27817
|
+
var version = "0.6.0";
|
|
27475
27818
|
|
|
27476
27819
|
// src/api/ws-client.ts
|
|
27477
27820
|
function createClient(opts) {
|
|
@@ -27570,17 +27913,17 @@ var WsClient = class extends BaseClient {
|
|
|
27570
27913
|
_ready() {
|
|
27571
27914
|
this._setConnected(true);
|
|
27572
27915
|
this._connection.onmessage = (event) => {
|
|
27573
|
-
const { data, type:
|
|
27574
|
-
debugLog(`message(type:${
|
|
27575
|
-
if (
|
|
27916
|
+
const { data, type: type170 } = event;
|
|
27917
|
+
debugLog(`message(type:${type170},data:${data})`);
|
|
27918
|
+
if (type170 === "message") {
|
|
27576
27919
|
const obj = JSON.parse(data.toString());
|
|
27577
27920
|
this._handleMessage(obj);
|
|
27578
27921
|
this._heartbeat();
|
|
27579
27922
|
}
|
|
27580
27923
|
};
|
|
27581
27924
|
this._connection.onerror = (event) => {
|
|
27582
|
-
const { message, error, type:
|
|
27583
|
-
debugLog(`error(message:${message},error:${error},type:${
|
|
27925
|
+
const { message, error, type: type170 } = event;
|
|
27926
|
+
debugLog(`error(message:${message},error:${error},type:${type170})`);
|
|
27584
27927
|
};
|
|
27585
27928
|
this._connection.onclose = (event) => {
|
|
27586
27929
|
const { reason, code, wasClean } = event;
|
|
@@ -28739,13 +29082,13 @@ function findTransferGroups(options, input, fnOptions) {
|
|
|
28739
29082
|
if (error) {
|
|
28740
29083
|
throw error;
|
|
28741
29084
|
}
|
|
28742
|
-
const { identifier, transfer_status, status, metadata, type:
|
|
29085
|
+
const { identifier, transfer_status, status, metadata, type: type170 } = inputCopy;
|
|
28743
29086
|
const filter = {
|
|
28744
29087
|
identifier,
|
|
28745
29088
|
transfer_status,
|
|
28746
29089
|
status,
|
|
28747
29090
|
metadata,
|
|
28748
|
-
type:
|
|
29091
|
+
type: type170
|
|
28749
29092
|
};
|
|
28750
29093
|
if (inputCopy.reverses) {
|
|
28751
29094
|
filter.reverses = getIdentifierFilter(inputCopy.reverses);
|
|
@@ -29586,12 +29929,12 @@ function updateTransferGroups(options, input, fnOptions) {
|
|
|
29586
29929
|
if (error) {
|
|
29587
29930
|
throw error;
|
|
29588
29931
|
}
|
|
29589
|
-
const { transfer_status, status, metadata, type:
|
|
29932
|
+
const { transfer_status, status, metadata, type: type170, update } = inputCopy;
|
|
29590
29933
|
const filter = {
|
|
29591
29934
|
transfer_status,
|
|
29592
29935
|
status,
|
|
29593
29936
|
metadata,
|
|
29594
|
-
type:
|
|
29937
|
+
type: type170
|
|
29595
29938
|
};
|
|
29596
29939
|
if (inputCopy.reverses) {
|
|
29597
29940
|
filter.reverses = getIdentifierFilter(inputCopy.reverses);
|
|
@@ -30048,6 +30391,8 @@ var utils = {
|
|
|
30048
30391
|
CreateContractFnOutputSchema,
|
|
30049
30392
|
CreateContractTxInputSchema,
|
|
30050
30393
|
CreateContractTxOutputSchema,
|
|
30394
|
+
CreateDatabaseBackupTxInputSchema,
|
|
30395
|
+
CreateDatabaseBackupTxOutputSchema,
|
|
30051
30396
|
CreateDepositFnInputSchema,
|
|
30052
30397
|
CreateDepositFnOutputSchema,
|
|
30053
30398
|
CreateDepositTxInputSchema,
|
|
@@ -30123,6 +30468,8 @@ var utils = {
|
|
|
30123
30468
|
GetBalanceHistoryTxOutputSchema,
|
|
30124
30469
|
GetBalanceTxInputSchema,
|
|
30125
30470
|
GetBalanceTxOutputSchema,
|
|
30471
|
+
GetDatabaseBackupProgressTxInputSchema,
|
|
30472
|
+
GetDatabaseBackupProgressTxOutputSchema,
|
|
30126
30473
|
GetFlagsFnInputSchema,
|
|
30127
30474
|
GetFlagsFnOutputSchema,
|
|
30128
30475
|
GetFlagsTxInputSchema,
|
|
@@ -30160,6 +30507,12 @@ var utils = {
|
|
|
30160
30507
|
ImportActionsTxOutputSchema,
|
|
30161
30508
|
ImportDataFnInputSchema,
|
|
30162
30509
|
ImportDataFnOutputSchema,
|
|
30510
|
+
ImportDatabaseBackupTxInputSchema,
|
|
30511
|
+
ImportDatabaseBackupTxOutputSchema,
|
|
30512
|
+
ImportDatabaseProgressTxInputSchema,
|
|
30513
|
+
ImportDatabaseProgressTxOutputSchema,
|
|
30514
|
+
ListDatabaseBackupsTxInputSchema,
|
|
30515
|
+
ListDatabaseBackupsTxOutputSchema,
|
|
30163
30516
|
QueryBuilder,
|
|
30164
30517
|
QueryLogsTxInputSchema,
|
|
30165
30518
|
QueryLogsTxOutputSchema,
|